Skip to content

Commit 0e400b6

Browse files
author
Kent C. Dodds
committed
6.13.2
1 parent a964a44 commit 0e400b6

File tree

5 files changed

+14
-11
lines changed

5 files changed

+14
-11
lines changed

bower.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"name": "angular-formly",
3-
"version": "6.13.1",
43
"authors": [
54
"Astrism <[email protected]>"
65
],

dist/formly.js

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// angular-formly version 6.13.1 built with ♥ by Astrism <[email protected]>, Kent C. Dodds <[email protected]> (ó ì_í)=óò=(ì_í ò)
1+
// angular-formly version 6.13.2 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')
@@ -108,7 +108,7 @@ return /******/ (function(modules) { // webpackBootstrap
108108

109109
ngModule.constant("formlyApiCheck", formlyApiCheck);
110110
ngModule.constant("formlyErrorAndWarningsUrlPrefix", formlyErrorAndWarningsUrlPrefix);
111-
ngModule.constant("formlyVersion", ("6.13.1")); // <-- webpack variable
111+
ngModule.constant("formlyVersion", ("6.13.2")); // <-- webpack variable
112112

113113
ngModule.provider("formlyUsability", formlyUsability);
114114
ngModule.provider("formlyConfig", formlyConfig);
@@ -372,7 +372,7 @@ return /******/ (function(modules) { // webpackBootstrap
372372

373373
"use strict";
374374

375-
module.exports = "https://github.com/formly-js/angular-formly/blob/" + ("6.13.1") + "/other/ERRORS_AND_WARNINGS.md#";
375+
module.exports = "https://github.com/formly-js/angular-formly/blob/" + ("6.13.2") + "/other/ERRORS_AND_WARNINGS.md#";
376376

377377
/***/ },
378378
/* 8 */
@@ -1563,6 +1563,9 @@ return /******/ (function(modules) { // webpackBootstrap
15631563
}
15641564
runApiCheck(type, options);
15651565
}
1566+
if (options.expressionProperties && options.expressionProperties.hide) {
1567+
formlyWarn("dont-use-expressionproperties.hide-use-hideexpression-instead", "You have specified `hide` in `expressionProperties`. Use `hideExpression` instead", options);
1568+
}
15661569
}
15671570

15681571
function checkFieldGroupApi(options) {
@@ -1650,7 +1653,7 @@ return /******/ (function(modules) { // webpackBootstrap
16501653
* @restrict E
16511654
*/
16521655
// @ngInject
1653-
function formlyForm(formlyUsability, $parse, formlyConfig, $interpolate) {
1656+
function formlyForm(formlyUsability, formlyWarn, $parse, formlyConfig, $interpolate) {
16541657
var currentFormId = 1;
16551658
FormlyFormController.$inject = ["$scope", "formlyApiCheck", "formlyUtil"];
16561659
return {
@@ -1911,7 +1914,7 @@ return /******/ (function(modules) { // webpackBootstrap
19111914
}
19121915
if (!scope.theFormlyForm && !formlyConfig.disableWarnings) {
19131916
/* eslint no-console:0 */
1914-
console.warn(formlyUsability.getErrorMessage("formly-form-has-no-formcontroller", "A formly-form does not have a `form` property. Many functions of the form (like validation) may not work"));
1917+
formlyWarn("formly-form-has-no-formcontroller", "Your formly-form does not have a `form` property. Many functions of the form (like validation) may not work", el, scope);
19151918
}
19161919
}
19171920

@@ -1948,7 +1951,7 @@ return /******/ (function(modules) { // webpackBootstrap
19481951
return field && !!field.fieldGroup;
19491952
}
19501953
}
1951-
formlyForm.$inject = ["formlyUsability", "$parse", "formlyConfig", "$interpolate"];
1954+
formlyForm.$inject = ["formlyUsability", "formlyWarn", "$parse", "formlyConfig", "$interpolate"];
19521955

19531956
/***/ },
19541957
/* 17 */

dist/formly.min.js

Lines changed: 2 additions & 2 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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-formly",
3-
"version": "6.13.1",
3+
"version": "6.13.2",
44
"author": "Astrism <[email protected]>",
55
"contributors": [
66
"Astrism <[email protected]>",
@@ -47,6 +47,7 @@
4747
"babel-core": "^4.4.6",
4848
"babel-eslint": "^3.1.10",
4949
"babel-loader": "^4.0.0",
50+
"babel-runtime": "5.5.6",
5051
"chai": "^1.10.0",
5152
"chalk": "^1.0.0",
5253
"codecov.io": "0.1.2",

0 commit comments

Comments
 (0)