@formio/js 5.0.0-rc.58 → 5.0.0-rc.59

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. package/dist/formio.builder.css +0 -4
  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 +0 -4
  7. package/dist/formio.form.js +26 -37
  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 +11 -3
  11. package/dist/formio.full.css +0 -4
  12. package/dist/formio.full.js +30 -41
  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 +11 -3
  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 +15 -36
  20. package/dist/formio.utils.min.js +1 -1
  21. package/dist/formio.utils.min.js.LICENSE.txt +2 -4
  22. package/lib/cjs/Formio.js +11 -0
  23. package/lib/cjs/Webform.d.ts +1 -1
  24. package/lib/cjs/Webform.js +11 -9
  25. package/lib/cjs/WebformBuilder.d.ts +1 -1
  26. package/lib/cjs/WebformBuilder.js +12 -17
  27. package/lib/cjs/components/_classes/component/Component.js +2 -2
  28. package/lib/cjs/components/button/Button.d.ts +1 -1
  29. package/lib/cjs/components/button/Button.js +7 -7
  30. package/lib/cjs/components/radio/Radio.d.ts +1 -1
  31. package/lib/cjs/components/radio/Radio.js +5 -3
  32. package/lib/cjs/components/recaptcha/ReCaptcha.d.ts +1 -8
  33. package/lib/cjs/components/recaptcha/ReCaptcha.form.d.ts +2 -1
  34. package/lib/cjs/components/recaptcha/ReCaptcha.form.js +3 -2
  35. package/lib/cjs/components/recaptcha/ReCaptcha.js +1 -8
  36. package/lib/cjs/components/recaptcha/editForm/ReCaptcha.edit.display.d.ts +33 -2
  37. package/lib/cjs/components/recaptcha/editForm/ReCaptcha.edit.display.js +13 -2
  38. package/lib/cjs/components/select/Select.js +6 -1
  39. package/lib/cjs/components/select/editForm/Select.edit.data.js +16 -2
  40. package/lib/cjs/components/select/fixtures/comp22.js +1 -1
  41. package/lib/cjs/components/select/fixtures/comp23.d.ts +58 -0
  42. package/lib/cjs/components/select/fixtures/comp23.js +49 -0
  43. package/lib/cjs/components/select/fixtures/comp24.d.ts +47 -0
  44. package/lib/cjs/components/select/fixtures/comp24.js +40 -0
  45. package/lib/cjs/components/select/fixtures/index.d.ts +3 -1
  46. package/lib/cjs/components/select/fixtures/index.js +5 -1
  47. package/lib/cjs/components/selectboxes/SelectBoxes.js +4 -1
  48. package/lib/cjs/translations/en.d.ts +1 -0
  49. package/lib/cjs/translations/en.js +1 -0
  50. package/lib/cjs/utils/utils.d.ts +6 -0
  51. package/lib/cjs/utils/utils.js +16 -2
  52. package/lib/mjs/Formio.js +11 -0
  53. package/lib/mjs/Webform.d.ts +1 -1
  54. package/lib/mjs/Webform.js +12 -10
  55. package/lib/mjs/WebformBuilder.d.ts +1 -1
  56. package/lib/mjs/WebformBuilder.js +12 -16
  57. package/lib/mjs/components/_classes/component/Component.js +3 -3
  58. package/lib/mjs/components/button/Button.d.ts +1 -1
  59. package/lib/mjs/components/button/Button.js +7 -7
  60. package/lib/mjs/components/radio/Radio.d.ts +1 -1
  61. package/lib/mjs/components/radio/Radio.js +5 -3
  62. package/lib/mjs/components/recaptcha/ReCaptcha.d.ts +1 -8
  63. package/lib/mjs/components/recaptcha/ReCaptcha.form.d.ts +2 -1
  64. package/lib/mjs/components/recaptcha/ReCaptcha.form.js +3 -2
  65. package/lib/mjs/components/recaptcha/ReCaptcha.js +1 -8
  66. package/lib/mjs/components/recaptcha/editForm/ReCaptcha.edit.display.d.ts +33 -2
  67. package/lib/mjs/components/recaptcha/editForm/ReCaptcha.edit.display.js +13 -2
  68. package/lib/mjs/components/select/Select.js +6 -1
  69. package/lib/mjs/components/select/editForm/Select.edit.data.js +16 -2
  70. package/lib/mjs/components/select/fixtures/comp22.js +1 -1
  71. package/lib/mjs/components/select/fixtures/comp23.d.ts +58 -0
  72. package/lib/mjs/components/select/fixtures/comp23.js +47 -0
  73. package/lib/mjs/components/select/fixtures/comp24.d.ts +47 -0
  74. package/lib/mjs/components/select/fixtures/comp24.js +38 -0
  75. package/lib/mjs/components/select/fixtures/index.d.ts +3 -1
  76. package/lib/mjs/components/select/fixtures/index.js +3 -1
  77. package/lib/mjs/components/selectboxes/SelectBoxes.js +4 -1
  78. package/lib/mjs/translations/en.d.ts +1 -0
  79. package/lib/mjs/translations/en.js +1 -0
  80. package/lib/mjs/utils/utils.d.ts +6 -0
  81. package/lib/mjs/utils/utils.js +13 -0
  82. package/package.json +4 -4
@@ -11,6 +11,14 @@
11
11
  * Version: 5.0.8
12
12
  */
13
13
 
14
+ /*!
15
+ * dist/inputmask
16
+ * https://github.com/RobinHerbots/Inputmask
17
+ * Copyright (c) 2010 - 2024 Robin Herbots
18
+ * Licensed under the MIT license
19
+ * Version: 5.0.9
20
+ */
21
+
14
22
  /*!
15
23
  * https://github.com/Starcounter-Jack/JSON-Patch
16
24
  * (c) 2017-2021 Joachim Wester
@@ -25,11 +33,11 @@
25
33
 
26
34
  /*! @formio/choices.js v10.2.1 | © 2024 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
27
35
 
28
- /*! @license DOMPurify 3.1.3 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.1.3/LICENSE */
36
+ /*! @license DOMPurify 3.1.5 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.1.5/LICENSE */
29
37
 
30
- /*! @license DOMPurify 3.1.4 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.1.4/LICENSE */
38
+ /*! formiojs v5.0.0-rc.59 | https://unpkg.com/formiojs@5.0.0-rc.59/LICENSE.txt */
31
39
 
32
- /*! formiojs v5.0.0-rc.58 | https://unpkg.com/formiojs@5.0.0-rc.58/LICENSE.txt */
40
+ /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
33
41
 
34
42
  /**
35
43
  * @license