@zealicsolutions/web-ui 0.2.325 → 0.2.326

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 (472) hide show
  1. package/dist/cjs/assets/index.d.ts +8 -0
  2. package/dist/cjs/atoms/Avatar/Avatar.d.ts +20 -0
  3. package/dist/cjs/atoms/Buttons/IconButton.d.ts +12 -0
  4. package/dist/cjs/atoms/Buttons/TextButton.d.ts +21 -0
  5. package/dist/cjs/atoms/Buttons/TouchableOpacity.d.ts +16 -0
  6. package/dist/cjs/atoms/Checkbox/Checkbox.d.ts +14 -0
  7. package/dist/cjs/atoms/Checkbox/helpers.d.ts +2 -0
  8. package/dist/cjs/atoms/Checkbox/types.d.ts +18 -0
  9. package/dist/cjs/atoms/Circle/Circle.d.ts +12 -0
  10. package/dist/cjs/atoms/CircularIndicator/CircularIndicator.d.ts +12 -0
  11. package/dist/cjs/atoms/Divider/Divider.d.ts +13 -0
  12. package/dist/cjs/atoms/HorizontalButtons/HorizontalButtons.d.ts +11 -0
  13. package/dist/cjs/atoms/Icon/Icon.d.ts +38 -0
  14. package/dist/cjs/atoms/Input/Input.d.ts +39 -0
  15. package/dist/cjs/atoms/Input/helpers.d.ts +44 -0
  16. package/dist/cjs/atoms/Paddings/Paddings.d.ts +13 -0
  17. package/dist/cjs/atoms/RadioButtons/RadioButtons.d.ts +56 -0
  18. package/dist/cjs/atoms/RadioButtons/RadioOption.d.ts +11 -0
  19. package/dist/cjs/atoms/RadioButtons/helpers.d.ts +17 -0
  20. package/dist/cjs/atoms/RadioButtons/styles.d.ts +13 -0
  21. package/dist/cjs/atoms/RegularImage/RegularImage.d.ts +38 -0
  22. package/dist/cjs/atoms/RichTextViewer/RichTextViewer.d.ts +25 -0
  23. package/dist/cjs/atoms/RichTextViewer/components/EditorElement.d.ts +5 -0
  24. package/dist/cjs/atoms/RichTextViewer/components/Leaf.d.ts +2 -0
  25. package/dist/cjs/atoms/RichTextViewer/components/index.d.ts +2 -0
  26. package/dist/cjs/atoms/RichTextViewer/types.d.ts +36 -0
  27. package/dist/cjs/atoms/Select/Select.d.ts +34 -0
  28. package/dist/cjs/atoms/Select/styles.d.ts +27 -0
  29. package/dist/cjs/atoms/Spacer/Spacer.d.ts +11 -0
  30. package/dist/cjs/atoms/Spinner/Spinner.d.ts +9 -0
  31. package/dist/cjs/atoms/Tab/Tab.d.ts +56 -0
  32. package/dist/cjs/atoms/Tab/styles.d.ts +28 -0
  33. package/dist/cjs/atoms/Tab/utils.d.ts +4 -0
  34. package/dist/cjs/atoms/TextWrapper/TextWrapper.d.ts +23 -0
  35. package/dist/cjs/atoms/Toast/ToastContent.d.ts +7 -0
  36. package/dist/cjs/atoms/Toast/toast.d.ts +3 -0
  37. package/dist/cjs/atoms/Toast/types.d.ts +6 -0
  38. package/dist/cjs/atoms/Tooltip/Tooltip.d.ts +12 -0
  39. package/dist/cjs/atoms/ValidationTag/ValidationTag.d.ts +6 -0
  40. package/dist/cjs/atoms/index.d.ts +23 -0
  41. package/dist/cjs/constants/params.d.ts +8 -0
  42. package/dist/cjs/containers/Container.d.ts +79 -0
  43. package/dist/cjs/containers/Container.stories.d.ts +8 -0
  44. package/dist/cjs/containers/ContainerStoriesComponent.d.ts +7 -0
  45. package/dist/cjs/containers/FormContainer.d.ts +8 -0
  46. package/dist/cjs/containers/FormOrganismItem.d.ts +11 -0
  47. package/dist/cjs/containers/FormStepContainer.d.ts +11 -0
  48. package/dist/cjs/containers/MoleculeItem.d.ts +8 -0
  49. package/dist/cjs/containers/OrganismItem.d.ts +14 -0
  50. package/dist/cjs/containers/helpers.d.ts +6 -0
  51. package/dist/cjs/containers/hooks/index.d.ts +3 -0
  52. package/dist/cjs/containers/hooks/useCheckCondition.d.ts +16 -0
  53. package/dist/cjs/containers/hooks/useCheckCondition.test.d.ts +1 -0
  54. package/dist/cjs/containers/hooks/useFormOrganismItem.d.ts +3 -0
  55. package/dist/cjs/containers/hooks/useSetFormData.d.ts +10 -0
  56. package/dist/cjs/containers/hooks/useStateListenerValue.d.ts +18 -0
  57. package/dist/cjs/containers/hooks/useStateModifierHandler.d.ts +7 -0
  58. package/dist/cjs/containers/hooks/useStateViewModifierHandler.d.ts +2 -0
  59. package/dist/cjs/containers/index.d.ts +7 -0
  60. package/dist/cjs/containers/mock-data.d.ts +1153 -0
  61. package/dist/cjs/containers/styles.d.ts +41 -0
  62. package/dist/cjs/containers/types/moleculeTypes.d.ts +415 -0
  63. package/dist/cjs/containers/types/types.d.ts +135 -0
  64. package/dist/cjs/containers/utils.d.ts +2 -0
  65. package/dist/cjs/contexts/AccountButtonContext/AccountButtonContext.d.ts +14 -0
  66. package/dist/cjs/contexts/AccountButtonContext/AccountButtonContextProvider.d.ts +9 -0
  67. package/dist/cjs/contexts/ButtonActionsContext/ButtonActionsContext.d.ts +12 -0
  68. package/dist/cjs/contexts/ButtonActionsContext/ButtonActionsContextProvider.d.ts +26 -0
  69. package/dist/cjs/contexts/FormStepContext/FormStepContext.d.ts +13 -0
  70. package/dist/cjs/contexts/FormStepContext/FormStepContextProvider.d.ts +5 -0
  71. package/dist/cjs/contexts/FormStepContext/utils.d.ts +2 -0
  72. package/dist/cjs/contexts/MlrRichTextViewerContext/MlrRichTextViewerContext.d.ts +8 -0
  73. package/dist/cjs/contexts/MlrRichTextViewerContext/MlrRichTextViewerProvider.d.ts +8 -0
  74. package/dist/cjs/contexts/MlrRichTextViewerContext/types.d.ts +15 -0
  75. package/dist/cjs/contexts/OrganismContext/OrganismContext.d.ts +35 -0
  76. package/dist/cjs/contexts/OrganismContext/OrganismContextProvider.d.ts +34 -0
  77. package/dist/cjs/contexts/OrganismContext/utils.d.ts +5 -0
  78. package/dist/cjs/contexts/StateContext/StateContext.d.ts +7 -0
  79. package/dist/cjs/contexts/StateContext/StateContextProvider.d.ts +7 -0
  80. package/dist/cjs/contexts/hooks/index.d.ts +6 -0
  81. package/dist/cjs/contexts/hooks/useAccountButtonContext.d.ts +6 -0
  82. package/dist/cjs/contexts/hooks/useButtonActionsContext.d.ts +1 -0
  83. package/dist/cjs/contexts/hooks/useFormStepContext.d.ts +1 -0
  84. package/dist/cjs/contexts/hooks/useMlrRichTextViewerContext.d.ts +1 -0
  85. package/dist/cjs/contexts/hooks/useOrganismContext.d.ts +1 -0
  86. package/dist/cjs/contexts/hooks/useStateContext.d.ts +1 -0
  87. package/dist/cjs/contexts/index.d.ts +13 -0
  88. package/dist/cjs/fieldsConfiguration/getFieldPlaceholder.d.ts +2 -0
  89. package/dist/cjs/fieldsConfiguration/index.d.ts +3 -0
  90. package/dist/cjs/fieldsConfiguration/types.d.ts +29 -0
  91. package/dist/cjs/fieldsConfiguration/utils.d.ts +6 -0
  92. package/dist/cjs/helpers/constants.d.ts +6 -0
  93. package/dist/cjs/helpers/date.d.ts +3 -0
  94. package/dist/cjs/helpers/slate.d.ts +2 -0
  95. package/dist/cjs/helpers/styles.d.ts +5 -0
  96. package/dist/cjs/helpers/utils.d.ts +14 -0
  97. package/dist/cjs/helpers/validations.d.ts +23 -0
  98. package/dist/cjs/hooks/index.d.ts +2 -0
  99. package/dist/cjs/hooks/useRequiredConsentsAcceptedValues.d.ts +2 -0
  100. package/dist/cjs/hooks/useStep.d.ts +11 -0
  101. package/dist/cjs/icons/ArrowRight.d.ts +2 -0
  102. package/dist/cjs/icons/Bell.d.ts +2 -0
  103. package/dist/cjs/icons/Bookmark.d.ts +2 -0
  104. package/dist/cjs/icons/CaretDown.d.ts +2 -0
  105. package/dist/cjs/icons/CaretLeft.d.ts +2 -0
  106. package/dist/cjs/icons/CaretRight.d.ts +2 -0
  107. package/dist/cjs/icons/CaretUp.d.ts +2 -0
  108. package/dist/cjs/icons/Check.d.ts +2 -0
  109. package/dist/cjs/icons/Close.d.ts +2 -0
  110. package/dist/cjs/icons/Edit.d.ts +2 -0
  111. package/dist/cjs/icons/Filter.d.ts +2 -0
  112. package/dist/cjs/icons/Hide.d.ts +2 -0
  113. package/dist/cjs/icons/Info.d.ts +2 -0
  114. package/dist/cjs/icons/InfoBoxIcon.d.ts +2 -0
  115. package/dist/cjs/icons/Mail.d.ts +2 -0
  116. package/dist/cjs/icons/Menu.d.ts +2 -0
  117. package/dist/cjs/icons/Minus.d.ts +2 -0
  118. package/dist/cjs/icons/Mobile.d.ts +2 -0
  119. package/dist/cjs/icons/Play.d.ts +2 -0
  120. package/dist/cjs/icons/Save.d.ts +2 -0
  121. package/dist/cjs/icons/Search.d.ts +2 -0
  122. package/dist/cjs/icons/View.d.ts +2 -0
  123. package/dist/cjs/icons/Warning.d.ts +2 -0
  124. package/dist/cjs/icons/index.d.ts +23 -0
  125. package/dist/cjs/index.css +503 -0
  126. package/dist/cjs/index.d.ts +7 -0
  127. package/dist/cjs/index.js +169 -0
  128. package/dist/cjs/index.js.map +1 -0
  129. package/dist/cjs/molecules/Alert/Alert.d.ts +20 -0
  130. package/dist/cjs/molecules/Alert/Alert.stories.d.ts +9 -0
  131. package/dist/cjs/molecules/AvatarDropdown/AvatarDropdown.d.ts +11 -0
  132. package/dist/cjs/molecules/AvatarDropdown/AvatarDropdown.stories.d.ts +8 -0
  133. package/dist/cjs/molecules/BottomNavBarItem/BottomNavBarItem.d.ts +11 -0
  134. package/dist/cjs/molecules/BottomNavBarItem/BottomNavBarItem.stories.d.ts +8 -0
  135. package/dist/cjs/molecules/Button/Button.d.ts +47 -0
  136. package/dist/cjs/molecules/Button/Button.stories.d.ts +8 -0
  137. package/dist/cjs/molecules/Caruser/Carousel.d.ts +35 -0
  138. package/dist/cjs/molecules/CheckboxField/CheckboxField.d.ts +37 -0
  139. package/dist/cjs/molecules/CheckboxField/CheckboxField.stories.d.ts +61 -0
  140. package/dist/cjs/molecules/CheckboxField/CheckboxGroup.d.ts +10 -0
  141. package/dist/cjs/molecules/CheckboxField/CheckboxGroup.stories.d.ts +32 -0
  142. package/dist/cjs/molecules/CheckboxField/styles.d.ts +13 -0
  143. package/dist/cjs/molecules/Checklist/Checklist.d.ts +31 -0
  144. package/dist/cjs/molecules/Checklist/Checklist.stories.d.ts +8 -0
  145. package/dist/cjs/molecules/Consent/Consent.d.ts +27 -0
  146. package/dist/cjs/molecules/Consent/Consent.stories.d.ts +8 -0
  147. package/dist/cjs/molecules/Consent/ConsentCapture.d.ts +20 -0
  148. package/dist/cjs/molecules/Consent/ConsentMolecule.d.ts +11 -0
  149. package/dist/cjs/molecules/Consent/consentMock.d.ts +7 -0
  150. package/dist/cjs/molecules/CustomValidation/CustomValidation.d.ts +14 -0
  151. package/dist/cjs/molecules/CustomValidation/CustomValidation.stories.d.ts +8 -0
  152. package/dist/cjs/molecules/Drawer/Drawer.d.ts +3 -0
  153. package/dist/cjs/molecules/Drawer/Drawer.stories.d.ts +9 -0
  154. package/dist/cjs/molecules/Drawer/styles.d.ts +34 -0
  155. package/dist/cjs/molecules/EmphasizedText/EmphasizedText.d.ts +6 -0
  156. package/dist/cjs/molecules/EmphasizedText/EmphasizedText.stories.d.ts +8 -0
  157. package/dist/cjs/molecules/FeedContentHeader/FeedContentHeader.d.ts +11 -0
  158. package/dist/cjs/molecules/FeedContentHeader/FeedContentHeader.stories.d.ts +8 -0
  159. package/dist/cjs/molecules/FieldLabels/FieldLabels.d.ts +42 -0
  160. package/dist/cjs/molecules/FieldLabels/FieldLabels.stories.d.ts +8 -0
  161. package/dist/cjs/molecules/FieldLabels/helpers.d.ts +8 -0
  162. package/dist/cjs/molecules/FieldMapper/FieldMapper.d.ts +13 -0
  163. package/dist/cjs/molecules/FieldSection/FieldSection.d.ts +9 -0
  164. package/dist/cjs/molecules/FieldSection/FieldSection.stories.d.ts +8 -0
  165. package/dist/cjs/molecules/HorizontalButtonsField/HorizontalButtonsField.d.ts +12 -0
  166. package/dist/cjs/molecules/HorizontalButtonsField/HorizontalButtonsField.stories.d.ts +15 -0
  167. package/dist/cjs/molecules/Icon/IconPicker.d.ts +7 -0
  168. package/dist/cjs/molecules/Icon/IconPickerController.d.ts +7 -0
  169. package/dist/cjs/molecules/Icon/IconRenderer.d.ts +11 -0
  170. package/dist/cjs/molecules/Icon/index.d.ts +3 -0
  171. package/dist/cjs/molecules/Image/Image.d.ts +20 -0
  172. package/dist/cjs/molecules/Image/Image.stories.d.ts +8 -0
  173. package/dist/cjs/molecules/InputField/InputField.d.ts +22 -0
  174. package/dist/cjs/molecules/InputField/InputField.stories.d.ts +66 -0
  175. package/dist/cjs/molecules/Link/Link.d.ts +12 -0
  176. package/dist/cjs/molecules/Link/Link.stories.d.ts +8 -0
  177. package/dist/cjs/molecules/MenuItems/MenuItem.d.ts +20 -0
  178. package/dist/cjs/molecules/MenuItems/MenuItems.d.ts +11 -0
  179. package/dist/cjs/molecules/MenuItems/MenuItems.stories.d.ts +8 -0
  180. package/dist/cjs/molecules/MenuNavigation/MenuNavigation.d.ts +15 -0
  181. package/dist/cjs/molecules/MenuNavigation/MenuNavigation.stories.d.ts +9 -0
  182. package/dist/cjs/molecules/NewButton/NewButton.d.ts +22 -0
  183. package/dist/cjs/molecules/NewButton/NewButton.stories.d.ts +4 -0
  184. package/dist/cjs/molecules/NewDivider/NewDivider.d.ts +15 -0
  185. package/dist/cjs/molecules/NewDivider/NewDivider.stories.d.ts +8 -0
  186. package/dist/cjs/molecules/NewImage/NewImage.d.ts +18 -0
  187. package/dist/cjs/molecules/NewImage/NewImage.stories.d.ts +8 -0
  188. package/dist/cjs/molecules/NewLink/NewLink.d.ts +16 -0
  189. package/dist/cjs/molecules/NewLink/NewLink.stories.d.ts +9 -0
  190. package/dist/cjs/molecules/NewVideo/NewVideo.d.ts +20 -0
  191. package/dist/cjs/molecules/NewVideo/NewVideo.stories.d.ts +8 -0
  192. package/dist/cjs/molecules/PasswordSetup/PasswordSetup.d.ts +14 -0
  193. package/dist/cjs/molecules/PasswordSetup/PasswordSetup.stories.d.ts +8 -0
  194. package/dist/cjs/molecules/PasswordSetup/types.d.ts +25 -0
  195. package/dist/cjs/molecules/PasswordSetup/utils.d.ts +3 -0
  196. package/dist/cjs/molecules/PdfDocument/PdfDocument.d.ts +14 -0
  197. package/dist/cjs/molecules/PdfDocument/PdfDocument.stories.d.ts +8 -0
  198. package/dist/cjs/molecules/RadioButtonField/RadioButtonField.d.ts +74 -0
  199. package/dist/cjs/molecules/RadioButtonField/RadioButtonField.stories.d.ts +74 -0
  200. package/dist/cjs/molecules/SelectField/SelectField.d.ts +23 -0
  201. package/dist/cjs/molecules/SelectField/SelectField.stories.d.ts +53 -0
  202. package/dist/cjs/molecules/SelectableInfoCard/BaseSelectable.d.ts +9 -0
  203. package/dist/cjs/molecules/SelectableInfoCard/SelectableCardGroup.d.ts +9 -0
  204. package/dist/cjs/molecules/SelectableInfoCard/SelectableInfoCard.stories.d.ts +8 -0
  205. package/dist/cjs/molecules/SelectableInfoCard/styles.d.ts +29 -0
  206. package/dist/cjs/molecules/SettingsSelectionField/SettingsSelectionField.d.ts +9 -0
  207. package/dist/cjs/molecules/SettingsSelectionField/SettingsSelectionField.stories.d.ts +8 -0
  208. package/dist/cjs/molecules/SimpleText/SimpleText.d.ts +23 -0
  209. package/dist/cjs/molecules/SimpleText/SimpleText.stories.d.ts +8 -0
  210. package/dist/cjs/molecules/Stepper/Stepper.d.ts +22 -0
  211. package/dist/cjs/molecules/Stepper/Stepper.stories.d.ts +8 -0
  212. package/dist/cjs/molecules/TabGroup/TabGroup.d.ts +32 -0
  213. package/dist/cjs/molecules/TabGroup/TabGroup.stories.d.ts +8 -0
  214. package/dist/cjs/molecules/TabGroup/styles.d.ts +43 -0
  215. package/dist/cjs/molecules/TabGroup/useTabAnimation.d.ts +6 -0
  216. package/dist/cjs/molecules/TextMolecule/TextMolecule.d.ts +20 -0
  217. package/dist/cjs/molecules/TextMolecule/TextMolecule.stories.d.ts +8 -0
  218. package/dist/cjs/molecules/Video/Video.d.ts +22 -0
  219. package/dist/cjs/molecules/Video/Video.stories.d.ts +8 -0
  220. package/dist/cjs/molecules/ZealUIModal/ZealUIModal.d.ts +30 -0
  221. package/dist/cjs/molecules/ZealUIModal/ZealUIModal.stories.d.ts +8 -0
  222. package/dist/cjs/molecules/index.d.ts +38 -0
  223. package/dist/cjs/organisms/Organism/Organism.d.ts +5 -0
  224. package/dist/cjs/organisms/Organism/Organism.stories.d.ts +8 -0
  225. package/dist/cjs/organisms/Organism/mock-data.d.ts +410 -0
  226. package/dist/cjs/organisms/OrganismItem/helpers.d.ts +3 -0
  227. package/dist/cjs/organisms/index.d.ts +1 -0
  228. package/dist/cjs/organisms/types.d.ts +21 -0
  229. package/dist/cjs/theme/index.d.ts +5 -0
  230. package/dist/cjs/theme/provider.d.ts +7 -0
  231. package/dist/cjs/theme/theme.d.ts +2 -0
  232. package/dist/cjs/theme/toastStyles.d.ts +1 -0
  233. package/dist/cjs/theme/types.d.ts +19 -0
  234. package/dist/cjs/theme/useMediaQuery.d.ts +2 -0
  235. package/dist/cjs/typescript.d.ts +17 -0
  236. package/dist/esm/assets/index.d.ts +8 -0
  237. package/dist/esm/atoms/Avatar/Avatar.d.ts +20 -0
  238. package/dist/esm/atoms/Buttons/IconButton.d.ts +12 -0
  239. package/dist/esm/atoms/Buttons/TextButton.d.ts +21 -0
  240. package/dist/esm/atoms/Buttons/TouchableOpacity.d.ts +16 -0
  241. package/dist/esm/atoms/Checkbox/Checkbox.d.ts +14 -0
  242. package/dist/esm/atoms/Checkbox/helpers.d.ts +2 -0
  243. package/dist/esm/atoms/Checkbox/types.d.ts +18 -0
  244. package/dist/esm/atoms/Circle/Circle.d.ts +12 -0
  245. package/dist/esm/atoms/CircularIndicator/CircularIndicator.d.ts +12 -0
  246. package/dist/esm/atoms/Divider/Divider.d.ts +13 -0
  247. package/dist/esm/atoms/HorizontalButtons/HorizontalButtons.d.ts +11 -0
  248. package/dist/esm/atoms/Icon/Icon.d.ts +38 -0
  249. package/dist/esm/atoms/Input/Input.d.ts +39 -0
  250. package/dist/esm/atoms/Input/helpers.d.ts +44 -0
  251. package/dist/esm/atoms/Paddings/Paddings.d.ts +13 -0
  252. package/dist/esm/atoms/RadioButtons/RadioButtons.d.ts +56 -0
  253. package/dist/esm/atoms/RadioButtons/RadioOption.d.ts +11 -0
  254. package/dist/esm/atoms/RadioButtons/helpers.d.ts +17 -0
  255. package/dist/esm/atoms/RadioButtons/styles.d.ts +13 -0
  256. package/dist/esm/atoms/RegularImage/RegularImage.d.ts +38 -0
  257. package/dist/esm/atoms/RichTextViewer/RichTextViewer.d.ts +25 -0
  258. package/dist/esm/atoms/RichTextViewer/components/EditorElement.d.ts +5 -0
  259. package/dist/esm/atoms/RichTextViewer/components/Leaf.d.ts +2 -0
  260. package/dist/esm/atoms/RichTextViewer/components/index.d.ts +2 -0
  261. package/dist/esm/atoms/RichTextViewer/types.d.ts +36 -0
  262. package/dist/esm/atoms/Select/Select.d.ts +34 -0
  263. package/dist/esm/atoms/Select/styles.d.ts +27 -0
  264. package/dist/esm/atoms/Spacer/Spacer.d.ts +11 -0
  265. package/dist/esm/atoms/Spinner/Spinner.d.ts +9 -0
  266. package/dist/esm/atoms/Tab/Tab.d.ts +56 -0
  267. package/dist/esm/atoms/Tab/styles.d.ts +28 -0
  268. package/dist/esm/atoms/Tab/utils.d.ts +4 -0
  269. package/dist/esm/atoms/TextWrapper/TextWrapper.d.ts +23 -0
  270. package/dist/esm/atoms/Toast/ToastContent.d.ts +7 -0
  271. package/dist/esm/atoms/Toast/toast.d.ts +3 -0
  272. package/dist/esm/atoms/Toast/types.d.ts +6 -0
  273. package/dist/esm/atoms/Tooltip/Tooltip.d.ts +12 -0
  274. package/dist/esm/atoms/ValidationTag/ValidationTag.d.ts +6 -0
  275. package/dist/esm/atoms/index.d.ts +23 -0
  276. package/dist/esm/constants/params.d.ts +8 -0
  277. package/dist/esm/containers/Container.d.ts +79 -0
  278. package/dist/esm/containers/Container.stories.d.ts +8 -0
  279. package/dist/esm/containers/ContainerStoriesComponent.d.ts +7 -0
  280. package/dist/esm/containers/FormContainer.d.ts +8 -0
  281. package/dist/esm/containers/FormOrganismItem.d.ts +11 -0
  282. package/dist/esm/containers/FormStepContainer.d.ts +11 -0
  283. package/dist/esm/containers/MoleculeItem.d.ts +8 -0
  284. package/dist/esm/containers/OrganismItem.d.ts +14 -0
  285. package/dist/esm/containers/helpers.d.ts +6 -0
  286. package/dist/esm/containers/hooks/index.d.ts +3 -0
  287. package/dist/esm/containers/hooks/useCheckCondition.d.ts +16 -0
  288. package/dist/esm/containers/hooks/useCheckCondition.test.d.ts +1 -0
  289. package/dist/esm/containers/hooks/useFormOrganismItem.d.ts +3 -0
  290. package/dist/esm/containers/hooks/useSetFormData.d.ts +10 -0
  291. package/dist/esm/containers/hooks/useStateListenerValue.d.ts +18 -0
  292. package/dist/esm/containers/hooks/useStateModifierHandler.d.ts +7 -0
  293. package/dist/esm/containers/hooks/useStateViewModifierHandler.d.ts +2 -0
  294. package/dist/esm/containers/index.d.ts +7 -0
  295. package/dist/esm/containers/mock-data.d.ts +1153 -0
  296. package/dist/esm/containers/styles.d.ts +41 -0
  297. package/dist/esm/containers/types/moleculeTypes.d.ts +415 -0
  298. package/dist/esm/containers/types/types.d.ts +135 -0
  299. package/dist/esm/containers/utils.d.ts +2 -0
  300. package/dist/esm/contexts/AccountButtonContext/AccountButtonContext.d.ts +14 -0
  301. package/dist/esm/contexts/AccountButtonContext/AccountButtonContextProvider.d.ts +9 -0
  302. package/dist/esm/contexts/ButtonActionsContext/ButtonActionsContext.d.ts +12 -0
  303. package/dist/esm/contexts/ButtonActionsContext/ButtonActionsContextProvider.d.ts +26 -0
  304. package/dist/esm/contexts/FormStepContext/FormStepContext.d.ts +13 -0
  305. package/dist/esm/contexts/FormStepContext/FormStepContextProvider.d.ts +5 -0
  306. package/dist/esm/contexts/FormStepContext/utils.d.ts +2 -0
  307. package/dist/esm/contexts/MlrRichTextViewerContext/MlrRichTextViewerContext.d.ts +8 -0
  308. package/dist/esm/contexts/MlrRichTextViewerContext/MlrRichTextViewerProvider.d.ts +8 -0
  309. package/dist/esm/contexts/MlrRichTextViewerContext/types.d.ts +15 -0
  310. package/dist/esm/contexts/OrganismContext/OrganismContext.d.ts +35 -0
  311. package/dist/esm/contexts/OrganismContext/OrganismContextProvider.d.ts +34 -0
  312. package/dist/esm/contexts/OrganismContext/utils.d.ts +5 -0
  313. package/dist/esm/contexts/StateContext/StateContext.d.ts +7 -0
  314. package/dist/esm/contexts/StateContext/StateContextProvider.d.ts +7 -0
  315. package/dist/esm/contexts/hooks/index.d.ts +6 -0
  316. package/dist/esm/contexts/hooks/useAccountButtonContext.d.ts +6 -0
  317. package/dist/esm/contexts/hooks/useButtonActionsContext.d.ts +1 -0
  318. package/dist/esm/contexts/hooks/useFormStepContext.d.ts +1 -0
  319. package/dist/esm/contexts/hooks/useMlrRichTextViewerContext.d.ts +1 -0
  320. package/dist/esm/contexts/hooks/useOrganismContext.d.ts +1 -0
  321. package/dist/esm/contexts/hooks/useStateContext.d.ts +1 -0
  322. package/dist/esm/contexts/index.d.ts +13 -0
  323. package/dist/esm/fieldsConfiguration/getFieldPlaceholder.d.ts +2 -0
  324. package/dist/esm/fieldsConfiguration/index.d.ts +3 -0
  325. package/dist/esm/fieldsConfiguration/types.d.ts +29 -0
  326. package/dist/esm/fieldsConfiguration/utils.d.ts +6 -0
  327. package/dist/esm/helpers/constants.d.ts +6 -0
  328. package/dist/esm/helpers/date.d.ts +3 -0
  329. package/dist/esm/helpers/slate.d.ts +2 -0
  330. package/dist/esm/helpers/styles.d.ts +5 -0
  331. package/dist/esm/helpers/utils.d.ts +14 -0
  332. package/dist/esm/helpers/validations.d.ts +23 -0
  333. package/dist/esm/hooks/index.d.ts +2 -0
  334. package/dist/esm/hooks/useRequiredConsentsAcceptedValues.d.ts +2 -0
  335. package/dist/esm/hooks/useStep.d.ts +11 -0
  336. package/dist/esm/icons/ArrowRight.d.ts +2 -0
  337. package/dist/esm/icons/Bell.d.ts +2 -0
  338. package/dist/esm/icons/Bookmark.d.ts +2 -0
  339. package/dist/esm/icons/CaretDown.d.ts +2 -0
  340. package/dist/esm/icons/CaretLeft.d.ts +2 -0
  341. package/dist/esm/icons/CaretRight.d.ts +2 -0
  342. package/dist/esm/icons/CaretUp.d.ts +2 -0
  343. package/dist/esm/icons/Check.d.ts +2 -0
  344. package/dist/esm/icons/Close.d.ts +2 -0
  345. package/dist/esm/icons/Edit.d.ts +2 -0
  346. package/dist/esm/icons/Filter.d.ts +2 -0
  347. package/dist/esm/icons/Hide.d.ts +2 -0
  348. package/dist/esm/icons/Info.d.ts +2 -0
  349. package/dist/esm/icons/InfoBoxIcon.d.ts +2 -0
  350. package/dist/esm/icons/Mail.d.ts +2 -0
  351. package/dist/esm/icons/Menu.d.ts +2 -0
  352. package/dist/esm/icons/Minus.d.ts +2 -0
  353. package/dist/esm/icons/Mobile.d.ts +2 -0
  354. package/dist/esm/icons/Play.d.ts +2 -0
  355. package/dist/esm/icons/Save.d.ts +2 -0
  356. package/dist/esm/icons/Search.d.ts +2 -0
  357. package/dist/esm/icons/View.d.ts +2 -0
  358. package/dist/esm/icons/Warning.d.ts +2 -0
  359. package/dist/esm/icons/index.d.ts +23 -0
  360. package/dist/esm/index.css +503 -0
  361. package/dist/esm/index.d.ts +7 -0
  362. package/dist/esm/index.js +169 -0
  363. package/dist/esm/index.js.map +1 -0
  364. package/dist/esm/molecules/Alert/Alert.d.ts +20 -0
  365. package/dist/esm/molecules/Alert/Alert.stories.d.ts +9 -0
  366. package/dist/esm/molecules/AvatarDropdown/AvatarDropdown.d.ts +11 -0
  367. package/dist/esm/molecules/AvatarDropdown/AvatarDropdown.stories.d.ts +8 -0
  368. package/dist/esm/molecules/BottomNavBarItem/BottomNavBarItem.d.ts +11 -0
  369. package/dist/esm/molecules/BottomNavBarItem/BottomNavBarItem.stories.d.ts +8 -0
  370. package/dist/esm/molecules/Button/Button.d.ts +47 -0
  371. package/dist/esm/molecules/Button/Button.stories.d.ts +8 -0
  372. package/dist/esm/molecules/Caruser/Carousel.d.ts +35 -0
  373. package/dist/esm/molecules/CheckboxField/CheckboxField.d.ts +37 -0
  374. package/dist/esm/molecules/CheckboxField/CheckboxField.stories.d.ts +61 -0
  375. package/dist/esm/molecules/CheckboxField/CheckboxGroup.d.ts +10 -0
  376. package/dist/esm/molecules/CheckboxField/CheckboxGroup.stories.d.ts +32 -0
  377. package/dist/esm/molecules/CheckboxField/styles.d.ts +13 -0
  378. package/dist/esm/molecules/Checklist/Checklist.d.ts +31 -0
  379. package/dist/esm/molecules/Checklist/Checklist.stories.d.ts +8 -0
  380. package/dist/esm/molecules/Consent/Consent.d.ts +27 -0
  381. package/dist/esm/molecules/Consent/Consent.stories.d.ts +8 -0
  382. package/dist/esm/molecules/Consent/ConsentCapture.d.ts +20 -0
  383. package/dist/esm/molecules/Consent/ConsentMolecule.d.ts +11 -0
  384. package/dist/esm/molecules/Consent/consentMock.d.ts +7 -0
  385. package/dist/esm/molecules/CustomValidation/CustomValidation.d.ts +14 -0
  386. package/dist/esm/molecules/CustomValidation/CustomValidation.stories.d.ts +8 -0
  387. package/dist/esm/molecules/Drawer/Drawer.d.ts +3 -0
  388. package/dist/esm/molecules/Drawer/Drawer.stories.d.ts +9 -0
  389. package/dist/esm/molecules/Drawer/styles.d.ts +34 -0
  390. package/dist/esm/molecules/EmphasizedText/EmphasizedText.d.ts +6 -0
  391. package/dist/esm/molecules/EmphasizedText/EmphasizedText.stories.d.ts +8 -0
  392. package/dist/esm/molecules/FeedContentHeader/FeedContentHeader.d.ts +11 -0
  393. package/dist/esm/molecules/FeedContentHeader/FeedContentHeader.stories.d.ts +8 -0
  394. package/dist/esm/molecules/FieldLabels/FieldLabels.d.ts +42 -0
  395. package/dist/esm/molecules/FieldLabels/FieldLabels.stories.d.ts +8 -0
  396. package/dist/esm/molecules/FieldLabels/helpers.d.ts +8 -0
  397. package/dist/esm/molecules/FieldMapper/FieldMapper.d.ts +13 -0
  398. package/dist/esm/molecules/FieldSection/FieldSection.d.ts +9 -0
  399. package/dist/esm/molecules/FieldSection/FieldSection.stories.d.ts +8 -0
  400. package/dist/esm/molecules/HorizontalButtonsField/HorizontalButtonsField.d.ts +12 -0
  401. package/dist/esm/molecules/HorizontalButtonsField/HorizontalButtonsField.stories.d.ts +15 -0
  402. package/dist/esm/molecules/Icon/IconPicker.d.ts +7 -0
  403. package/dist/esm/molecules/Icon/IconPickerController.d.ts +7 -0
  404. package/dist/esm/molecules/Icon/IconRenderer.d.ts +11 -0
  405. package/dist/esm/molecules/Icon/index.d.ts +3 -0
  406. package/dist/esm/molecules/Image/Image.d.ts +20 -0
  407. package/dist/esm/molecules/Image/Image.stories.d.ts +8 -0
  408. package/dist/esm/molecules/InputField/InputField.d.ts +22 -0
  409. package/dist/esm/molecules/InputField/InputField.stories.d.ts +66 -0
  410. package/dist/esm/molecules/Link/Link.d.ts +12 -0
  411. package/dist/esm/molecules/Link/Link.stories.d.ts +8 -0
  412. package/dist/esm/molecules/MenuItems/MenuItem.d.ts +20 -0
  413. package/dist/esm/molecules/MenuItems/MenuItems.d.ts +11 -0
  414. package/dist/esm/molecules/MenuItems/MenuItems.stories.d.ts +8 -0
  415. package/dist/esm/molecules/MenuNavigation/MenuNavigation.d.ts +15 -0
  416. package/dist/esm/molecules/MenuNavigation/MenuNavigation.stories.d.ts +9 -0
  417. package/dist/esm/molecules/NewButton/NewButton.d.ts +22 -0
  418. package/dist/esm/molecules/NewButton/NewButton.stories.d.ts +4 -0
  419. package/dist/esm/molecules/NewDivider/NewDivider.d.ts +15 -0
  420. package/dist/esm/molecules/NewDivider/NewDivider.stories.d.ts +8 -0
  421. package/dist/esm/molecules/NewImage/NewImage.d.ts +18 -0
  422. package/dist/esm/molecules/NewImage/NewImage.stories.d.ts +8 -0
  423. package/dist/esm/molecules/NewLink/NewLink.d.ts +16 -0
  424. package/dist/esm/molecules/NewLink/NewLink.stories.d.ts +9 -0
  425. package/dist/esm/molecules/NewVideo/NewVideo.d.ts +20 -0
  426. package/dist/esm/molecules/NewVideo/NewVideo.stories.d.ts +8 -0
  427. package/dist/esm/molecules/PasswordSetup/PasswordSetup.d.ts +14 -0
  428. package/dist/esm/molecules/PasswordSetup/PasswordSetup.stories.d.ts +8 -0
  429. package/dist/esm/molecules/PasswordSetup/types.d.ts +25 -0
  430. package/dist/esm/molecules/PasswordSetup/utils.d.ts +3 -0
  431. package/dist/esm/molecules/PdfDocument/PdfDocument.d.ts +14 -0
  432. package/dist/esm/molecules/PdfDocument/PdfDocument.stories.d.ts +8 -0
  433. package/dist/esm/molecules/RadioButtonField/RadioButtonField.d.ts +74 -0
  434. package/dist/esm/molecules/RadioButtonField/RadioButtonField.stories.d.ts +74 -0
  435. package/dist/esm/molecules/SelectField/SelectField.d.ts +23 -0
  436. package/dist/esm/molecules/SelectField/SelectField.stories.d.ts +53 -0
  437. package/dist/esm/molecules/SelectableInfoCard/BaseSelectable.d.ts +9 -0
  438. package/dist/esm/molecules/SelectableInfoCard/SelectableCardGroup.d.ts +9 -0
  439. package/dist/esm/molecules/SelectableInfoCard/SelectableInfoCard.stories.d.ts +8 -0
  440. package/dist/esm/molecules/SelectableInfoCard/styles.d.ts +29 -0
  441. package/dist/esm/molecules/SettingsSelectionField/SettingsSelectionField.d.ts +9 -0
  442. package/dist/esm/molecules/SettingsSelectionField/SettingsSelectionField.stories.d.ts +8 -0
  443. package/dist/esm/molecules/SimpleText/SimpleText.d.ts +23 -0
  444. package/dist/esm/molecules/SimpleText/SimpleText.stories.d.ts +8 -0
  445. package/dist/esm/molecules/Stepper/Stepper.d.ts +22 -0
  446. package/dist/esm/molecules/Stepper/Stepper.stories.d.ts +8 -0
  447. package/dist/esm/molecules/TabGroup/TabGroup.d.ts +32 -0
  448. package/dist/esm/molecules/TabGroup/TabGroup.stories.d.ts +8 -0
  449. package/dist/esm/molecules/TabGroup/styles.d.ts +43 -0
  450. package/dist/esm/molecules/TabGroup/useTabAnimation.d.ts +6 -0
  451. package/dist/esm/molecules/TextMolecule/TextMolecule.d.ts +20 -0
  452. package/dist/esm/molecules/TextMolecule/TextMolecule.stories.d.ts +8 -0
  453. package/dist/esm/molecules/Video/Video.d.ts +22 -0
  454. package/dist/esm/molecules/Video/Video.stories.d.ts +8 -0
  455. package/dist/esm/molecules/ZealUIModal/ZealUIModal.d.ts +30 -0
  456. package/dist/esm/molecules/ZealUIModal/ZealUIModal.stories.d.ts +8 -0
  457. package/dist/esm/molecules/index.d.ts +38 -0
  458. package/dist/esm/organisms/Organism/Organism.d.ts +5 -0
  459. package/dist/esm/organisms/Organism/Organism.stories.d.ts +8 -0
  460. package/dist/esm/organisms/Organism/mock-data.d.ts +410 -0
  461. package/dist/esm/organisms/OrganismItem/helpers.d.ts +3 -0
  462. package/dist/esm/organisms/index.d.ts +1 -0
  463. package/dist/esm/organisms/types.d.ts +21 -0
  464. package/dist/esm/theme/index.d.ts +5 -0
  465. package/dist/esm/theme/provider.d.ts +7 -0
  466. package/dist/esm/theme/theme.d.ts +2 -0
  467. package/dist/esm/theme/toastStyles.d.ts +1 -0
  468. package/dist/esm/theme/types.d.ts +19 -0
  469. package/dist/esm/theme/useMediaQuery.d.ts +2 -0
  470. package/dist/esm/typescript.d.ts +17 -0
  471. package/dist/index.d.ts +2164 -0
  472. package/package.json +1 -1
