@micromerce/formbuilder-react 1.0.651 → 1.0.656

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 (532) hide show
  1. package/dist/components/Checkbox/Checkbox.module.scss +10 -0
  2. package/dist/components/FormBuilder/FormBuilder.module.scss +94 -0
  3. package/dist/components/FormFooter/FormFooter.module.scss +65 -0
  4. package/dist/components/FormGroup/FormGroup.module.scss +69 -0
  5. package/dist/components/FormList/FormList.module.scss +173 -0
  6. package/dist/components/Group/Group.module.scss +28 -0
  7. package/dist/components/Input/Input.module.scss +3 -0
  8. package/dist/components/InputFreeSolo/InputFreeSolo.module.scss +29 -0
  9. package/dist/components/MrnInput/MrnInput.module.scss +31 -0
  10. package/dist/components/MultiSelect/MultiSelect.module.scss +13 -0
  11. package/dist/components/PasswordInput/PasswordInput.module.scss +26 -0
  12. package/dist/components/Select/Select.module.scss +15 -0
  13. package/dist/components/Textarea/Textarea.module.scss +14 -0
  14. package/dist/components/addressGroup/AddressGroup.module.scss +72 -0
  15. package/dist/src/assets/icons/error/Error.d.ts +2 -0
  16. package/dist/src/assets/icons/error/Error.js +6 -0
  17. package/dist/src/assets/icons/error/Error.js.map +1 -0
  18. package/dist/src/components/Checkbox/Checkbox.d.ts +10 -0
  19. package/dist/src/components/Checkbox/Checkbox.js +37 -0
  20. package/dist/src/components/Checkbox/Checkbox.js.map +1 -0
  21. package/dist/src/components/Checkbox/index.d.ts +1 -0
  22. package/dist/src/components/Checkbox/index.js +2 -0
  23. package/dist/src/components/Checkbox/index.js.map +1 -0
  24. package/dist/src/components/ControlWrapper/ControlWrapper.d.ts +11 -0
  25. package/dist/src/components/ControlWrapper/ControlWrapper.js +37 -0
  26. package/dist/src/components/ControlWrapper/ControlWrapper.js.map +1 -0
  27. package/dist/src/components/ControlWrapper/index.d.ts +1 -0
  28. package/dist/src/components/ControlWrapper/index.js +2 -0
  29. package/dist/src/components/ControlWrapper/index.js.map +1 -0
  30. package/dist/src/components/DateRangeGroup/DateRangeGroup.d.ts +10 -0
  31. package/dist/src/components/DateRangeGroup/DateRangeGroup.js +69 -0
  32. package/dist/src/components/DateRangeGroup/DateRangeGroup.js.map +1 -0
  33. package/dist/src/components/DateRangeGroup/DateRangeGroup.styles.d.ts +3 -0
  34. package/dist/src/components/DateRangeGroup/DateRangeGroup.styles.js +59 -0
  35. package/dist/src/components/DateRangeGroup/DateRangeGroup.styles.js.map +1 -0
  36. package/dist/src/components/DateRangeGroup/components/CalendarModal.d.ts +14 -0
  37. package/dist/src/components/DateRangeGroup/components/CalendarModal.js +90 -0
  38. package/dist/src/components/DateRangeGroup/components/CalendarModal.js.map +1 -0
  39. package/dist/src/components/DateRangeGroup/index.d.ts +1 -0
  40. package/dist/src/components/DateRangeGroup/index.js +2 -0
  41. package/dist/src/components/DateRangeGroup/index.js.map +1 -0
  42. package/dist/src/components/ErrorBoundary/ErrorBoundary.d.ts +14 -0
  43. package/dist/src/components/ErrorBoundary/ErrorBoundary.js +22 -0
  44. package/dist/src/components/ErrorBoundary/ErrorBoundary.js.map +1 -0
  45. package/dist/src/components/FileUploader/FileUploader.d.ts +9 -0
  46. package/dist/src/components/FileUploader/FileUploader.js +30 -0
  47. package/dist/src/components/FileUploader/FileUploader.js.map +1 -0
  48. package/dist/src/components/FileUploader/index.d.ts +1 -0
  49. package/dist/src/components/FileUploader/index.js +2 -0
  50. package/dist/src/components/FileUploader/index.js.map +1 -0
  51. package/dist/src/components/FormBuilder/FormBuilder.d.ts +25 -0
  52. package/dist/src/components/FormBuilder/FormBuilder.js +74 -0
  53. package/dist/src/components/FormBuilder/FormBuilder.js.map +1 -0
  54. package/dist/src/components/FormBuilder/index.d.ts +1 -0
  55. package/dist/src/components/FormBuilder/index.js +2 -0
  56. package/dist/src/components/FormBuilder/index.js.map +1 -0
  57. package/dist/src/components/FormBuilder/utils/extractFormControlValues/extractFormControlValues.d.ts +6 -0
  58. package/dist/src/components/FormBuilder/utils/extractFormControlValues/extractFormControlValues.js +50 -0
  59. package/dist/src/components/FormBuilder/utils/extractFormControlValues/extractFormControlValues.js.map +1 -0
  60. package/dist/src/components/FormBuilder/utils/extractFormControlValues/index.d.ts +1 -0
  61. package/dist/src/components/FormBuilder/utils/extractFormControlValues/index.js +2 -0
  62. package/dist/src/components/FormBuilder/utils/extractFormControlValues/index.js.map +1 -0
  63. package/dist/src/components/FormBuilder/utils/jsonToUrlEncoded/index.d.ts +1 -0
  64. package/dist/src/components/FormBuilder/utils/jsonToUrlEncoded/index.js +2 -0
  65. package/dist/src/components/FormBuilder/utils/jsonToUrlEncoded/index.js.map +1 -0
  66. package/dist/src/components/FormBuilder/utils/jsonToUrlEncoded/jsonToUrlEncoded.d.ts +5 -0
  67. package/dist/src/components/FormBuilder/utils/jsonToUrlEncoded/jsonToUrlEncoded.js +15 -0
  68. package/dist/src/components/FormBuilder/utils/jsonToUrlEncoded/jsonToUrlEncoded.js.map +1 -0
  69. package/dist/src/components/FormFooter/FormFooter.d.ts +15 -0
  70. package/dist/src/components/FormFooter/FormFooter.js +46 -0
  71. package/dist/src/components/FormFooter/FormFooter.js.map +1 -0
  72. package/dist/src/components/FormFooter/components/Switch.d.ts +1 -0
  73. package/dist/src/components/FormFooter/components/Switch.js +15 -0
  74. package/dist/src/components/FormFooter/components/Switch.js.map +1 -0
  75. package/dist/src/components/FormFooter/index.d.ts +1 -0
  76. package/dist/src/components/FormFooter/index.js +2 -0
  77. package/dist/src/components/FormFooter/index.js.map +1 -0
  78. package/dist/src/components/FormGroup/FormGroup.d.ts +15 -0
  79. package/dist/src/components/FormGroup/FormGroup.js +18 -0
  80. package/dist/src/components/FormGroup/FormGroup.js.map +1 -0
  81. package/dist/src/components/FormGroup/index.d.ts +1 -0
  82. package/dist/src/components/FormGroup/index.js +2 -0
  83. package/dist/src/components/FormGroup/index.js.map +1 -0
  84. package/dist/src/components/FormList/FormList.d.ts +11 -0
  85. package/dist/src/components/FormList/FormList.js +66 -0
  86. package/dist/src/components/FormList/FormList.js.map +1 -0
  87. package/dist/src/components/FormList/index.d.ts +1 -0
  88. package/dist/src/components/FormList/index.js +2 -0
  89. package/dist/src/components/FormList/index.js.map +1 -0
  90. package/dist/src/components/GeneralFormGroup/GeneralFormGroup.d.ts +5 -0
  91. package/dist/src/components/GeneralFormGroup/GeneralFormGroup.js +4 -0
  92. package/dist/src/components/GeneralFormGroup/GeneralFormGroup.js.map +1 -0
  93. package/dist/src/components/GeneralFormGroup/index.d.ts +1 -0
  94. package/dist/src/components/GeneralFormGroup/index.js +2 -0
  95. package/dist/src/components/GeneralFormGroup/index.js.map +1 -0
  96. package/dist/src/components/Group/Group.d.ts +12 -0
  97. package/dist/src/components/Group/Group.js +32 -0
  98. package/dist/src/components/Group/Group.js.map +1 -0
  99. package/dist/src/components/Group/index.d.ts +1 -0
  100. package/dist/src/components/Group/index.js +2 -0
  101. package/dist/src/components/Group/index.js.map +1 -0
  102. package/dist/src/components/Input/Input.d.ts +14 -0
  103. package/dist/src/components/Input/Input.js +57 -0
  104. package/dist/src/components/Input/Input.js.map +1 -0
  105. package/dist/src/components/Input/index.d.ts +1 -0
  106. package/dist/src/components/Input/index.js +2 -0
  107. package/dist/src/components/Input/index.js.map +1 -0
  108. package/dist/src/components/Input/input.styles.d.ts +9 -0
  109. package/dist/src/components/Input/input.styles.js +24 -0
  110. package/dist/src/components/Input/input.styles.js.map +1 -0
  111. package/dist/src/components/InputFreeSolo/InputFreeSolo.d.ts +10 -0
  112. package/dist/src/components/InputFreeSolo/InputFreeSolo.js +67 -0
  113. package/dist/src/components/InputFreeSolo/InputFreeSolo.js.map +1 -0
  114. package/dist/src/components/InputFreeSolo/index.d.ts +1 -0
  115. package/dist/src/components/InputFreeSolo/index.js +2 -0
  116. package/dist/src/components/InputFreeSolo/index.js.map +1 -0
  117. package/dist/src/components/MrnInput/MrnInput.d.ts +11 -0
  118. package/dist/src/components/MrnInput/MrnInput.js +64 -0
  119. package/dist/src/components/MrnInput/MrnInput.js.map +1 -0
  120. package/dist/src/components/MrnInput/hooks/useMrn.d.ts +21 -0
  121. package/dist/src/components/MrnInput/hooks/useMrn.js +92 -0
  122. package/dist/src/components/MrnInput/hooks/useMrn.js.map +1 -0
  123. package/dist/src/components/MrnInput/index.d.ts +1 -0
  124. package/dist/src/components/MrnInput/index.js +2 -0
  125. package/dist/src/components/MrnInput/index.js.map +1 -0
  126. package/dist/src/components/MrnInput/services/fetchMrn.d.ts +3 -0
  127. package/dist/src/components/MrnInput/services/fetchMrn.js +30 -0
  128. package/dist/src/components/MrnInput/services/fetchMrn.js.map +1 -0
  129. package/dist/src/components/MrnInput/ui-helper/Link/Link.d.ts +3 -0
  130. package/dist/src/components/MrnInput/ui-helper/Link/Link.js +15 -0
  131. package/dist/src/components/MrnInput/ui-helper/Link/Link.js.map +1 -0
  132. package/dist/src/components/MrnInput/utils/mrnUtils/mrnUtils.d.ts +8 -0
  133. package/dist/src/components/MrnInput/utils/mrnUtils/mrnUtils.js +35 -0
  134. package/dist/src/components/MrnInput/utils/mrnUtils/mrnUtils.js.map +1 -0
  135. package/dist/src/components/MrnInput/utils/resolveMrnLinks/resolveMrnLink.d.ts +2 -0
  136. package/dist/src/components/MrnInput/utils/resolveMrnLinks/resolveMrnLink.js +11 -0
  137. package/dist/src/components/MrnInput/utils/resolveMrnLinks/resolveMrnLink.js.map +1 -0
  138. package/dist/src/components/MrnInput/utils/resolveNestedQueryLink/resolveNestedQueryLink.d.ts +2 -0
  139. package/dist/src/components/MrnInput/utils/resolveNestedQueryLink/resolveNestedQueryLink.js +19 -0
  140. package/dist/src/components/MrnInput/utils/resolveNestedQueryLink/resolveNestedQueryLink.js.map +1 -0
  141. package/dist/src/components/MrnInput/utils/urlSearchParam/urlSearchParam.d.ts +1 -0
  142. package/dist/src/components/MrnInput/utils/urlSearchParam/urlSearchParam.js +8 -0
  143. package/dist/src/components/MrnInput/utils/urlSearchParam/urlSearchParam.js.map +1 -0
  144. package/dist/src/components/MultiSelect/MultiSelect.d.ts +17 -0
  145. package/dist/src/components/MultiSelect/MultiSelect.js +61 -0
  146. package/dist/src/components/MultiSelect/MultiSelect.js.map +1 -0
  147. package/dist/src/components/MultiSelect/index.d.ts +1 -0
  148. package/dist/src/components/MultiSelect/index.js +2 -0
  149. package/dist/src/components/MultiSelect/index.js.map +1 -0
  150. package/dist/src/components/MultiSelect/utils/extractSelectedOptionValues/extractSelectedOptionValues.d.ts +24 -0
  151. package/dist/src/components/MultiSelect/utils/extractSelectedOptionValues/extractSelectedOptionValues.js +21 -0
  152. package/dist/src/components/MultiSelect/utils/extractSelectedOptionValues/extractSelectedOptionValues.js.map +1 -0
  153. package/dist/src/components/MultiSelect/utils/extractSelectedOptionValues/index.d.ts +1 -0
  154. package/dist/src/components/MultiSelect/utils/extractSelectedOptionValues/index.js +2 -0
  155. package/dist/src/components/MultiSelect/utils/extractSelectedOptionValues/index.js.map +1 -0
  156. package/dist/src/components/PasswordInput/PasswordInput.d.ts +12 -0
  157. package/dist/src/components/PasswordInput/PasswordInput.js +21 -0
  158. package/dist/src/components/PasswordInput/PasswordInput.js.map +1 -0
  159. package/dist/src/components/PasswordInput/index.d.ts +1 -0
  160. package/dist/src/components/PasswordInput/index.js +2 -0
  161. package/dist/src/components/PasswordInput/index.js.map +1 -0
  162. package/dist/src/components/QueryControl/QueryControl.d.ts +13 -0
  163. package/dist/src/components/QueryControl/QueryControl.js +95 -0
  164. package/dist/src/components/QueryControl/QueryControl.js.map +1 -0
  165. package/dist/src/components/QueryControl/data/defaultControls.d.ts +9 -0
  166. package/dist/src/components/QueryControl/data/defaultControls.js +95 -0
  167. package/dist/src/components/QueryControl/data/defaultControls.js.map +1 -0
  168. package/dist/src/components/QueryControl/index.d.ts +1 -0
  169. package/dist/src/components/QueryControl/index.js +2 -0
  170. package/dist/src/components/QueryControl/index.js.map +1 -0
  171. package/dist/src/components/QueryControl/ui-helper/Wrapper/QueryControlWrapper.d.ts +8 -0
  172. package/dist/src/components/QueryControl/ui-helper/Wrapper/QueryControlWrapper.js +8 -0
  173. package/dist/src/components/QueryControl/ui-helper/Wrapper/QueryControlWrapper.js.map +1 -0
  174. package/dist/src/components/QueryControl/ui-helper/Wrapper/QueryControlWrapper.styles.d.ts +6 -0
  175. package/dist/src/components/QueryControl/ui-helper/Wrapper/QueryControlWrapper.styles.js +14 -0
  176. package/dist/src/components/QueryControl/ui-helper/Wrapper/QueryControlWrapper.styles.js.map +1 -0
  177. package/dist/src/components/QueryControl/ui-helper/Wrapper/index.d.ts +1 -0
  178. package/dist/src/components/QueryControl/ui-helper/Wrapper/index.js +2 -0
  179. package/dist/src/components/QueryControl/ui-helper/Wrapper/index.js.map +1 -0
  180. package/dist/src/components/QueryControl/utils/allControlsHidden/allControlsHidden.d.ts +3 -0
  181. package/dist/src/components/QueryControl/utils/allControlsHidden/allControlsHidden.js +39 -0
  182. package/dist/src/components/QueryControl/utils/allControlsHidden/allControlsHidden.js.map +1 -0
  183. package/dist/src/components/QueryControl/utils/allControlsHidden/index.d.ts +1 -0
  184. package/dist/src/components/QueryControl/utils/allControlsHidden/index.js +2 -0
  185. package/dist/src/components/QueryControl/utils/allControlsHidden/index.js.map +1 -0
  186. package/dist/src/components/QueryControl/utils/getMatchingControls.d.ts +9 -0
  187. package/dist/src/components/QueryControl/utils/getMatchingControls.js +19 -0
  188. package/dist/src/components/QueryControl/utils/getMatchingControls.js.map +1 -0
  189. package/dist/src/components/QueryControl/utils/hasExpertControl/hasExpertControl.d.ts +3 -0
  190. package/dist/src/components/QueryControl/utils/hasExpertControl/hasExpertControl.js +38 -0
  191. package/dist/src/components/QueryControl/utils/hasExpertControl/hasExpertControl.js.map +1 -0
  192. package/dist/src/components/QueryControl/utils/hasExpertControl/index.d.ts +1 -0
  193. package/dist/src/components/QueryControl/utils/hasExpertControl/index.js +2 -0
  194. package/dist/src/components/QueryControl/utils/hasExpertControl/index.js.map +1 -0
  195. package/dist/src/components/QueryControl/utils/hideGroup/hideGroup.d.ts +3 -0
  196. package/dist/src/components/QueryControl/utils/hideGroup/hideGroup.js +9 -0
  197. package/dist/src/components/QueryControl/utils/hideGroup/hideGroup.js.map +1 -0
  198. package/dist/src/components/QueryControl/utils/hideGroup/index.d.ts +1 -0
  199. package/dist/src/components/QueryControl/utils/hideGroup/index.js +2 -0
  200. package/dist/src/components/QueryControl/utils/hideGroup/index.js.map +1 -0
  201. package/dist/src/components/Select/Select.d.ts +12 -0
  202. package/dist/src/components/Select/Select.js +67 -0
  203. package/dist/src/components/Select/Select.js.map +1 -0
  204. package/dist/src/components/Select/index.d.ts +1 -0
  205. package/dist/src/components/Select/index.js +2 -0
  206. package/dist/src/components/Select/index.js.map +1 -0
  207. package/dist/src/components/Select/utils/getSelectedOption.d.ts +3 -0
  208. package/dist/src/components/Select/utils/getSelectedOption.js +8 -0
  209. package/dist/src/components/Select/utils/getSelectedOption.js.map +1 -0
  210. package/dist/src/components/Textarea/Textarea.d.ts +10 -0
  211. package/dist/src/components/Textarea/Textarea.js +55 -0
  212. package/dist/src/components/Textarea/Textarea.js.map +1 -0
  213. package/dist/src/components/Textarea/Textarea.types.d.ts +12 -0
  214. package/dist/src/components/Textarea/Textarea.types.js +2 -0
  215. package/dist/src/components/Textarea/Textarea.types.js.map +1 -0
  216. package/dist/src/components/Textarea/aiWrapper/aiAction.d.ts +12 -0
  217. package/dist/src/components/Textarea/aiWrapper/aiAction.js +21 -0
  218. package/dist/src/components/Textarea/aiWrapper/aiAction.js.map +1 -0
  219. package/dist/src/components/Textarea/aiWrapper/aiLayout.d.ts +10 -0
  220. package/dist/src/components/Textarea/aiWrapper/aiLayout.js +21 -0
  221. package/dist/src/components/Textarea/aiWrapper/aiLayout.js.map +1 -0
  222. package/dist/src/components/Textarea/aiWrapper/index.d.ts +11 -0
  223. package/dist/src/components/Textarea/aiWrapper/index.js +29 -0
  224. package/dist/src/components/Textarea/aiWrapper/index.js.map +1 -0
  225. package/dist/src/components/Textarea/aiWrapper/useAi.d.ts +21 -0
  226. package/dist/src/components/Textarea/aiWrapper/useAi.js +74 -0
  227. package/dist/src/components/Textarea/aiWrapper/useAi.js.map +1 -0
  228. package/dist/src/components/Textarea/editors/Default.d.ts +13 -0
  229. package/dist/src/components/Textarea/editors/Default.js +26 -0
  230. package/dist/src/components/Textarea/editors/Default.js.map +1 -0
  231. package/dist/src/components/Textarea/editors/Html.d.ts +10 -0
  232. package/dist/src/components/Textarea/editors/Html.js +9 -0
  233. package/dist/src/components/Textarea/editors/Html.js.map +1 -0
  234. package/dist/src/components/Textarea/editors/Json.d.ts +10 -0
  235. package/dist/src/components/Textarea/editors/Json.js +9 -0
  236. package/dist/src/components/Textarea/editors/Json.js.map +1 -0
  237. package/dist/src/components/Textarea/editors/Markdown.d.ts +10 -0
  238. package/dist/src/components/Textarea/editors/Markdown.js +20 -0
  239. package/dist/src/components/Textarea/editors/Markdown.js.map +1 -0
  240. package/dist/src/components/Textarea/editors/Richtext.d.ts +12 -0
  241. package/dist/src/components/Textarea/editors/Richtext.js +13 -0
  242. package/dist/src/components/Textarea/editors/Richtext.js.map +1 -0
  243. package/dist/src/components/Textarea/index.d.ts +1 -0
  244. package/dist/src/components/Textarea/index.js +2 -0
  245. package/dist/src/components/Textarea/index.js.map +1 -0
  246. package/dist/src/components/addressGroup/AddressGroup.d.ts +12 -0
  247. package/dist/src/components/addressGroup/AddressGroup.js +39 -0
  248. package/dist/src/components/addressGroup/AddressGroup.js.map +1 -0
  249. package/dist/src/components/addressGroup/index.d.ts +1 -0
  250. package/dist/src/components/addressGroup/index.js +2 -0
  251. package/dist/src/components/addressGroup/index.js.map +1 -0
  252. package/dist/src/components/addressGroup/utils/Countries.d.ts +3 -0
  253. package/dist/src/components/addressGroup/utils/Countries.js +1249 -0
  254. package/dist/src/components/addressGroup/utils/Countries.js.map +1 -0
  255. package/dist/src/components/plate/PlateEditor.d.ts +10 -0
  256. package/dist/src/components/plate/PlateEditor.js +38 -0
  257. package/dist/src/components/plate/PlateEditor.js.map +1 -0
  258. package/dist/src/components/plate/PlateEditorContent.d.ts +24 -0
  259. package/dist/src/components/plate/PlateEditorContent.js +45 -0
  260. package/dist/src/components/plate/PlateEditorContent.js.map +1 -0
  261. package/dist/src/components/plate/components/align-dropdown-menu.d.ts +2 -0
  262. package/dist/src/components/plate/components/align-dropdown-menu.js +33 -0
  263. package/dist/src/components/plate/components/align-dropdown-menu.js.map +1 -0
  264. package/dist/src/components/plate/components/blockquote-element.d.ts +21 -0
  265. package/dist/src/components/plate/components/blockquote-element.js +8 -0
  266. package/dist/src/components/plate/components/blockquote-element.js.map +1 -0
  267. package/dist/src/components/plate/components/button.d.ts +14 -0
  268. package/dist/src/components/plate/components/button.js +38 -0
  269. package/dist/src/components/plate/components/button.js.map +1 -0
  270. package/dist/src/components/plate/components/caption.d.ts +43 -0
  271. package/dist/src/components/plate/components/caption.js +25 -0
  272. package/dist/src/components/plate/components/caption.js.map +1 -0
  273. package/dist/src/components/plate/components/checkbox.d.ts +3 -0
  274. package/dist/src/components/plate/components/checkbox.js +7 -0
  275. package/dist/src/components/plate/components/checkbox.js.map +1 -0
  276. package/dist/src/components/plate/components/code-block-combobox.d.ts +48 -0
  277. package/dist/src/components/plate/components/code-block-combobox.js +131 -0
  278. package/dist/src/components/plate/components/code-block-combobox.js.map +1 -0
  279. package/dist/src/components/plate/components/code-block-element.d.ts +22 -0
  280. package/dist/src/components/plate/components/code-block-element.js +13 -0
  281. package/dist/src/components/plate/components/code-block-element.js.map +1 -0
  282. package/dist/src/components/plate/components/code-leaf.d.ts +19 -0
  283. package/dist/src/components/plate/components/code-leaf.js +8 -0
  284. package/dist/src/components/plate/components/code-leaf.js.map +1 -0
  285. package/dist/src/components/plate/components/code-line-element.d.ts +21 -0
  286. package/dist/src/components/plate/components/code-line-element.js +6 -0
  287. package/dist/src/components/plate/components/code-line-element.js.map +1 -0
  288. package/dist/src/components/plate/components/code-syntax-leaf.d.ts +19 -0
  289. package/dist/src/components/plate/components/code-syntax-leaf.js +11 -0
  290. package/dist/src/components/plate/components/code-syntax-leaf.js.map +1 -0
  291. package/dist/src/components/plate/components/color-constants.d.ts +10 -0
  292. package/dist/src/components/plate/components/color-constants.js +430 -0
  293. package/dist/src/components/plate/components/color-constants.js.map +1 -0
  294. package/dist/src/components/plate/components/color-dropdown-menu-items.d.ts +18 -0
  295. package/dist/src/components/plate/components/color-dropdown-menu-items.js +21 -0
  296. package/dist/src/components/plate/components/color-dropdown-menu-items.js.map +1 -0
  297. package/dist/src/components/plate/components/color-dropdown-menu.d.ts +12 -0
  298. package/dist/src/components/plate/components/color-dropdown-menu.js +18 -0
  299. package/dist/src/components/plate/components/color-dropdown-menu.js.map +1 -0
  300. package/dist/src/components/plate/components/color-input.d.ts +2 -0
  301. package/dist/src/components/plate/components/color-input.js +15 -0
  302. package/dist/src/components/plate/components/color-input.js.map +1 -0
  303. package/dist/src/components/plate/components/color-picker.d.ts +18 -0
  304. package/dist/src/components/plate/components/color-picker.js +19 -0
  305. package/dist/src/components/plate/components/color-picker.js.map +1 -0
  306. package/dist/src/components/plate/components/colors-custom.d.ts +10 -0
  307. package/dist/src/components/plate/components/colors-custom.js +21 -0
  308. package/dist/src/components/plate/components/colors-custom.js.map +1 -0
  309. package/dist/src/components/plate/components/command.d.ts +76 -0
  310. package/dist/src/components/plate/components/command.js +18 -0
  311. package/dist/src/components/plate/components/command.js.map +1 -0
  312. package/dist/src/components/plate/components/comment-leaf.d.ts +3 -0
  313. package/dist/src/components/plate/components/comment-leaf.js +23 -0
  314. package/dist/src/components/plate/components/comment-leaf.js.map +1 -0
  315. package/dist/src/components/plate/components/dialog.d.ts +12 -0
  316. package/dist/src/components/plate/components/dialog.js +16 -0
  317. package/dist/src/components/plate/components/dialog.js.map +1 -0
  318. package/dist/src/components/plate/components/dropdown-menu.d.ts +29 -0
  319. package/dist/src/components/plate/components/dropdown-menu.js +51 -0
  320. package/dist/src/components/plate/components/dropdown-menu.js.map +1 -0
  321. package/dist/src/components/plate/components/excalidraw-element.d.ts +21 -0
  322. package/dist/src/components/plate/components/excalidraw-element.js +12 -0
  323. package/dist/src/components/plate/components/excalidraw-element.js.map +1 -0
  324. package/dist/src/components/plate/components/fixed-toolbar-buttons.d.ts +1 -0
  325. package/dist/src/components/plate/components/fixed-toolbar-buttons.js +25 -0
  326. package/dist/src/components/plate/components/fixed-toolbar-buttons.js.map +1 -0
  327. package/dist/src/components/plate/components/fixed-toolbar.d.ts +1 -0
  328. package/dist/src/components/plate/components/fixed-toolbar.js +4 -0
  329. package/dist/src/components/plate/components/fixed-toolbar.js.map +1 -0
  330. package/dist/src/components/plate/components/heading-element.d.ts +24 -0
  331. package/dist/src/components/plate/components/heading-element.js +30 -0
  332. package/dist/src/components/plate/components/heading-element.js.map +1 -0
  333. package/dist/src/components/plate/components/highlight-leaf.d.ts +19 -0
  334. package/dist/src/components/plate/components/highlight-leaf.js +5 -0
  335. package/dist/src/components/plate/components/highlight-leaf.js.map +1 -0
  336. package/dist/src/components/plate/components/hr-element.d.ts +21 -0
  337. package/dist/src/components/plate/components/hr-element.js +11 -0
  338. package/dist/src/components/plate/components/hr-element.js.map +1 -0
  339. package/dist/src/components/plate/components/image-element.d.ts +21 -0
  340. package/dist/src/components/plate/components/image-element.js +19 -0
  341. package/dist/src/components/plate/components/image-element.js.map +1 -0
  342. package/dist/src/components/plate/components/indent-list-toolbar-button.d.ts +18 -0
  343. package/dist/src/components/plate/components/indent-list-toolbar-button.js +12 -0
  344. package/dist/src/components/plate/components/indent-list-toolbar-button.js.map +1 -0
  345. package/dist/src/components/plate/components/indent-todo-marker-component.d.ts +3 -0
  346. package/dist/src/components/plate/components/indent-todo-marker-component.js +14 -0
  347. package/dist/src/components/plate/components/indent-todo-marker-component.js.map +1 -0
  348. package/dist/src/components/plate/components/indent-todo-toolbar-button.d.ts +15 -0
  349. package/dist/src/components/plate/components/indent-todo-toolbar-button.js +11 -0
  350. package/dist/src/components/plate/components/indent-todo-toolbar-button.js.map +1 -0
  351. package/dist/src/components/plate/components/indent-toolbar-button.d.ts +15 -0
  352. package/dist/src/components/plate/components/indent-toolbar-button.js +10 -0
  353. package/dist/src/components/plate/components/indent-toolbar-button.js.map +1 -0
  354. package/dist/src/components/plate/components/inline-combobox.d.ts +29 -0
  355. package/dist/src/components/plate/components/inline-combobox.js +156 -0
  356. package/dist/src/components/plate/components/inline-combobox.js.map +1 -0
  357. package/dist/src/components/plate/components/input.d.ts +8 -0
  358. package/dist/src/components/plate/components/input.js +20 -0
  359. package/dist/src/components/plate/components/input.js.map +1 -0
  360. package/dist/src/components/plate/components/insert-dropdown-menu.d.ts +12 -0
  361. package/dist/src/components/plate/components/insert-dropdown-menu.js +179 -0
  362. package/dist/src/components/plate/components/insert-dropdown-menu.js.map +1 -0
  363. package/dist/src/components/plate/components/kbd-leaf.d.ts +19 -0
  364. package/dist/src/components/plate/components/kbd-leaf.js +5 -0
  365. package/dist/src/components/plate/components/kbd-leaf.js.map +1 -0
  366. package/dist/src/components/plate/components/line-height-dropdown-menu.d.ts +2 -0
  367. package/dist/src/components/plate/components/line-height-dropdown-menu.js +12 -0
  368. package/dist/src/components/plate/components/line-height-dropdown-menu.js.map +1 -0
  369. package/dist/src/components/plate/components/link-element.d.ts +21 -0
  370. package/dist/src/components/plate/components/link-element.js +10 -0
  371. package/dist/src/components/plate/components/link-element.js.map +1 -0
  372. package/dist/src/components/plate/components/link-floating-toolbar.d.ts +5 -0
  373. package/dist/src/components/plate/components/link-floating-toolbar.js +54 -0
  374. package/dist/src/components/plate/components/link-floating-toolbar.js.map +1 -0
  375. package/dist/src/components/plate/components/link-toolbar-button.d.ts +15 -0
  376. package/dist/src/components/plate/components/link-toolbar-button.js +11 -0
  377. package/dist/src/components/plate/components/link-toolbar-button.js.map +1 -0
  378. package/dist/src/components/plate/components/mark-toolbar-button.d.ts +18 -0
  379. package/dist/src/components/plate/components/mark-toolbar-button.js +11 -0
  380. package/dist/src/components/plate/components/mark-toolbar-button.js.map +1 -0
  381. package/dist/src/components/plate/components/media-embed-element.d.ts +21 -0
  382. package/dist/src/components/plate/components/media-embed-element.js +23 -0
  383. package/dist/src/components/plate/components/media-embed-element.js.map +1 -0
  384. package/dist/src/components/plate/components/media-popover.d.ts +7 -0
  385. package/dist/src/components/plate/components/media-popover.js +30 -0
  386. package/dist/src/components/plate/components/media-popover.js.map +1 -0
  387. package/dist/src/components/plate/components/mention-element.d.ts +26 -0
  388. package/dist/src/components/plate/components/mention-element.js +12 -0
  389. package/dist/src/components/plate/components/mention-element.js.map +1 -0
  390. package/dist/src/components/plate/components/mention-input-element.d.ts +25 -0
  391. package/dist/src/components/plate/components/mention-input-element.js +89 -0
  392. package/dist/src/components/plate/components/mention-input-element.js.map +1 -0
  393. package/dist/src/components/plate/components/outdent-toolbar-button.d.ts +15 -0
  394. package/dist/src/components/plate/components/outdent-toolbar-button.js +10 -0
  395. package/dist/src/components/plate/components/outdent-toolbar-button.js.map +1 -0
  396. package/dist/src/components/plate/components/paragraph-element.d.ts +20 -0
  397. package/dist/src/components/plate/components/paragraph-element.js +4 -0
  398. package/dist/src/components/plate/components/paragraph-element.js.map +1 -0
  399. package/dist/src/components/plate/components/placeholder.d.ts +6 -0
  400. package/dist/src/components/plate/components/placeholder.js +37 -0
  401. package/dist/src/components/plate/components/placeholder.js.map +1 -0
  402. package/dist/src/components/plate/components/popover.d.ts +7 -0
  403. package/dist/src/components/plate/components/popover.js +11 -0
  404. package/dist/src/components/plate/components/popover.js.map +1 -0
  405. package/dist/src/components/plate/components/resizable.d.ts +40 -0
  406. package/dist/src/components/plate/components/resizable.js +38 -0
  407. package/dist/src/components/plate/components/resizable.js.map +1 -0
  408. package/dist/src/components/plate/components/separator.d.ts +4 -0
  409. package/dist/src/components/plate/components/separator.js +20 -0
  410. package/dist/src/components/plate/components/separator.js.map +1 -0
  411. package/dist/src/components/plate/components/slash-input-element.d.ts +22 -0
  412. package/dist/src/components/plate/components/slash-input-element.js +64 -0
  413. package/dist/src/components/plate/components/slash-input-element.js.map +1 -0
  414. package/dist/src/components/plate/components/table-cell-element.d.ts +47 -0
  415. package/dist/src/components/plate/components/table-cell-element.js +35 -0
  416. package/dist/src/components/plate/components/table-cell-element.js.map +1 -0
  417. package/dist/src/components/plate/components/table-element.d.ts +24 -0
  418. package/dist/src/components/plate/components/table-element.js +46 -0
  419. package/dist/src/components/plate/components/table-element.js.map +1 -0
  420. package/dist/src/components/plate/components/table-row-element.d.ts +23 -0
  421. package/dist/src/components/plate/components/table-row-element.js +7 -0
  422. package/dist/src/components/plate/components/table-row-element.js.map +1 -0
  423. package/dist/src/components/plate/components/todo-list-element.d.ts +21 -0
  424. package/dist/src/components/plate/components/todo-list-element.js +12 -0
  425. package/dist/src/components/plate/components/todo-list-element.js.map +1 -0
  426. package/dist/src/components/plate/components/toolbar.d.ts +29 -0
  427. package/dist/src/components/plate/components/toolbar.js +51 -0
  428. package/dist/src/components/plate/components/toolbar.js.map +1 -0
  429. package/dist/src/components/plate/components/tooltip.d.ts +12 -0
  430. package/dist/src/components/plate/components/tooltip.js +26 -0
  431. package/dist/src/components/plate/components/tooltip.js.map +1 -0
  432. package/dist/src/components/plate/components/turn-into-dropdown-menu.d.ts +2 -0
  433. package/dist/src/components/plate/components/turn-into-dropdown-menu.js +93 -0
  434. package/dist/src/components/plate/components/turn-into-dropdown-menu.js.map +1 -0
  435. package/dist/src/components/plate/icons.d.ts +85 -0
  436. package/dist/src/components/plate/icons.js +101 -0
  437. package/dist/src/components/plate/icons.js.map +1 -0
  438. package/dist/src/components/plate/lib/autoformat-rules.d.ts +10 -0
  439. package/dist/src/components/plate/lib/autoformat-rules.js +271 -0
  440. package/dist/src/components/plate/lib/autoformat-rules.js.map +1 -0
  441. package/dist/src/components/plate/usePlateEditor.d.ts +4 -0
  442. package/dist/src/components/plate/usePlateEditor.js +384 -0
  443. package/dist/src/components/plate/usePlateEditor.js.map +1 -0
  444. package/dist/src/components/states/error/index.d.ts +5 -0
  445. package/dist/src/components/states/error/index.js +15 -0
  446. package/dist/src/components/states/error/index.js.map +1 -0
  447. package/dist/src/context/FormData.d.ts +33 -0
  448. package/dist/src/context/FormData.js +109 -0
  449. package/dist/src/context/FormData.js.map +1 -0
  450. package/dist/src/hooks/useDependent/enhanced/useInputDependent/useInputDependent.d.ts +12 -0
  451. package/dist/src/hooks/useDependent/enhanced/useInputDependent/useInputDependent.js +36 -0
  452. package/dist/src/hooks/useDependent/enhanced/useInputDependent/useInputDependent.js.map +1 -0
  453. package/dist/src/hooks/useDependent/enhanced/useOptionsGenerator/useOptionsGenerator.d.ts +15 -0
  454. package/dist/src/hooks/useDependent/enhanced/useOptionsGenerator/useOptionsGenerator.js +16 -0
  455. package/dist/src/hooks/useDependent/enhanced/useOptionsGenerator/useOptionsGenerator.js.map +1 -0
  456. package/dist/src/hooks/useDependent/useDependent.d.ts +11 -0
  457. package/dist/src/hooks/useDependent/useDependent.js +86 -0
  458. package/dist/src/hooks/useDependent/useDependent.js.map +1 -0
  459. package/dist/src/hooks/useValueGenerator/useValueGenerator.d.ts +18 -0
  460. package/dist/src/hooks/useValueGenerator/useValueGenerator.js +99 -0
  461. package/dist/src/hooks/useValueGenerator/useValueGenerator.js.map +1 -0
  462. package/dist/src/index.d.ts +18 -0
  463. package/dist/src/index.js +19 -0
  464. package/dist/src/index.js.map +1 -0
  465. package/dist/src/styles/Hidden.styles.d.ts +7 -0
  466. package/dist/src/styles/Hidden.styles.js +16 -0
  467. package/dist/src/styles/Hidden.styles.js.map +1 -0
  468. package/dist/src/styles/Skeleton.d.ts +7 -0
  469. package/dist/src/styles/Skeleton.js +40 -0
  470. package/dist/src/styles/Skeleton.js.map +1 -0
  471. package/dist/src/styles/Textfield.styles.d.ts +5 -0
  472. package/dist/src/styles/Textfield.styles.js +34 -0
  473. package/dist/src/styles/Textfield.styles.js.map +1 -0
  474. package/dist/src/testutils.d.ts +14 -0
  475. package/dist/src/testutils.js +22 -0
  476. package/dist/src/testutils.js.map +1 -0
  477. package/dist/src/types/controlProps.d.ts +70 -0
  478. package/dist/src/types/controlProps.js +2 -0
  479. package/dist/src/types/controlProps.js.map +1 -0
  480. package/dist/src/types/index.d.ts +166 -0
  481. package/dist/src/types/index.js +2 -0
  482. package/dist/src/types/index.js.map +1 -0
  483. package/dist/src/ui/menu/hooks/useMenu.d.ts +13 -0
  484. package/dist/src/ui/menu/hooks/useMenu.js +41 -0
  485. package/dist/src/ui/menu/hooks/useMenu.js.map +1 -0
  486. package/dist/src/ui/menu/index.d.ts +13 -0
  487. package/dist/src/ui/menu/index.js +13 -0
  488. package/dist/src/ui/menu/index.js.map +1 -0
  489. package/dist/src/ui/menu/test/createControl.d.ts +15 -0
  490. package/dist/src/ui/menu/test/createControl.js +30 -0
  491. package/dist/src/ui/menu/test/createControl.js.map +1 -0
  492. package/dist/src/ui/menu/utils/detemineSubmenuTabs/index.d.ts +14 -0
  493. package/dist/src/ui/menu/utils/detemineSubmenuTabs/index.js +82 -0
  494. package/dist/src/ui/menu/utils/detemineSubmenuTabs/index.js.map +1 -0
  495. package/dist/src/ui-helper/HeaderCollapseButton/index.d.ts +7 -0
  496. package/dist/src/ui-helper/HeaderCollapseButton/index.js +9 -0
  497. package/dist/src/ui-helper/HeaderCollapseButton/index.js.map +1 -0
  498. package/dist/src/ui-helper/notifications/Error.d.ts +6 -0
  499. package/dist/src/ui-helper/notifications/Error.js +77 -0
  500. package/dist/src/ui-helper/notifications/Error.js.map +1 -0
  501. package/dist/src/ui-helper/notifications/images/background.d.ts +2 -0
  502. package/dist/src/ui-helper/notifications/images/background.js +7 -0
  503. package/dist/src/ui-helper/notifications/images/background.js.map +1 -0
  504. package/dist/src/ui-helper/notifications/images/spinner.d.ts +2 -0
  505. package/dist/src/ui-helper/notifications/images/spinner.js +6 -0
  506. package/dist/src/ui-helper/notifications/images/spinner.js.map +1 -0
  507. package/dist/src/ui-helper/notifications/images/under-improvement.d.ts +2 -0
  508. package/dist/src/ui-helper/notifications/images/under-improvement.js +6 -0
  509. package/dist/src/ui-helper/notifications/images/under-improvement.js.map +1 -0
  510. package/dist/src/utils/findFormControlError/index.d.ts +4 -0
  511. package/dist/src/utils/findFormControlError/index.js +24 -0
  512. package/dist/src/utils/findFormControlError/index.js.map +1 -0
  513. package/dist/src/utils/hasGroupRequiredFieldsWithValues/index.d.ts +6 -0
  514. package/dist/src/utils/hasGroupRequiredFieldsWithValues/index.js +22 -0
  515. package/dist/src/utils/hasGroupRequiredFieldsWithValues/index.js.map +1 -0
  516. package/dist/styles/formControl.module.scss +59 -0
  517. package/dist/tailwind.config.d.ts +1 -0
  518. package/dist/tailwind.config.js +17 -0
  519. package/dist/tailwind.config.js.map +1 -0
  520. package/dist/webpack.common.d.ts +63 -0
  521. package/dist/webpack.common.js +76 -0
  522. package/dist/webpack.common.js.map +1 -0
  523. package/dist/webpack.dev.d.ts +65 -0
  524. package/dist/webpack.dev.js +11 -0
  525. package/dist/webpack.dev.js.map +1 -0
  526. package/dist/webpack.prod.d.ts +65 -0
  527. package/dist/webpack.prod.js +10 -0
  528. package/dist/webpack.prod.js.map +1 -0
  529. package/package.json +39 -2
  530. package/dist/formbuilder.js +0 -521
  531. package/dist/formbuilder.js.LICENSE.txt +0 -60
  532. package/dist/formbuilder.js.map +0 -1
