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

Commit 5702a31

Browse files
committed
v7.1.1
2 parents ec8e49e + a45baca commit 5702a31

File tree

6 files changed

+17
-12
lines changed

6 files changed

+17
-12
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,10 @@ before_install:
1616
- "sh -e /etc/init.d/xvfb start"
1717
before_script:
1818
- npm prune
19+
script:
20+
- npm run code-checks
21+
- npm t
22+
- npm run check-coverage
1923
after_success:
24+
- npm run report-coverage
2025
- npm run semantic-release

dist/formly.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! angular-formly version 7.1.0 built with ♥ by Astrism <[email protected]>, Kent C. Dodds <[email protected]> (ó ì_í)=óò=(ì_í ò)
1+
//! angular-formly version 7.1.1 built with ♥ by Astrism <[email protected]>, Kent C. Dodds <[email protected]> (ó ì_í)=óò=(ì_í ò)
22

33
(function webpackUniversalModuleDefinition(root, factory) {
44
if(typeof exports === 'object' && typeof module === 'object')
@@ -147,7 +147,7 @@ return /******/ (function(modules) { // webpackBootstrap
147147

148148
ngModule.constant('formlyApiCheck', _providersFormlyApiCheck2['default']);
149149
ngModule.constant('formlyErrorAndWarningsUrlPrefix', _otherDocsBaseUrl2['default']);
150-
ngModule.constant('formlyVersion', ("7.1.0")); // <-- webpack variable
150+
ngModule.constant('formlyVersion', ("7.1.1")); // <-- webpack variable
151151

152152
ngModule.provider('formlyUsability', _providersFormlyUsability2['default']);
153153
ngModule.provider('formlyConfig', _providersFormlyConfig2['default']);
@@ -416,7 +416,7 @@ return /******/ (function(modules) { // webpackBootstrap
416416
Object.defineProperty(exports, "__esModule", {
417417
value: true
418418
});
419-
exports["default"] = "https://github.com/formly-js/angular-formly/blob/" + ("7.1.0") + "/other/ERRORS_AND_WARNINGS.md#";
419+
exports["default"] = "https://github.com/formly-js/angular-formly/blob/" + ("7.1.1") + "/other/ERRORS_AND_WARNINGS.md#";
420420
module.exports = exports["default"];
421421

422422
/***/ },
@@ -1091,8 +1091,8 @@ return /******/ (function(modules) { // webpackBootstrap
10911091
});
10921092

10931093
var useNewValidatorsApi = ctrl.hasOwnProperty('$validators') && !attrs.hasOwnProperty('useParsers');
1094-
_angularFix2['default'].forEach(opts.validators, addValidatorToPipeline.bind(null, false));
1095-
_angularFix2['default'].forEach(opts.asyncValidators, addValidatorToPipeline.bind(null, true));
1094+
_angularFix2['default'].forEach(opts.validators, _angularFix2['default'].bind(null, addValidatorToPipeline, false));
1095+
_angularFix2['default'].forEach(opts.asyncValidators, _angularFix2['default'].bind(null, addValidatorToPipeline, true));
10961096

10971097
function addValidatorToPipeline(isAsync, validator, name) {
10981098
setupMessage(validator, name);

dist/formly.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formly.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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": "7.1.0",
3+
"version": "7.1.1",
44
"author": "Astrism <[email protected]>",
55
"contributors": [
66
"Astrism <[email protected]>",

src/directives/formly-custom-validation.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ function formlyCustomValidation(formlyUtil) {
1717

1818

1919
const useNewValidatorsApi = ctrl.hasOwnProperty('$validators') && !attrs.hasOwnProperty('useParsers');
20-
angular.forEach(opts.validators, addValidatorToPipeline.bind(null, false));
21-
angular.forEach(opts.asyncValidators, addValidatorToPipeline.bind(null, true));
20+
angular.forEach(opts.validators, angular.bind(null, addValidatorToPipeline, false));
21+
angular.forEach(opts.asyncValidators, angular.bind(null, addValidatorToPipeline, true));
2222

2323
function addValidatorToPipeline(isAsync, validator, name) {
2424
setupMessage(validator, name);

0 commit comments

Comments
 (0)