@formio/js 5.0.0-rc.36 → 5.0.0-rc.38

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 (65) hide show
  1. package/dist/fonts/bootstrap-icons.woff +0 -0
  2. package/dist/fonts/bootstrap-icons.woff2 +0 -0
  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.js +854 -133
  7. package/dist/formio.form.min.js +1 -1
  8. package/dist/formio.form.min.js.LICENSE.txt +5 -3
  9. package/dist/formio.full.css +4 -4
  10. package/dist/formio.full.js +828 -137
  11. package/dist/formio.full.min.css +3 -3
  12. package/dist/formio.full.min.js +1 -1
  13. package/dist/formio.full.min.js.LICENSE.txt +5 -3
  14. package/dist/formio.js +5 -5
  15. package/dist/formio.min.js +1 -1
  16. package/dist/formio.min.js.LICENSE.txt +1 -1
  17. package/dist/formio.utils.js +25 -14
  18. package/dist/formio.utils.min.js +1 -1
  19. package/dist/formio.utils.min.js.LICENSE.txt +5 -3
  20. package/lib/cjs/Element.js +2 -2
  21. package/lib/cjs/Embed.js +19 -14
  22. package/lib/cjs/Formio.js +3 -0
  23. package/lib/cjs/components/_classes/component/Component.js +21 -7
  24. package/lib/cjs/components/_classes/component/fixtures/comp5.js +2 -2
  25. package/lib/cjs/components/_classes/list/ListComponent.js +5 -12
  26. package/lib/cjs/components/_classes/nested/NestedComponent.js +17 -9
  27. package/lib/cjs/components/columns/editForm/Columns.edit.display.js +1 -1
  28. package/lib/cjs/components/editgrid/EditGrid.js +11 -4
  29. package/lib/cjs/components/form/Form.js +3 -1
  30. package/lib/cjs/components/html/HTML.js +2 -2
  31. package/lib/cjs/components/html/fixtures/comp3.js +31 -0
  32. package/lib/cjs/components/html/fixtures/index.js +3 -1
  33. package/lib/cjs/components/radio/Radio.js +2 -1
  34. package/lib/cjs/components/radio/fixtures/comp10.js +23 -0
  35. package/lib/cjs/components/radio/fixtures/index.js +3 -1
  36. package/lib/cjs/components/recaptcha/ReCaptcha.js +3 -0
  37. package/lib/cjs/components/select/Select.js +84 -9
  38. package/lib/cjs/components/survey/Survey.js +10 -0
  39. package/lib/cjs/utils/conditionOperators/IsEqualTo.js +19 -1
  40. package/lib/cjs/utils/conditionOperators/IsNotEqualTo.js +4 -5
  41. package/lib/cjs/utils/utils.js +40 -2
  42. package/lib/mjs/Element.js +2 -2
  43. package/lib/mjs/Embed.js +17 -14
  44. package/lib/mjs/Formio.js +3 -0
  45. package/lib/mjs/components/_classes/component/Component.js +24 -8
  46. package/lib/mjs/components/_classes/component/fixtures/comp5.js +2 -2
  47. package/lib/mjs/components/_classes/list/ListComponent.js +5 -12
  48. package/lib/mjs/components/_classes/nested/NestedComponent.js +17 -9
  49. package/lib/mjs/components/columns/editForm/Columns.edit.display.js +1 -1
  50. package/lib/mjs/components/editgrid/EditGrid.js +11 -4
  51. package/lib/mjs/components/form/Form.js +3 -1
  52. package/lib/mjs/components/html/HTML.js +2 -2
  53. package/lib/mjs/components/html/fixtures/comp3.js +29 -0
  54. package/lib/mjs/components/html/fixtures/index.js +2 -1
  55. package/lib/mjs/components/radio/Radio.js +2 -1
  56. package/lib/mjs/components/radio/fixtures/comp10.js +21 -0
  57. package/lib/mjs/components/radio/fixtures/index.js +2 -1
  58. package/lib/mjs/components/recaptcha/ReCaptcha.js +3 -0
  59. package/lib/mjs/components/select/Select.js +83 -10
  60. package/lib/mjs/components/survey/Survey.js +10 -0
  61. package/lib/mjs/utils/conditionOperators/IsEqualTo.js +18 -1
  62. package/lib/mjs/utils/conditionOperators/IsNotEqualTo.js +4 -5
  63. package/lib/mjs/utils/utils.js +35 -0
  64. package/package.json +2 -2
  65. package/types/formio.d.ts +4 -0
@@ -17,9 +17,11 @@
17
17
 
18
18
  /*! @formio/choices.js v10.2.0 | © 2023 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
19
19
 
20
- /*! @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 */
20
+ /*! @license DOMPurify 3.0.7 | (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.7/LICENSE */
21
21
 
22
- /*! formiojs v5.0.0-rc.34 | https://unpkg.com/formiojs@5.0.0-rc.34/LICENSE.txt */
22
+ /*! @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 */
23
+
24
+ /*! formiojs v5.0.0-rc.38 | https://unpkg.com/formiojs@5.0.0-rc.38/LICENSE.txt */
23
25
 
24
26
  /**
25
27
  * @license
@@ -40,4 +42,4 @@
40
42
 
41
43
  //! moment.js
42
44
 
43
- //! version : 0.5.43
45
+ //! version : 0.5.44
@@ -401,16 +401,16 @@ dialog.fixed {
401
401
  }
402
402
 
403
403
  /*!
404
- * Bootstrap Icons v1.11.2 (https://icons.getbootstrap.com/)
405
- * Copyright 2019-2023 The Bootstrap Authors
404
+ * Bootstrap Icons v1.11.3 (https://icons.getbootstrap.com/)
405
+ * Copyright 2019-2024 The Bootstrap Authors
406
406
  * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
407
407
  */
408
408
 
409
409
  @font-face {
410
410
  font-display: block;
411
411
  font-family: "bootstrap-icons";
412
- src: url("./fonts/bootstrap-icons.woff2?7141511ac37f13e1a387fb9fc6646256") format("woff2"),
413
- url("./fonts/bootstrap-icons.woff?7141511ac37f13e1a387fb9fc6646256") format("woff");
412
+ src: url("./fonts/bootstrap-icons.woff2?dd67030699838ea613ee6dbda90effa6") format("woff2"),
413
+ url("./fonts/bootstrap-icons.woff?dd67030699838ea613ee6dbda90effa6") format("woff");
414
414
  }
415
415
 
416
416
  .bi::before,