Skip to content

Commit 47dd52b

Browse files
committed
Bump version and Fix Build Issues
1 parent ad92c83 commit 47dd52b

File tree

6 files changed

+42
-34
lines changed

6 files changed

+42
-34
lines changed

dist/angular-formly-templates-foundation.js

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

dist/angular-formly-templates-foundation.min.js

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

dist/angular-formly-templates-foundation.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-templates-foundation",
3-
"version": "1.0.1",
3+
"version": "1.0.3",
44
"author": "Kent C. Dodds <kent@doddsfamily.us>",
55
"contributors": [
66
"Kent C. Dodds <kent@doddsfamily.us>"

src/types/input.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ export default ngModule => {
44
function addInputType(formlyConfigProvider) {
55
formlyConfigProvider.setType({
66
name: 'input',
7-
template: '<input ng-model="model[options.key]" ng-class="options.formControl.$invalid && options.formControl.$pristine == false ? \'is-invalid-input\' : \'\'">',
7+
template: '<input ng-model="model[options.key]" ' +
8+
' ng-class="options.formControl.$invalid && options.formControl.$pristine == false ' +
9+
' ? \'is-invalid-input\' : \'\'">',
810
wrapper: ['foundationLabel', 'foundationHasError'],
911
defaultOptions: {
1012
templateOptions: { type: 'text' }

0 commit comments

Comments
 (0)