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

Commit 88681be

Browse files
author
Kent C. Dodds
committed
4.0.8
1 parent b89e46e commit 88681be

8 files changed

+32
-16
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 4.0.8
2+
3+
- Fixing issue #17 with form control not getting set on multiCheckbox and radio types.
4+
15
# 4.0.7
26

37
- Updating peerDependency with api-check.

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-templates-bootstrap",
3-
"version": "4.0.7",
3+
"version": "4.0.8",
44
"authors": [
55
"Astrism <[email protected]>"
66
],

dist/angular-formly-templates-bootstrap.js

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

dist/angular-formly-templates-bootstrap.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/angular-formly-templates-bootstrap.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-bootstrap",
3-
"version": "4.0.7",
3+
"version": "4.0.8",
44
"author": "Astrism <[email protected]>",
55
"contributors": [
66
"Astrism <[email protected]>",

src/types/multiCheckbox.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ export default ngModule => {
77
name: 'multiCheckbox',
88
template: require('./multiCheckbox.html'),
99
wrapper: ['bootstrapLabel', 'bootstrapHasError'],
10+
defaultOptions: {
11+
noFormControl: false
12+
},
1013
apiCheck: {
1114
templateOptions: c.shape({
1215
options: c.arrayOf(c.object),

src/types/radio.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ export default ngModule => {
77
name: 'radio',
88
template: require('./radio.html'),
99
wrapper: ['bootstrapLabel', 'bootstrapHasError'],
10+
defaultOptions: {
11+
noFormControl: false
12+
},
1013
apiCheck: {
1114
templateOptions: c.shape({
1215
options: c.arrayOf(c.object),

0 commit comments

Comments
 (0)