@@ -0,0 +1,10 @@
1
+ .checkbox-container {
2
+ all: unset;
3
+ width: fit-content;
4
+ padding: 6.5px 9px !important;
5
+
6
+ &:hover {
7
+ border: none;
8
+ outline: none;
9
+ }
10
+ }
@@ -0,0 +1,94 @@
1
+ .hasSubmenu {
2
+ padding: 0 !important;
3
+ }
4
+
5
+ .form-builder-container {
6
+ font-family: 'Roboto', sans-serif;
7
+ background-color: white;
8
+ z-index: 9;
9
+ padding: 0 20px;
10
+
11
+ @media screen and (max-width: 767px) {
12
+ padding: 0 40px;
13
+ }
14
+
15
+ *:not(i) {
16
+ font-family: inherit;
17
+ }
18
+
19
+ .required-message {
20
+ display: block;
21
+ font-size: 12px;
22
+ padding-top: 15px;
23
+ padding-bottom: 10px;
24
+ color: rgba(0,0,0,.54);
25
+ }
26
+
27
+ .xhtml-form-button {
28
+ min-width: 40px;
29
+ width: fit-content;
30
+ color: #4a95d0;
31
+ background-color: #fff;
32
+
33
+ padding: 3px 8px 3px 5px;
34
+ box-sizing: border-box;
35
+ transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
36
+ font-size: 14px;
37
+ font-weight: 400;
38
+ border-radius: 4px;
39
+ border: 1px solid #4a95d0;
40
+
41
+ cursor: pointer;
42
+ margin: 0;
43
+ margin-bottom: 2px;
44
+ display: inline-flex;
45
+ outline: 0;
46
+ position: relative;
47
+ align-items: center;
48
+ user-select: none;
49
+ vertical-align: middle;
50
+ -moz-appearance: none;
51
+ justify-content: center;
52
+ text-decoration: none;
53
+ -webkit-appearance: none;
54
+ -webkit-tap-highlight-color: transparent;
55
+
56
+ svg {
57
+ fill: #4a95d0;
58
+ transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
59
+ }
60
+
61
+ &:hover {
62
+ color: #fff;
63
+ background-color: #4a95d0;
64
+ svg {
65
+ fill: #fff;
66
+ }
67
+ }
68
+
69
+ &.remove-item {
70
+ width: 40px;
71
+ height: 40px;
72
+ padding: 0;
73
+ background: transparent;
74
+ box-shadow: none;
75
+ margin-top: -5px !important;
76
+ svg {
77
+ font-size: 16px;
78
+ padding: 0 2px;
79
+ fill: rgba(0,0,0,.54);
80
+ transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
81
+ }
82
+ &:hover {
83
+ background: #F0F0F0;
84
+ svg {
85
+ fill: #EB5757;
86
+ }
87
+ }
88
+ @media screen and (min-width: 768px) {
89
+ margin-top: 10px !important;
90
+ margin-left: -30px;
91
+ }
92
+ }
93
+ }
94
+ }
@@ -0,0 +1,65 @@
1
+ .form-footer-container {
2
+ display: flex;
3
+ flex-direction: column;
4
+ align-items: center;
5
+ justify-content: space-between;
6
+ font-family: 'Roboto', sans-serif;
7
+
8
+ width: 100%;
9
+ border-radius: 0 0 4px 4px;
10
+
11
+ background: #FFFFFF;
12
+ z-index: 1;
13
+
14
+ .notificationContainer {
15
+ width: 100%;
16
+ display: flex;
17
+ align-items: center;
18
+ padding: 20px 20px 0 20px;
19
+ max-height: 300px;
20
+ }
21
+
22
+ .controlsContainer {
23
+ width: 100%;
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: space-between;
27
+ padding: 16px;
28
+
29
+ .submit-container {
30
+ display: flex;
31
+ align-items: center;
32
+ gap: 24px;
33
+ }
34
+
35
+ .required-message {
36
+ display: block;
37
+ font-size: 12px;
38
+ color: rgba(0,0,0,.54);
39
+ }
40
+ }
41
+
42
+ button:last-child {
43
+ margin-left: auto;
44
+ }
45
+
46
+ .run-button__spinner {
47
+ -moz-animation: spin 2s infinite linear;
48
+ -o-animation: spin 2s infinite linear;
49
+ -webkit-animation: spin 2s infinite linear;
50
+ animation: spin 2s infinite linear;
51
+ }
52
+
53
+ @keyframes spin {
54
+ 0% {
55
+ transform: rotate(0);
56
+ }
57
+ 100% {
58
+ transform: rotate(360deg);
59
+ }
60
+ }
61
+
62
+ @media (max-width: 991px) {
63
+ border-radius: 0;
64
+ }
65
+ }
@@ -0,0 +1,69 @@
1
+ .form-group {
2
+ display: flex;
3
+ gap: 10px;
4
+ margin-bottom: -10px;
5
+ padding: 10px 0;
6
+ font-size: 14px;
7
+ font-weight: 400;
8
+ box-sizing: border-box;
9
+
10
+ @media screen and (max-width: 767px) {
11
+ flex-direction: column;
12
+ gap: 5px;
13
+ }
14
+
15
+ &.expert {
16
+ background-color: #f0f0f0;
17
+ padding-right: 10px;
18
+ margin: 10px 0;
19
+ }
20
+
21
+ &.error {
22
+ color: #a94442;
23
+
24
+ .error-message {
25
+ color: #a94442;
26
+ display: block !important;
27
+ font-weight: inherit;
28
+ font-size: 14px;
29
+ padding-top: 5px;
30
+ padding-left: 2px;
31
+ line-height: 1.42857;
32
+ }
33
+ }
34
+
35
+ .error-message {
36
+ display: none;
37
+ }
38
+
39
+ .control-label {
40
+ font-weight: 400;
41
+ width: 200px;
42
+ text-align: right;
43
+ flex-shrink: 0;
44
+ margin: 0 !important; // bootstrap overwrites label selector
45
+ padding-top: 9px;
46
+ color: rgba(0, 0, 0, 0.87);
47
+ font-size: 14px;
48
+
49
+ @media screen and (max-width: 767px) {
50
+ text-align: left;
51
+ width: 100%;
52
+ }
53
+ }
54
+
55
+ .control-wrapper {
56
+ display: flex;
57
+ flex-direction: column;
58
+ // width: 0;
59
+ flex: 1;
60
+ }
61
+
62
+ .control-wrapper-firstlayer {
63
+ width: calc(100% - 210px);
64
+
65
+ @media screen and (max-width: 767px) {
66
+ width: 100%;
67
+ }
68
+ }
69
+ }
@@ -0,0 +1,173 @@
1
+ .list-container {
2
+ margin: 5px 0 -10px;
3
+ padding: 10px 0;
4
+
5
+ .list-header {
6
+ display: flex;
7
+ align-items: center;
8
+ justify-content: space-between;
9
+
10
+ .list-header-label-button {
11
+ display: flex;
12
+ align-items: center;
13
+ gap: 10px;
14
+
15
+ @media screen and (max-width: 767px) {
16
+ flex-direction: column;
17
+ align-items: flex-start;
18
+ gap: 5px;
19
+ }
20
+
21
+ .list-header-label {
22
+ display: flex;
23
+ align-items: center;
24
+ gap: 4px;
25
+ width: 200px;
26
+
27
+ i {
28
+ color: #000000b2;
29
+ }
30
+ }
31
+
32
+ .list-label {
33
+ font-size: 14px;
34
+ font-weight: 400;
35
+ text-align: right;
36
+ font-size: 14px;
37
+ width: 100%;
38
+
39
+ @media screen and (max-width: 767px) {
40
+ text-align: left;
41
+ width: 100%;
42
+ }
43
+ }
44
+ }
45
+ }
46
+
47
+ .address {
48
+ margin-left: 0 !important;
49
+ }
50
+
51
+ .list-children-container {
52
+ position: relative;
53
+ margin-left: 195px;
54
+ @media screen and (max-width: 767px) {
55
+ margin-left: 0;
56
+ }
57
+
58
+ .form-list {
59
+ position: relative;
60
+ margin-top: 5px;
61
+ padding: 5px 0 5px 15px;
62
+ @media screen and (max-width: 767px) {
63
+ padding: 5px 0 5px 35px;
64
+ }
65
+
66
+ > div:first-of-type {
67
+ margin-top: -10px;
68
+ }
69
+
70
+ //* border-left
71
+ &::before {
72
+ content: "";
73
+ position: absolute;
74
+ top: 10px;
75
+ left: -3px;
76
+ height: calc(100% - 20px);
77
+ width: 2px;
78
+ background-color: rgb(192, 192, 192);
79
+ }
80
+ }
81
+
82
+ .remove-item {
83
+ border: none;
84
+ position: absolute;
85
+ top: 0px;
86
+ left: -30px;
87
+
88
+ @media screen and (max-width: 767px) {
89
+ top: 15px;
90
+ left: -45px;
91
+ }
92
+ }
93
+
94
+ .sort-buttons {
95
+ display: flex;
96
+ flex-direction: column;
97
+ align-items: center;
98
+ position: absolute;
99
+ left: -25px;
100
+ top: 50%;
101
+ transform: translateY(-50%);
102
+
103
+ button {
104
+ color: inherit;
105
+ display: flex;
106
+ align-items: center;
107
+ justify-content: center;
108
+ background-color: transparent;
109
+ border: none;
110
+ font-size: 10px;
111
+ padding: 0;
112
+ cursor: pointer;
113
+ height: 20px;
114
+ width: 25px;
115
+
116
+ &:disabled {
117
+ cursor: auto;
118
+ opacity: 0.5;
119
+ }
120
+ }
121
+ }
122
+ }
123
+
124
+ .form-list-single-item {
125
+ padding-right: 50px;
126
+
127
+ .control-label-group:first-child {
128
+ display: none;
129
+ }
130
+
131
+ .form-list {
132
+ margin-top: 0;
133
+ padding: 0;
134
+ position: relative;
135
+ padding-left: 15px;
136
+ @media screen and (max-width: 767px) {
137
+ padding-left: 35px;
138
+ }
139
+
140
+ > div:first-of-type {
141
+ margin-top: 0;
142
+ }
143
+
144
+ //* border-left
145
+ &::before {
146
+ content: "";
147
+ position: absolute;
148
+ top: 10px;
149
+ left: -3px;
150
+ height: calc(100% - 20px);
151
+ width: 2px;
152
+ background-color: rgb(192, 192, 192);
153
+ }
154
+ }
155
+
156
+ .form-list > .form-group > .control-label {
157
+ display: none;
158
+ }
159
+
160
+ .form-list > .form-group > .control-wrapper {
161
+ width: 100%;
162
+ }
163
+
164
+ .remove-item {
165
+ position: absolute;
166
+ left: auto !important;
167
+ right: -50px;
168
+ @media screen and (max-width: 767px) {
169
+ right: -55px;
170
+ }
171
+ }
172
+ }
173
+ }
@@ -0,0 +1,28 @@
1
+ .form-group-container {
2
+ margin: 30px 0 20px;
3
+ padding: 10px 0;
4
+
5
+ .group-header {
6
+ display: flex;
7
+ align-items: center;
8
+ justify-content: space-between;
9
+ }
10
+
11
+ .control-label-group {
12
+ font-size: 14px;
13
+ font-weight: 400;
14
+ font-size: 18px;
15
+ color: #0000008A;
16
+ margin-top: 0;
17
+ margin-bottom: 0;
18
+ margin-left: 210px;
19
+
20
+ @media screen and (max-width: 767px) {
21
+ margin-left: 0;
22
+ }
23
+ }
24
+
25
+ & > .form-group-container:first-of-type {
26
+ margin-top: 10px;
27
+ }
28
+ }
@@ -0,0 +1,3 @@
1
+ .error {
2
+ border-color: #a94442;
3
+ }
@@ -0,0 +1,29 @@
1
+ .form-control {
2
+ width: 100%;
3
+
4
+ &:has(input[readonly]) {
5
+ background-color: #e0e0e033;
6
+ cursor: not-allowed;
7
+ }
8
+ }
9
+
10
+ .error fieldset {
11
+ border-color: #a94442;
12
+ }
13
+
14
+ .boxContainer {
15
+ display: flex;
16
+ align-items: center;
17
+ justify-content: space-between;
18
+ width: 100%;
19
+ height: 100%;
20
+
21
+ p {
22
+ margin: 0;
23
+ padding: 0;
24
+ }
25
+
26
+ i {
27
+ color: #000000B2;
28
+ }
29
+ }
@@ -0,0 +1,31 @@
1
+ .mrn-input-container {
2
+ width: 100%;
3
+ input {
4
+ max-width: calc(100% - 35px);
5
+ white-space: nowrap;
6
+ overflow: hidden;
7
+ text-overflow: ellipsis;
8
+ color: rgba(0,0,0,0.54) !important;
9
+ font-weight: 400 !important;
10
+ }
11
+ }
12
+
13
+ .error fieldset {
14
+ border-color: #a94442;
15
+ }
16
+
17
+ .hidden {
18
+ display: none !important;
19
+ visibility: hidden !important;
20
+ }
21
+
22
+ .with-select {
23
+ display: flex;
24
+ align-items: center;
25
+ gap: 10px;
26
+
27
+ @media only screen and (max-width: 991px) {
28
+ flex-direction: column;
29
+ align-items: flex-start;
30
+ }
31
+ }
@@ -0,0 +1,13 @@
1
+ .multi-select-container {
2
+ width: 100%;
3
+ background-color: white;
4
+
5
+ &:has(input[readonly]) {
6
+ background-color: #e0e0e033;
7
+ cursor: not-allowed;
8
+ }
9
+ }
10
+
11
+ .error fieldset {
12
+ border-color: #a94442;
13
+ }
@@ -0,0 +1,26 @@
1
+ .password-container {
2
+ position: relative;
3
+ display: flex;
4
+ align-items: center;
5
+ width: 100%;
6
+ }
7
+
8
+ .password-input {
9
+ padding-right: 50px;
10
+ width: 100%;
11
+ height: 40px;
12
+ }
13
+
14
+ .toggle-icon {
15
+ background-color: transparent;
16
+ border: none;
17
+ position: absolute;
18
+ right: 10px;
19
+ display: flex;
20
+ align-items: center;
21
+ justify-content: center;
22
+ }
23
+
24
+ .error {
25
+ border-color: #a94442;
26
+ }
@@ -0,0 +1,15 @@
1
+ .select-container {
2
+ width: 100%;
3
+ height: 100%;
4
+ background-color: white;
5
+
6
+ input {
7
+ color: rgba(0, 0, 0, 0.54) !important;
8
+ font-weight: 400 !important;
9
+ }
10
+
11
+ &:has(input[readonly]) {
12
+ background-color: #e0e0e033;
13
+ cursor: not-allowed;
14
+ }
15
+ }
@@ -0,0 +1,14 @@
1
+ .error {
2
+ border-color: #a94442;
3
+ }
4
+
5
+ .textarea {
6
+ color: rgb(51, 51, 51);
7
+ width: 100%;
8
+ }
9
+
10
+ .textareaWithBorder {
11
+ border: 1px solid rgb(204, 204, 204);
12
+ border-radius: 4px;
13
+ width: 100%;
14
+ }
@@ -0,0 +1,72 @@
1
+ .address-group-container {
2
+ display: flex;
3
+ gap: 10px;
4
+ margin-top: 0;
5
+ margin-bottom: -10px;
6
+ @media screen and (max-width: 767px) {
7
+ flex-direction: column;
8
+ gap: 5px;
9
+ }
10
+ .control-label-group {
11
+ font-size: 14px;
12
+ font-weight: 400;
13
+ width: 200px;
14
+ text-align: right;
15
+ flex-shrink: 0;
16
+ margin: 0 !important;
17
+ padding-right: 3px;
18
+ padding-top: 10px;
19
+ color: #333;
20
+
21
+ @media screen and (max-width: 767px) {
22
+ padding-top: 9px;
23
+ text-align: left;
24
+ width: 100%;
25
+ }
26
+ }
27
+ }
28
+
29
+ .address {
30
+ display: grid;
31
+ grid-template-columns: 1fr 1fr 1fr;
32
+ width: 100%;
33
+ row-gap: 10px;
34
+ column-gap: 10px;
35
+ & > div > div {
36
+ margin: 0 !important;
37
+ padding: 0 !important;
38
+ }
39
+ & > div {
40
+ margin: 0 !important;
41
+ &:nth-of-type(1) {
42
+ grid-area: streetName;
43
+ }
44
+ &:nth-of-type(2) {
45
+ grid-area: houseNumber;
46
+ }
47
+ &:nth-of-type(3) {
48
+ grid-area: postalCode;
49
+ }
50
+ &:nth-of-type(4) {
51
+ grid-area: locality;
52
+ }
53
+ &:nth-of-type(5) {
54
+ grid-area: country;
55
+ }
56
+ }
57
+ }
58
+
59
+ .address-default {
60
+ grid-template-areas:
61
+ "streetName streetName houseNumber"
62
+ "postalCode locality locality"
63
+ "country country country";
64
+ }
65
+
66
+ .gb {
67
+ grid-template-areas:
68
+ "houseNumber streetName streetName"
69
+ "locality locality locality"
70
+ "postalCode postalCode postalCode"
71
+ "country country country";
72
+ }
@@ -0,0 +1,2 @@
1
+ declare const Error: () => import("react/jsx-runtime").JSX.Element;
2
+ export default Error;
@@ -0,0 +1,6 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const Error = () => {
3
+ return (_jsx("svg", { width: "18", height: "18", viewBox: "0 0 18 18", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M8.1 11.7H9.9V13.5H8.1V11.7ZM8.1 4.5H9.9V9.9H8.1V4.5ZM8.991 0C4.023 0 0 4.032 0 9C0 13.968 4.023 18 8.991 18C13.968 18 18 13.968 18 9C18 4.032 13.968 0 8.991 0ZM9 16.2C5.022 16.2 1.8 12.978 1.8 9C1.8 5.022 5.022 1.8 9 1.8C12.978 1.8 16.2 5.022 16.2 9C16.2 12.978 12.978 16.2 9 16.2Z", fill: "#B01F14" }) }));
4
+ };
5
+ export default Error;
6
+ //# sourceMappingURL=Error.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Error.js","sourceRoot":"","sources":["../../../../../src/assets/icons/error/Error.tsx"],"names":[],"mappings":";AAEA,MAAM,KAAK,GAAG,GAAG,EAAE;IACjB,OAAO,CACL,cACE,KAAK,EAAC,IAAI,EACV,MAAM,EAAC,IAAI,EACX,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,YAElC,eACE,CAAC,EAAC,4RAA4R,EAC9R,IAAI,EAAC,SAAS,GACd,GACE,CACP,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,KAAK,CAAC"}
@@ -0,0 +1,10 @@
1
+ import { DetailedHTMLProps, InputHTMLAttributes } from "react";
2
+ import { CheckboxFormControl, OnChangeValueType } from "../../types";
3
+ export interface IProps extends DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> {
4
+ control: CheckboxFormControl;
5
+ id: string;
6
+ objectPathId?: string;
7
+ onChangeValue: (newProperties: OnChangeValueType) => void;
8
+ }
9
+ declare const EnhancedCheckbox: ({ onChangeValue, ...props }: IProps) => import("react/jsx-runtime").JSX.Element;
10
+ export default EnhancedCheckbox;