Skip to content
This repository was archived by the owner on Apr 30, 2018. It is now read-only.

Commit e2f8fd8

Browse files
committed
updated changelog, versioned package and bower
1 parent b06319f commit e2f8fd8

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
Version numbers correspond to `bower.json` version
2-
# Latest
3-
4-
- Now providing the `result` to each field template authors have the power to associate other values of the result set with the template
5-
- Adding `requiredExpression` to field options and assinging the field's `required` property based on its evaluation. Works very much like `hideExpression`
2+
# 0.0.15
3+
4+
- The password field no longer uses whitespace trimming.
5+
- Added option to override whitespace trim setting for the password field.
6+
- Revised support for setting the `default` for `select` fields.
7+
- Added notes on contributing.
8+
- Fixed #55 Error: field.watch.listener is undefined.
9+
- Added support for `description` to all form fields.
10+
- Now providing the `result` to each field template authors have the power to associate other values of the result set with the template.
11+
- Adding `requiredExpression` to field options and assinging the field's `required` property based on its evaluation. Works very much like `hideExpression`.
612
- Added option to use `ng-if` instead of `ng-hide` to hide fields.
713

814
# 0.0.14

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-formly",
3-
"version": "0.0.14",
3+
"version": "0.0.15",
44
"authors": [
55
"Astrism <[email protected]>"
66
],

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-formly",
3-
"version": "0.0.14",
3+
"version": "0.0.15",
44
"author": "Astrism <[email protected]>",
55
"homepage": "http://nimbly.github.io/angular-formly/",
66
"repository": {

src/providers/formly-options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ angular.module('formly.render')
77
submitCopy: "Submit",
88
hideSubmit: false,
99
submitButtonTemplate: null,
10-
useNgIfToHide: false
10+
useNgIfToHide: true
1111
};
1212

1313
function setOption(name, value) {

0 commit comments

Comments
 (0)