@formio/js 5.1.0-dev.6048.569bfc1 → 5.1.0-dev.6049.6110ca0

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 (230) hide show
  1. package/Changelog.md +99 -310
  2. package/README.md +7 -0
  3. package/dist/formio.builder.css +1 -0
  4. package/dist/formio.builder.min.css +1 -1
  5. package/dist/formio.form.css +1 -0
  6. package/dist/formio.form.js +658 -669
  7. package/dist/formio.form.min.css +1 -1
  8. package/dist/formio.form.min.js +1 -1
  9. package/dist/formio.form.min.js.LICENSE.txt +3 -1
  10. package/dist/formio.full.css +1 -0
  11. package/dist/formio.full.js +685 -696
  12. package/dist/formio.full.min.css +1 -1
  13. package/dist/formio.full.min.js +1 -1
  14. package/dist/formio.full.min.js.LICENSE.txt +3 -1
  15. package/dist/formio.js +90 -68
  16. package/dist/formio.min.js +1 -1
  17. package/dist/formio.utils.js +103 -81
  18. package/dist/formio.utils.min.js +1 -1
  19. package/dist/formio.utils.min.js.LICENSE.txt +3 -1
  20. package/lib/cjs/Element.d.ts +2 -1
  21. package/lib/cjs/Element.js +18 -39
  22. package/lib/cjs/EventEmitter.js +2 -25
  23. package/lib/cjs/Form.js +2 -25
  24. package/lib/cjs/PDF.js +1 -1
  25. package/lib/cjs/PDFBuilder.d.ts +1 -0
  26. package/lib/cjs/PDFBuilder.js +10 -11
  27. package/lib/cjs/Webform.d.ts +2 -2
  28. package/lib/cjs/Webform.js +14 -15
  29. package/lib/cjs/WebformBuilder.d.ts +2 -1
  30. package/lib/cjs/WebformBuilder.js +62 -20
  31. package/lib/cjs/Wizard.d.ts +2 -2
  32. package/lib/cjs/Wizard.js +40 -26
  33. package/lib/cjs/WizardBuilder.js +1 -1
  34. package/lib/cjs/components/_classes/component/Component.d.ts +44 -13
  35. package/lib/cjs/components/_classes/component/Component.js +156 -95
  36. package/lib/cjs/components/_classes/component/editForm/Component.edit.conditional.js +1 -1
  37. package/lib/cjs/components/_classes/component/editForm/Component.edit.data.js +19 -0
  38. package/lib/cjs/components/_classes/component/editForm/Component.edit.logic.js +1 -1
  39. package/lib/cjs/components/_classes/component/editForm/utils.js +1 -1
  40. package/lib/cjs/components/_classes/componentModal/ComponentModal.js +1 -1
  41. package/lib/cjs/components/_classes/input/Input.js +1 -1
  42. package/lib/cjs/components/_classes/list/ListComponent.js +3 -3
  43. package/lib/cjs/components/_classes/nested/NestedComponent.form.js +13 -0
  44. package/lib/cjs/components/_classes/nested/NestedComponent.js +15 -8
  45. package/lib/cjs/components/_classes/nestedarray/NestedArrayComponent.js +1 -1
  46. package/lib/cjs/components/_classes/nesteddata/NestedDataComponent.d.ts +0 -2
  47. package/lib/cjs/components/_classes/nesteddata/NestedDataComponent.js +1 -12
  48. package/lib/cjs/components/address/Address.d.ts +8 -0
  49. package/lib/cjs/components/address/Address.js +32 -9
  50. package/lib/cjs/components/address/editForm/Address.edit.display.d.ts +4 -0
  51. package/lib/cjs/components/address/editForm/Address.edit.display.js +1 -0
  52. package/lib/cjs/components/address/editForm/Address.edit.provider.js +8 -8
  53. package/lib/cjs/components/alert/Alert.js +1 -1
  54. package/lib/cjs/components/button/Button.d.ts +1 -1
  55. package/lib/cjs/components/button/Button.js +7 -11
  56. package/lib/cjs/components/checkbox/Checkbox.js +1 -1
  57. package/lib/cjs/components/container/Container.js +1 -1
  58. package/lib/cjs/components/content/editForm/Content.edit.display.js +8 -0
  59. package/lib/cjs/components/currency/Currency.js +1 -1
  60. package/lib/cjs/components/currency/editForm/Currency.edit.display.js +12 -0
  61. package/lib/cjs/components/datagrid/DataGrid.js +5 -1
  62. package/lib/cjs/components/datetime/DateTime.d.ts +1 -1
  63. package/lib/cjs/components/datetime/DateTime.js +15 -13
  64. package/lib/cjs/components/datetime/editForm/DateTime.edit.validation.d.ts +66 -15
  65. package/lib/cjs/components/datetime/editForm/DateTime.edit.validation.js +68 -47
  66. package/lib/cjs/components/day/Day.js +2 -2
  67. package/lib/cjs/components/day/editForm/Day.edit.display.js +8 -0
  68. package/lib/cjs/components/editgrid/EditGrid.js +4 -2
  69. package/lib/cjs/components/editgrid/editForm/EditGrid.edit.display.js +1 -1
  70. package/lib/cjs/components/email/editForm/Email.edit.display.js +12 -0
  71. package/lib/cjs/components/fieldset/editForm/Fieldset.edit.display.js +8 -0
  72. package/lib/cjs/components/file/File.js +6 -2
  73. package/lib/cjs/components/file/editForm/File.edit.file.d.ts +13 -0
  74. package/lib/cjs/components/file/editForm/File.edit.file.js +1 -0
  75. package/lib/cjs/components/form/Form.d.ts +0 -1
  76. package/lib/cjs/components/form/Form.js +31 -23
  77. package/lib/cjs/components/form/editForm/Form.edit.form.js +4 -3
  78. package/lib/cjs/components/hidden/editForm/Hidden.edit.display.js +8 -0
  79. package/lib/cjs/components/html/editForm/HTML.edit.display.js +8 -0
  80. package/lib/cjs/components/number/Number.js +1 -1
  81. package/lib/cjs/components/number/editForm/Number.edit.display.js +12 -0
  82. package/lib/cjs/components/panel/Panel.js +1 -1
  83. package/lib/cjs/components/password/editForm/Password.edit.display.js +13 -1
  84. package/lib/cjs/components/phonenumber/PhoneNumber.form.js +9 -1
  85. package/lib/cjs/components/radio/Radio.d.ts +8 -0
  86. package/lib/cjs/components/radio/Radio.js +16 -6
  87. package/lib/cjs/components/recaptcha/editForm/ReCaptcha.edit.display.js +1 -1
  88. package/lib/cjs/components/select/Select.d.ts +1 -0
  89. package/lib/cjs/components/select/Select.js +21 -5
  90. package/lib/cjs/components/select/editForm/Select.edit.data.d.ts +68 -110
  91. package/lib/cjs/components/select/editForm/Select.edit.data.js +2 -37
  92. package/lib/cjs/components/selectboxes/SelectBoxes.d.ts +6 -0
  93. package/lib/cjs/components/selectboxes/SelectBoxes.js +7 -1
  94. package/lib/cjs/components/signature/Signature.js +1 -1
  95. package/lib/cjs/components/survey/Survey.js +2 -2
  96. package/lib/cjs/components/tabs/editForm/Tabs.edit.display.js +8 -0
  97. package/lib/cjs/components/tags/Tags.js +1 -1
  98. package/lib/cjs/components/textarea/TextArea.js +10 -2
  99. package/lib/cjs/components/textarea/editForm/TextArea.edit.display.js +12 -0
  100. package/lib/cjs/components/textfield/TextField.js +9 -32
  101. package/lib/cjs/components/time/Time.js +1 -1
  102. package/lib/cjs/components/unknown/Unknown.form.d.ts +2 -1
  103. package/lib/cjs/components/unknown/Unknown.form.js +13 -9
  104. package/lib/cjs/components/url/editForm/Url.edit.display.js +12 -0
  105. package/lib/cjs/components/well/editForm/Well.edit.display.js +8 -0
  106. package/lib/cjs/formio.form.js +5 -5
  107. package/lib/cjs/providers/storage/uploadAdapter.js +8 -6
  108. package/lib/cjs/translations/en.d.ts +1 -234
  109. package/lib/cjs/translations/en.js +4 -2
  110. package/lib/cjs/utils/Evaluator.d.ts +20 -6
  111. package/lib/cjs/utils/Evaluator.js +38 -15
  112. package/lib/cjs/utils/builder.js +5 -5
  113. package/lib/cjs/utils/conditionOperators/IsEqualTo.js +3 -3
  114. package/lib/cjs/utils/formUtils.d.ts +2 -2
  115. package/lib/cjs/utils/index.d.ts +169 -2
  116. package/lib/cjs/utils/index.js +22 -2
  117. package/lib/cjs/utils/utils.d.ts +31 -37
  118. package/lib/cjs/utils/utils.js +80 -135
  119. package/lib/cjs/widgets/CalendarWidget.d.ts +1 -8
  120. package/lib/cjs/widgets/CalendarWidget.js +19 -40
  121. package/lib/mjs/Element.d.ts +2 -1
  122. package/lib/mjs/Element.js +11 -9
  123. package/lib/mjs/EventEmitter.js +2 -2
  124. package/lib/mjs/Form.js +1 -1
  125. package/lib/mjs/PDF.js +1 -1
  126. package/lib/mjs/PDFBuilder.d.ts +1 -0
  127. package/lib/mjs/PDFBuilder.js +9 -10
  128. package/lib/mjs/Webform.d.ts +2 -2
  129. package/lib/mjs/Webform.js +12 -13
  130. package/lib/mjs/WebformBuilder.d.ts +2 -1
  131. package/lib/mjs/WebformBuilder.js +53 -13
  132. package/lib/mjs/Wizard.d.ts +2 -2
  133. package/lib/mjs/Wizard.js +38 -24
  134. package/lib/mjs/WizardBuilder.js +1 -1
  135. package/lib/mjs/components/_classes/component/Component.d.ts +44 -13
  136. package/lib/mjs/components/_classes/component/Component.js +129 -45
  137. package/lib/mjs/components/_classes/component/editForm/Component.edit.conditional.js +1 -1
  138. package/lib/mjs/components/_classes/component/editForm/Component.edit.data.js +19 -0
  139. package/lib/mjs/components/_classes/component/editForm/Component.edit.logic.js +1 -1
  140. package/lib/mjs/components/_classes/component/editForm/utils.js +1 -1
  141. package/lib/mjs/components/_classes/componentModal/ComponentModal.js +1 -1
  142. package/lib/mjs/components/_classes/input/Input.js +1 -1
  143. package/lib/mjs/components/_classes/list/ListComponent.js +3 -3
  144. package/lib/mjs/components/_classes/nested/NestedComponent.form.js +13 -0
  145. package/lib/mjs/components/_classes/nested/NestedComponent.js +15 -8
  146. package/lib/mjs/components/_classes/nestedarray/NestedArrayComponent.js +1 -1
  147. package/lib/mjs/components/_classes/nesteddata/NestedDataComponent.d.ts +0 -2
  148. package/lib/mjs/components/_classes/nesteddata/NestedDataComponent.js +1 -12
  149. package/lib/mjs/components/address/Address.d.ts +8 -0
  150. package/lib/mjs/components/address/Address.js +32 -9
  151. package/lib/mjs/components/address/editForm/Address.edit.display.d.ts +4 -0
  152. package/lib/mjs/components/address/editForm/Address.edit.display.js +1 -0
  153. package/lib/mjs/components/address/editForm/Address.edit.provider.js +8 -8
  154. package/lib/mjs/components/alert/Alert.js +1 -1
  155. package/lib/mjs/components/button/Button.d.ts +1 -1
  156. package/lib/mjs/components/button/Button.js +7 -10
  157. package/lib/mjs/components/checkbox/Checkbox.js +1 -1
  158. package/lib/mjs/components/container/Container.js +1 -1
  159. package/lib/mjs/components/content/editForm/Content.edit.display.js +8 -0
  160. package/lib/mjs/components/currency/Currency.js +1 -1
  161. package/lib/mjs/components/currency/editForm/Currency.edit.display.js +12 -0
  162. package/lib/mjs/components/datagrid/DataGrid.js +5 -1
  163. package/lib/mjs/components/datetime/DateTime.d.ts +1 -1
  164. package/lib/mjs/components/datetime/DateTime.js +15 -13
  165. package/lib/mjs/components/datetime/editForm/DateTime.edit.validation.d.ts +66 -15
  166. package/lib/mjs/components/datetime/editForm/DateTime.edit.validation.js +68 -47
  167. package/lib/mjs/components/day/Day.js +2 -2
  168. package/lib/mjs/components/day/editForm/Day.edit.display.js +8 -0
  169. package/lib/mjs/components/editgrid/EditGrid.js +4 -2
  170. package/lib/mjs/components/editgrid/editForm/EditGrid.edit.display.js +1 -1
  171. package/lib/mjs/components/email/editForm/Email.edit.display.js +12 -0
  172. package/lib/mjs/components/fieldset/editForm/Fieldset.edit.display.js +8 -0
  173. package/lib/mjs/components/file/File.js +6 -2
  174. package/lib/mjs/components/file/editForm/File.edit.file.d.ts +13 -0
  175. package/lib/mjs/components/file/editForm/File.edit.file.js +1 -0
  176. package/lib/mjs/components/form/Form.d.ts +0 -1
  177. package/lib/mjs/components/form/Form.js +30 -23
  178. package/lib/mjs/components/form/editForm/Form.edit.form.js +3 -2
  179. package/lib/mjs/components/hidden/editForm/Hidden.edit.display.js +8 -0
  180. package/lib/mjs/components/html/editForm/HTML.edit.display.js +8 -0
  181. package/lib/mjs/components/number/Number.js +1 -1
  182. package/lib/mjs/components/number/editForm/Number.edit.display.js +12 -0
  183. package/lib/mjs/components/panel/Panel.js +1 -1
  184. package/lib/mjs/components/password/editForm/Password.edit.display.js +13 -1
  185. package/lib/mjs/components/phonenumber/PhoneNumber.form.js +9 -1
  186. package/lib/mjs/components/radio/Radio.d.ts +8 -0
  187. package/lib/mjs/components/radio/Radio.js +16 -6
  188. package/lib/mjs/components/recaptcha/editForm/ReCaptcha.edit.display.js +1 -1
  189. package/lib/mjs/components/select/Select.d.ts +1 -0
  190. package/lib/mjs/components/select/Select.js +21 -5
  191. package/lib/mjs/components/select/editForm/Select.edit.data.d.ts +68 -110
  192. package/lib/mjs/components/select/editForm/Select.edit.data.js +2 -37
  193. package/lib/mjs/components/selectboxes/SelectBoxes.d.ts +6 -0
  194. package/lib/mjs/components/selectboxes/SelectBoxes.js +7 -1
  195. package/lib/mjs/components/signature/Signature.js +1 -1
  196. package/lib/mjs/components/survey/Survey.js +2 -2
  197. package/lib/mjs/components/tabs/editForm/Tabs.edit.display.js +8 -0
  198. package/lib/mjs/components/tags/Tags.js +1 -1
  199. package/lib/mjs/components/textarea/TextArea.js +10 -2
  200. package/lib/mjs/components/textarea/editForm/TextArea.edit.display.js +12 -0
  201. package/lib/mjs/components/textfield/TextField.js +3 -3
  202. package/lib/mjs/components/time/Time.js +1 -1
  203. package/lib/mjs/components/unknown/Unknown.form.d.ts +2 -1
  204. package/lib/mjs/components/unknown/Unknown.form.js +13 -9
  205. package/lib/mjs/components/url/editForm/Url.edit.display.js +12 -0
  206. package/lib/mjs/components/well/editForm/Well.edit.display.js +8 -0
  207. package/lib/mjs/formio.form.js +3 -3
  208. package/lib/mjs/providers/storage/uploadAdapter.js +8 -6
  209. package/lib/mjs/translations/en.d.ts +1 -234
  210. package/lib/mjs/translations/en.js +6 -47
  211. package/lib/mjs/utils/Evaluator.d.ts +20 -6
  212. package/lib/mjs/utils/Evaluator.js +31 -13
  213. package/lib/mjs/utils/builder.js +1 -1
  214. package/lib/mjs/utils/conditionOperators/IsEqualTo.js +1 -1
  215. package/lib/mjs/utils/formUtils.d.ts +2 -2
  216. package/lib/mjs/utils/index.d.ts +169 -2
  217. package/lib/mjs/utils/index.js +18 -1
  218. package/lib/mjs/utils/utils.d.ts +31 -37
  219. package/lib/mjs/utils/utils.js +72 -109
  220. package/lib/mjs/widgets/CalendarWidget.d.ts +1 -8
  221. package/lib/mjs/widgets/CalendarWidget.js +19 -40
  222. package/package.json +8 -6
  223. package/lib/cjs/i18n.d.ts +0 -13
  224. package/lib/cjs/i18n.js +0 -19
  225. package/lib/cjs/utils/i18n.d.ts +0 -19
  226. package/lib/cjs/utils/i18n.js +0 -120
  227. package/lib/mjs/i18n.d.ts +0 -13
  228. package/lib/mjs/i18n.js +0 -14
  229. package/lib/mjs/utils/i18n.d.ts +0 -19
  230. package/lib/mjs/utils/i18n.js +0 -112
