@formio/js 5.0.0-rc.41 → 5.0.0-rc.42

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 (40) hide show
  1. package/dist/formio.builder.css +2 -2
  2. package/dist/formio.builder.min.css +1 -1
  3. package/dist/formio.embed.js +1 -1
  4. package/dist/formio.embed.min.js +1 -1
  5. package/dist/formio.embed.min.js.LICENSE.txt +1 -1
  6. package/dist/formio.form.css +2 -2
  7. package/dist/formio.form.js +64 -31
  8. package/dist/formio.form.min.css +1 -1
  9. package/dist/formio.form.min.js +1 -1
  10. package/dist/formio.form.min.js.LICENSE.txt +5 -5
  11. package/dist/formio.full.css +2 -2
  12. package/dist/formio.full.js +65 -32
  13. package/dist/formio.full.min.css +1 -1
  14. package/dist/formio.full.min.js +1 -1
  15. package/dist/formio.full.min.js.LICENSE.txt +5 -5
  16. package/dist/formio.js +3 -3
  17. package/dist/formio.min.js +1 -1
  18. package/dist/formio.min.js.LICENSE.txt +1 -1
  19. package/dist/formio.utils.js +3 -3
  20. package/dist/formio.utils.min.js +1 -1
  21. package/dist/formio.utils.min.js.LICENSE.txt +3 -3
  22. package/lib/cjs/Form.js +32 -1
  23. package/lib/cjs/Webform.js +1 -1
  24. package/lib/cjs/WebformBuilder.js +18 -2
  25. package/lib/cjs/components/datagrid/DataGrid.js +1 -1
  26. package/lib/cjs/components/datetime/fixtures/comp13.js +118 -0
  27. package/lib/cjs/components/datetime/fixtures/index.js +3 -1
  28. package/lib/cjs/components/form/Form.js +27 -3
  29. package/lib/cjs/components/radio/Radio.js +13 -0
  30. package/lib/cjs/widgets/CalendarWidget.js +8 -0
  31. package/lib/mjs/Form.js +32 -1
  32. package/lib/mjs/Webform.js +1 -1
  33. package/lib/mjs/WebformBuilder.js +17 -1
  34. package/lib/mjs/components/datagrid/DataGrid.js +1 -1
  35. package/lib/mjs/components/datetime/fixtures/comp13.js +116 -0
  36. package/lib/mjs/components/datetime/fixtures/index.js +2 -1
  37. package/lib/mjs/components/form/Form.js +25 -2
  38. package/lib/mjs/components/radio/Radio.js +16 -0
  39. package/lib/mjs/widgets/CalendarWidget.js +8 -0
  40. package/package.json +6 -6
@@ -14,9 +14,9 @@
14
14
  /*!
15
15
  * dist/inputmask
16
16
  * https://github.com/RobinHerbots/Inputmask
17
- * Copyright (c) 2010 - 2023 Robin Herbots
17
+ * Copyright (c) 2010 - 2024 Robin Herbots
18
18
  * Licensed under the MIT license
19
- * Version: 5.0.9-beta.45
19
+ * Version: 5.0.9-beta.62
20
20
  */
21
21
 
22
22
  /*!
@@ -33,11 +33,11 @@
33
33
 
34
34
  /*! @formio/choices.js v10.2.1 | © 2024 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
35
35
 
36
- /*! @license DOMPurify 3.0.8 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.0.8/LICENSE */
36
+ /*! @license DOMPurify 3.0.11 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.0.11/LICENSE */
37
37
 
38
- /*! @license DOMPurify 3.0.9 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.0.9/LICENSE */
38
+ /*! @license DOMPurify 3.0.6 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.0.6/LICENSE */
39
39
 
40
- /*! formiojs v5.0.0-rc.41 | https://unpkg.com/formiojs@5.0.0-rc.41/LICENSE.txt */
40
+ /*! formiojs v5.0.0-rc.42 | https://unpkg.com/formiojs@5.0.0-rc.42/LICENSE.txt */
41
41
 
42
42
  /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
43
43
 
@@ -3335,8 +3335,8 @@ body.formio-dialog-open {
3335
3335
  color: #EB0000;
3336
3336
  }
3337
3337
 
3338
- .formio-component-radio.formio-component-label-hidden.required .label-position-right.form-check-label:before,
3339
- .formio-component-selectboxes.formio-component-label-hidden.required .label-position-right.form-check-label:before {
3338
+ .formio-component-radio.formio-component-label-hidden.required .form-check .label-position-right.form-check-label:before,
3339
+ .formio-component-selectboxes.formio-component-label-hidden.required .form-check .label-position-right.form-check-label:before {
3340
3340
  right: 20px;
3341
3341
  }
3342
3342