@formio/js 5.0.0-dev.5796.ee2613b → 5.0.0-dev.5797.3f96a70

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 (53) hide show
  1. package/Changelog.md +3 -0
  2. package/dist/formio.form.js +565 -573
  3. package/dist/formio.form.min.js +1 -1
  4. package/dist/formio.form.min.js.LICENSE.txt +0 -10
  5. package/dist/formio.full.js +572 -580
  6. package/dist/formio.full.min.js +1 -1
  7. package/dist/formio.full.min.js.LICENSE.txt +0 -10
  8. package/dist/formio.js +1 -1
  9. package/dist/formio.min.js +1 -1
  10. package/dist/formio.utils.js +50 -48
  11. package/dist/formio.utils.min.js +1 -1
  12. package/dist/formio.utils.min.js.LICENSE.txt +4 -4
  13. package/lib/cjs/components/_classes/multivalue/Multivalue.d.ts +8 -0
  14. package/lib/cjs/components/_classes/multivalue/Multivalue.js +12 -10
  15. package/lib/cjs/components/datetime/fixtures/comp14.d.ts +35 -0
  16. package/lib/cjs/components/datetime/fixtures/comp14.js +38 -0
  17. package/lib/cjs/components/datetime/fixtures/index.d.ts +6 -5
  18. package/lib/cjs/components/datetime/fixtures/index.js +3 -1
  19. package/lib/cjs/components/day/Day.d.ts +5 -0
  20. package/lib/cjs/components/day/Day.js +51 -11
  21. package/lib/cjs/components/day/editForm/Day.edit.day.d.ts +17 -0
  22. package/lib/cjs/components/day/editForm/Day.edit.day.js +19 -0
  23. package/lib/cjs/components/day/editForm/Day.edit.month.d.ts +5 -0
  24. package/lib/cjs/components/day/editForm/Day.edit.month.js +19 -0
  25. package/lib/cjs/components/day/editForm/Day.edit.year.d.ts +5 -0
  26. package/lib/cjs/components/day/editForm/Day.edit.year.js +13 -0
  27. package/lib/cjs/components/html/HTML.js +1 -1
  28. package/lib/cjs/components/radio/Radio.js +1 -1
  29. package/lib/cjs/components/select/Select.js +0 -3
  30. package/lib/cjs/components/select/editForm/Select.edit.validation.js +1 -2
  31. package/lib/cjs/components/selectboxes/SelectBoxes.js +1 -1
  32. package/lib/cjs/widgets/CalendarWidget.js +24 -10
  33. package/lib/mjs/components/_classes/multivalue/Multivalue.d.ts +8 -0
  34. package/lib/mjs/components/_classes/multivalue/Multivalue.js +12 -10
  35. package/lib/mjs/components/datetime/fixtures/comp14.d.ts +35 -0
  36. package/lib/mjs/components/datetime/fixtures/comp14.js +36 -0
  37. package/lib/mjs/components/datetime/fixtures/index.d.ts +6 -5
  38. package/lib/mjs/components/datetime/fixtures/index.js +2 -1
  39. package/lib/mjs/components/day/Day.d.ts +5 -0
  40. package/lib/mjs/components/day/Day.js +51 -11
  41. package/lib/mjs/components/day/editForm/Day.edit.day.d.ts +17 -0
  42. package/lib/mjs/components/day/editForm/Day.edit.day.js +16 -0
  43. package/lib/mjs/components/day/editForm/Day.edit.month.d.ts +5 -0
  44. package/lib/mjs/components/day/editForm/Day.edit.month.js +16 -0
  45. package/lib/mjs/components/day/editForm/Day.edit.year.d.ts +5 -0
  46. package/lib/mjs/components/day/editForm/Day.edit.year.js +10 -0
  47. package/lib/mjs/components/html/HTML.js +1 -1
  48. package/lib/mjs/components/radio/Radio.js +1 -1
  49. package/lib/mjs/components/select/Select.js +0 -3
  50. package/lib/mjs/components/select/editForm/Select.edit.validation.js +1 -2
  51. package/lib/mjs/components/selectboxes/SelectBoxes.js +1 -1
  52. package/lib/mjs/widgets/CalendarWidget.js +24 -10
  53. package/package.json +2 -2
package/Changelog.md CHANGED
@@ -64,6 +64,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
64
64
  - FIO-8931: Disable file synchronization feature
65
65
  - FIO-8458: removing row from data grid triggers save draft action
66
66
  - FIO-8912: consolidate normalization for multivalue components
67
+ - FIO-8423: change default parent tag from p to div
68
+ - FIO-8375: allow date time to have manual input
69
+ - FIO-8912: fix normalization in submission
67
70
 
68
71
  ### New Features
69
72