package/Changelog.md CHANGED
@@ -4,122 +4,136 @@ All notable changes to this project will be documented in this file
4
4
  The format is based on [Keep a Changelog](http://keepachangelog.com/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
- ## [Unreleased: 5.1.0-rc.1]
7
+ ## [Unreleased: 5.2.0-rc.1]
8
8
  ### Changed
9
9
  - FIO-8270: panel component closing on logic event trigger
10
10
  - FIO-8575: Added ability to reload google maps library with correct API key
11
11
  - Fixing the submitOnEnter where it will show the loader for the submit
12
12
  - FIO-8126: Fixed select component emitting blur on click
13
13
  - FIO-8304: allow for multivalue masks to have blank input mask option
14
- - 5.x - FIO-8426: changes required for eSignature
15
- -
16
14
  - FIO-8596: added the editGridEditRow and editGridOpenModal events for editGrid
17
- - FIO-7733 remove form min height
18
- - FIO-8414 | FIO-8403 | FIO-8389: Fixes 5x validations and conditionals for array data components
19
- - FIO-8639 fixed error when adding address component
20
15
  - FIO-8461: Fixes checkbox with radio input type not present in submission on 5.x renderer
21
- - FIO-8645: day component required validation error not correct
22
- - FIO-8688 fixed 'global is not defined' error message
23
- - FIO-7478: fixed and isse where dataGrod reordering does not work in 5.x and fixed reordering with select component
24
- - FIO-8633 fixed icon name for Edit Grid
25
16
  - FIO-8457: set pristine flag when datagrid reorders rows
26
- - FIO-8716: fixed unsavedRows validation for Edit Grid
27
- - FIO-8647,8721: validation not triggered for each row after the first one in data and edit grid
28
- - FIO-8720: fixed errors occurring with valid time and number components
29
17
  - FIO-8719: fixed validation for nested wizard fields
30
18
  - FIO-8627: Fixed the email table generation for nested array components
31
- - FIO-5748: Fixed preview not working correctly after hiding/showing it
32
- - FIO-8759: fixed validation for the default value component
33
- - FIO-8765: fixed an issue where dataMap thows an error
34
- - FIO-8783: Fixed the issue when validation messages disappear after collapse and expand the panel
35
- - FIO-8072: Added conditional operators for select component with number data type
36
- - FIO-8752: coerced keyboard actions to a boolean value
37
19
  - FIO-8656: lazy load dragula
38
- - FIO-8570: fixed thousandSeparator problem and decimal symbol problem
39
- - FIO-8710: fixed incorrect Components import that causes errors when interacting with form components
40
20
  - FIO-8801: fixed submission metadata nullish
41
21
  - FIO-8809: fixed runtime error in setForm when passing string argument to Formio.builder
42
- - FIO-8684: Fixes cannot attach more than one component to the PDF form
43
22
  - FIO-8719: fixed validation for Data Grid component inside nested wizard
44
- - FIO-8621: added error event on file upload
45
- - FIO-8799 updated conditional tab for Time Component
46
23
  - FIO-6495: fixed an issue where revision ID of nested form does not transfer from stage to stage
47
- - FIO-8797: set empty day component value to the empty string
48
- - FIO-8729: fixed an issue where the rollback to default templates does not work correctly and unknown template message is shown
49
24
  - FIO-8668: fixed an issue where reportingUI form is available is the existing resources in builder
50
25
  - FIO-8714: Bugfix: allow paths for valueProperty
51
- - FIO-8795: fixed selected data after removing row
52
26
  - FIO-8771: Included File Component in Review Page Component
53
- - FIO-8789: Fixing issues where the wrong urls are used for CDN on remote env
54
27
  - FIO-7524: Added back aspect ratio option to Signature
55
- - FIO-8798: updated shape of the data of day component with hidden fields
56
- - FIO-8760: Fixes an issue where nested form is not getting all the options
57
- - FIO-8706: allow data interpolation for data source in components
58
- - FIO-8849: fixed an issue where value of the selctboxes/radio with URL data source are not available in simple conditons UI
59
- - FIO-8874: fixed conditional value field for time component
60
- - FIO-8931: Disable file synchronization feature
61
28
  - FIO-8458: removing row from data grid triggers save draft action
62
- - FIO-8912: consolidate normalization for multivalue components
63
- - FIO-8423: change default parent tag from p to div
64
29
  - FIO-8375: allow date time to have manual input
65
- - FIO-8912: fix normalization in submission
66
- - FIO-8912: updated to model types
67
- - FIO-8972: fixed display of select componet with custom dataSrc on Data Tab
68
- - FIO-8954: fixed previously selected option is displayed in metadata with data source = url
69
- - FIO-8986: fixed setting up of default value with hidden fields
70
- - FIO-8938: fixed label display for multiple select with dataSrc resource
71
- - FIO-8962: fixed screen shifting when validation errors pop up in an embedded Wizard form
72
- - FIO-8234/FIO-7195: Fixes an issue where value properties are shown instead of labels for Select component with Resource/URL data sources in read only mode and for modal preview
73
- - FIO-8986: fixed setting default value for day component with hidden day and month
74
- - FIO-8719: fixed error message display for nested wizard components
75
- - FIO-9086: time component with default value validation fix
76
- - FIO-9080 checkbox radio validation error
77
- - FIO-9147: fixed an issue where the simple conditionally visible component is not validated on change
78
- - FIO-9056: Fix enabling multiple values for address component
79
- - FIO-9059: fixed an issue where the value for textarea with json datatype is not normalized and set correctly
80
- - FIO-9075: fixed an issue where the form cannot be resubmitted if it has server errors
81
- - FIO-9097 fixed navigation through the errors list
82
30
  - FIO-8553: Replaced flatpickr-formio dependency with standard flatpickr
83
31
  - FIO-8569: Fix sdk link
84
- - FIO-8948-8950: fixed an issue where radio and select boxes with url type do not display in PDF download
85
- - FIO-9034 fixed creating extra submit button
86
- - FIO-8908: Fix error message appears when saving not fully filled conditionals tab
87
- - FIO-8951: Updated conditions for selectData and added logic to clear selectData
88
32
  - FIO-8556: Test coverage metrics
89
- - FIO-9010: tighten up multivalue normalization by covering 'any' type models
90
- - FIO-9010 fixed disappearance of components inside Columns after editing
91
- - FIO-8991: fixed an issue where select value (when it is array with numbers) does not display in submission grid
92
33
  - Fixed an issue where the 'root' may be the component that does not have a getComponent method
93
- - FIO-8920 fixed errors list for the form with nested wizard
94
- - FIO-8914: fixed an issue where errors list doesnot appear when submitting a PDF form
95
- - FIO-8990: fixed incorrect moment export
96
- - FIO-7778: validation link does not open modal
97
- - FIO-8900-8899: made only 2 operators available for address component in conditionals ui and fixed setting an empty value for address
98
- - FIO-8914: fixed an issue where select url does not work properly when url value has whitespaces at the end
99
- - FIO-8970 resolved failing test
100
- - FIO-8921: fixed an issue where newly created PDF-form cannot be saved in builder after adding some components in it
101
- - FIO-8866-8864: fixed simple conditions operators for recaptcha
102
- - FIO-9158: fixed an issue where Password component error message persists to displayed in Edit page
103
- - FIO-9126: fixed display of value for Day component with hidden fields
104
- - FIO-9158: fixed password component error in Edit page
105
- - FIO-9127 fixed saving empty values for Day component with hidden fields
106
- - FIO-9153-9154: fixed console errors when navigating tagpad validation errors
107
- - FIO-9127 fixed saving an empty value for day component after deleting values
108
- - FIO-9120: Fix issue with unchecking radio default value
109
- - FIO-7195/FIO-8234: Fixes an issue where Select renders value properties instead of labels in DataTable
110
- - FIO-7195: Fixes an issue where Radio/SelectBoxes will show values instead of labels on View tab and in DataTable
111
- - FIO-9217 Fix: allow moment.js datetime custom default values in calendar widget-text field components
112
- - FIO-8677: Fixes an issue where its possible to draweon Signature on the View tab of PDF form
113
34
  - FIO-9314: made select data property a hidden component and changed hidden component empty value to null
114
- - FIO-9347: fixed select preview issue in form builder
115
35
  - FIO-8518: fixed adding checkbox with radio type to pdf design page
116
36
  - FIO-9418: Fixed the edit grid errors to show the outer error wrapper if any fields in the edit grid are invalid
37
+ - FIO-9532: fixed an issue where select components shows values instead of labels in email
38
+ - FIO-9758: fixed an issue where interpolated content data is not displayed in PDF download
39
+ - FIO-8548: Update choices.js to 11 version
40
+ - FIO-9569: Fixes an issue where Wizard will paste a copy of the current page instead of the copied one
41
+ - FIO-8409: added serverOverride setting for components
42
+ - Added test for FIO-9020
43
+ - FIO-8208: Ensure that all file uploads alter the request options before sending the fetch requests
44
+ - FIO-9985 fixed appearing extra option with an empty key
45
+ - FIO-9847: time on textfield only changes when timezone included
46
+ - FIO-9937: Fixed edge cases for clearOnHide with nested forms + new test cases
47
+ - FIO-9884: Fixed file upload plugin for ckeditor
48
+ - FIO-9941 fixed errors list translations
49
+ - FIO-9848 Fixed readonly textarea for screen readers
50
+ - FIO-9854 fixed appearance of the custom component edit fields
51
+ - FIO-9510: Fixed the issue with multiple survey components
52
+ - FIO-9872 fixed opening modal edit window for custom component
53
+ - FIO-9851 fixed appearing configurable component options
54
+ - FIO-9855 removed deprecated settings
55
+ - FIO-9866: added fileUploadingEnd and fielUplaodingStart events back
56
+ - FIO-9842 removed extra options
57
+ - FIO-9846 removed encrypted option for EFB
58
+ - FIO-9837: cant approve valid api key
59
+ - FIO-9873: Fixed issues with how default values are set within components to ensure they are set properly at the right time in the lifecycle
60
+ - updated i18n typedef
61
+ - FIO-9020: Made executeFormController to be called once only for Webform instance
62
+ - FIO-9669: added token to the list of the available variables for advanced conditions
63
+ - FIO-9614: fixed an issue where min and max day builder setting changes its value after saving
64
+ - FIO-9207: Fix image preview for file component when using google drive
65
+ - FIO-9156 fixed the display of Captcha component for nested forms
66
+ - FIO-9592: Add emitting form display change event
67
+ - FIO-8372 fixed setting date after selecting and erasing entire date
68
+ - fix select styling
69
+ - FIO-7954: fixed translations
70
+ - update copy around save as reference
71
+ - FIO-9506: fixed the return type of the render function
72
+ - FIO-8727: created test for FIO-8727
73
+ - FIO-9170 Added a fix for default templates to include custom components
74
+ - FIO-8862: fixed unnecessary redrawings of the value component in conditional ui
75
+ - FIO-9339: fixed an issue where preview shows an error when editing component JSON
76
+ - FIO-9027 fixed display of the overridden values on download page
77
+ -
117
78
 
118
- # Change Log
119
- All notable changes to this project will be documented in this file
120
79
 
121
- The format is based on [Keep a Changelog](http://keepachangelog.com/)
122
- and this project adheres to [Semantic Versioning](http://semver.org/).
80
+ ## 5.1.2-rc.1
81
+ ### Changed
82
+ - Updated @formio/core@2.4.1-rc.3
83
+ - Updated @formio/bootstrap@3.1.1-rc.1
84
+ - FIO-9217 Fix: allow moment.js datetime custom default values in calendar widget-text field components
85
+ - FIO-8677: Fixes an issue where its possible to draweon Signature on the View tab of PDF form
86
+ - FIO-9908: fixed an issue where condtion does not work properly if 'show' setting is a string
87
+ - FIO-8706: allow data interpolation for data source in components
88
+ - Fix Scientific notation allowing it by default
89
+ - FIO-9992: check for server when triggering the captcha
90
+ - FIO-9902-9878: fixed an issue where PDF is not loaded for the form with hidden/conditionally hidden select
91
+
92
+ ## 5.1.0
93
+ ### Changed
94
+ - Official Release
95
+ - Updated @formio/bootstrap@3.1.0
96
+ - Updated @formio/core@2.4.0
97
+ - FIO-9931: fixed an issue wehre min and max date settings are not saved in builder
98
+ - FIO-9921: fix issue with local paths not being propogated to edit grid
99
+ - FIO-9933: Fixed the default value for the Lazy Load option for Select dropdowns.
100
+ - FIO-9888: Fixed issue where the noDefaults flag would skip defaults even for calculations.
101
+ - FIO-9913: Fixed problems where conditionally hidden fields would reset when their parents are hidden but have clearOnHide set to false.
102
+ - FIO-9912: Fixed issue where the default value of the address component would clear and not reset.
103
+ - FIO-9889: added backwards compatibility checks for provider options
104
+ - FIO-9721 Added Submit button as available trigger option of captcha inside Wizard
105
+ - FIO-9838: fix rendering an unknown component on the builder causing error
106
+ - FIO-9830 fixed captcha trigger for wizard
107
+ - Fixing issues with the data map and unnecessary reset model functions
108
+ - FIO-9807: Refactor the conditionally hidden check to be performed at runtime.
109
+ - FIO-9766: Fixing issues with conditionally hidden fields and state being stored…
110
+ - FIO-9811 fixed drag and drop for custom component
111
+ - FIO-9815: fixed an issue where nested form inside wizard does not highlight validation errors
112
+ - FIO-9720 fixed typo
113
+ - FIO-9720 fixed triggering captcha for wizard
114
+ - FIO-9751 updated modal edit window for components with hidden tabs on builder mode
115
+ - FIO-9767: fixed an issue where the nested form data is not submitted when clearOnHide is disabled
116
+ - FIO-9640: Fix date components have wrong timezone in email
117
+ - FIO-9720 fixet trigger captcha component inside layout component
118
+ - FIO-9385 Preserve non-default widget settings after evaluating field logic
119
+ - FIO-9515 Fixed Edit grid conditional values not displayed in Edit sub…
120
+ - Revert choices back to 10.2.1
121
+ - FIO-9620: update copy on Form component editForm
122
+ - Updated @formio/choices.js@11.0.3-rc.1
123
+ - FIO-9548:fixed setting of form._data for NestedDataComponent into forms with noDefaults option
124
+ - FIO-8724: Fixed firing change event for DataGrid component
125
+ - FIO-9511: fixed day min/max validation message
126
+ - FIO-9499 Component: Check if ref is instance of NodeList on detach
127
+ - FIO-9482 fixed setting Formio version
128
+ - FIO-9480: ensure parent references are stable before subform creation
129
+ - FIO-9527: Fixed address component with multiple values
130
+ - FIO-9517: nested forms with lazy load validation fix
131
+ - FIO-9552: Fixing the embed code to export the Formio construct
132
+ - FIO-9506: fixed the return type of the render function
133
+ - FIO-9159: change clearOnHide behavior to track conditionally hidden state rather than mere visibility
134
+ - 5.x - FIO-8426: changes required for eSignature
135
+ - Refactor the component path system to ensure we are always referencing the correct path.
136
+ - FIO-9312: fixed an issue where conditionals does not work well when there are several components with the same key/path
123
137
 
124
138
  ## 5.0.0
125
139
  ### Changed
@@ -344,78 +358,32 @@ Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/e
344
358
  - With the 5.x renderer, all templates are now stored within a separate repo, and are included as a dependency for this renderer.
345
359
 
346
360
 
347
- ## 5.0.0-rc.102
348
- ### Changed
349
- - Updated @formio/core@2.3.0-rc.23
350
-
351
- ## 5.0.0-rc.101
352
- ### Changed
353
361
  - FIO-9361: Fix showing extra submit buttons
354
362
  - FIO-9327: Fixed an issue where select boxes default values would become messed up during builder mode.
355
363
  - FIO-9350 Wizard: Show form-level errors after failed submission on subsequent form interaction when current page has no errors
356
-
357
- ## 5.0.0-rc.100
358
- ### Changed
359
364
  - FIO-8423: change default parent tag from p to div
360
365
  - FIO-9347: Fixed select preview issue in form builder
361
366
  - FIO-9329: update tooltip for validateWhenHidden
362
367
  - FIO-9386: fixed an issue where configured logic prevents the component settings saving because of validation configured in logic
363
368
  - FIO-9360: validate current page only on wizard change
364
-
365
- ## 5.0.0-rc.99
366
- ### Changed
367
- - Updated @formio/core@2.3.0-rc.22
368
369
  - FIO-9329: validateWhenHidden respects both conditionally hidden and intentionally hidden
369
370
  - FIO-9354: Fix custom translation not applied to error message
370
-
371
- ## 5.0.0-rc.98
372
- ### Changed
373
371
  - FIO-9280 fixed validation for select boxes with valid values and when value property is not set
374
-
375
- ## 5.0.0-rc.97
376
- ### Changed
377
- - Updated @formio/core@2.3.0-rc.21
378
372
  - FIO-9290: fixed an issue where infinite loader is shown when radio/selectboxes with url type is failed to load options
379
373
  - FIO-9280 fixed value property validation
380
-
381
- ### Changed
382
374
  - FIO-9283: fixed an issue where select with resource dataSrc does not display values in readOnly mode
383
-
384
- ## 5.0.0-rc.96
385
- ### Changed
386
- - Updated @formio/core@2.3.0-rc.18
387
375
  - FIO-9259 fixed errors list for parent wizard with nested wizard
388
376
  - FIO-9176: updated instance.component.path
389
377
  - FIO-9205: fixed labels in select filter feature
390
-
391
- ## 5.0.0-rc.95
392
- ### Changed
393
- - Updated @formio/core@2.3.0-rc.17
394
378
  - FIO-9205: fixed an issue where Select Filter feature does not work
395
379
  - FIO-9173: Allow Scientific Notations
396
380
  - FIO-9247 fixed triggering custom validation inside Edit Grid
397
-
398
-
399
- ## 5.0.0-rc.94
400
- ### Changed
401
- - Updated @formio/bootstrap@3.0.0-rc.41
402
- - Updated @formio/core@2.3.0-rc.16
403
-
404
- ## 5.0.0-rc.93
405
- ### Changed
406
- - Updated @formio/bootstrap@3.0.0-rc.40
407
- - Updated @formio/core@2.3.0-rc.14
408
381
  - FIO-9197: Fix Day component triggered required validation when loading form
409
382
  - FIO-7195: Fixes an issue where Radio/SelectBoxes will show values instead of labels on View tab and in DataTable
410
383
  - FIO-7778: validation link does not open modal
411
384
  - FIO-9072: removed setting dirty flag to true on set submission and changed tests
412
385
  - FIO-9189: moved some methods to core
413
386
  - FIO-9228: fixed an issue where error messages are duplicated in error list for nested wizard
414
-
415
- ## 5.0.0-rc.92
416
- ### Changed
417
- - Updated @formio/bootstrap@3.0.0-rc.39
418
- - Updated @formio/core@2.3.0-rc.13
419
387
  - FIO-9196: Fixed issue with getting default value instead of requested value in Day component
420
388
  - FIO-9208: Changing the links to go to help.form.io instead of github page.
421
389
  - FIO-8510: changes in nested forms trigger modified change in the parent
@@ -423,23 +391,10 @@ Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/e
423
391
  - FIO-9186: added test for the issue reated to validation inside layout components insode editGrid
424
392
  - FIO-9184: Fixed edit grid row validation for new row
425
393
  - FIO-9144 Fix cursor jump in number component
426
-
427
- ## 5.0.0-rc.91
428
- ### Changed
429
- - Updated @formio/bootstrap@3.0.0-rc.38
430
- - Updated @formio/core@2.3.0-rc.10
431
394
  - FIO-7195/FIO-8234: Fixes an issue where Select renders value properties instead of labels in DataTable
432
395
  - FIO-9158: fixed password component error in Edit page
433
396
  - FIO-9153: fixed an issue where tagpad components skip front-end validation before submission
434
-
435
- ## 5.0.0-rc.90
436
- ### Changed
437
- - Updated @formio/core@2.3.0-rc.9
438
397
  - FIO-9127 fixed saving empty values for Day component with hidden fields
439
-
440
- ## 5.0.0-rc.89
441
- ### Changed
442
- - Updated @formio/core@2.3.0-rc.8
443
398
  - FIO-8914: fixed an issue where select url does not work properly when url value has whitespaces at the end
444
399
  - FIO-8990: fixed incorrect moment export
445
400
  - FIO-9056: Fix enabling multiple values for address component
@@ -452,60 +407,22 @@ Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/e
452
407
  - FIO-8948-8950: fixed an issue where radio and select boxes with url type do not display in PDF download
453
408
  - FIO-9080 checkbox radio validation error
454
409
  - FIO-9148: Fixed duplicated revision versions
455
-
456
- ## 5.0.0-rc.88
457
- ### Changed
458
- - Updated @formio/core@2.3.0-rc.7
459
-
460
- ## 5.0.0-rc.87
461
- ### Changed
462
410
  - FIO-9059: fixed an issue where the value for textarea with json datatype is not normalized and set correctly
463
-
464
- ## 5.0.0-rc.86
465
- ### Changed
466
- - Updated @formio/core@2.3.0-rc.6
467
-
468
411
  - FIO-9075: fixed an issue where the form cannot be resubmitted if it has server errors
469
412
  - FIO-8414 | FIO-8403 | FIO-8389: Fixes 5x validations and conditionals for array data components
470
413
  - FIO-9097 fixed navigation through the errors list
471
-
472
- ## 5.0.0-rc.85
473
- ### Changed
474
- - Updated @formio/core@2.3.0-rc.4
475
-
476
- ### Changed
477
414
  - FIO-8719 fixed error message display for nested wizard components
478
415
  - FIO-8962 Fixed screen shifting when validation errors pop up in an embedded Wizard form
479
416
  - Bugfix: allow paths for valueProperty
480
-
481
- ## 5.0.0-rc.84
482
-
483
- ## 5.0.0-rc.83
484
- ### Changed
485
417
  - FIO-9010: tighten up multivalue normalization by covering 'any' type models
486
418
  - FIO-8986 fixed setting default value for day ,component with hidden day and month
487
419
  - FIO-9034 fixed creating extra submit button
488
-
489
- ## 5.0.0-rc.82
490
- ### Changed
491
420
  - FIO-8234/FIO-7195: Fixes an issue where value properties are shown instead of labels for Select component with Resource/URL data sources in read only mode and for modal preview
492
-
493
- ## 5.0.0-rc.81
494
- ### Changed
495
- - Updated @formio/core@2.3.0-rc.3
496
421
  - FIO-8991: fixed an issue where select value (when it is array with numbers) does not display in submission grid
497
422
  - FIO-8951: Updated conditions for selectData and added logic to clear selectData
498
423
  - FIO-9010 fixed disappearance of components inside Columns after editing
499
424
  - FIO-8938 fixed label display for multiple select with dataSrc resource
500
425
  - FIO-8908: Fix error message appears when saving not fully filled conditionals tab
501
-
502
- ## 5.0.0-rc.80
503
- ### Changed
504
- - Updated @formio/core@2.2.3-rc.2
505
-
506
- ## 5.0.0-rc.79
507
- ### Changed
508
- - Updated @formio/core@2.2.3-rc.1
509
426
  - FIO-8914: fixed an issue where errors list doesnot appear when submitting a PDF form
510
427
  - FIO-8954 previously selected option is displayed in metadata with data source = url
511
428
  - FIO-8920 fixed errors list for the form with nested wizard
@@ -514,64 +431,27 @@ Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/e
514
431
  - Fixed an issue where the 'root' may be the component that does not have a getComponent method
515
432
  - FIO-8972 fixed display of select componet with custom dataSrc on Data Tab
516
433
  - FIO-8912 update to model types
517
-
518
- ## 5.0.0-rc.78
519
- ### Changed
520
434
  - FIO-8072: Added conditional operators for select component with number data type
521
-
522
- ## 5.0.0-rc.77
523
- ### Changed
524
- - Updated @formio/core@2.2.2
525
435
  - FIO-8900-8899: made only 2 operators available for address component in conditionals ui and fixed setting an empty value for address
526
436
  - FIO-8912: consolidate normalization for multivalue components
527
437
  - FIO-8795 fixed selected data after removing row
528
-
529
- ## 5.0.0-rc.76
530
- ### Changed
531
- - Updated @formio/core@2.2.2-rc.5
532
438
  - FIO-8874: fixed conditional value field for time component
533
439
  - FIO-8849: fixed an issue where value of the selctboxes/radio with URL data source are not available in simple conditons UI
534
440
  - FIO-8931: Disable file synchronization feature
535
441
  - FIO-8866-8864: fixed simple conditions operators for recaptcha
536
442
  - FIO-8921: fixed an issue where newly created PDF-form cannot be saved in builder after adding some components in it
537
443
  - FIO-8798: updated shape of the data of day component with hidden fields
538
-
539
- ## 5.0.0-rc.75
540
- ### Changed
541
- - Updated @formio/core@2.2.2-rc.3
542
-
543
- ## 5.0.0-rc.74
544
- ### Changed
545
- - Updated @formio/core@2.2.2-rc.2
546
444
  - FIO-8799 updated conditional tab for Time Component
547
445
  - FIO-8797: set empty day component value to the empty string
548
-
549
446
  - FIO-8760: Fixes an issue where nested form is not getting all the options
550
447
  - FIO-8789: Fixing issues where the wrong urls are used for CDN on remote environments
551
-
552
- ## 5.0.0-rc.73
553
- ### Changed
554
448
  - FIO-8729: fixed an issue where the rollback to default templates does not work correctly and unknown template message is shown
555
-
556
- ## 5.0.0-rc.72
557
- ### Changed
558
- - Updated @formio/core@2.2.2-rc.1
559
449
  - FIO-8684: Fixes cannot attach more than one component to the PDF form
560
450
  - Bugfix/submission metadata nullish
561
451
  - FIO-8765: fixed an issue where dataMap thows an error
562
452
  - FIO-8719 fixed validation for Data Grid component inside nested wizard
563
-
564
- ### Changed
565
453
  - FIO-8621: error event on file upload adding
566
454
  - FIO-8783: Fixed the issue when validation messages disappear after collapse and expand the panel
567
-
568
- ## 5.0.0-rc.71
569
- ### Changed
570
- - Updated @formio/bootstrap@3.0.0-rc.37
571
-
572
- ## 5.0.0-rc.70
573
- ### Changed
574
- - Updated @formio/core@2.2.0-rc.9
575
455
  - FIO-8759 fixed validation for the default value component
576
456
  - FIO-8752: coerced keyboard actions to a boolean value
577
457
  - FIO-8389: Fix conditional logic for Edit Grid
@@ -579,53 +459,20 @@ Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/e
579
459
  - FIO-8720: fixed errors occurring with valid time and number components
580
460
  - FIO-8719 fixed validation for nested wizard fields
581
461
  - FIO-5748 Fixed preview not working correctly after hiding/showing it
582
-
583
- ## 5.0.0-rc.69
584
- ### Changed
585
- - Updated @formio/core@2.2.0-rc.7
586
462
  - FIO-8570: fixed decimal symbol property on number component
587
463
  - FIO-8570: fixed thousandSeparator problem and decimal symbol problem
588
-
589
- ## 5.0.0-rc.68
590
- ### Changed
591
- - Updated @formio/core@2.2.0-rc.6
592
464
  - FIO-7733 remove form min height
593
465
  - FIO-8710: fixed incorrect Components import that causes errors when interacting with form components
594
466
  - FIO-8716 fixed unsavedRows validation for Edit Grid
595
467
  - FIO-7478: fixed and isse where dataGrod reordering does not work in 5.x and fixed reordering with select component
596
-
597
- ## 5.0.0-rc.67
598
- ### Changed
599
- - Updated @formio/core@2.2.0-rc.5
600
468
  - FIO-8633 fixed icon name for Edit Grid
601
469
  - FIO-8645: day component required validation error not correct
602
470
  - FIO-8688 fixed 'global is not defined' error message
603
471
  - FIO-8639 fixed error when adding address component
604
-
605
- ## 5.0.0-rc.66
606
- ### Changed
607
472
  - FIO-8652: DataGrid does not reorder
608
473
  - FIO-8659: no modal edit in display tab
609
-
610
- ## 5.0.0-rc.65
611
- ### Changed
612
- - Updated @formio/core@2.2.0-rc.4
613
-
614
- ## 5.0.0-rc.64
615
- ### Changed
616
474
  - Removing fetch ponyfill since it is no longer needed.
617
-
618
- ## 5.0.0-rc.63
619
- ### Changed
620
475
  - Fixing the formioReady promise to always resolve if you load it from the full source instead of the embed code.
621
-
622
- ## 5.0.0-rc.62
623
- ### Changed
624
- - Updated @formio/bootstrap@3.0.0-rc.36
625
-
626
-
627
-
628
- ### Fixed
629
476
  - FIO-7525: fixed an issue where new conditional logic based on select boxes does not work
630
477
  - Fix broken file exclusion patterns
631
478
  - FIO-7146: disable circleci jobs
@@ -709,9 +556,6 @@ Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/e
709
556
  - FIO-7936: showCounter messages not translating
710
557
  - FIO-7775: reset value event resets component values to their default values
711
558
  - FIO-6710: added translation for day component placeholder
712
-
713
- ## 5.0.0-rc.37
714
- ### Fixed
715
559
  - FIO-5967: fixed issue with incorrect string representation for object type
716
560
  - FIO-7110: when 'use original revision' is enabled for nested form, submission still displays in current form revision pdfs
717
561
  - Revert "FI0-5429: added a condition to remove the decimal separator when the decimal digits are set to 0"
@@ -765,44 +609,22 @@ Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/e
765
609
  - FIO-7548: fixed an issue where select dropdown does not overlap the datagrid and causes vertical scroll
766
610
  - FIO-7775: reset value event resets component values to their default values
767
611
  - FIO-6710: added translation for day component placeholder
768
-
769
- ### Changed
770
612
  - Add capability for adding sanitize profiles through sanitizeConfig in options
771
-
772
- ## 5.0.0-rc.26
773
- ### Changed
774
613
  - More improvements to the embed capabilities.
775
-
776
- ### Fixed
777
614
  - FIO-7074: Fixes an issue where setting submission to the Wizard from the form controller will not set values for all the pages
778
-
779
- ## 5.0.0-rc.24
780
- ### Changed
781
615
  - Removed unnecessary resize polyfill.
782
616
  - Improved embed library experience.
783
617
  - Fixed documentation to use new embed strategy.
784
-
785
- ### Fixed
786
618
  - FIO-7128: Fixed issues with multiple select
787
619
  - FIO-7209: radio don't work without value property set when data source url
788
620
  - FIO-6970: Fixes an issue where SelectBoxes Only Available Items validation always fails
789
-
790
- ## 5.0.0-rc.23
791
- ### Fixed
792
621
  - FIO-6578: Fixes an issue with losing focus on Year field when Day component has advanced logic
793
-
794
- ## 5.0.0-rc.20
795
- ### Changed
796
622
  - Removed i18next and NativePromise in favor of a simple translation proxy.
797
623
  - Refactored the embed script so that it can be imported within an application using createForm.
798
-
799
- ### Added
800
624
  - Added mobile image, video, and camera capture feature. https://github.com/formio/formio.js/pull/4398
801
625
  - Add submission as form creation option. https://github.com/formio/formio.js/pull/4580
802
626
  - FIO-6630: Expanded Actions Logic UI
803
627
  - FIO-6493: changes needed for reporting-ui
804
-
805
- ### Fixed
806
628
  - fix issue: when submission.data doesn't exist, the submission.metadata is removed
807
629
  - Default value for Radio and Checkbox components to set correctly. https://github.com/formio/formio.js/pull/4464
808
630
  - Edit Grid performance improvements. https://github.com/formio/formio.js/pull/4480
@@ -845,24 +667,14 @@ Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/e
845
667
  - FIO-4782: added encodeURIComponent for filter query
846
668
  - FIO-4856: Fixed an issue where onBlur validation does not work for Select, Tags and Day components
847
669
  - FIO-7110: fixed display of nested form with Use Original Revision on PDF download
848
-
849
- ## 5.0.0-rc.6
850
- ### Added
851
670
  - FIO-5748: added collapsible preview for Form Builder
852
-
853
- ### Fixed
854
671
  - FIO-6950: fixed test
855
672
  - FIO-6669: fixed tooltips cutting off in the component settings modal
856
673
  - FIO-6156: fixed help link for Time component
857
-
858
- ## 5.0.0-rc.5
859
- ### Added
860
674
  - FIO-5986: added check for identical uploaded file
861
675
  - FIO-6453: added sanitization inside error message container
862
676
  - FIO-6345: Add rel=noopener to Links to Docs / External Links
863
677
  - FIO-5042: Logout feature for OIDC
864
-
865
- ### Fixed
866
678
  - FIO-6616: fixed issue where the select templates were not getting set correctly in selectData
867
679
  - FIO-6533: fixed an issue where file upload hash causing delays in file uploads
868
680
  - FIO-6407: updated tests for Select Component
@@ -915,36 +727,13 @@ Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/e
915
727
  - FIO-5730: fixed template for Select on PDF download
916
728
  - FIO-5303: fixed Edit and Delete buttons in readOnly
917
729
  - Revert - FIO-4876: fixed the display of current submission for pdf download
918
-
919
- ## 5.0.0-rc.4
920
- ### Fixed
921
730
  - Version export to work with compilation as well as unit tests.
922
-
923
- ## 5.0.0-rc.3
924
- ### Fixed
925
731
  - Re-introduce the old types folder until we can resolve issues with Angular dependencies.
926
-
927
- ## 5.0.0-rc.2
928
- ### Breaking Change
929
- - Removed default Bootstrap 4 template and replaced with Bootstrap 5. If you need Bootstrap 4, you can use the following.
930
-
931
- npm install --save @formio/bootstrap
932
-
933
- import bootstrap4 from '@formio/bootstrap/bootstrap4';
934
- import { Formio } from 'formiojs';
935
- Formio.use(bootstrap4);
936
-
937
- ## 5.0.0-rc.1
938
- ### Breaking Change
939
732
  - Upgrade to Bootstrap 5
940
733
  - Replace SDK with @formio/core SDK.
941
734
  - Remove Semantic template and Bootstrap 3 template from build. Use import @formio/bootstrap3 or @formio/semantic instead.
942
-
943
- ### Added
944
735
  - FIO-4429: Add support for pdf auto conversion fields assignment
945
736
  - Added basic keyboard accessibility for formbuilder
946
-
947
- ### Fixed
948
737
  - FIO-6512: cannot drag and drop components on to pdf first forms using mac
949
738
  - FIO-6468: fixed an issue where Custom validation on Day component is confusing Day and Year
950
739
  - Revert "Fio 6512 cannot drag and drop components on to pdf first forms using mac"
package/README.md CHANGED
@@ -52,6 +52,7 @@ This library has a very powerful JSON form builder, and can be used like the fol
52
52
  <head>
53
53
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css">
54
54
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap/dist/css/bootstrap.min.css">
55
+ <link rel="stylesheet" href="https://cdn.form.io/js/formio.full.min.css">
55
56
  <script src='https://cdn.form.io/js/formio.full.min.js'></script>
56
57
  </head>
57
58
  <body>
@@ -155,6 +156,8 @@ being set to ```wizard```.
155
156
  You can also use this library as a JavaScript embedding of the form using a single line of code. For example, to embed the https://examples.form.io/example form within your application you can simply use the following embed code.
156
157
 
157
158
  ```html
159
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css">
160
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap/dist/css/bootstrap.min.css">
158
161
  <script src="https://cdn.form.io/js/formio.embed.min.js?src=https://examples.form.io/example&libs=true"></script>
159
162
  ```
160
163
 
@@ -169,6 +172,8 @@ In addition to having a Form Renderer within this application, you can also use
169
172
  ```html
170
173
  <html>
171
174
  <head>
175
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css">
176
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap/dist/css/bootstrap.min.css">
172
177
  <script src='https://cdn.form.io/js/formio.min.js'></script>
173
178
  <script type='text/javascript'>
174
179
  var formio = new Formio('https://examples.form.io/example');
@@ -214,3 +219,5 @@ For more complete documentation over the JavaScript SDK, please take a look at t
214
219
 
215
220
  ### Full Developer API Documentation
216
221
  To view the full SDK Documentation, go to [Developer SDK Documentation](https://formio.github.io/formio.js/docs/)
222
+
223
+ test update 1
@@ -1490,6 +1490,7 @@ td .formio-component-modaledit .formio-modaledit-view-container {
1490
1490
  display: block;
1491
1491
  height: 0;
1492
1492
  border: none;
1493
+ padding: 0;
1493
1494
  }
1494
1495
 
1495
1496
  .has-error > .help-block {