@@ -0,0 +1,2164 @@
1
+ /// <reference types="react" />
2
+ import * as _emotion_styled from '@emotion/styled';
3
+ import * as react from 'react';
4
+ import react__default, { PropsWithChildren, ReactNode, Dispatch, SetStateAction, MouseEvent, ComponentType, CSSProperties, KeyboardEvent, FC } from 'react';
5
+ import * as _emotion_react from '@emotion/react';
6
+ import { CSSObject, Theme } from '@emotion/react';
7
+ import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
8
+ import * as theme from 'theme';
9
+ import { ThemeColors as ThemeColors$1, SizesTypes as SizesTypes$1, FontSizesTypes as FontSizesTypes$2 } from 'theme';
10
+ import * as typescript from 'typescript';
11
+ import { StylesType, AnyObject as AnyObject$1, Callback as Callback$1, Nullable, StrictUnion, OverrideStyles, StyledTransientProps } from 'typescript';
12
+ import { RefCallBack, Control, ControllerProps as ControllerProps$1 } from 'react-hook-form/dist/types';
13
+ import { IconNames as IconNames$1 } from 'atoms/Icon/Icon';
14
+ import * as containers from 'containers';
15
+ import { Molecule as Molecule$1, FormStateType as FormStateType$1, ContainerComponentProps as ContainerComponentProps$2, MoleculeTypes as MoleculeTypes$1, ContainerType as ContainerType$1, MetadataType as MetadataType$1, StateConfigType as StateConfigType$1, ConditionConfig as ConditionConfig$1, ConfigurationItemInfo as ConfigurationItemInfo$1, ProcessStep as ProcessStep$1, MetadataStateConfig as MetadataStateConfig$1 } from 'containers';
16
+ import { FieldTypes as FieldTypes$1, UIFields as UIFields$1, InputFieldTypes as InputFieldTypes$1 } from 'fieldsConfiguration/types';
17
+ import { ThemeColors as ThemeColors$2, FontSizesTypes as FontSizesTypes$1, SizesTypes as SizesTypes$2, BreakpointSizesTypes as BreakpointSizesTypes$1 } from 'theme/types';
18
+ import * as atoms from 'atoms';
19
+ import { SelectOption as SelectOption$1, LinkVariant as LinkVariant$1, TextProps as TextProps$1, IconNames as IconNames$2, TouchableOpacityProps as TouchableOpacityProps$1, InputProps as InputProps$1, SelectProps as SelectProps$1, AvatarProps as AvatarProps$1, TabProps as TabProps$1, TabTheme as TabTheme$1, RadioButtonsProps as RadioButtonsProps$1, RadioButtonInternalConfigProps as RadioButtonInternalConfigProps$1, HorizontalButtonsProps as HorizontalButtonsProps$1, IconProps as IconProps$1, TextButtonProps as TextButtonProps$1 } from 'atoms';
20
+ import { ChecklistItem as ChecklistItem$1, ImageProps as ImageProps$1, TextMoleculeProps as TextMoleculeProps$1, ButtonProps as ButtonProps$1, TabGroupProps as TabGroupProps$1, AdditionalTabContainerProps as AdditionalTabContainerProps$1, InputFieldProps as InputFieldProps$1, SelectFieldProps as SelectFieldProps$1, RadioButtonFieldProps as RadioButtonFieldProps$1, CheckboxFieldProps as CheckboxFieldProps$1, ConsentType as ConsentType$1, LinkProps as LinkProps$1, AvatarDropdownProps as AvatarDropdownProps$1, AvatarDropdownMenuConfigType as AvatarDropdownMenuConfigType$1, NewDividerProps as NewDividerProps$1, NewLinkProps as NewLinkProps$1, NewVideoProps as NewVideoProps$1, NewImageProps as NewImageProps$1, NewButtonProps as NewButtonProps$1, FieldSectionProps as FieldSectionProps$1, BaseButtonProps as BaseButtonProps$1, MenuItemsProps as MenuItemsProps$1 } from 'molecules';
21
+ import * as react_hook_form from 'react-hook-form';
22
+ import { UseFormReturn, ValidationMode, ControllerProps, DeepPartial, FieldValues, FormState } from 'react-hook-form';
23
+ import { CheckboxInternalConfigProps as CheckboxInternalConfigProps$1 } from 'atoms/Checkbox/types';
24
+ import { MaskConfig as MaskConfig$1 } from 'atoms/Input/helpers';
25
+ import * as _mui_material from '@mui/material';
26
+ import { StepProps, DrawerProps as DrawerProps$1, SvgIconProps, ModalProps, TypographyProps as TypographyProps$1, SxProps, ButtonProps as ButtonProps$2, Theme as Theme$1 } from '@mui/material';
27
+ import { TypographyProps } from '@mui/material/Typography';
28
+ import { TooltipProps as TooltipProps$1 } from 'rc-tooltip/lib/Tooltip';
29
+ import { Descendant } from 'slate';
30
+ import { ConsentProps as ConsentProps$1, FilteredFeedContentType } from 'organisms';
31
+ import { AnnotationsList as AnnotationsList$1 } from 'contexts/MlrRichTextViewerContext/types';
32
+ import * as contexts_MlrRichTextViewerContext_MlrRichTextViewerContext from 'contexts/MlrRichTextViewerContext/MlrRichTextViewerContext';
33
+ import * as contexts_ButtonActionsContext_ButtonActionsContext from 'contexts/ButtonActionsContext/ButtonActionsContext';
34
+ import { InputFieldTypes as InputFieldTypes$2, UIField as UIField$1 } from 'fieldsConfiguration';
35
+ import { PasswordRuleValidation } from 'molecules/PasswordSetup/PasswordSetup';
36
+ import { FeedContentTemplateTypes } from 'organisms/FeedContent/types';
37
+ import * as Icons from '@mui/icons-material';
38
+ import { CustomDescendant } from 'atoms/RichTextViewer/types';
39
+ import { ConsentCaptureProps } from 'molecules/Consent/ConsentCapture';
40
+ import * as _mui_material_OverridableComponent from '@mui/material/OverridableComponent';
41
+ import * as _emotion_utils from '@emotion/utils';
42
+ import * as _emotion_serialize from '@emotion/serialize';
43
+ import * as containers_types_types from 'containers/types/types';
44
+ import { ContainerProps as ContainerProps$1, ContainerComponentProps as ContainerComponentProps$1 } from 'containers/types/types';
45
+
46
+ declare type TouchableOpacityProps = PropsWithChildren<{
47
+ activeOpacity?: number;
48
+ withoutOpacityEffect?: boolean;
49
+ disabled?: boolean;
50
+ }>;
51
+ declare const TouchableOpacity: _emotion_styled.StyledComponent<{
52
+ theme?: _emotion_react.Theme | undefined;
53
+ as?: react.ElementType<any> | undefined;
54
+ } & {
55
+ activeOpacity?: number | undefined;
56
+ withoutOpacityEffect?: boolean | undefined;
57
+ disabled?: boolean | undefined;
58
+ } & {
59
+ children?: react.ReactNode;
60
+ }, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
61
+
62
+ declare type CheckboxInternalConfigProps = Partial<{
63
+ selectedCheckboxBackgroundColor: ThemeColors$1 | string;
64
+ selectedCheckboxIconColor: ThemeColors$1 | string;
65
+ buttonPadding: number;
66
+ textPadding: number;
67
+ styles: StylesType;
68
+ wrapperStyles: StylesType;
69
+ buttonOptionSpacing?: SizesTypes$1;
70
+ }>;
71
+
72
+ declare type CheckboxProps = {
73
+ id: string;
74
+ onClick: (id: string) => void;
75
+ label: string;
76
+ isError?: boolean;
77
+ disabled?: boolean;
78
+ isEditMode?: boolean;
79
+ isSelected?: boolean;
80
+ isRichText?: boolean;
81
+ notInteractable?: boolean;
82
+ internalConfig?: CheckboxInternalConfigProps;
83
+ };
84
+ declare const Checkbox: ({ id, onClick, label, isError, disabled, isEditMode, isSelected, isRichText, notInteractable, internalConfig, }: CheckboxProps) => _emotion_react_jsx_runtime.JSX.Element;
85
+
86
+ declare type SelectOption = {
87
+ id: string;
88
+ label: string;
89
+ value?: string;
90
+ config?: AnyObject$1;
91
+ };
92
+ declare type SelectInternalConfigurationOptions = {
93
+ placeholderTextColor: ThemeColors$1 | string;
94
+ placeholderTextFontSize: number;
95
+ selectedTextColor: ThemeColors$1 | string;
96
+ selectedTextFontSize: number;
97
+ verticalPadding: number;
98
+ horizontalPadding: number;
99
+ wrapperStyles: StylesType;
100
+ styles: StylesType;
101
+ };
102
+ declare type SelectProps = Partial<{
103
+ ref: RefCallBack;
104
+ onBlur: Callback$1;
105
+ value: string;
106
+ optionsPresentation: boolean;
107
+ onChange: (value: string) => void;
108
+ placeholder: string;
109
+ disabled: boolean;
110
+ options: SelectOption[];
111
+ isError: boolean;
112
+ isEditMode: boolean;
113
+ selectInternalConfig: SelectInternalConfigurationOptions;
114
+ isRichText: boolean;
115
+ }>;
116
+ declare const Select: ({ ref, onBlur, onChange, value, placeholder, options, disabled, optionsPresentation, isError, isEditMode, selectInternalConfig, isRichText, }: SelectProps) => _emotion_react_jsx_runtime.JSX.Element;
117
+
118
+ declare const Container: ({ id, type, wide, props, compact, children, metadata, isMobile, }: {
119
+ type: containers.ContainerType;
120
+ metadata: containers.MetadataType;
121
+ } & Partial<{
122
+ containerTemplateType: "row_content_container";
123
+ wide: Partial<{
124
+ containerStyle: _emotion_serialize.CSSObject;
125
+ containerProps: Partial<{
126
+ position: containers.ContainerPositionType;
127
+ alignItems: containers.ContainerAlignItemsType;
128
+ scrollBehaviour: containers.ContainerScrollBehaviourType;
129
+ cornerRadius: number | theme.SizesTypes;
130
+ gap: theme.SizesTypes;
131
+ styles: _emotion_utils.SerializedStyles;
132
+ paddingTop: theme.SizesTypes;
133
+ paddingBottom: theme.SizesTypes;
134
+ paddingLeft: theme.SizesTypes;
135
+ paddingRight: theme.SizesTypes;
136
+ autoplay: boolean;
137
+ autoplayDuration: number;
138
+ formProps: containers.FormContainerProps;
139
+ formStepProps: containers.FormStepContainerProps;
140
+ border: string;
141
+ activeChildrenIds: string[];
142
+ activeOrganismIds: string[];
143
+ padding: containers.Padding;
144
+ }>;
145
+ }>;
146
+ compact: Partial<{
147
+ containerStyle: _emotion_serialize.CSSObject;
148
+ containerProps: Partial<{
149
+ position: containers.ContainerPositionType;
150
+ alignItems: containers.ContainerAlignItemsType;
151
+ scrollBehaviour: containers.ContainerScrollBehaviourType;
152
+ cornerRadius: number | theme.SizesTypes;
153
+ gap: theme.SizesTypes;
154
+ styles: _emotion_utils.SerializedStyles;
155
+ paddingTop: theme.SizesTypes;
156
+ paddingBottom: theme.SizesTypes;
157
+ paddingLeft: theme.SizesTypes;
158
+ paddingRight: theme.SizesTypes;
159
+ autoplay: boolean;
160
+ autoplayDuration: number;
161
+ formProps: containers.FormContainerProps;
162
+ formStepProps: containers.FormStepContainerProps;
163
+ border: string;
164
+ activeChildrenIds: string[];
165
+ activeOrganismIds: string[];
166
+ padding: containers.Padding;
167
+ }>;
168
+ }>;
169
+ props: Partial<{
170
+ position: containers.ContainerPositionType;
171
+ alignItems: containers.ContainerAlignItemsType;
172
+ scrollBehaviour: containers.ContainerScrollBehaviourType;
173
+ cornerRadius: number | theme.SizesTypes;
174
+ gap: theme.SizesTypes;
175
+ styles: _emotion_utils.SerializedStyles;
176
+ paddingTop: theme.SizesTypes;
177
+ paddingBottom: theme.SizesTypes;
178
+ paddingLeft: theme.SizesTypes;
179
+ paddingRight: theme.SizesTypes;
180
+ autoplay: boolean;
181
+ autoplayDuration: number;
182
+ formProps: containers.FormContainerProps;
183
+ formStepProps: containers.FormStepContainerProps;
184
+ border: string;
185
+ activeChildrenIds: string[];
186
+ activeOrganismIds: string[];
187
+ padding: containers.Padding;
188
+ }>;
189
+ isMobile: boolean;
190
+ }> & {
191
+ children?: ReactNode;
192
+ } & {
193
+ id: string;
194
+ }) => _emotion_react_jsx_runtime.JSX.Element | null;
195
+
196
+ declare type ActionTypes = 'link' | 'popup' | 'drawer' | 'download' | 'submit' | 'reset' | 'destroy';
197
+ declare type DataModelFieldFormatCodeTypes = 'date' | 'email' | 'string' | 'integer' | 'boolean' | 'numeric' | 'zip_code' | 'phone_number';
198
+ declare type DataModelFieldFormatValueTypes = 'any' | 'text' | 'email' | 'integer' | 'numerical' | 'us_zip_code' | 'phone_number' | 'month_year_date' | 'day_month_year_date' | 'month_day_year_date' | 'year_month_day_date';
199
+ declare type DownloadFile = {
200
+ url: string;
201
+ name: string;
202
+ };
203
+ declare type LinkAction = LinkAttributes;
204
+ declare type PopupDrawerAction = ContainerComponentProps;
205
+ declare type DownloadAction = DownloadFile;
206
+ declare type SubmitAction = AnyObject$1;
207
+ declare type CancelAction = AnyObject$1;
208
+ declare type ResetAction = AnyObject$1;
209
+ declare type DestroyAction = AnyObject$1;
210
+ declare type Action = {
211
+ type: ActionTypes;
212
+ } & Partial<{
213
+ link: LinkAction;
214
+ popup: PopupDrawerAction;
215
+ drawer: PopupDrawerAction;
216
+ download: DownloadAction;
217
+ submit: SubmitAction;
218
+ cancel: CancelAction;
219
+ reset: ResetAction;
220
+ destroy: DestroyAction;
221
+ }>;
222
+ declare type FormStateType = 'default' | 'success' | 'error' | 'format_error' | 'field_error' | 'open_dropdown' | 'match_error';
223
+ declare type ProcessTrackerStatus = 'complete' | 'incomplete' | 'in_progress';
224
+ declare type OrientationType = 'horizontal' | 'vertical';
225
+ declare type OrientationTypeLabel = 'Horizontal' | 'Vertical';
226
+ declare type ProcessStep = StepProps & {
227
+ id: string;
228
+ title: Partial<TextAttributes>;
229
+ description?: Partial<TextAttributes>;
230
+ status?: ProcessTrackerStatus;
231
+ link?: Partial<LinkAttributes>;
232
+ iconName?: string;
233
+ order: number;
234
+ };
235
+ declare type ImageAttributes = {
236
+ attributeType: 'image';
237
+ imageSource: string;
238
+ imageFile?: {
239
+ id: string;
240
+ name: string;
241
+ url: string;
242
+ };
243
+ };
244
+ interface TextAttributes {
245
+ id?: string;
246
+ text?: string;
247
+ isRichText?: boolean;
248
+ attributeType: 'text';
249
+ }
250
+ interface VideoAttributes {
251
+ attributeType: 'video';
252
+ videoSource: string;
253
+ }
254
+ interface ActionAttributes {
255
+ attributeType: 'action';
256
+ action: Action;
257
+ }
258
+ interface LinkAttributes {
259
+ id: string;
260
+ attributeType: 'link';
261
+ type: 'internalLink' | 'externalLink' | 'external_link' | 'internal_link';
262
+ internalLink: Nullable<string>;
263
+ externalLink: Nullable<string>;
264
+ name: string;
265
+ }
266
+ interface SelectAttributes {
267
+ id?: string;
268
+ attributeType: 'select';
269
+ value: string;
270
+ options: SelectOption$1[];
271
+ }
272
+ interface BooleanAttributes {
273
+ attributeType: 'boolean';
274
+ value: boolean;
275
+ }
276
+ interface IterableAttributes {
277
+ attributeType: 'iterable';
278
+ options: SelectOption$1[];
279
+ }
280
+ declare type DataModelFieldFormat = {
281
+ id: string;
282
+ label: string;
283
+ value: DataModelFieldFormatValueTypes;
284
+ code: DataModelFieldFormatCodeTypes;
285
+ config: MaskConfig$1;
286
+ };
287
+ declare type DataConnectionValues = {
288
+ dataFieldName: string;
289
+ dataModelFieldId: string;
290
+ defaultValue?: string;
291
+ entitySubtypeId?: string;
292
+ entitySubtypeName?: string;
293
+ format: DataModelFieldFormat;
294
+ };
295
+ interface DataConnectionAttributes {
296
+ id: string;
297
+ attributeType: 'data_model_field';
298
+ dataModelField: DataConnectionValues;
299
+ }
300
+ interface ConditionConfigAttributes {
301
+ id: string;
302
+ attributeType: 'condition_config';
303
+ conditionConfig: ConditionConfig;
304
+ }
305
+ interface ColorAttributes {
306
+ attributeType: 'color';
307
+ color: string;
308
+ }
309
+ interface ProcessStepsAttributes {
310
+ orientation: {
311
+ attributeType: 'select';
312
+ options: {
313
+ id: OrientationType;
314
+ label: OrientationTypeLabel;
315
+ }[];
316
+ value: OrientationType;
317
+ };
318
+ processSteps: {
319
+ attributeType: 'process_steps';
320
+ steps: ProcessStep[];
321
+ };
322
+ }
323
+ interface ChecklistAttributes {
324
+ checklist: {
325
+ attributeType: 'checklist';
326
+ items: ChecklistItem$1[];
327
+ };
328
+ }
329
+ declare type MoleculeTypes = 'image' | 'text' | 'button' | 'video' | 'header_tab_group' | 'input_field' | 'select_field' | 'radio_button_field' | 'checkbox_field' | 'consent' | 'link' | 'password_setup_field' | 'account_button' | 'process_steps' | 'checklist' | 'simple_text' | 'new_divider' | 'new_link' | 'new_video' | 'new_image' | 'new_button';
330
+ /**
331
+ * [ NEW MOLECULE: 3 ] Second Step is to add the new molecule name to this list, in snake case format
332
+ *
333
+ * */
334
+ interface BaseMolecule {
335
+ id: string;
336
+ type: MoleculeTypes;
337
+ instance: 'molecule';
338
+ metadata: MetadataType;
339
+ moleculeLibraryId: string;
340
+ organismLibraryMoleculeId: string;
341
+ }
342
+ interface ImageMolecule extends BaseMolecule {
343
+ type: 'image';
344
+ attributes: Partial<{
345
+ image: ImageAttributes;
346
+ altText: Omit<TextAttributes, 'isRichText'>;
347
+ link: LinkAttributes;
348
+ }>;
349
+ config: {
350
+ props?: Omit<ImageProps$1, 'src' | 'link' | 'altText'>;
351
+ };
352
+ }
353
+ interface SimpleTextMoleculeType extends BaseMolecule {
354
+ type: 'simple_text';
355
+ attributes: {
356
+ text: TextAttributes;
357
+ };
358
+ config: {
359
+ props?: SimpleTextMoleculeType;
360
+ };
361
+ }
362
+ interface TextMoleculeType extends BaseMolecule {
363
+ type: 'text';
364
+ attributes: Partial<{
365
+ text: TextAttributes;
366
+ seoStyle: SelectAttributes;
367
+ fontVariant: SelectAttributes;
368
+ color: ColorAttributes;
369
+ }>;
370
+ config: {
371
+ props?: TextMoleculeProps$1;
372
+ };
373
+ }
374
+ interface ButtonMolecule extends BaseMolecule {
375
+ type: 'button';
376
+ attributes: Partial<{
377
+ title: TextAttributes;
378
+ action: ActionAttributes;
379
+ }>;
380
+ config: {
381
+ props?: Partial<Omit<ButtonProps$1, 'disabled' | 'children' | 'link' | 'text' | 'onClick' | 'elementId'>>;
382
+ };
383
+ }
384
+ interface VideoMolecule extends BaseMolecule {
385
+ type: 'video';
386
+ attributes: Partial<{
387
+ video: VideoAttributes;
388
+ altText: Omit<TextAttributes, 'isRichText'>;
389
+ autoPlayVideo: BooleanAttributes;
390
+ enableCoverImage: BooleanAttributes;
391
+ coverImage: ImageAttributes;
392
+ }>;
393
+ config: {
394
+ props: Partial<{
395
+ width: number;
396
+ styles: StylesType;
397
+ }>;
398
+ };
399
+ }
400
+ interface TabGroupMolecule extends BaseMolecule {
401
+ type: 'header_tab_group';
402
+ attributes: Partial<{
403
+ tabs: {
404
+ tabKey: string;
405
+ text: string;
406
+ disabled: boolean;
407
+ divider: boolean;
408
+ }[];
409
+ activeTabKey: string;
410
+ attributeType: 'tab_group';
411
+ }>;
412
+ config: {
413
+ props: TabGroupProps$1;
414
+ wide: AdditionalTabContainerProps$1;
415
+ compact: AdditionalTabContainerProps$1;
416
+ };
417
+ }
418
+ interface TextInputMolecule extends BaseMolecule {
419
+ type: 'input_field';
420
+ attributes: Partial<{
421
+ label: TextAttributes;
422
+ required: BooleanAttributes;
423
+ dataModelField: DataConnectionAttributes;
424
+ conditionConfig: ConditionConfigAttributes;
425
+ }>;
426
+ config: {
427
+ props: InputFieldProps$1;
428
+ };
429
+ }
430
+ interface SelectFieldMolecule extends BaseMolecule {
431
+ type: 'select_field';
432
+ attributes: Partial<{
433
+ label: TextAttributes;
434
+ required: BooleanAttributes;
435
+ options: IterableAttributes;
436
+ dataModelField: DataConnectionAttributes;
437
+ conditionConfig: ConditionConfigAttributes;
438
+ }>;
439
+ config: {
440
+ props: SelectFieldProps$1;
441
+ };
442
+ }
443
+ interface RadioButtonFieldMolecule extends BaseMolecule {
444
+ type: 'radio_button_field';
445
+ attributes: Partial<{
446
+ label: TextAttributes;
447
+ required: BooleanAttributes;
448
+ options: IterableAttributes;
449
+ dataModelField: DataConnectionAttributes;
450
+ conditionConfig: ConditionConfigAttributes;
451
+ }>;
452
+ config: {
453
+ props: RadioButtonFieldProps$1<string>;
454
+ };
455
+ }
456
+ interface CheckboxFieldMolecule extends BaseMolecule {
457
+ type: 'checkbox_field';
458
+ attributes: Partial<{
459
+ label: TextAttributes;
460
+ required: BooleanAttributes;
461
+ options: IterableAttributes;
462
+ dataModelField: DataConnectionAttributes;
463
+ conditionConfig: ConditionConfigAttributes;
464
+ }>;
465
+ config: {
466
+ props: CheckboxFieldProps$1;
467
+ };
468
+ }
469
+ interface ConsentFieldMolecule extends BaseMolecule {
470
+ type: 'consent';
471
+ attributes: Partial<{
472
+ consent: Partial<{
473
+ attributeType: 'consent';
474
+ consent: ConsentType$1;
475
+ required: BooleanAttributes;
476
+ }>;
477
+ conditionConfig: ConditionConfigAttributes;
478
+ }>;
479
+ config: {
480
+ props: Partial<{
481
+ state: 'field_error';
482
+ }>;
483
+ };
484
+ }
485
+ interface LinkMolecule extends BaseMolecule {
486
+ type: 'link';
487
+ attributes: {
488
+ text: TextAttributes;
489
+ link: LinkAttributes;
490
+ };
491
+ config: {
492
+ props: Omit<LinkProps$1, '$variant' | '$styles'> & Partial<{
493
+ variant: LinkVariant$1;
494
+ styles: StylesType;
495
+ }>;
496
+ };
497
+ }
498
+ interface PasswordSetupMolecule extends BaseMolecule {
499
+ type: 'password_setup_field';
500
+ attributes: Partial<{
501
+ passwordFieldLabel: TextAttributes;
502
+ reenteredPasswordFieldLabel: TextAttributes;
503
+ passwordFieldRequired: BooleanAttributes;
504
+ reenteredPasswordFieldRequired: BooleanAttributes;
505
+ dataModelField: DataConnectionAttributes;
506
+ }>;
507
+ config: {
508
+ props: {
509
+ validationLabel?: string;
510
+ state?: FormStateType;
511
+ passwordInputProps: InputFieldProps$1;
512
+ reenteredPasswordInputProps: InputFieldProps$1;
513
+ };
514
+ };
515
+ }
516
+ interface AccountButtonMolecule extends BaseMolecule {
517
+ type: 'account_button';
518
+ config: {
519
+ props: AvatarDropdownProps$1<AvatarDropdownMenuConfigType$1>;
520
+ };
521
+ }
522
+ interface ProcessStepsMoleculeType extends BaseMolecule {
523
+ type: 'process_steps';
524
+ organismMoleculeLibraryId: string;
525
+ attributes: ProcessStepsAttributes;
526
+ }
527
+ interface ChecklistsMolecule extends BaseMolecule {
528
+ type: 'checklist';
529
+ config: {
530
+ props: {
531
+ gap: SizesTypes$1;
532
+ } & CheckboxInternalConfigProps$1;
533
+ };
534
+ attributes: ChecklistAttributes;
535
+ }
536
+ interface NewDividerMolecule extends BaseMolecule {
537
+ type: 'new_divider';
538
+ config: {
539
+ props: NewDividerProps$1;
540
+ };
541
+ }
542
+ interface NewLinkMolecule extends BaseMolecule {
543
+ type: 'new_link';
544
+ config: {
545
+ props: NewLinkProps$1;
546
+ };
547
+ attributes: {
548
+ text: TextAttributes;
549
+ link: LinkAttributes;
550
+ };
551
+ }
552
+ interface NewVideoMolecule extends BaseMolecule {
553
+ type: 'new_video';
554
+ config: {
555
+ props: NewVideoProps$1;
556
+ };
557
+ attributes: {
558
+ video: VideoAttributes;
559
+ coverImage: ImageAttributes;
560
+ };
561
+ }
562
+ interface NewImageMolecule extends BaseMolecule {
563
+ type: 'new_image';
564
+ config: {
565
+ props: NewImageProps$1;
566
+ };
567
+ attributes: {
568
+ image: ImageAttributes;
569
+ link: LinkAttributes;
570
+ };
571
+ }
572
+ interface NewButtonMolecule extends BaseMolecule {
573
+ type: 'new_button';
574
+ config: {
575
+ props: NewButtonProps$1;
576
+ };
577
+ attributes: {
578
+ text: TextAttributes;
579
+ action: ActionAttributes;
580
+ };
581
+ }
582
+ declare type Molecule = StrictUnion<ImageMolecule | TextMoleculeType | ButtonMolecule | VideoMolecule | TabGroupMolecule | TextInputMolecule | SelectFieldMolecule | RadioButtonFieldMolecule | CheckboxFieldMolecule | ConsentFieldMolecule | LinkMolecule | PasswordSetupMolecule | AccountButtonMolecule | ProcessStepsMoleculeType | ChecklistsMolecule | SimpleTextMoleculeType | NewDividerMolecule | NewLinkMolecule | NewVideoMolecule | NewImageMolecule | NewButtonMolecule> & Partial<{
583
+ form: UseFormReturn<any>;
584
+ formData: AnyObject$1;
585
+ setFormData: Dispatch<SetStateAction<AnyObject$1>>;
586
+ }>;
587
+ declare type SlateValueChildType = {
588
+ id: string;
589
+ text: string;
590
+ variable?: {
591
+ dataModelField: DataConnectionValues;
592
+ text: string;
593
+ isStateConfigPresent?: boolean;
594
+ };
595
+ };
596
+
597
+ declare type ContainerType = 'row' | 'column' | 'slider' | 'form' | 'form_step' | 'dynamic';
598
+ declare type ContainerTemplateType = 'row_content_container';
599
+ declare type WrappedContainerType = Extract<ContainerType, 'slider' | 'form' | 'form_step'>;
600
+ declare type ContainerPositionType = 'fixed' | 'sticky' | 'static' | 'relative';
601
+ declare type ContainerAlignItemsType = 'start' | 'center' | 'end' | 'stretch';
602
+ declare type ContainerScrollBehaviourType = 'vertical' | 'horizontal' | 'auto' | 'none';
603
+ declare type StateActionType = 'visible' | 'disabled';
604
+ declare type StateEventType = 'click' | 'view';
605
+ declare type StateListenerConfigType = {
606
+ role: 'stateListener';
607
+ stateKey: string;
608
+ stateValue: string | boolean;
609
+ defaultState: Partial<Record<StateActionType, boolean>>;
610
+ action: Partial<Record<StateActionType, boolean>>;
611
+ };
612
+ declare type StateModifierConfigType = {
613
+ role: 'stateModifier';
614
+ stateKey: string;
615
+ event: StateEventType;
616
+ };
617
+ declare type MetadataStateConfig = StateListenerConfigType | StateModifierConfigType;
618
+ declare type MetadataType = AnyObject$1 & Partial<{
619
+ stateConfig: MetadataStateConfig[];
620
+ referenceName: string;
621
+ isAction: boolean;
622
+ isTrigger: boolean;
623
+ notEditable: boolean;
624
+ hasOwnButton: boolean;
625
+ stateListenerId: string;
626
+ configurationPath: string;
627
+ }>;
628
+ declare type SliderProps = {
629
+ autoplay?: boolean;
630
+ autoplayDuration?: number;
631
+ };
632
+ declare type FormStepContainerProps = {
633
+ formStepName: string;
634
+ order: number;
635
+ conditionConfig: ConditionConfig;
636
+ formStepStyles?: CSSObject;
637
+ };
638
+ declare type FormContainerProps = {
639
+ mode: keyof ValidationMode;
640
+ };
641
+ declare type PaddingVariants = 'top' | 'right' | 'bottom' | 'left';
642
+ declare type Padding = Record<PaddingVariants, SizesTypes$1 | number> | SizesTypes$1 | string;
643
+ declare type ContainerPropsType = Partial<{
644
+ position: ContainerPositionType;
645
+ alignItems: ContainerAlignItemsType;
646
+ scrollBehaviour: ContainerScrollBehaviourType;
647
+ cornerRadius: SizesTypes$1 | number;
648
+ gap: SizesTypes$1;
649
+ styles: StylesType;
650
+ paddingTop: SizesTypes$1;
651
+ paddingBottom: SizesTypes$1;
652
+ paddingLeft: SizesTypes$1;
653
+ paddingRight: SizesTypes$1;
654
+ autoplay: boolean;
655
+ autoplayDuration: number;
656
+ formProps: FormContainerProps;
657
+ formStepProps: FormStepContainerProps;
658
+ border: string;
659
+ activeChildrenIds: string[];
660
+ activeOrganismIds: string[];
661
+ padding: Padding;
662
+ }>;
663
+ declare type AdditionalContainerProps = Partial<{
664
+ containerStyle: CSSObject;
665
+ containerProps: ContainerPropsType;
666
+ }>;
667
+ declare type ContainerProps = PropsWithChildren<{
668
+ type: ContainerType;
669
+ metadata: MetadataType;
670
+ } & Partial<{
671
+ containerTemplateType: ContainerTemplateType;
672
+ wide: AdditionalContainerProps;
673
+ compact: AdditionalContainerProps;
674
+ props: ContainerPropsType;
675
+ isMobile: boolean;
676
+ }>>;
677
+ declare type ContainerComponentProps = {
678
+ id: string;
679
+ instance: 'container';
680
+ type: ContainerType;
681
+ items: (ContainerComponentProps | Molecule)[];
682
+ config: Partial<{
683
+ wide: AdditionalContainerProps;
684
+ compact: AdditionalContainerProps;
685
+ props: ContainerPropsType;
686
+ }>;
687
+ tabsProps?: Pick<TabGroupProps$1, 'tabs' | 'activeTabKey' | 'onTabChange'>;
688
+ metadata?: MetadataType;
689
+ attributes?: AnyObject$1;
690
+ containerLibraryId?: string;
691
+ isMobile?: boolean;
692
+ isConfigurationMode?: boolean;
693
+ };
694
+ declare type CriteriaType = 'operator' | 'condition';
695
+ declare type ConditionCriteria = {
696
+ id: string;
697
+ type: CriteriaType;
698
+ operator: string;
699
+ dataFieldId: Nullable<string>;
700
+ subtypeId: Nullable<string>;
701
+ dataFieldName: Nullable<string>;
702
+ dataValue: Nullable<string>;
703
+ connectedTo: Nullable<string>;
704
+ };
705
+ declare type SegmentationType = 'simple' | 'advanced';
706
+ declare type ConditionConfig = Nullable<{
707
+ id: string;
708
+ segmentationType: SegmentationType;
709
+ criteriaList: ConditionCriteria[];
710
+ }>;
711
+ declare type FormDataStateConfig = {
712
+ value?: string | number;
713
+ } & Record<string, {
714
+ value?: string | number;
715
+ }>;
716
+ declare type ActionEventType = Record<string, boolean>;
717
+ declare type ProcessTrackerStateValue = {
718
+ visible?: boolean;
719
+ journeyId: string;
720
+ steps: Pick<ProcessStep, 'id' | 'status' | 'link' | 'order'>[];
721
+ };
722
+ declare type StateConfigType = {
723
+ [stateKey: string]: Nullable<StrictUnion<boolean | string | FormDataStateConfig | ActionEventType | ProcessTrackerStateValue>>;
724
+ };
725
+
726
+ declare const MoleculeItem: ({ type, config, attributes, tabsProps, form, id, formData, setFormData, isMobile, metadata, organismLibraryMoleculeId, }: Molecule$1 & {
727
+ tabsProps?: Pick<TabGroupProps$1<string, string>, "tabs" | "activeTabKey" | "onTabChange"> | undefined;
728
+ isMobile?: boolean | undefined;
729
+ }) => _emotion_react_jsx_runtime.JSX.Element | null;
730
+
731
+ declare type Callback = () => void;
732
+ declare type AnyObject = Record<string, unknown>;
733
+
734
+ declare type OrganismItemProps = {
735
+ item: ContainerComponentProps | Molecule;
736
+ tabsProps?: Pick<TabGroupProps$1, 'tabs' | 'activeTabKey' | 'onTabChange'>;
737
+ formData?: AnyObject;
738
+ setFormData?: Dispatch<SetStateAction<AnyObject>>;
739
+ isMobile?: boolean;
740
+ isConfigurationMode?: boolean;
741
+ onConfigurationItemHandler?: (itemPath: string) => void;
742
+ };
743
+ declare const OrganismItem: ({ item, tabsProps, formData, setFormData, isMobile, }: OrganismItemProps) => _emotion_react_jsx_runtime.JSX.Element | null;
744
+
745
+ declare type ConfigurationItemInfo = {
746
+ $selected?: boolean;
747
+ isConfigurationMode?: boolean;
748
+ onClick?: (e: MouseEvent<HTMLDivElement>) => void;
749
+ };
750
+ declare const ContainerWrapper: _emotion_styled.StyledComponent<{
751
+ theme?: Theme | undefined;
752
+ as?: react.ElementType<any> | undefined;
753
+ } & Pick<ContainerProps$1, "type"> & {
754
+ containerProps?: Partial<{
755
+ position: containers_types_types.ContainerPositionType;
756
+ alignItems: containers_types_types.ContainerAlignItemsType;
757
+ scrollBehaviour: containers_types_types.ContainerScrollBehaviourType;
758
+ cornerRadius: number | SizesTypes$1;
759
+ gap: SizesTypes$1;
760
+ styles: _emotion_react.SerializedStyles;
761
+ paddingTop: SizesTypes$1;
762
+ paddingBottom: SizesTypes$1;
763
+ paddingLeft: SizesTypes$1;
764
+ paddingRight: SizesTypes$1;
765
+ autoplay: boolean;
766
+ autoplayDuration: number;
767
+ formProps: containers_types_types.FormContainerProps;
768
+ formStepProps: containers_types_types.FormStepContainerProps;
769
+ border: string;
770
+ activeChildrenIds: string[];
771
+ activeOrganismIds: string[];
772
+ padding: containers_types_types.Padding;
773
+ }> | undefined;
774
+ metadata?: AnyObject | undefined;
775
+ }, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
776
+
777
+ declare type FormOrganismItemProps = {
778
+ item: ContainerComponentProps$1;
779
+ activeChildrenIds: string[];
780
+ formData?: AnyObject$1;
781
+ setFormData?: Dispatch<SetStateAction<AnyObject$1>>;
782
+ isMobile?: boolean;
783
+ };
784
+ declare const FormOrganismItem: ({ formData, setFormData, isMobile, ...props }: FormOrganismItemProps) => _emotion_react_jsx_runtime.JSX.Element | null;
785
+
786
+ declare const getFieldPlaceholder: (type: FieldTypes$1, title?: string) => string;
787
+
788
+ declare type InputFieldTypes = 'any' | 'text' | 'email' | 'integer' | 'password' | 'username' | 'numerical' | 'us_zip_code' | 'phone_number' | 'month_year_date' | 'day_month_year_date' | 'month_day_year_date' | 'year_month_day_date';
789
+ declare type FieldTypes = 'input' | 'select' | 'checkbox';
790
+ declare type UIField<T = string> = (UIInputField & UISelectField & UICheckboxField) & {
791
+ name: T;
792
+ type: FieldTypes;
793
+ value?: string;
794
+ label?: string;
795
+ placeholder?: string;
796
+ required?: boolean;
797
+ tooltip?: string;
798
+ rules?: ControllerProps['rules'];
799
+ order?: number;
800
+ };
801
+ declare type UIInputField = {
802
+ inputType?: InputFieldTypes;
803
+ maxLength?: number;
804
+ onKeyDown?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
805
+ } & InputFieldProps$1;
806
+ declare type UISelectField = {
807
+ options?: SelectOption$1[];
808
+ } & SelectFieldProps$1;
809
+ declare type UICheckboxField = {
810
+ checkboxLabel?: string;
811
+ };
812
+ declare type UIFields<T extends object> = UIField<keyof T>[];
813
+
814
+ declare const getInitialValuesFromFields: <T extends object>(fields: UIFields$1<T>) => DeepPartial<T>;
815
+ declare const isFormValid: <T extends FieldValues>(formState: FormState<T>) => boolean;
816
+ declare const getFieldsFromFieldSections: <T extends object>(sections: Pick<FieldSectionProps$1<T>, "fields">[]) => UIFields$1<T>;
817
+
818
+ declare type MaskConfig = {
819
+ maskPlaceholder?: string;
820
+ maskPattern?: Array<string | RegExp>;
821
+ dataModelFieldType: DataModelFieldFormatCodeTypes;
822
+ };
823
+
824
+ declare type InputFieldInternalConfigProps = Partial<{
825
+ textColor: ThemeColors$2 | string;
826
+ textFontSize: number;
827
+ placeholderTextColor: ThemeColors$2 | string;
828
+ placeholderTextFontSize: number;
829
+ verticalPadding: number;
830
+ horizontalPadding: number;
831
+ styles: StylesType;
832
+ wrapperStyles: StylesType;
833
+ }>;
834
+ declare type InputIconProps = {
835
+ name: IconNames$1;
836
+ onClick?: Callback$1;
837
+ };
838
+ declare type InputProps = Partial<{
839
+ value: string;
840
+ leftIcon: InputIconProps;
841
+ rightIcon: InputIconProps;
842
+ onBlur: Callback$1;
843
+ type: InputFieldTypes$1;
844
+ placeholder: string;
845
+ disabled: boolean;
846
+ isEditMode: boolean;
847
+ isError: boolean;
848
+ maxLength: number;
849
+ onChange: (value: string) => void;
850
+ onKeyDown: (event: react__default.KeyboardEvent<HTMLInputElement>) => void;
851
+ internalConfig: InputFieldInternalConfigProps;
852
+ config?: MaskConfig;
853
+ state: FormStateType$1;
854
+ }>;
855
+ declare const Input: ({ value, leftIcon, rightIcon, onChange, onBlur, disabled, isError, placeholder, isEditMode, type, internalConfig, config, ...rest }: InputProps) => _emotion_react_jsx_runtime.JSX.Element;
856
+
857
+ declare type TextTypes = 'primary' | 'secondary' | 'error' | 'success';
858
+ declare type TextAlign = 'center' | 'right' | 'left';
859
+ declare type SeoTags = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div';
860
+ declare type TextProps = Omit<TypographyProps, 'variant'> & {
861
+ variant: FontSizesTypes$1;
862
+ type?: TextTypes;
863
+ styles?: StylesType;
864
+ color?: ThemeColors$2 | string;
865
+ numberOfLines?: number;
866
+ textAlign?: TextAlign;
867
+ behaveAs?: 'text' | 'button';
868
+ seoTag?: SeoTags;
869
+ htmlElementId?: string;
870
+ };
871
+ declare type TextWrapperProps = PropsWithChildren<TextProps>;
872
+ declare const TextWrapper: ({ children, seoTag, ...textProps }: TextWrapperProps) => _emotion_react_jsx_runtime.JSX.Element;
873
+ declare const ErrorText: ({ text }: {
874
+ text: string;
875
+ }) => _emotion_react_jsx_runtime.JSX.Element;
876
+
877
+ declare type IconProps = {
878
+ name: IconNames;
879
+ size?: number;
880
+ color?: ThemeColors$1 | string;
881
+ fill?: ThemeColors$1 | string;
882
+ pointerEvents?: 'auto' | 'none';
883
+ style?: CSSObject;
884
+ };
885
+ declare const availableIcons: {
886
+ ArrowRight: ({ color, ...props }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
887
+ Bell: ({ size, color }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
888
+ Bookmark: ({ fill, color, size, ...props }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
889
+ CaretDown: ({ color, size, }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
890
+ CaretLeft: ({ color, size, ...props }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
891
+ CaretRight: ({ color, size, ...props }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
892
+ CaretUp: ({ color, ...props }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
893
+ Check: ({ size, color, }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
894
+ Close: ({ size, color, }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
895
+ Edit: ({ size, color }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
896
+ Filter: ({ size, color, }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
897
+ Hide: ({ color, size }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
898
+ Info: ({ size, color }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
899
+ InfoBoxIcon: ({ color, size }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
900
+ Mail: ({ size, color }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
901
+ Menu: ({ size, color }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
902
+ Minus: ({ size, color, }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
903
+ Mobile: ({ size, color, }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
904
+ Play: ({ size, color }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
905
+ Save: ({ size, color }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
906
+ Search: ({ size, color, ...props }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
907
+ View: ({ color, size, }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
908
+ Warning: ({ size, color, }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
909
+ };
910
+ declare type IconNames = keyof typeof availableIcons;
911
+ declare const Icon: ({ name, color, ...props }: IconProps) => _emotion_react_jsx_runtime.JSX.Element;
912
+
913
+ declare type SpacerProps = {
914
+ width?: SizesTypes$1 | number;
915
+ height?: SizesTypes$1 | number;
916
+ layout?: 'div' | 'span';
917
+ };
918
+ declare const Spacer: _emotion_styled.StyledComponent<{
919
+ theme?: _emotion_react.Theme | undefined;
920
+ as?: react.ElementType<any> | undefined;
921
+ } & SpacerProps, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
922
+
923
+ declare const Spinner: _emotion_styled.StyledComponent<{
924
+ theme?: _emotion_react.Theme | undefined;
925
+ as?: react.ElementType<any> | undefined;
926
+ } & {
927
+ color?: ThemeColors$2 | undefined;
928
+ size?: SizesTypes$2 | undefined;
929
+ }, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
930
+
931
+ declare type RegularImageProps = {
932
+ src: string;
933
+ } & Partial<{
934
+ alt: string;
935
+ width: number | string;
936
+ height: number | string;
937
+ onClick: Callback$1;
938
+ cornerRadius: SizesTypes$1 | number;
939
+ }> & OverrideStyles;
940
+ declare const RegularImage: _emotion_styled.StyledComponent<{
941
+ theme?: _emotion_react.Theme | undefined;
942
+ as?: react.ElementType<any> | undefined;
943
+ } & {
944
+ src: string;
945
+ } & Partial<{
946
+ alt: string;
947
+ width: number | string;
948
+ height: number | string;
949
+ onClick: Callback$1;
950
+ cornerRadius: SizesTypes$1 | number;
951
+ }> & OverrideStyles, react.DetailedHTMLProps<react.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
952
+ declare const BackgroundImage: _emotion_styled.StyledComponent<{
953
+ theme?: _emotion_react.Theme | undefined;
954
+ as?: react.ElementType<any> | undefined;
955
+ } & {
956
+ src: string;
957
+ } & Partial<{
958
+ alt: string;
959
+ width: number | string;
960
+ height: number | string;
961
+ onClick: Callback$1;
962
+ cornerRadius: SizesTypes$1 | number;
963
+ }> & OverrideStyles & react.ClassAttributes<HTMLImageElement> & react.ImgHTMLAttributes<HTMLImageElement> & {
964
+ theme?: _emotion_react.Theme | undefined;
965
+ }, {}, {}>;
966
+
967
+ declare type LinkVariant = 'link' | 'custom';
968
+ declare type TextButtonProps = Pick<BaseButtonProps$1, 'disabled' | 'onClick' | 'children' | 'colorTheme' | 'size'> & Partial<{
969
+ buttonLink: string;
970
+ elementId: string;
971
+ $styles: StylesType;
972
+ $variant: LinkVariant;
973
+ textColor: string;
974
+ }>;
975
+ declare const BaseTextButton: react__default.FC<TextButtonProps & react__default.AnchorHTMLAttributes<HTMLAnchorElement>>;
976
+ declare const TextButton: _emotion_styled.StyledComponent<Pick<BaseButtonProps$1, "children" | "disabled" | "size" | "onClick" | "colorTheme"> & Partial<{
977
+ buttonLink: string;
978
+ elementId: string;
979
+ $styles: StylesType;
980
+ $variant: LinkVariant;
981
+ textColor: string;
982
+ }> & react__default.AnchorHTMLAttributes<HTMLAnchorElement> & {
983
+ theme?: _emotion_react.Theme | undefined;
984
+ }, {}, {}>;
985
+
986
+ declare type ValidationTagStatus = 'DEFAULT' | 'ERROR' | 'SUCCESS';
987
+ declare type ValidationTagProps = {
988
+ status: ValidationTagStatus;
989
+ text: string;
990
+ };
991
+ declare const ValidationTag: ({ text, status }: ValidationTagProps) => _emotion_react_jsx_runtime.JSX.Element;
992
+
993
+ declare type TooltipProps = Pick<TooltipProps$1, 'overlay' | 'placement' | 'trigger' | 'visible' | 'children'> & {
994
+ styles?: StylesType;
995
+ };
996
+ declare const StyleWrapper: _emotion_styled.StyledComponent<{
997
+ theme?: _emotion_react.Theme | undefined;
998
+ as?: react.ElementType<any> | undefined;
999
+ } & OverrideStyles, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
1000
+ declare const Tooltip: ({ trigger, placement, styles, ...props }: TooltipProps) => _emotion_react_jsx_runtime.JSX.Element;
1001
+
1002
+ declare type ToastType = 'success' | 'infoTierOne' | 'infoTierTwo' | 'warning' | 'error';
1003
+ declare type ToastParams = {
1004
+ message: string;
1005
+ type?: ToastType;
1006
+ duration?: number;
1007
+ };
1008
+
1009
+ declare const toast: ({ message, type, duration }: ToastParams) => void | undefined;
1010
+
1011
+ declare type HorizontalButtonsProps = {
1012
+ selectedButtonId: string;
1013
+ buttonOptions: {
1014
+ value: string;
1015
+ id: string;
1016
+ }[];
1017
+ onClick: (value: string) => void;
1018
+ disabled?: boolean;
1019
+ error?: boolean;
1020
+ };
1021
+ declare const HorizontalButtons: ({ onClick, disabled, buttonOptions, selectedButtonId, error, }: HorizontalButtonsProps) => _emotion_react_jsx_runtime.JSX.Element;
1022
+
1023
+ declare type AvatarProps = {
1024
+ size?: SizesTypes$1 | number;
1025
+ withShadow?: boolean;
1026
+ label?: string;
1027
+ backgroundColor?: ThemeColors$1;
1028
+ textConfig?: {
1029
+ color?: ThemeColors$1;
1030
+ font?: FontSizesTypes$2;
1031
+ };
1032
+ content: {
1033
+ initials?: string;
1034
+ iconName?: IconNames;
1035
+ imageUrl?: string;
1036
+ };
1037
+ onPress?: Callback$1;
1038
+ };
1039
+ declare const Avatar: ({ size, withShadow, label, backgroundColor, onPress, content: { initials, iconName, imageUrl }, textConfig: { color, font }, }: AvatarProps) => _emotion_react_jsx_runtime.JSX.Element;
1040
+
1041
+ declare type PaddingProps = {
1042
+ padding: SizesTypes$1 | number;
1043
+ };
1044
+ declare const HorizontalPadding: _emotion_styled.StyledComponent<{
1045
+ theme?: _emotion_react.Theme | undefined;
1046
+ as?: react.ElementType<any> | undefined;
1047
+ } & PaddingProps, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
1048
+ declare const VerticalPadding: _emotion_styled.StyledComponent<{
1049
+ theme?: _emotion_react.Theme | undefined;
1050
+ as?: react.ElementType<any> | undefined;
1051
+ } & PaddingProps, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
1052
+
1053
+ declare type DividerProps = {
1054
+ type?: 'horizontal' | 'vertical';
1055
+ color?: ThemeColors$1 | string;
1056
+ marginVertical?: SizesTypes$1 | number;
1057
+ marginHorizontal?: SizesTypes$1 | number;
1058
+ weight?: number;
1059
+ };
1060
+ declare const Divider: _emotion_styled.StyledComponent<{
1061
+ theme?: _emotion_react.Theme | undefined;
1062
+ as?: react.ElementType<any> | undefined;
1063
+ } & DividerProps, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
1064
+
1065
+ declare const defaultValue: Descendant[];
1066
+ declare const MATRIX_MESSAGE_ELEMENT_ID = "matrix-message";
1067
+ declare const COMMUNICATION_LINK_ELEMENT_ID = "communication-link";
1068
+ declare const MATRIX_MESSAGE_DATA_ID = "matrix-message-id";
1069
+ declare const COMMUNICATION_LINK_DATA_URL = "communication-link-url";
1070
+ declare const COMMUNICATION_LINK_DATA_TEXT = "communication-link-text";
1071
+ declare type RichTextEditorProps = {
1072
+ value: string;
1073
+ font?: FontSizesTypes$2;
1074
+ color?: ThemeColors$1 | string;
1075
+ moleculeId?: string;
1076
+ textStyles?: StylesType;
1077
+ numberOfLines?: number;
1078
+ extraTextProps?: TextProps$1;
1079
+ renderElementWrapperComponent?: (props: AnyObject$1) => JSX.Element;
1080
+ renderElementWrapperProps?: AnyObject$1;
1081
+ htmlElementId?: string;
1082
+ isTrigger?: boolean;
1083
+ };
1084
+ declare const RichTextViewer: ({ value, font, color, textStyles, numberOfLines, extraTextProps, renderElementWrapperComponent, renderElementWrapperProps, htmlElementId, moleculeId, isTrigger, }: RichTextEditorProps) => _emotion_react_jsx_runtime.JSX.Element;
1085
+
1086
+ declare type RadioButtonInternalConfigProps = Partial<{
1087
+ selectedRadioOptionBackgroundColor: ThemeColors$1 | string;
1088
+ selectedRadioOptionIndicatorColor: ThemeColors$1 | string;
1089
+ buttonPadding: number;
1090
+ textPadding: number;
1091
+ styles: StylesType;
1092
+ wrapperStyles: StylesType;
1093
+ buttonOptionSpacing: SizesTypes$1;
1094
+ radioGroupWrapperStyles: StylesType;
1095
+ }>;
1096
+ declare type RadioButtonsProps<T extends string> = Partial<{
1097
+ ref: RefCallBack;
1098
+ name: string;
1099
+ value: T;
1100
+ options: SelectOption[];
1101
+ onBlur: Callback$1;
1102
+ onChange: (value: T) => void;
1103
+ isRow: boolean;
1104
+ isError: boolean;
1105
+ disabled: boolean;
1106
+ isEditMode: boolean;
1107
+ isRichText: boolean;
1108
+ internalConfig: RadioButtonInternalConfigProps;
1109
+ }>;
1110
+ declare const RadioButtons: <T extends string>({ ref, name, value, options, onBlur, onChange, isRow, isError, disabled, isEditMode, isRichText, internalConfig, }: Partial<{
1111
+ ref: RefCallBack;
1112
+ name: string;
1113
+ value: T;
1114
+ options: SelectOption[];
1115
+ onBlur: Callback$1;
1116
+ onChange: (value: T) => void;
1117
+ isRow: boolean;
1118
+ isError: boolean;
1119
+ disabled: boolean;
1120
+ isEditMode: boolean;
1121
+ isRichText: boolean;
1122
+ internalConfig: Partial<{
1123
+ selectedRadioOptionBackgroundColor: ThemeColors$1 | string;
1124
+ selectedRadioOptionIndicatorColor: ThemeColors$1 | string;
1125
+ buttonPadding: number;
1126
+ textPadding: number;
1127
+ styles: StylesType;
1128
+ wrapperStyles: StylesType;
1129
+ buttonOptionSpacing: SizesTypes$1;
1130
+ radioGroupWrapperStyles: StylesType;
1131
+ }>;
1132
+ }>) => _emotion_react_jsx_runtime.JSX.Element;
1133
+ declare const RadioGroupWrapper: _emotion_styled.StyledComponent<_mui_material.RadioGroupProps & {
1134
+ theme?: _emotion_react.Theme | undefined;
1135
+ } & StyledTransientProps<{
1136
+ isRow: boolean;
1137
+ }> & OverrideStyles, {}, {}>;
1138
+
1139
+ declare type CircleType = 'link' | 'message';
1140
+ declare type CircleBoxProps = {
1141
+ index: number;
1142
+ type: CircleType;
1143
+ };
1144
+ declare const Circle: ({ index, type }: CircleBoxProps) => _emotion_react_jsx_runtime.JSX.Element;
1145
+ declare const CirclesWrapper: _emotion_styled.StyledComponent<{
1146
+ theme?: _emotion_react.Theme | undefined;
1147
+ as?: react__default.ElementType<any> | undefined;
1148
+ }, react__default.DetailedHTMLProps<react__default.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
1149
+
1150
+ declare type CircularIndicatorProps = {
1151
+ active: boolean;
1152
+ activeColor?: ThemeColors$1 | string;
1153
+ inactiveColor?: ThemeColors$1 | string;
1154
+ };
1155
+ declare const CircularIndicator: ({ activeColor, inactiveColor, ...props }: CircularIndicatorProps) => _emotion_react_jsx_runtime.JSX.Element;
1156
+ declare const CircularIndicatorStyledComponent: _emotion_styled.StyledComponent<{
1157
+ theme?: _emotion_react.Theme | undefined;
1158
+ as?: react.ElementType<any> | undefined;
1159
+ } & CircularIndicatorProps, react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
1160
+
1161
+ declare type IconButtonProps = {
1162
+ name: IconNames$2;
1163
+ size?: number;
1164
+ onClick: Callback$1;
1165
+ color?: ThemeColors$1 | string;
1166
+ fill?: ThemeColors$1 | string;
1167
+ pointerEvents?: 'auto' | 'none';
1168
+ };
1169
+ declare const IconButton: ({ name, color, onClick, disabled, activeOpacity, withoutOpacityEffect, ...props }: IconButtonProps & TouchableOpacityProps$1) => _emotion_react_jsx_runtime.JSX.Element;
1170
+
1171
+ declare type MenuItemType<T> = {
1172
+ id: T;
1173
+ title: string;
1174
+ active?: boolean;
1175
+ onClick: (id: T) => void;
1176
+ options?: MenuItemType<T>[];
1177
+ divider?: boolean;
1178
+ disabled?: boolean;
1179
+ itemColor?: string;
1180
+ activeItemColor?: string;
1181
+ };
1182
+
1183
+ declare type TabOption<T = string> = {
1184
+ menuText: string;
1185
+ menuKey: T;
1186
+ onMenuClick?: (key: T) => void;
1187
+ isSelected?: boolean;
1188
+ };
1189
+ declare type TabElement = HTMLDivElement | null;
1190
+ declare type TabTheme = 'light' | 'dark';
1191
+ declare type TabProps<T = string, K = string> = {
1192
+ tabKey: T;
1193
+ text: string;
1194
+ } & Partial<{
1195
+ disabled: boolean;
1196
+ vertical: boolean;
1197
+ isActive: boolean;
1198
+ onClick: (key: T) => void;
1199
+ options: MenuItemType<K>[];
1200
+ onOptionClick: (optionKey: K) => void;
1201
+ tabTheme: TabTheme;
1202
+ divider: boolean;
1203
+ tabFont: FontSizesTypes$2;
1204
+ textSize: number;
1205
+ tabPadding: SizesTypes$1 | number;
1206
+ defaultTabTextColor: ThemeColors$1 | string;
1207
+ selectedTabTextColor: ThemeColors$1 | string;
1208
+ selectedTabIndicatorColor: ThemeColors$1 | string;
1209
+ styles: StylesType;
1210
+ }>;
1211
+ declare const ZealTab: <T extends string, K extends string>({ options, onClick, text, tabKey, vertical, onOptionClick, tabTheme, tabFont, tabPadding, selectedTabIndicatorColor, textSize, defaultTabTextColor, ...tabProps }: TabProps<T, K>, ref: react__default.ForwardedRef<TabElement>) => _emotion_react_jsx_runtime.JSX.Element;
1212
+ declare const Tab: <T, K>(props: {
1213
+ tabKey: T;
1214
+ text: string;
1215
+ } & Partial<{
1216
+ disabled: boolean;
1217
+ vertical: boolean;
1218
+ isActive: boolean;
1219
+ onClick: (key: T) => void;
1220
+ options: MenuItemType<K>[];
1221
+ onOptionClick: (optionKey: K) => void;
1222
+ tabTheme: TabTheme;
1223
+ divider: boolean;
1224
+ tabFont: FontSizesTypes$2;
1225
+ textSize: number;
1226
+ tabPadding: SizesTypes$1 | number;
1227
+ defaultTabTextColor: ThemeColors$1 | string;
1228
+ selectedTabTextColor: ThemeColors$1 | string;
1229
+ selectedTabIndicatorColor: ThemeColors$1 | string;
1230
+ styles: StylesType;
1231
+ }> & {
1232
+ ref?: react__default.ForwardedRef<TabElement> | undefined;
1233
+ }) => ReturnType<typeof ZealTab>;
1234
+
1235
+ interface Helpers {
1236
+ goToNextStep: () => void;
1237
+ goToPrevStep: () => void;
1238
+ reset: () => void;
1239
+ canGoToNextStep: boolean;
1240
+ canGoToPrevStep: boolean;
1241
+ setStep: Dispatch<SetStateAction<number>>;
1242
+ }
1243
+ declare const useStep: (maxStep: number) => [number, Helpers];
1244
+
1245
+ declare const useRequiredConsentsAcceptedValues: (consents: ConsentProps$1[]) => boolean;
1246
+
1247
+ declare const defaultTheme: Theme;
1248
+
1249
+ declare const ZealThemeProvider: (props: PropsWithChildren<{
1250
+ theme?: Theme;
1251
+ }>) => _emotion_react_jsx_runtime.JSX.Element;
1252
+
1253
+ declare type ThemeColors = 'primary' | 'primaryTint' | 'primaryShade' | 'secondary' | 'secondaryTint' | 'secondaryShade' | 'pink' | 'pinkTint' | 'pinkShade' | 'orange' | 'orangeTint' | 'orangeShade' | 'purple' | 'purpleTint' | 'purpleShade' | 'indigo' | 'indigoTint1' | 'indigoTint2' | 'gray1' | 'gray2' | 'gray3' | 'gray4' | 'gray5' | 'green' | 'greenTint' | 'greenShade' | 'yellow' | 'yellowTint' | 'yellowShade' | 'red' | 'redTint' | 'redShade' | 'black' | 'white' | 'blue' | 'blueTint' | 'blueShade' | 'deepBlue' | 'background';
1254
+ declare type SizesTypes = '5XL' | '4XL' | '3XL' | '2XL' | 'XL' | 'L' | 'M' | 'S' | 'XS';
1255
+ declare type FontSizesTypes = Exclude<SizesTypes, '5XL' | '4XL'>;
1256
+ declare type BreakpointSizesTypes = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
1257
+ declare type FontWeight = 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
1258
+ declare type ThemeColorsType = Record<ThemeColors, string>;
1259
+ declare type ThemeTextType = Record<FontSizesTypes, {
1260
+ 'font-weight': string;
1261
+ 'font-size': number;
1262
+ 'line-height': number;
1263
+ }>;
1264
+ declare type ThemeSizesType = Record<SizesTypes, number>;
1265
+ declare type ThemeDevicesType = Record<BreakpointSizesTypes, string>;
1266
+ declare type ZealTheme = {
1267
+ colors: ThemeColorsType;
1268
+ fonts: Record<FontSizesTypes, number>;
1269
+ sizes: ThemeSizesType;
1270
+ devices: ThemeDevicesType;
1271
+ };
1272
+
1273
+ declare const toastStyles: _emotion_react.SerializedStyles;
1274
+
1275
+ declare const useMediaQuery: (breakpointSize: BreakpointSizesTypes$1) => boolean;
1276
+
1277
+ declare type MlrRichTextViewerProviderProps = PropsWithChildren<{
1278
+ annotationsList: AnnotationsList$1;
1279
+ isMLRReview: boolean;
1280
+ showAnnotations: boolean;
1281
+ }>;
1282
+ declare const MlrRichTextViewerProvider: ({ children, isMLRReview, showAnnotations, annotationsList, }: MlrRichTextViewerProviderProps) => _emotion_react_jsx_runtime.JSX.Element;
1283
+
1284
+ declare type MlrRichTextViewerContextType = {
1285
+ isMLRReview: boolean;
1286
+ showAnnotations: boolean;
1287
+ annotationsList: AnnotationsList$1;
1288
+ };
1289
+ declare const MlrRichTextViewerContext: react.Context<MlrRichTextViewerContextType>;
1290
+
1291
+ declare type AnnotationsList = {
1292
+ tags: {
1293
+ id: string;
1294
+ label: string;
1295
+ entityIds: string[];
1296
+ moleculeIds: string[];
1297
+ referencedByIds: string[];
1298
+ }[];
1299
+ links: {
1300
+ referencedById: string;
1301
+ moleculeId: string;
1302
+ text: string;
1303
+ url: string;
1304
+ }[];
1305
+ };
1306
+
1307
+ declare const useMlrRichTextViewerContext: () => contexts_MlrRichTextViewerContext_MlrRichTextViewerContext.MlrRichTextViewerContextType;
1308
+
1309
+ declare const useButtonActionsContext: () => contexts_ButtonActionsContext_ButtonActionsContext.ButtonActionsContextType;
1310
+
1311
+ declare type ButtonActionsContextType = {
1312
+ actionContent?: ContainerComponentProps$2;
1313
+ setActionContent: Dispatch<SetStateAction<ContainerComponentProps$2>>;
1314
+ isModalVisible: boolean;
1315
+ isDrawerVisible: boolean;
1316
+ setDrawerVisible: Dispatch<SetStateAction<boolean>>;
1317
+ setActivePopUpById: (id: string) => void;
1318
+ onCloseModal: (id: string) => void;
1319
+ };
1320
+ declare const ButtonActionsContext: react.Context<ButtonActionsContextType>;
1321
+
1322
+ declare type PopupPropsType = {
1323
+ id: string;
1324
+ config: {
1325
+ styles?: AnyObject$1;
1326
+ size?: 'large' | 'medium';
1327
+ withCloseIcon?: boolean;
1328
+ };
1329
+ content: {
1330
+ embedded?: (ContainerComponentProps$2 | Molecule$1)[];
1331
+ isi?: ContainerComponentProps$2 | Molecule$1;
1332
+ };
1333
+ };
1334
+ declare type ButtonActionsProviderProps = PropsWithChildren<Partial<{
1335
+ actionContent: ContainerComponentProps$2;
1336
+ setActionContent: Dispatch<SetStateAction<ContainerComponentProps$2>>;
1337
+ isModalVisible: boolean;
1338
+ setDrawerVisible: Dispatch<SetStateAction<boolean>>;
1339
+ isDrawerVisible: boolean;
1340
+ setActivePopUpById: (id: string) => void;
1341
+ onCloseModal: (id: string) => void;
1342
+ popupProps?: PopupPropsType[];
1343
+ }>>;
1344
+ declare const ButtonActionsProvider: ({ children, popupProps }: ButtonActionsProviderProps) => _emotion_react_jsx_runtime.JSX.Element;
1345
+
1346
+ declare type StepItem = ContainerComponentProps$2 | Molecule$1;
1347
+ declare type GroupedStepItemsByStepContainer = Map<string, StepItem[]>;
1348
+
1349
+ declare type ConfigurationItem = {
1350
+ entity: 'container' | 'molecule';
1351
+ entityId: string;
1352
+ organismId: string;
1353
+ entityType: MoleculeTypes$1 | ContainerType$1;
1354
+ entityMetadata: MetadataType$1;
1355
+ organismLibraryMoleculeId?: string;
1356
+ };
1357
+ declare type OrganismContextProviderProps = PropsWithChildren<{
1358
+ organismId: string;
1359
+ } & Partial<{
1360
+ formId: string;
1361
+ editable: boolean;
1362
+ isPreview: boolean;
1363
+ initItems: (ContainerComponentProps$2 | Molecule$1)[];
1364
+ validations: PasswordRuleValidation[];
1365
+ submitHandler: (data: {
1366
+ formId: string;
1367
+ data: AnyObject$1;
1368
+ }) => Promise<void>;
1369
+ isFormInEditMode: boolean;
1370
+ organismMetadata: AnyObject$1;
1371
+ isConfigurationMode: boolean;
1372
+ onConfigurationItemHandler: (itemInfo: ConfigurationItem) => void;
1373
+ selectedConfigurationItemId: string;
1374
+ currentConfigProps: Record<string, string>;
1375
+ currentConfigPropsStyles: Record<string, string>;
1376
+ currentContentAttributes: Record<string, string>;
1377
+ }>>;
1378
+ declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, organismId, validations, editable, isPreview, isFormInEditMode, organismMetadata, isConfigurationMode, onConfigurationItemHandler, currentConfigProps, currentConfigPropsStyles, currentContentAttributes, }: OrganismContextProviderProps) => _emotion_react_jsx_runtime.JSX.Element;
1379
+
1380
+ declare type OrganismContextType = {
1381
+ items: (ContainerComponentProps$2 | Molecule$1)[];
1382
+ groupStepItemsByStepContainer: () => GroupedStepItemsByStepContainer;
1383
+ dateFields: {
1384
+ id: string;
1385
+ dateType: InputFieldTypes$2;
1386
+ }[];
1387
+ setDateFields: Dispatch<SetStateAction<{
1388
+ id: string;
1389
+ dateType: InputFieldTypes$2;
1390
+ }[]>>;
1391
+ formId?: string;
1392
+ isPreview?: boolean;
1393
+ submitHandler?: (data: {
1394
+ formId: string;
1395
+ data: AnyObject$1;
1396
+ }) => Promise<void>;
1397
+ validations?: PasswordRuleValidation[];
1398
+ editable?: boolean;
1399
+ isFormInEditMode?: boolean;
1400
+ isConfigurationMode?: boolean;
1401
+ organismMetadata?: MetadataType$1;
1402
+ onConfigurationItemClicked: (itemInfo?: Omit<ConfigurationItem, 'organismId'>) => void;
1403
+ selectedConfigurationItemId?: string;
1404
+ currentStyleAttributes: Record<string, string>;
1405
+ currentContentAttributes: Record<string, string>;
1406
+ };
1407
+ declare const OrganismContext: react.Context<OrganismContextType>;
1408
+
1409
+ declare type AccountButtonContextType = Partial<{
1410
+ userInitials: string;
1411
+ logOutHandler: Callback$1;
1412
+ goToAccountInfo: Callback$1;
1413
+ username: string;
1414
+ }>;
1415
+ declare const AccountButtonContext: react.Context<Partial<{
1416
+ userInitials: string;
1417
+ logOutHandler: Callback$1;
1418
+ goToAccountInfo: Callback$1;
1419
+ username: string;
1420
+ }>>;
1421
+
1422
+ declare type AccountButtonProviderProps = PropsWithChildren<Partial<{
1423
+ userInitials: string;
1424
+ logOutHandler: Callback$1;
1425
+ goToAccountInfo: Callback$1;
1426
+ username: string;
1427
+ }>>;
1428
+ declare const AccountButtonProvider: ({ children, goToAccountInfo, userInitials, logOutHandler, username, }: AccountButtonProviderProps) => _emotion_react_jsx_runtime.JSX.Element;
1429
+
1430
+ declare type StateContextType = {
1431
+ stateConfig: StateConfigType$1;
1432
+ stateHandler?: (updatedStateConfig: StateConfigType$1) => void;
1433
+ };
1434
+ declare const StateContext: react.Context<StateContextType>;
1435
+
1436
+ declare type StateContextProviderProps = PropsWithChildren<{
1437
+ initStateConfig: StateConfigType$1;
1438
+ stateHandler?: (updatedStateConfig: StateConfigType$1) => void;
1439
+ }>;
1440
+ declare const StateContextProvider: ({ initStateConfig, children, stateHandler, }: StateContextProviderProps) => _emotion_react_jsx_runtime.JSX.Element;
1441
+
1442
+ declare type FieldRuleLabelTypes = 'OPTIONAL' | 'REQUIRED';
1443
+ declare type LabelInternalConfig = {
1444
+ fontVariant: FontSizesTypes$2;
1445
+ fontSize: number;
1446
+ fontWeight: string | number;
1447
+ color: ThemeColors$1 | string;
1448
+ padding: string;
1449
+ styles: StylesType;
1450
+ wrapperStyles: StylesType;
1451
+ };
1452
+ declare type RuleLabelInternalConfig = {
1453
+ requiredTextColor: ThemeColors$1 | string;
1454
+ optionalTextColor: ThemeColors$1 | string;
1455
+ padding: string;
1456
+ fontSize: number;
1457
+ styles: StylesType;
1458
+ };
1459
+ declare type TooltipInternalConfig = {
1460
+ fontVariant: FontSizesTypes$2;
1461
+ fontSize: number;
1462
+ fontWeight: string | number;
1463
+ color: ThemeColors$1 | string;
1464
+ padding: string;
1465
+ backgroundColor: ThemeColors$1 | string;
1466
+ iconColor: ThemeColors$1 | string;
1467
+ styles: StylesType;
1468
+ wrapperStyles: StylesType;
1469
+ };
1470
+ declare type FieldLabelsProps = {
1471
+ label?: string;
1472
+ tooltipText?: string;
1473
+ isError?: boolean;
1474
+ isTooltipVisible?: boolean;
1475
+ ruleLabel?: Nullable<FieldRuleLabelTypes>;
1476
+ labelInternalConfig?: LabelInternalConfig;
1477
+ ruleLabelInternalConfig?: RuleLabelInternalConfig;
1478
+ tooltipInternalConfig?: TooltipInternalConfig;
1479
+ isRichText?: boolean;
1480
+ };
1481
+ declare const FieldLabels: ({ label, isTooltipVisible, isError, ruleLabel, tooltipText, labelInternalConfig, ruleLabelInternalConfig, tooltipInternalConfig, isRichText, }: FieldLabelsProps) => _emotion_react_jsx_runtime.JSX.Element;
1482
+
1483
+ declare type InputFieldProps = Partial<{
1484
+ name: string;
1485
+ control: Control<any>;
1486
+ rules: ControllerProps$1['rules'];
1487
+ required: boolean;
1488
+ optional: boolean;
1489
+ defaultValue: string;
1490
+ inputProps: InputProps$1;
1491
+ styles: StylesType;
1492
+ labelsProps: FieldLabelsProps;
1493
+ conditionConfig: ConditionConfig$1;
1494
+ state: FormStateType$1;
1495
+ formData: AnyObject$1;
1496
+ htmlElementId: string;
1497
+ configurationItemInfo?: ConfigurationItemInfo$1;
1498
+ }>;
1499
+ declare const InputField: ({ control, name, inputProps, styles, labelsProps, defaultValue, optional, required, rules, conditionConfig, state, formData, htmlElementId, configurationItemInfo, }: InputFieldProps) => _emotion_react_jsx_runtime.JSX.Element | null;
1500
+
1501
+ declare type FieldMapperProps<T extends object> = {
1502
+ field: UIField$1<keyof T>;
1503
+ isEditMode?: boolean;
1504
+ control?: Control<T>;
1505
+ spacer?: number;
1506
+ isTooltipVisible?: boolean;
1507
+ optionsPresentation?: boolean;
1508
+ styles?: StylesType;
1509
+ };
1510
+ declare const FieldMapper: <T extends object>({ field, isEditMode, spacer, control, isTooltipVisible, optionsPresentation, styles, }: FieldMapperProps<T>) => _emotion_react_jsx_runtime.JSX.Element | null;
1511
+
1512
+ declare type CheckboxesProps = Partial<{
1513
+ checkboxGroupWrapperStyles: StylesType;
1514
+ checkboxFieldWrapperStyles: StylesType;
1515
+ onChange: (id: string) => void;
1516
+ disabled: boolean;
1517
+ options?: SelectOption$1[];
1518
+ selectedIds?: string[];
1519
+ isError?: boolean;
1520
+ isEditMode?: boolean;
1521
+ isRichText: boolean;
1522
+ internalConfig: CheckboxInternalConfigProps$1;
1523
+ }>;
1524
+ declare type CheckboxFieldProps = Partial<{
1525
+ checkboxesProps: CheckboxesProps;
1526
+ labelsProps: FieldLabelsProps;
1527
+ name: string;
1528
+ rules: ControllerProps$1['rules'];
1529
+ control: Control<any>;
1530
+ required: boolean;
1531
+ optional: boolean;
1532
+ wrapperStyles: StylesType;
1533
+ conditionConfig: ConditionConfig$1;
1534
+ state: FormStateType$1;
1535
+ defaultValue: string[];
1536
+ formData: AnyObject$1;
1537
+ htmlElementId: string;
1538
+ isTrigger?: boolean;
1539
+ moleculeId: string;
1540
+ configurationItemInfo?: ConfigurationItemInfo$1;
1541
+ }>;
1542
+ declare const CheckboxField: ({ checkboxesProps, name, rules, control, optional, required, labelsProps, wrapperStyles, conditionConfig, defaultValue, formData, htmlElementId, state, isTrigger, moleculeId, configurationItemInfo, }: CheckboxFieldProps) => _emotion_react_jsx_runtime.JSX.Element | null;
1543
+
1544
+ declare type CheckboxGroupProps = Partial<{
1545
+ ref: RefCallBack;
1546
+ onBlur: Callback$1;
1547
+ onChange: (checkedIds: string[]) => void;
1548
+ checkboxesProps: CheckboxesProps;
1549
+ }>;
1550
+ declare const CheckboxGroup: ({ ref, onBlur, onChange, checkboxesProps }: CheckboxGroupProps) => _emotion_react_jsx_runtime.JSX.Element;
1551
+
1552
+ declare type SelectFieldProps = Partial<{
1553
+ selectProps: SelectProps$1;
1554
+ labelsProps: FieldLabelsProps;
1555
+ name: string;
1556
+ rules: ControllerProps$1['rules'];
1557
+ control: Control<any>;
1558
+ required: boolean;
1559
+ optional: boolean;
1560
+ defaultValue: string;
1561
+ styles: StylesType;
1562
+ conditionConfig: ConditionConfig$1;
1563
+ state: FormStateType$1;
1564
+ formData: AnyObject$1;
1565
+ htmlElementId: string;
1566
+ configurationItemInfo?: ConfigurationItemInfo$1;
1567
+ }>;
1568
+ declare const SelectField: ({ selectProps, name, defaultValue, optional, required, control, styles, labelsProps, rules, conditionConfig, formData, state, htmlElementId, configurationItemInfo, }: SelectFieldProps) => _emotion_react_jsx_runtime.JSX.Element | null;
1569
+
1570
+ declare type CustomValidationRule<T = string> = {
1571
+ text: string;
1572
+ validate: (value?: T) => boolean;
1573
+ };
1574
+ declare type CustomValidationProps<T = string> = {
1575
+ label?: string;
1576
+ value: T;
1577
+ isSubmitted?: boolean;
1578
+ rules: CustomValidationRule<T>[];
1579
+ spacer?: number;
1580
+ validationState?: FormStateType$1;
1581
+ };
1582
+ declare const CustomValidation: <T extends string = string>({ rules, value, isSubmitted, label, spacer, validationState, }: CustomValidationProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
1583
+
1584
+ declare type BaseSelectableProps<T> = {
1585
+ iconName: IconNames$2;
1586
+ infoText: string;
1587
+ isActive?: boolean;
1588
+ onClick?: (value: T) => void;
1589
+ value: T;
1590
+ };
1591
+
1592
+ declare type SelectableCardGroupProps<T> = {
1593
+ cards: BaseSelectableProps<T>[];
1594
+ handleChange?: (value: T | undefined) => void;
1595
+ spacing?: SizesTypes$1;
1596
+ initialValue?: T;
1597
+ };
1598
+ declare const SelectableCardGroup: <T extends string>({ cards, handleChange, spacing, initialValue, }: SelectableCardGroupProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
1599
+
1600
+ declare type Anchor = 'top' | 'left' | 'bottom' | 'right';
1601
+ declare type DrawerProps = DrawerProps$1 & {
1602
+ anchor: Anchor;
1603
+ padding?: SizesTypes$2 | number | string;
1604
+ height?: number | string;
1605
+ width?: number | string;
1606
+ withCloseIcon?: boolean;
1607
+ closeIconColor?: ThemeColors$2 | string;
1608
+ };
1609
+
1610
+ declare const Drawer: ({ children, closeIconColor, withCloseIcon, ...props }: PropsWithChildren<DrawerProps>) => _emotion_react_jsx_runtime.JSX.Element;
1611
+
1612
+ declare type MenuItemsProps<T> = {
1613
+ title?: string;
1614
+ options?: MenuItemType<T>[];
1615
+ activeKey?: T;
1616
+ itemColor?: string;
1617
+ menuTheme?: 'light' | 'dark';
1618
+ onItemPress?: (id: T) => void;
1619
+ activeItemColor?: string;
1620
+ };
1621
+ declare const MenuItems: <T extends string | number>({ title, options, activeKey, itemColor, menuTheme, onItemPress, activeItemColor, }: MenuItemsProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
1622
+
1623
+ declare type AvatarDropdownMenuConfigType = 'log-out' | 'account-information';
1624
+ declare type AvatarDropdownProps<T = string> = {
1625
+ avatarProps: AvatarProps$1;
1626
+ menuConfig: MenuItemsProps<T>;
1627
+ configurationItemInfo?: ConfigurationItemInfo$1;
1628
+ };
1629
+ declare const AvatarDropdown: <T extends string | number>({ avatarProps, menuConfig, configurationItemInfo, }: AvatarDropdownProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
1630
+
1631
+ declare type TabType<T = string, K = string> = Pick<TabProps$1<T, K>, 'text' | 'tabKey' | 'disabled' | 'options' | 'divider'>;
1632
+ declare type AdditionalTabContainerProps = {
1633
+ containerStyle?: StylesType;
1634
+ containerProps?: Record<string, unknown>;
1635
+ };
1636
+ declare type TabGroupProps<T = string, K = string> = {
1637
+ tabs: TabType<T, K>[];
1638
+ activeTabKey: T;
1639
+ onTabChange?: (tabKey: T) => void;
1640
+ onOptionClick?: (optionKey: K) => void;
1641
+ styles?: StylesType;
1642
+ vertical?: boolean;
1643
+ tabTheme?: TabTheme$1;
1644
+ tabFont?: FontSizesTypes$1;
1645
+ textSize?: number;
1646
+ tabPadding?: SizesTypes$2 | number;
1647
+ tabSpacing?: SizesTypes$2;
1648
+ defaultTabTextColor?: ThemeColors$2 | string;
1649
+ selectedTabTextColor?: ThemeColors$2 | string;
1650
+ selectedTabIndicatorColor?: ThemeColors$2 | string;
1651
+ wide?: AdditionalTabContainerProps;
1652
+ compact?: AdditionalTabContainerProps;
1653
+ isMobile?: boolean;
1654
+ htmlElementId?: string;
1655
+ menuIconColor?: string;
1656
+ configurationItemInfo?: ConfigurationItemInfo$1;
1657
+ };
1658
+ declare const TabGroup: <T extends string, K extends string>({ tabs, vertical, activeTabKey, onTabChange, tabTheme, wide, compact, tabSpacing, isMobile, htmlElementId, menuIconColor, configurationItemInfo, ...props }: TabGroupProps<T, K>) => _emotion_react_jsx_runtime.JSX.Element;
1659
+
1660
+ declare type FieldSectionProps<T extends object> = {
1661
+ label: string;
1662
+ control?: Control<T>;
1663
+ isEditMode?: boolean;
1664
+ fields: UIFields<T>;
1665
+ };
1666
+ declare const FieldSection: <T extends object>({ fields, label, isEditMode, control, }: FieldSectionProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
1667
+
1668
+ declare type MenuNavigationProps<T> = {
1669
+ menuConfig: MenuItemsProps<T>;
1670
+ customIconType?: IconNames$2;
1671
+ menuIconColor?: string;
1672
+ };
1673
+ declare const MenuNavigation: <T extends string | number>({ menuConfig, customIconType, menuIconColor, }: MenuNavigationProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
1674
+ declare const CaretIconWrapper: _emotion_styled.StyledComponent<{
1675
+ theme?: _emotion_react.Theme | undefined;
1676
+ as?: react.ElementType<any> | undefined;
1677
+ } & {
1678
+ isOpen: boolean;
1679
+ }, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
1680
+
1681
+ declare type EmphasizedTextProps = {
1682
+ type: 'emphasized_text';
1683
+ invertColors: boolean;
1684
+ textContent: string;
1685
+ };
1686
+ declare const EmphasizedText: ({ textContent, invertColors }: EmphasizedTextProps) => _emotion_react_jsx_runtime.JSX.Element;
1687
+
1688
+ declare type RadioButtonFieldProps<T extends string> = Partial<{
1689
+ name: string;
1690
+ rules: ControllerProps$1['rules'];
1691
+ styles: StylesType;
1692
+ control: Control<any>;
1693
+ optional: boolean;
1694
+ required: boolean;
1695
+ labelsProps: FieldLabelsProps;
1696
+ defaultValue: string;
1697
+ radioButtonsProps: RadioButtonsProps$1<T>;
1698
+ internalConfig: RadioButtonInternalConfigProps$1;
1699
+ conditionConfig: ConditionConfig$1;
1700
+ state: FormStateType$1;
1701
+ formData: AnyObject$1;
1702
+ htmlElementId: string;
1703
+ isTrigger?: boolean;
1704
+ moleculeId: string;
1705
+ configurationItemInfo?: ConfigurationItemInfo$1;
1706
+ }>;
1707
+ declare const RadioButtonField: <T extends string>({ name, rules, styles, control, optional, required, labelsProps, defaultValue, radioButtonsProps, conditionConfig, formData, htmlElementId, state, isTrigger, moleculeId, configurationItemInfo, }: Partial<{
1708
+ name: string;
1709
+ rules: ControllerProps$1['rules'];
1710
+ styles: StylesType;
1711
+ control: Control<any>;
1712
+ optional: boolean;
1713
+ required: boolean;
1714
+ labelsProps: FieldLabelsProps;
1715
+ defaultValue: string;
1716
+ radioButtonsProps: Partial<{
1717
+ ref: react_hook_form.RefCallBack;
1718
+ name: string;
1719
+ value: T;
1720
+ options: atoms.SelectOption[];
1721
+ onBlur: typescript.Callback;
1722
+ onChange: (value: T) => void;
1723
+ isRow: boolean;
1724
+ isError: boolean;
1725
+ disabled: boolean;
1726
+ isEditMode: boolean;
1727
+ isRichText: boolean;
1728
+ internalConfig: Partial<{
1729
+ selectedRadioOptionBackgroundColor: string;
1730
+ selectedRadioOptionIndicatorColor: string;
1731
+ buttonPadding: number;
1732
+ textPadding: number;
1733
+ styles: _emotion_react.SerializedStyles;
1734
+ wrapperStyles: _emotion_react.SerializedStyles;
1735
+ buttonOptionSpacing: SizesTypes;
1736
+ radioGroupWrapperStyles: _emotion_react.SerializedStyles;
1737
+ }>;
1738
+ }>;
1739
+ internalConfig: Partial<{
1740
+ selectedRadioOptionBackgroundColor: string;
1741
+ selectedRadioOptionIndicatorColor: string;
1742
+ buttonPadding: number;
1743
+ textPadding: number;
1744
+ styles: _emotion_react.SerializedStyles;
1745
+ wrapperStyles: _emotion_react.SerializedStyles;
1746
+ buttonOptionSpacing: SizesTypes;
1747
+ radioGroupWrapperStyles: _emotion_react.SerializedStyles;
1748
+ }>;
1749
+ conditionConfig: ConditionConfig$1;
1750
+ state: FormStateType$1;
1751
+ formData: AnyObject$1;
1752
+ htmlElementId: string;
1753
+ isTrigger?: boolean | undefined;
1754
+ moleculeId: string;
1755
+ configurationItemInfo?: ConfigurationItemInfo$1 | undefined;
1756
+ }>) => _emotion_react_jsx_runtime.JSX.Element | null;
1757
+
1758
+ declare type AlertProps = {
1759
+ style?: CSSObject;
1760
+ title: string;
1761
+ description: string;
1762
+ color?: string;
1763
+ isMobile?: boolean;
1764
+ logo?: string;
1765
+ fullWidth?: boolean;
1766
+ withCloseIcon?: {
1767
+ onClose: Callback$1;
1768
+ };
1769
+ fontColor?: ThemeColors$1;
1770
+ destinationLink?: string;
1771
+ onDestinationHandler?: Callback$1;
1772
+ containerStyles?: CSSObject;
1773
+ };
1774
+ declare const Alert: ({ logo, title, withCloseIcon, description, style, fontColor, containerStyles, isMobile, ...props }: AlertProps) => _emotion_react_jsx_runtime.JSX.Element;
1775
+
1776
+ declare type StepperOrientation = 'horizontal' | 'vertical';
1777
+ declare type StepOrientation = 'horizontal' | 'vertical';
1778
+ declare type StepperProps = {
1779
+ steps: ProcessStep$1[];
1780
+ isMobile?: boolean;
1781
+ iconSize?: number;
1782
+ iconColor?: string;
1783
+ expandedAll?: boolean;
1784
+ orientation: StepperOrientation;
1785
+ htmlElementId?: string;
1786
+ connectorWidth?: number;
1787
+ connectorRadius?: number;
1788
+ stepOrientation?: StepOrientation;
1789
+ activeStepColor?: string;
1790
+ defaultStepColor?: string;
1791
+ iconBorderRadius?: number;
1792
+ isOnClickDisabled?: boolean;
1793
+ completedStepColor?: string;
1794
+ configurationItemInfo?: ConfigurationItemInfo$1;
1795
+ };
1796
+ declare const Stepper: ({ steps, isMobile, iconSize, iconColor, expandedAll, orientation, htmlElementId, connectorWidth, connectorRadius, stepOrientation, iconBorderRadius, activeStepColor, defaultStepColor, isOnClickDisabled, completedStepColor, configurationItemInfo, }: StepperProps) => _emotion_react_jsx_runtime.JSX.Element | null;
1797
+
1798
+ declare type PdfDocumentProps = {
1799
+ source: string;
1800
+ isMobile?: boolean;
1801
+ customDocumentStyles?: Partial<{
1802
+ wrapperBackgroundColor: ThemeColors$1 | string;
1803
+ pageNumberColor: ThemeColors$1 | string;
1804
+ pageWidth: number;
1805
+ pageHeight: number;
1806
+ paginationArrowColor: ThemeColors$1 | string;
1807
+ disabledPaginationArrowColor: ThemeColors$1 | string;
1808
+ }>;
1809
+ };
1810
+ declare const PdfDocument: ({ source, isMobile, customDocumentStyles, }: PdfDocumentProps) => _emotion_react_jsx_runtime.JSX.Element;
1811
+
1812
+ declare type FeedTemplateKeys = `feed_${'a' | 'b'}`;
1813
+ declare type FeedContentHeaderProps = {
1814
+ title: string;
1815
+ enableFavoriting?: boolean;
1816
+ templateType: FeedTemplateKeys;
1817
+ isMobile?: boolean;
1818
+ menuConfig: MenuItemsProps$1<FilteredFeedContentType>;
1819
+ } & Partial<Omit<InputFieldProps$1, 'labelsProps' | 'required' | 'optional'>>;
1820
+ declare const FeedContentHeader: ({ templateType, title, name, inputProps, isMobile, menuConfig, ...rest }: FeedContentHeaderProps) => _emotion_react_jsx_runtime.JSX.Element;
1821
+
1822
+ declare type ToggleFieldProps = {
1823
+ name: string;
1824
+ title: string;
1825
+ control?: Control<any>;
1826
+ description?: string;
1827
+ horizontalButtonsProps: HorizontalButtonsProps$1;
1828
+ defaultValue?: string;
1829
+ };
1830
+ declare const HorizontalButtonsField: ({ name, title, control, description, horizontalButtonsProps, }: ToggleFieldProps) => _emotion_react_jsx_runtime.JSX.Element;
1831
+
1832
+ declare type BottomNaVBarItemProps = {
1833
+ name: string;
1834
+ icon: ComponentType<Omit<IconProps$1, 'name'>>;
1835
+ active: boolean;
1836
+ activeColor: string;
1837
+ onNavigate: Callback;
1838
+ };
1839
+ declare const BottomNavBarItem: ({ name, icon, active, activeColor, onNavigate, }: BottomNaVBarItemProps) => _emotion_react_jsx_runtime.JSX.Element;
1840
+
1841
+ declare type VideoProps = {
1842
+ src: string;
1843
+ } & Partial<{
1844
+ width: number;
1845
+ height: number;
1846
+ autoplay: boolean;
1847
+ enableCoverImage: boolean;
1848
+ coverImageSrc: string;
1849
+ style: CSSProperties;
1850
+ styles: StylesType;
1851
+ template: FeedContentTemplateTypes;
1852
+ htmlElementId: string;
1853
+ moleculeId: string;
1854
+ isTrigger: boolean;
1855
+ isOnClickDisabled: boolean;
1856
+ configurationItemInfo?: ConfigurationItemInfo$1;
1857
+ }>;
1858
+ declare const Video: ({ style, src, width, height, template, autoplay, enableCoverImage, coverImageSrc, styles, htmlElementId, isTrigger, moleculeId, isOnClickDisabled, configurationItemInfo, ...props }: VideoProps) => _emotion_react_jsx_runtime.JSX.Element | null;
1859
+
1860
+ declare type ImageProps = {
1861
+ src: string;
1862
+ } & Partial<{
1863
+ id: string;
1864
+ altText: string;
1865
+ link: string;
1866
+ onClick: Callback$1;
1867
+ width: number;
1868
+ height: number;
1869
+ cornerRadius: SizesTypes$1 | number;
1870
+ behaveAs: 'background' | 'regular';
1871
+ styles: StylesType;
1872
+ isTrigger: boolean;
1873
+ htmlElementId: string;
1874
+ configurationItemInfo: ConfigurationItemInfo$1;
1875
+ }>;
1876
+ declare const Image: ({ src, onClick, link, altText, styles, width, height, id, behaveAs, cornerRadius, htmlElementId, isTrigger, configurationItemInfo, ...props }: ImageProps) => _emotion_react_jsx_runtime.JSX.Element | null;
1877
+
1878
+ declare type CarouselProps = {
1879
+ children: JSX.Element[];
1880
+ autoplay?: boolean;
1881
+ autoplayDuration?: number;
1882
+ };
1883
+ declare const Carousel: ({ children, autoplay, autoplayDuration, }: PropsWithChildren<CarouselProps>) => _emotion_react_jsx_runtime.JSX.Element;
1884
+
1885
+ declare type IconPickerProps = {
1886
+ icon: string | null;
1887
+ onSelect: (iconName: string) => void;
1888
+ };
1889
+ declare const iconNames: string[];
1890
+ declare const IconPicker: react__default.FC<IconPickerProps>;
1891
+
1892
+ declare type IconRendererProps = SvgIconProps & {
1893
+ size?: number;
1894
+ color?: string;
1895
+ iconName: typeof Icons;
1896
+ borderRadius?: number;
1897
+ backgroundColor?: string;
1898
+ };
1899
+ declare const IconRenderer: react__default.FC<IconRendererProps>;
1900
+
1901
+ interface IconPickerControlProps {
1902
+ value: string;
1903
+ onChange: (iconName: string) => void;
1904
+ }
1905
+ declare const IconPickerControl: react__default.FC<IconPickerControlProps>;
1906
+
1907
+ declare type TextMoleculeProps = Partial<{
1908
+ text: string;
1909
+ variant: 'base' | 'custom';
1910
+ fontVariant: FontSizesTypes$2;
1911
+ textSize: number;
1912
+ textColor: ThemeColors$1 | string;
1913
+ letterSpacing: number;
1914
+ lineHeight: number;
1915
+ fontWeight: string | number;
1916
+ isRichText: boolean;
1917
+ styles: StylesType;
1918
+ textAlign: 'center' | 'right' | 'left';
1919
+ htmlElementId: string;
1920
+ configurationItemInfo: ConfigurationItemInfo$1;
1921
+ }> & Pick<TextProps$1, 'seoTag' | 'numberOfLines'>;
1922
+ declare const TextMolecule: ({ isRichText, variant, text, seoTag, fontVariant, textColor, textSize, fontWeight, lineHeight, letterSpacing, styles, textAlign, htmlElementId, configurationItemInfo, ...restOfTextProps }: TextMoleculeProps) => _emotion_react_jsx_runtime.JSX.Element;
1923
+
1924
+ declare type ButtonVariant = 'primary' | 'secondary' | 'text' | 'custom';
1925
+ declare type ButtonType = 'button' | 'submit' | 'reset';
1926
+ declare type BaseButtonProps = PropsWithChildren<Partial<{
1927
+ onClick: Callback$1;
1928
+ variant: ButtonVariant;
1929
+ disabled: boolean;
1930
+ state: 'disabled' | 'enabled';
1931
+ fullWidth: boolean;
1932
+ size: 'medium' | 'small';
1933
+ buttonFont: FontSizesTypes$2;
1934
+ textColor: ThemeColors$1 | string;
1935
+ textSize: number;
1936
+ horizontalPadding: SizesTypes$1;
1937
+ verticalPadding: SizesTypes$1;
1938
+ buttonColor: ThemeColors$1 | string;
1939
+ buttonStroke: ThemeColors$1 | string;
1940
+ cornerRadius: SizesTypes$1 | number;
1941
+ hoverButtonColor: ThemeColors$1 | string;
1942
+ hoverStrokeColor: ThemeColors$1 | string;
1943
+ inactiveButtonColor: ThemeColors$1 | string;
1944
+ inactiveStrokeColor: ThemeColors$1 | string;
1945
+ inactiveTextColor: ThemeColors$1 | string;
1946
+ styles: StylesType;
1947
+ colorTheme: 'light' | 'dark';
1948
+ href: string;
1949
+ type: ButtonType;
1950
+ }>>;
1951
+ declare const baseButtonAllowedConfigurations: string[];
1952
+ declare type ButtonProps = BaseButtonProps & {
1953
+ fullWidth?: boolean;
1954
+ text?: string;
1955
+ link?: string;
1956
+ elementId?: string;
1957
+ loading?: boolean;
1958
+ isRichText?: boolean;
1959
+ containerStyle?: StylesType;
1960
+ buttonStyle?: StylesType;
1961
+ stateConfig?: MetadataStateConfig$1[];
1962
+ htmlElementId?: string;
1963
+ isTrigger?: boolean;
1964
+ configurationItemInfo?: ConfigurationItemInfo$1;
1965
+ };
1966
+ declare const Button: ({ text, onClick, loading, disabled, variant, isRichText, fullWidth, elementId, link, containerStyle, children, buttonStyle, size, textColor, inactiveTextColor, state, href, htmlElementId, isTrigger, configurationItemInfo, ...props }: ButtonProps) => _emotion_react_jsx_runtime.JSX.Element | null;
1967
+
1968
+ declare type ZealUIModalProps = PropsWithChildren<Pick<ModalProps, 'open'>> & {
1969
+ padding?: number | string;
1970
+ wrapperStyles?: CSSProperties;
1971
+ onKeyDown?: <T extends HTMLElement>(event: KeyboardEvent<T>) => void;
1972
+ modalStyles?: CSSProperties;
1973
+ size?: string;
1974
+ popupId: string;
1975
+ onClose: () => void;
1976
+ withCloseIcon?: boolean;
1977
+ };
1978
+ declare const ZealUIModal: ({ children, wrapperStyles, padding, onKeyDown, modalStyles, size, popupId, withCloseIcon, ...rest }: ZealUIModalProps) => _emotion_react_jsx_runtime.JSX.Element;
1979
+ declare const ModalWrapper: _emotion_styled.StyledComponent<{
1980
+ theme?: _emotion_react.Theme | undefined;
1981
+ as?: react__default.ElementType<any> | undefined;
1982
+ } & OverrideStyles, react__default.DetailedHTMLProps<react__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
1983
+ declare const IconWrapper: _emotion_styled.StyledComponent<{
1984
+ theme?: _emotion_react.Theme | undefined;
1985
+ as?: react__default.ElementType<any> | undefined;
1986
+ } & {
1987
+ activeOpacity?: number | undefined;
1988
+ withoutOpacityEffect?: boolean | undefined;
1989
+ disabled?: boolean | undefined;
1990
+ } & {
1991
+ children?: react__default.ReactNode;
1992
+ } & react__default.ClassAttributes<HTMLDivElement> & react__default.HTMLAttributes<HTMLDivElement> & {
1993
+ theme?: _emotion_react.Theme | undefined;
1994
+ }, {}, {}>;
1995
+
1996
+ declare type ConsentCaptureMethod = 'button' | 'radioButton' | 'checkbox';
1997
+ declare type DefaultSelectionType = 'confirmation' | 'rejection';
1998
+ declare type ConsentType = {
1999
+ id: string;
2000
+ name: string;
2001
+ acknowledgment: CustomDescendant[];
2002
+ methodOfCapture: ConsentCaptureMethod;
2003
+ description: string;
2004
+ language: CustomDescendant[];
2005
+ expiration: string;
2006
+ confirmationButtonText: string;
2007
+ rejectionButtonText: string;
2008
+ defaultSelection: DefaultSelectionType;
2009
+ value?: DefaultSelectionType | boolean;
2010
+ isRequired?: boolean;
2011
+ };
2012
+ declare type ConsentProps<T extends string = string> = {
2013
+ text: string;
2014
+ isRequired?: boolean;
2015
+ consentCaptureProps: ConsentCaptureProps<T>;
2016
+ containerStyles?: CSSProperties;
2017
+ clearStyles?: boolean;
2018
+ };
2019
+ declare const Consent: <T extends string>({ text, consentCaptureProps, containerStyles, clearStyles, }: ConsentProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
2020
+
2021
+ declare type LinkProps = Omit<TextButtonProps$1, 'children'> & {
2022
+ text: string;
2023
+ isTrigger?: boolean;
2024
+ moleculeId?: string;
2025
+ isRichText?: boolean;
2026
+ htmlElementId?: string;
2027
+ onExternalLink?: () => void;
2028
+ configurationItemInfo?: ConfigurationItemInfo$1;
2029
+ };
2030
+ declare const Link: ({ text, isTrigger, isRichText, moleculeId, htmlElementId, configurationItemInfo, ...props }: LinkProps) => _emotion_react_jsx_runtime.JSX.Element | null;
2031
+
2032
+ declare type ChecklistItem = {
2033
+ id: string;
2034
+ isChecked: boolean;
2035
+ eventId: Nullable<string>;
2036
+ type: 'user_interactive' | 'system_controlled';
2037
+ label: {
2038
+ text: string;
2039
+ isRichText: boolean;
2040
+ };
2041
+ };
2042
+ declare type ChecklistProps = {
2043
+ items: ChecklistItem[];
2044
+ props?: {
2045
+ gap?: SizesTypes$1;
2046
+ } & CheckboxInternalConfigProps$1;
2047
+ configurationItemInfo?: ConfigurationItemInfo$1;
2048
+ stateListenerId: string;
2049
+ htmlElementId: string;
2050
+ };
2051
+ declare const Checklist: ({ items, props: { gap, ...checkboxProps }, configurationItemInfo, htmlElementId, stateListenerId, }: ChecklistProps) => _emotion_react_jsx_runtime.JSX.Element;
2052
+ declare const ChecklistWrapper: _emotion_styled.StyledComponent<{
2053
+ theme?: _emotion_react.Theme | undefined;
2054
+ as?: react.ElementType<any> | undefined;
2055
+ } & {
2056
+ $gap: SizesTypes$1;
2057
+ }, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
2058
+
2059
+ declare type SimpleTextProps = TypographyProps$1 & {
2060
+ text?: string;
2061
+ align?: TypographyProps$1['align'];
2062
+ color?: TypographyProps$1['color'];
2063
+ noWrap?: TypographyProps$1['noWrap'];
2064
+ margin?: TypographyProps$1['margin'];
2065
+ padding?: TypographyProps$1['padding'];
2066
+ variant?: TypographyProps$1['variant'];
2067
+ fontSize?: TypographyProps$1['fontSize'];
2068
+ fontWeight?: TypographyProps$1['fontWeight'] | 'normal' | 'bold';
2069
+ fontFamily?: TypographyProps$1['fontFamily'];
2070
+ htmlElementId?: string;
2071
+ configurationsItemInfo?: ConfigurationItemInfo$1;
2072
+ };
2073
+ declare const SimpleText: ({ text, fontSize, fontWeight, fontFamily, htmlElementId, configurationsItemInfo, ...props }: SimpleTextProps) => _emotion_react_jsx_runtime.JSX.Element;
2074
+ declare const SimpleTextSC: _emotion_styled.StyledComponent<_mui_material.TypographyOwnProps & _mui_material_OverridableComponent.CommonProps & Omit<Pick<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "key" | keyof react.HTMLAttributes<HTMLSpanElement>> & {
2075
+ ref?: ((instance: HTMLSpanElement | null) => void) | react.RefObject<HTMLSpanElement> | null | undefined;
2076
+ }, "maxWidth" | "maxHeight" | "minWidth" | "minHeight" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxShadow" | "boxSizing" | "color" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "zIndex" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "marginBlock" | "marginInline" | "overflow" | "padding" | "paddingBlock" | "paddingInline" | "typography" | "className" | "children" | "p" | "style" | "classes" | "sx" | "variant" | "displayPrint" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "my" | "pt" | "pr" | "pb" | "pl" | "px" | "py" | "marginX" | "marginY" | "paddingX" | "paddingY" | "align" | "gutterBottom" | "noWrap" | "paragraph" | "variantMapping"> & {
2077
+ theme?: _emotion_react.Theme | undefined;
2078
+ } & ConfigurationItemInfo$1, {}, {}>;
2079
+
2080
+ interface NewDividerProps {
2081
+ variant?: 'fullWidth' | 'inset' | 'middle';
2082
+ orientation?: 'horizontal' | 'vertical';
2083
+ borderWidth?: number;
2084
+ borderColor?: string;
2085
+ margin?: string | number;
2086
+ padding?: string | number;
2087
+ moleculeId?: string;
2088
+ configurationItemInfo?: ConfigurationItemInfo$1;
2089
+ metadata?: MetadataType$1;
2090
+ sx?: SxProps;
2091
+ }
2092
+ declare const NewDivider: ({ variant, orientation, borderWidth, borderColor, margin, padding, moleculeId, configurationItemInfo, metadata, sx, ...props }: NewDividerProps) => _emotion_react_jsx_runtime.JSX.Element;
2093
+
2094
+ interface NewLinkProps {
2095
+ src: string;
2096
+ text: string;
2097
+ color?: string;
2098
+ underline?: 'none' | 'always' | 'hover';
2099
+ variant?: TypographyProps$1['variant'];
2100
+ margin?: string;
2101
+ padding?: string;
2102
+ moleculeId?: string;
2103
+ configurationItemInfo?: ConfigurationItemInfo$1;
2104
+ metadata?: MetadataType$1;
2105
+ }
2106
+ declare const NewLink: react__default.FC<NewLinkProps>;
2107
+
2108
+ interface NewVideoProps {
2109
+ src: string;
2110
+ poster?: string;
2111
+ controls?: boolean;
2112
+ loop?: boolean;
2113
+ autoplay?: boolean;
2114
+ raised?: boolean;
2115
+ alt?: string;
2116
+ height?: string | number;
2117
+ width?: string | number;
2118
+ rounded?: boolean;
2119
+ margin?: number | string;
2120
+ padding?: number | string;
2121
+ moleculeId?: string;
2122
+ configurationItemInfo?: ConfigurationItemInfo$1;
2123
+ metadata?: MetadataType$1;
2124
+ }
2125
+ declare const NewVideo: react__default.FC<NewVideoProps>;
2126
+
2127
+ interface NewImageProps {
2128
+ src: string;
2129
+ alt?: string;
2130
+ height?: number | string;
2131
+ width?: number | string;
2132
+ rounded?: boolean;
2133
+ raised?: boolean;
2134
+ margin?: string;
2135
+ padding?: string;
2136
+ moleculeId?: string;
2137
+ configurationItemInfo?: ConfigurationItemInfo$1;
2138
+ metadata?: MetadataType$1;
2139
+ triggerable?: boolean;
2140
+ onClick?: () => void;
2141
+ }
2142
+ declare const NewImage: FC<NewImageProps>;
2143
+
2144
+ interface NewButtonProps extends ButtonProps$2 {
2145
+ moleculeId?: string;
2146
+ configurationItemInfo?: ConfigurationItemInfo$1;
2147
+ metadata?: MetadataType$1;
2148
+ sx?: SxProps<Theme$1>;
2149
+ typographyVariant?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'subtitle1' | 'subtitle2' | 'body1' | 'body2' | 'button' | 'caption' | 'overline';
2150
+ size?: 'small' | 'medium' | 'large';
2151
+ margin?: react__default.CSSProperties['margin'];
2152
+ padding?: react__default.CSSProperties['padding'];
2153
+ cornerRadius?: string | number;
2154
+ hasStartIcon?: boolean;
2155
+ hasEndIcon?: boolean;
2156
+ startIcon?: react__default.ReactNode;
2157
+ endIcon?: react__default.ReactNode;
2158
+ text: string;
2159
+ link?: string;
2160
+ triggerable?: boolean;
2161
+ }
2162
+ declare const NewButton: react__default.FC<NewButtonProps>;
2163
+
2164
+ export { AccountButtonContext, AccountButtonContextType, AccountButtonMolecule, AccountButtonProvider, AccountButtonProviderProps, ActionAttributes, ActionEventType, ActionTypes, AdditionalContainerProps, AdditionalTabContainerProps, Alert, AlertProps, AnnotationsList, Avatar, AvatarDropdown, AvatarDropdownMenuConfigType, AvatarDropdownProps, AvatarProps, BackgroundImage, BaseButtonProps, BaseMolecule, BaseTextButton, BooleanAttributes, BottomNaVBarItemProps, BottomNavBarItem, BreakpointSizesTypes, Button, ButtonActionsContext, ButtonActionsContextType, ButtonActionsProvider, ButtonActionsProviderProps, ButtonMolecule, ButtonProps, ButtonType, ButtonVariant, COMMUNICATION_LINK_DATA_TEXT, COMMUNICATION_LINK_DATA_URL, COMMUNICATION_LINK_ELEMENT_ID, CaretIconWrapper, Carousel, CarouselProps, Checkbox, CheckboxField, CheckboxFieldMolecule, CheckboxFieldProps, CheckboxGroup, CheckboxGroupProps, CheckboxProps, CheckboxesProps, Checklist, ChecklistAttributes, ChecklistItem, ChecklistProps, ChecklistWrapper, ChecklistsMolecule, Circle, CircleBoxProps, CirclesWrapper, CircularIndicator, CircularIndicatorProps, CircularIndicatorStyledComponent, ColorAttributes, ConditionConfig, ConditionConfigAttributes, ConditionCriteria, ConfigurationItem, ConfigurationItemInfo, Consent, ConsentCaptureMethod, ConsentFieldMolecule, ConsentProps, ConsentType, Container, ContainerAlignItemsType, ContainerComponentProps, ContainerPositionType, ContainerProps, ContainerPropsType, ContainerScrollBehaviourType, ContainerTemplateType, ContainerType, ContainerWrapper, CriteriaType, CustomValidation, CustomValidationProps, CustomValidationRule, DataConnectionAttributes, DataConnectionValues, DataModelFieldFormat, DataModelFieldFormatCodeTypes, DataModelFieldFormatValueTypes, DefaultSelectionType, Divider, DividerProps, DownloadFile, Drawer, EmphasizedText, EmphasizedTextProps, ErrorText, FeedContentHeader, FeedContentHeaderProps, FieldLabels, FieldLabelsProps, FieldMapper, FieldMapperProps, FieldRuleLabelTypes, FieldSection, FieldSectionProps, FieldTypes, FontSizesTypes, FontWeight, FormContainerProps, FormDataStateConfig, FormOrganismItem, FormStateType, FormStepContainerProps, HorizontalButtons, HorizontalButtonsField, HorizontalButtonsProps, HorizontalPadding, Icon, IconButton, IconButtonProps, IconNames, IconPicker, IconPickerControl, IconPickerProps, IconProps, IconRenderer, IconRendererProps, IconWrapper, Image, ImageAttributes, ImageMolecule, ImageProps, Input, InputField, InputFieldInternalConfigProps, InputFieldProps, InputFieldTypes, InputIconProps, InputProps, IterableAttributes, LabelInternalConfig, Link, LinkAttributes, LinkMolecule, LinkProps, LinkVariant, MATRIX_MESSAGE_DATA_ID, MATRIX_MESSAGE_ELEMENT_ID, MenuItems, MenuItemsProps, MenuNavigation, MenuNavigationProps, MetadataStateConfig, MetadataType, MlrRichTextViewerContext, MlrRichTextViewerContextType, MlrRichTextViewerProvider, MlrRichTextViewerProviderProps, ModalWrapper, Molecule, MoleculeItem, MoleculeTypes, NewButton, NewButtonMolecule, NewButtonProps, NewDivider, NewDividerMolecule, NewDividerProps, NewImage, NewImageMolecule, NewImageProps, NewLink, NewLinkMolecule, NewLinkProps, NewVideo, NewVideoMolecule, NewVideoProps, OrganismContext, OrganismContextProvider, OrganismContextProviderProps, OrganismContextType, OrganismItem, OrganismItemProps, OrientationType, OrientationTypeLabel, Padding, PaddingProps, PaddingVariants, PasswordSetupMolecule, PdfDocument, PdfDocumentProps, PopupPropsType, ProcessStep, ProcessStepsAttributes, ProcessStepsMoleculeType, ProcessTrackerStateValue, ProcessTrackerStatus, RadioButtonField, RadioButtonFieldMolecule, RadioButtonFieldProps, RadioButtonInternalConfigProps, RadioButtons, RadioButtonsProps, RadioGroupWrapper, RegularImage, RegularImageProps, RichTextEditorProps, RichTextViewer, RuleLabelInternalConfig, SegmentationType, Select, SelectAttributes, SelectField, SelectFieldMolecule, SelectFieldProps, SelectInternalConfigurationOptions, SelectOption, SelectProps, SelectableCardGroup, SelectableCardGroupProps, SeoTags, SimpleText, SimpleTextMoleculeType, SimpleTextProps, SimpleTextSC, SizesTypes, SlateValueChildType, SliderProps, Spacer, SpacerProps, Spinner, StateActionType, StateConfigType, StateContext, StateContextProvider, StateContextProviderProps, StateContextType, StateEventType, StateListenerConfigType, StateModifierConfigType, Stepper, StepperProps, StyleWrapper, Tab, TabGroup, TabGroupMolecule, TabGroupProps, TabOption, TabProps, TabTheme, TabType, TextAlign, TextAttributes, TextButton, TextButtonProps, TextInputMolecule, TextMolecule, TextMoleculeProps, TextMoleculeType, TextProps, TextTypes, TextWrapper, TextWrapperProps, ThemeColors, ThemeColorsType, ThemeDevicesType, ThemeSizesType, ThemeTextType, Tooltip, TooltipInternalConfig, TooltipProps, TouchableOpacity, TouchableOpacityProps, UICheckboxField, UIField, UIFields, UIInputField, UISelectField, ValidationTag, ValidationTagProps, ValidationTagStatus, VerticalPadding, Video, VideoAttributes, VideoMolecule, VideoProps, WrappedContainerType, ZealTheme, ZealThemeProvider, ZealUIModal, ZealUIModalProps, baseButtonAllowedConfigurations, defaultTheme, defaultValue, getFieldPlaceholder, getFieldsFromFieldSections, getInitialValuesFromFields, iconNames, isFormValid, toast, toastStyles, useButtonActionsContext, useMediaQuery, useMlrRichTextViewerContext, useRequiredConsentsAcceptedValues, useStep };