@formio/js 5.0.0-dev.5749.8f49547 → 5.0.0-dev.5754.c86e9f5

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.
Files changed (47) hide show
  1. package/Changelog.md +9 -0
  2. package/dist/formio.form.js +35 -15
  3. package/dist/formio.form.min.js +1 -1
  4. package/dist/formio.form.min.js.LICENSE.txt +2 -0
  5. package/dist/formio.full.js +37 -17
  6. package/dist/formio.full.min.js +1 -1
  7. package/dist/formio.full.min.js.LICENSE.txt +2 -0
  8. package/dist/formio.utils.js +24 -4
  9. package/dist/formio.utils.min.js +1 -1
  10. package/dist/formio.utils.min.js.LICENSE.txt +2 -0
  11. package/lib/cjs/Form.js +2 -2
  12. package/lib/cjs/Wizard.js +1 -1
  13. package/lib/cjs/components/_classes/nestedarray/NestedArrayComponent.d.ts +1 -0
  14. package/lib/cjs/components/_classes/nestedarray/NestedArrayComponent.js +6 -0
  15. package/lib/cjs/components/datagrid/DataGrid.js +1 -0
  16. package/lib/cjs/components/datagrid/fixtures/comp11.d.ts +50 -0
  17. package/lib/cjs/components/datagrid/fixtures/comp11.js +55 -0
  18. package/lib/cjs/components/datagrid/fixtures/index.d.ts +2 -1
  19. package/lib/cjs/components/datagrid/fixtures/index.js +3 -1
  20. package/lib/cjs/components/editgrid/EditGrid.js +1 -0
  21. package/lib/cjs/components/file/File.d.ts +1 -1
  22. package/lib/cjs/components/file/File.js +6 -1
  23. package/lib/cjs/components/form/editForm/Form.edit.form.js +1 -1
  24. package/lib/cjs/components/form/fixtures/index.d.ts +2 -1
  25. package/lib/cjs/components/form/fixtures/index.js +3 -1
  26. package/lib/cjs/components/form/fixtures/nestedWizardForm.d.ts +771 -0
  27. package/lib/cjs/components/form/fixtures/nestedWizardForm.js +765 -0
  28. package/lib/cjs/components/time/Time.form.js +2 -2
  29. package/lib/mjs/Form.js +2 -2
  30. package/lib/mjs/Wizard.js +1 -1
  31. package/lib/mjs/components/_classes/nestedarray/NestedArrayComponent.d.ts +1 -0
  32. package/lib/mjs/components/_classes/nestedarray/NestedArrayComponent.js +6 -0
  33. package/lib/mjs/components/datagrid/DataGrid.js +1 -0
  34. package/lib/mjs/components/datagrid/fixtures/comp11.d.ts +50 -0
  35. package/lib/mjs/components/datagrid/fixtures/comp11.js +53 -0
  36. package/lib/mjs/components/datagrid/fixtures/index.d.ts +2 -1
  37. package/lib/mjs/components/datagrid/fixtures/index.js +2 -1
  38. package/lib/mjs/components/editgrid/EditGrid.js +1 -0
  39. package/lib/mjs/components/file/File.d.ts +1 -1
  40. package/lib/mjs/components/file/File.js +6 -1
  41. package/lib/mjs/components/form/editForm/Form.edit.form.js +1 -1
  42. package/lib/mjs/components/form/fixtures/index.d.ts +2 -1
  43. package/lib/mjs/components/form/fixtures/index.js +2 -1
  44. package/lib/mjs/components/form/fixtures/nestedWizardForm.d.ts +771 -0
  45. package/lib/mjs/components/form/fixtures/nestedWizardForm.js +763 -0
  46. package/lib/mjs/components/time/Time.form.js +2 -2
  47. package/package.json +4 -4
package/Changelog.md CHANGED
@@ -46,6 +46,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
46
46
  - FIO-8684: Fixes cannot attach more than one component to the PDF form
47
47
  - FIO-8719: fixed validation for Data Grid component inside nested wizard
48
48
  - FIO-8621: added error event on file upload
49
+ - FIO-8799 updated conditional tab for Time Component
50
+ - FIO-6495: fixed an issue where revision ID of nested form does not transfer from stage to stage
51
+ - FIO-8797: set empty day component value to the empty string
52
+ - FIO-8729: fixed an issue where the rollback to default templates does not work correctly and unknown template message is shown
53
+ - FIO-8668: fixed an issue where reportingUI form is available is the existing resources in builder
54
+ - FIO-8714: Bugfix: allow paths for valueProperty
55
+ - FIO-8795: fixed selected data after removing row
56
+ - FIO-8771: Included File Component in Review Page Component
57
+ - FIO-8789: Fixing issues where the wrong urls are used for CDN on remote env
49
58
 
50
59
  ### New Features
51
60