@formio/js 5.0.0-dev.5664.1af299f → 5.0.0-dev.5668.b75e179
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 -2
- package/dist/formio.form.js +2 -98
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.full.js +2 -2
- package/dist/formio.full.min.js +1 -1
- package/lib/cjs/components/datagrid/DataGrid.d.ts +0 -9
- package/lib/cjs/components/datagrid/DataGrid.js +32 -47
- package/lib/cjs/components/datagrid/fixtures/index.d.ts +1 -2
- package/lib/cjs/components/datagrid/fixtures/index.js +1 -3
- package/lib/cjs/components/select/Select.js +1 -2
- package/lib/mjs/components/datagrid/DataGrid.d.ts +0 -9
- package/lib/mjs/components/datagrid/DataGrid.js +32 -47
- package/lib/mjs/components/datagrid/fixtures/index.d.ts +1 -2
- package/lib/mjs/components/datagrid/fixtures/index.js +1 -2
- package/lib/mjs/components/select/Select.js +1 -2
- package/package.json +1 -1
- package/lib/cjs/components/datagrid/fixtures/comp-with-reorder.d.ts +0 -100
- package/lib/cjs/components/datagrid/fixtures/comp-with-reorder.js +0 -139
- package/lib/mjs/components/datagrid/fixtures/comp-with-reorder.d.ts +0 -100
- package/lib/mjs/components/datagrid/fixtures/comp-with-reorder.js +0 -137
package/Changelog.md
CHANGED
|
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
-
## [Unreleased: 5.0.0]
|
|
7
|
+
## [Unreleased: 5.0.0-rc.62]
|
|
8
8
|
|
|
9
9
|
### New Features
|
|
10
10
|
|
|
@@ -222,7 +222,6 @@ Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/e
|
|
|
222
222
|
|
|
223
223
|
- With the 5.x renderer, all templates are now stored within a separate repo, and are included as a dependency for this renderer.
|
|
224
224
|
|
|
225
|
-
## [Unreleased: 5.0.0-rc.40]
|
|
226
225
|
### Fixed
|
|
227
226
|
- FIO-7525: fixed an issue where new conditional logic based on select boxes does not work
|
|
228
227
|
- Fix broken file exclusion patterns
|
|
@@ -359,6 +358,8 @@ Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/e
|
|
|
359
358
|
- FIO-4871: fixed calculated value for data grid component
|
|
360
359
|
- FIO-7591: error messages wrapping on letter instead of on word
|
|
361
360
|
- FIO-7548: fixed an issue where select dropdown does not overlap the datagrid and causes vertical scroll
|
|
361
|
+
- FIO-7775: reset value event resets component values to their default values
|
|
362
|
+
- FIO-6710: added translation for day component placeholder
|
|
362
363
|
|
|
363
364
|
### Changed
|
|
364
365
|
- Add capability for adding sanitize profiles through sanitizeConfig in options
|