@formio/js 5.0.0-dev.5822.ae2ec5b → 5.0.0-dev.5826.02fa4d9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Changelog.md +3 -1
- package/dist/formio.form.js +6 -6
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.full.js +7 -7
- package/dist/formio.full.min.js +1 -1
- package/lib/cjs/Webform.js +1 -1
- package/lib/cjs/WebformBuilder.js +4 -1
- package/lib/cjs/components/_classes/list/ListComponent.d.ts +4 -0
- package/lib/cjs/components/_classes/list/ListComponent.js +16 -0
- package/lib/cjs/components/_classes/nested/NestedComponent.js +4 -1
- package/lib/cjs/components/day/Day.js +3 -1
- package/lib/cjs/components/radio/Radio.d.ts +1 -1
- package/lib/cjs/components/radio/Radio.js +24 -1
- package/lib/cjs/components/select/Select.d.ts +0 -4
- package/lib/cjs/components/select/Select.js +0 -16
- package/lib/mjs/Webform.js +1 -1
- package/lib/mjs/WebformBuilder.js +4 -1
- package/lib/mjs/components/_classes/list/ListComponent.d.ts +4 -0
- package/lib/mjs/components/_classes/list/ListComponent.js +16 -0
- package/lib/mjs/components/_classes/nested/NestedComponent.js +3 -1
- package/lib/mjs/components/day/Day.js +3 -1
- package/lib/mjs/components/radio/Radio.d.ts +1 -1
- package/lib/mjs/components/radio/Radio.js +24 -1
- package/lib/mjs/components/select/Select.d.ts +0 -4
- package/lib/mjs/components/select/Select.js +0 -16
- package/package.json +1 -1
package/Changelog.md
CHANGED
|
@@ -73,7 +73,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
73
73
|
- FIO-8986: fixed setting up of default value with hidden fields
|
|
74
74
|
- FIO-8938: fixed label display for multiple select with dataSrc resource
|
|
75
75
|
- FIO-8962: fixed screen shifting when validation errors pop up in an embedded Wizard form
|
|
76
|
-
- FIO-8234/FIO-7195: Fixes an issue where value properties are shown instead of labels for Select component with Resource/URL data sources in read only mode and for modal preview
|
|
76
|
+
- FIO-8234/FIO-7195: Fixes an issue where value properties are shown instead of labels for Select component with Resource/URL data sources in read only mode and for modal preview
|
|
77
|
+
- FIO-8986: fixed setting default value for day component with hidden day and month
|
|
78
|
+
- FIO-8719: fixed error message display for nested wizard components
|
|
77
79
|
|
|
78
80
|
### New Features
|
|
79
81
|
|