Skip to content

Commit

Permalink
prepare release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
simonfox committed Apr 11, 2017
1 parent 4dd1722 commit 7c5a5b0
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
3 changes: 2 additions & 1 deletion dist/amd/autocomplete.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<template>
<require from="./autocomplete.css"></require>
<div class="form-group">
<label for="${'au-autocomplete-' + id}"
<label if.bind="title.length > 0"
for="${'au-autocomplete-' + id}"
class="control-label">${title}</label>
<div class="autocomplete-container">
<input id="${'au-autocomplete-' + id}"
Expand Down
3 changes: 2 additions & 1 deletion dist/commonjs/autocomplete.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<template>
<require from="./autocomplete.css"></require>
<div class="form-group">
<label for="${'au-autocomplete-' + id}"
<label if.bind="title.length > 0"
for="${'au-autocomplete-' + id}"
class="control-label">${title}</label>
<div class="autocomplete-container">
<input id="${'au-autocomplete-' + id}"
Expand Down
3 changes: 2 additions & 1 deletion dist/es2015/autocomplete.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<template>
<require from="./autocomplete.css"></require>
<div class="form-group">
<label for="${'au-autocomplete-' + id}"
<label if.bind="title.length > 0"
for="${'au-autocomplete-' + id}"
class="control-label">${title}</label>
<div class="autocomplete-container">
<input id="${'au-autocomplete-' + id}"
Expand Down
3 changes: 2 additions & 1 deletion dist/system/autocomplete.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<template>
<require from="./autocomplete.css"></require>
<div class="form-group">
<label for="${'au-autocomplete-' + id}"
<label if.bind="title.length > 0"
for="${'au-autocomplete-' + id}"
class="control-label">${title}</label>
<div class="autocomplete-container">
<input id="${'au-autocomplete-' + id}"
Expand Down
6 changes: 6 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# [1.3.0](https://github.com/drivesoftware/aurelia-autocomplete/releases/tag/1.3.0) (2017-04-11)

### Features

* hide the label element if the title property is empty

# [1.2.0](https://github.com/drivesoftware/aurelia-autocomplete/releases/tag/1.2.0) (2017-04-11)

### Features
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-autocomplete",
"version": "1.2.0",
"version": "1.3.0",
"description": "Autocomplete control for Aurelia",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 7c5a5b0

Please sign in to comment.