@zealicsolutions/web-ui 0.3.268 → 0.3.333
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.
- package/dist/cjs/index.js +242 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/atoms/Avatar/Avatar.d.ts +21 -0
- package/dist/cjs/src/atoms/Avatar/Avatar.stories.d.ts +9 -0
- package/dist/cjs/src/atoms/Buttons/Buttons.stories.d.ts +20 -0
- package/dist/cjs/src/atoms/Buttons/IconButton.d.ts +13 -0
- package/dist/cjs/src/atoms/Buttons/TextButton.d.ts +17 -0
- package/dist/cjs/src/atoms/Buttons/TouchableOpacity.d.ts +13 -0
- package/dist/cjs/src/atoms/Checkbox/Checkbox.d.ts +15 -0
- package/dist/cjs/src/atoms/Checkbox/Checkbox.stories.d.ts +9 -0
- package/dist/cjs/src/atoms/Circle/Circle.d.ts +9 -0
- package/dist/cjs/src/atoms/Circle/Circle.stories.d.ts +9 -0
- package/dist/cjs/src/atoms/CircularIndicator/CircularIndicator.d.ts +9 -0
- package/dist/cjs/src/atoms/CircularIndicator/CircularIndicator.stories.d.ts +9 -0
- package/dist/cjs/src/atoms/Divider/Divider.d.ts +9 -0
- package/dist/cjs/src/atoms/GoogleMap/GoogleMap.d.ts +13 -0
- package/dist/cjs/src/atoms/GoogleMap/GoogleMap.stories.d.ts +12 -0
- package/dist/cjs/src/atoms/HorizontalButtons/HorizontalButtons.d.ts +12 -0
- package/dist/cjs/src/atoms/HorizontalButtons/HorizontalButtons.stories.d.ts +9 -0
- package/dist/cjs/src/atoms/Icon/Icon.d.ts +39 -0
- package/dist/cjs/src/atoms/Icon/Icon.stories.d.ts +9 -0
- package/dist/cjs/src/atoms/Input/Input.d.ts +39 -0
- package/dist/cjs/src/atoms/Input/Input.stories.d.ts +38 -0
- package/dist/cjs/src/atoms/Input/helpers.d.ts +47 -0
- package/dist/cjs/src/atoms/Paddings/Paddings.d.ts +6 -0
- package/dist/cjs/src/atoms/RadioButtons/RadioButtons.d.ts +56 -0
- package/dist/cjs/src/atoms/RadioButtons/RadioButtons.stories.d.ts +31 -0
- package/dist/cjs/src/atoms/RadioButtons/RadioOption.d.ts +12 -0
- package/dist/cjs/src/atoms/RadioButtons/helpers.d.ts +15 -0
- package/dist/cjs/src/atoms/RadioButtons/styles.d.ts +9 -0
- package/dist/cjs/src/atoms/RegularImage/RegularImage.d.ts +29 -0
- package/dist/cjs/src/atoms/RegularImage/RegularImage.stories.d.ts +16 -0
- package/dist/cjs/src/atoms/RichTextViewer/RichTextViewer.d.ts +20 -0
- package/dist/cjs/src/atoms/RichTextViewer/components/EditorElement.d.ts +3 -0
- package/dist/cjs/src/atoms/RichTextViewer/components/Leaf.d.ts +3 -0
- package/dist/cjs/src/atoms/Select/Select.d.ts +35 -0
- package/dist/cjs/src/atoms/Select/Select.stories.d.ts +22 -0
- package/dist/cjs/src/atoms/Select/styles.d.ts +16 -0
- package/dist/cjs/src/atoms/Spacer/Spacer.d.ts +7 -0
- package/dist/cjs/src/atoms/Spinner/Spinner.d.ts +5 -0
- package/dist/cjs/src/atoms/Tab/Tab.d.ts +56 -0
- package/dist/cjs/src/atoms/Tab/Tab.stories.d.ts +31 -0
- package/dist/cjs/src/atoms/Tab/styles.d.ts +8 -0
- package/dist/cjs/src/atoms/TextWrapper/TextWrapper.d.ts +22 -0
- package/dist/cjs/src/atoms/TextWrapper/TextWrapper.stories.d.ts +9 -0
- package/dist/cjs/src/atoms/Toast/Toast.stories.d.ts +9 -0
- package/dist/cjs/src/atoms/Toast/ToastContent.d.ts +8 -0
- package/dist/cjs/src/atoms/Tooltip/Tooltip.d.ts +9 -0
- package/dist/cjs/src/atoms/Tooltip/Tooltip.stories.d.ts +9 -0
- package/dist/cjs/src/atoms/ValidationTag/ValidationTag.d.ts +7 -0
- package/dist/cjs/src/atoms/ValidationTag/ValidationTag.stories.d.ts +9 -0
- package/dist/cjs/src/atoms/index.d.ts +24 -0
- package/dist/cjs/src/containers/Container.d.ts +51 -0
- package/dist/cjs/src/containers/Container.stories.d.ts +6 -0
- package/dist/cjs/src/containers/FormContainer.d.ts +6 -0
- package/dist/cjs/src/containers/FormStepContainer.d.ts +6 -0
- package/dist/cjs/src/containers/MoleculeItem.d.ts +9 -0
- package/dist/cjs/src/containers/OrganismItem.d.ts +8 -0
- package/dist/cjs/src/containers/helpers.d.ts +4 -0
- package/dist/cjs/src/containers/hooks/index.d.ts +1 -0
- package/dist/cjs/src/containers/hooks/useCheckCondition.d.ts +11 -0
- package/dist/cjs/src/containers/index.d.ts +5 -0
- package/dist/cjs/src/containers/mock-data.d.ts +13 -0
- package/dist/cjs/src/containers/styles.d.ts +17 -0
- package/dist/cjs/src/containers/types/moleculeTypes.d.ts +231 -0
- package/dist/cjs/src/containers/types/types.d.ts +75 -0
- package/dist/cjs/src/contexts/ButtonActionsContext/ButtonActionsContext.d.ts +11 -0
- package/dist/cjs/src/contexts/ButtonActionsContext/ButtonActionsContextProvider.d.ts +11 -0
- package/dist/cjs/src/contexts/FormStepContext/FormStepContextProvider.d.ts +5 -0
- package/dist/cjs/src/contexts/MlrRichTextViewerContext/MlrRichTextViewerProvider.d.ts +8 -0
- package/dist/cjs/src/contexts/OrganismContext/OrganismContext.d.ts +8 -0
- package/dist/cjs/src/contexts/OrganismContext/OrganismContextProvider.d.ts +6 -0
- package/dist/cjs/src/contexts/hooks/index.d.ts +4 -0
- package/dist/cjs/src/contexts/index.d.ts +9 -0
- package/dist/cjs/src/fieldsConfiguration/index.d.ts +4 -0
- package/dist/cjs/src/fieldsConfiguration/mock.d.ts +11 -0
- package/dist/cjs/src/fieldsConfiguration/shared.d.ts +2 -0
- package/dist/cjs/src/fieldsConfiguration/types.d.ts +29 -0
- package/dist/cjs/src/helpers/styles.d.ts +5 -0
- package/dist/cjs/src/helpers/utils.d.ts +1 -0
- package/dist/cjs/src/helpers/validations.d.ts +17 -0
- package/dist/cjs/src/icons/ArrowRight.d.ts +3 -0
- package/dist/cjs/src/icons/Bell.d.ts +3 -0
- package/dist/cjs/src/icons/Bookmark.d.ts +3 -0
- package/dist/cjs/src/icons/CaretDown.d.ts +3 -0
- package/dist/cjs/src/icons/CaretLeft.d.ts +3 -0
- package/dist/cjs/src/icons/CaretRight.d.ts +3 -0
- package/dist/cjs/src/icons/CaretUp.d.ts +3 -0
- package/dist/cjs/src/icons/Check.d.ts +3 -0
- package/dist/cjs/src/icons/Close.d.ts +3 -0
- package/dist/cjs/src/icons/Edit.d.ts +3 -0
- package/dist/cjs/src/icons/Filter.d.ts +3 -0
- package/dist/cjs/src/icons/Hide.d.ts +3 -0
- package/dist/cjs/src/icons/Info.d.ts +3 -0
- package/dist/cjs/src/icons/InfoBoxIcon.d.ts +3 -0
- package/dist/cjs/src/icons/Mail.d.ts +3 -0
- package/dist/cjs/src/icons/Menu.d.ts +3 -0
- package/dist/cjs/src/icons/Minus.d.ts +3 -0
- package/dist/cjs/src/icons/Mobile.d.ts +3 -0
- package/dist/cjs/src/icons/Play.d.ts +3 -0
- package/dist/cjs/src/icons/Save.d.ts +3 -0
- package/dist/cjs/src/icons/Search.d.ts +3 -0
- package/dist/cjs/src/icons/View.d.ts +3 -0
- package/dist/cjs/src/icons/Warning.d.ts +3 -0
- package/dist/cjs/src/index.d.ts +10 -0
- package/dist/cjs/src/molecules/Alert/Alert.d.ts +21 -0
- package/dist/cjs/src/molecules/Alert/Alert.stories.d.ts +10 -0
- package/dist/cjs/src/molecules/AvatarDropdown/AvatarDropdown.d.ts +9 -0
- package/dist/cjs/src/molecules/AvatarDropdown/AvatarDropdown.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/BottomNavBarItem/BottomNavBarItem.d.ts +11 -0
- package/dist/cjs/src/molecules/BottomNavBarItem/BottomNavBarItem.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/Button/Button.d.ts +41 -0
- package/dist/cjs/src/molecules/Button/Button.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/Caruser/Carousel.d.ts +15 -0
- package/dist/cjs/src/molecules/CheckboxField/CheckboxField.d.ts +33 -0
- package/dist/cjs/src/molecules/CheckboxField/CheckboxField.stories.d.ts +57 -0
- package/dist/cjs/src/molecules/CheckboxField/CheckboxGroup.d.ts +11 -0
- package/dist/cjs/src/molecules/CheckboxField/styles.d.ts +6 -0
- package/dist/cjs/src/molecules/Columns/Column.d.ts +13 -0
- package/dist/cjs/src/molecules/Columns/ColumnImage.d.ts +6 -0
- package/dist/cjs/src/molecules/Columns/Columns.d.ts +16 -0
- package/dist/cjs/src/molecules/Columns/Columns.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/Columns/styles.d.ts +28 -0
- package/dist/cjs/src/molecules/Columns/types.d.ts +5 -0
- package/dist/cjs/src/molecules/Columns/useAnnotationCircle.d.ts +5 -0
- package/dist/cjs/src/molecules/Consent/Consent.d.ts +28 -0
- package/dist/cjs/src/molecules/Consent/Consent.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/Consent/ConsentCapture.d.ts +21 -0
- package/dist/cjs/src/molecules/Consent/ConsentMolecule.d.ts +3 -0
- package/dist/cjs/src/molecules/CustomValidation/CustomValidation.d.ts +12 -0
- package/dist/cjs/src/molecules/CustomValidation/CustomValidation.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/Drawer/Drawer.d.ts +3 -0
- package/dist/cjs/src/molecules/Drawer/Drawer.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/Drawer/styles.d.ts +25 -0
- package/dist/cjs/src/molecules/EmphasizedText/EmphasizedText.d.ts +7 -0
- package/dist/cjs/src/molecules/EmphasizedText/EmphasizedText.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/FeedContentHeader/FeedContentHeader.d.ts +12 -0
- package/dist/cjs/src/molecules/FeedContentHeader/FeedContentHeader.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/FieldLabels/FieldLabels.d.ts +43 -0
- package/dist/cjs/src/molecules/FieldLabels/FieldLabels.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/FieldMapper/FieldMapper.d.ts +14 -0
- package/dist/cjs/src/molecules/FieldSection/FieldSection.d.ts +10 -0
- package/dist/cjs/src/molecules/FieldSection/FieldSection.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/HeroImage/HeroImage.d.ts +18 -0
- package/dist/cjs/src/molecules/HeroImage/HeroImage.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/HorizontalButtonsField/HorizontalButtonsField.d.ts +13 -0
- package/dist/cjs/src/molecules/HorizontalButtonsField/HorizontalButtonsField.stories.d.ts +16 -0
- package/dist/cjs/src/molecules/Image/Image.d.ts +16 -0
- package/dist/cjs/src/molecules/Image/Image.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/InputField/InputField.d.ts +24 -0
- package/dist/cjs/src/molecules/InputField/InputField.stories.d.ts +67 -0
- package/dist/cjs/src/molecules/Link/Link.d.ts +8 -0
- package/dist/cjs/src/molecules/Link/Link.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/MenuItems/MenuItems.d.ts +12 -0
- package/dist/cjs/src/molecules/MenuItems/MenuItems.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/MenuNavigation/MenuNavigation.d.ts +9 -0
- package/dist/cjs/src/molecules/MenuNavigation/MenuNavigation.stories.d.ts +10 -0
- package/dist/cjs/src/molecules/PdfDocument/PdfDocument.d.ts +15 -0
- package/dist/cjs/src/molecules/PdfDocument/PdfDocument.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/RadioButtonField/RadioButtonField.d.ts +65 -0
- package/dist/cjs/src/molecules/RadioButtonField/RadioButtonField.stories.d.ts +70 -0
- package/dist/cjs/src/molecules/SelectField/SelectField.d.ts +20 -0
- package/dist/cjs/src/molecules/SelectField/SelectField.stories.d.ts +51 -0
- package/dist/cjs/src/molecules/SelectableInfoCard/BaseSelectable.d.ts +10 -0
- package/dist/cjs/src/molecules/SelectableInfoCard/SelectableCardGroup.d.ts +10 -0
- package/dist/cjs/src/molecules/SelectableInfoCard/SelectableInfoCard.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/SelectableInfoCard/styles.d.ts +11 -0
- package/dist/cjs/src/molecules/SettingsSelectionField/SettingsSelectionField.d.ts +10 -0
- package/dist/cjs/src/molecules/SettingsSelectionField/SettingsSelectionField.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/Stepper/Step.d.ts +14 -0
- package/dist/cjs/src/molecules/Stepper/Stepper.d.ts +13 -0
- package/dist/cjs/src/molecules/Stepper/styles.d.ts +21 -0
- package/dist/cjs/src/molecules/TabGroup/TabGroup.d.ts +28 -0
- package/dist/cjs/src/molecules/TabGroup/TabGroup.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/TabGroup/styles.d.ts +34 -0
- package/dist/cjs/src/molecules/TextMolecule/TextMolecule.d.ts +18 -0
- package/dist/cjs/src/molecules/TextMolecule/TextMolecule.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/Video/Video.d.ts +16 -0
- package/dist/cjs/src/molecules/Video/Video.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/ZealUIModal/ZealUIModal.d.ts +20 -0
- package/dist/cjs/src/molecules/ZealUIModal/ZealUIModal.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/index.d.ts +32 -0
- package/dist/cjs/src/organisms/AccountInformation/AccountInformation.d.ts +11 -0
- package/dist/cjs/src/organisms/AcquisitionForm/AcquisitionForm.d.ts +22 -0
- package/dist/cjs/src/organisms/AcquisitionForm/AcquisitionForm.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/Body/Body.d.ts +15 -0
- package/dist/cjs/src/organisms/Body/Body.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/BottomNavBarNavigation/BottomNavBarNavigation.d.ts +6 -0
- package/dist/cjs/src/organisms/BottomNavBarNavigation/BottomNavBarNavigation.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/DynamicContentZone/DynamicContentZone.d.ts +24 -0
- package/dist/cjs/src/organisms/DynamicContentZone/DynamicContentZone.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/FeedContent/FeedContent.d.ts +3 -0
- package/dist/cjs/src/organisms/FeedContent/FeedContent.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/FeedContent/components/BackToFeedButton.d.ts +3 -0
- package/dist/cjs/src/organisms/FeedContent/components/ExpandedContent.d.ts +3 -0
- package/dist/cjs/src/organisms/FeedContent/components/FullWidthContentTemplate.d.ts +3 -0
- package/dist/cjs/src/organisms/FeedContent/components/StandardContentTemplate.d.ts +3 -0
- package/dist/cjs/src/organisms/FeedContent/constants.d.ts +2 -0
- package/dist/cjs/src/organisms/FeedContent/styles.d.ts +19 -0
- package/dist/cjs/src/organisms/FeedContent/types.d.ts +35 -0
- package/dist/cjs/src/organisms/FeedContent/useSwitchHandler.d.ts +10 -0
- package/dist/cjs/src/organisms/FeedContentContainer/FeedContentContainer.d.ts +11 -0
- package/dist/cjs/src/organisms/FeedContentContainer/FeedContentContainer.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/FeedContentContainer/mocks.d.ts +48 -0
- package/dist/cjs/src/organisms/Footer/Footer.d.ts +7 -0
- package/dist/cjs/src/organisms/Footer/Footer.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/Footer/FooterA.d.ts +13 -0
- package/dist/cjs/src/organisms/Footer/FooterB.d.ts +11 -0
- package/dist/cjs/src/organisms/Footer/FooterC.d.ts +7 -0
- package/dist/cjs/src/organisms/Footer/FooterD.d.ts +16 -0
- package/dist/cjs/src/organisms/Footer/constants.d.ts +1 -0
- package/dist/cjs/src/organisms/Footer/mocks.d.ts +2 -0
- package/dist/cjs/src/organisms/Footer/shared.d.ts +8 -0
- package/dist/cjs/src/organisms/Footer/styles.d.ts +18 -0
- package/dist/cjs/src/organisms/Footer/types.d.ts +10 -0
- package/dist/cjs/src/organisms/ForgotPasswordForm/ForgotPasswordForm.d.ts +13 -0
- package/dist/cjs/src/organisms/ForgotPasswordForm/ForgotPasswordForm.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/Header/Header.d.ts +15 -0
- package/dist/cjs/src/organisms/Header/Header.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/Header/HeaderA.d.ts +19 -0
- package/dist/cjs/src/organisms/Header/HeaderB.d.ts +4 -0
- package/dist/cjs/src/organisms/Header/HeaderC.d.ts +4 -0
- package/dist/cjs/src/organisms/Header/HeaderD.d.ts +7 -0
- package/dist/cjs/src/organisms/Header/HeaderMobileNavigation.d.ts +4 -0
- package/dist/cjs/src/organisms/Header/mock.d.ts +2 -0
- package/dist/cjs/src/organisms/Header/styles.d.ts +9 -0
- package/dist/cjs/src/organisms/HeroSlider/HeroSlider.d.ts +8 -0
- package/dist/cjs/src/organisms/HeroSlider/HeroSlider.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/ISI/ISI.d.ts +4 -0
- package/dist/cjs/src/organisms/ISI/ISI.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/ISI/ISIA.d.ts +7 -0
- package/dist/cjs/src/organisms/LoginForm/LoginForm.d.ts +22 -0
- package/dist/cjs/src/organisms/LoginForm/LoginForm.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/LoginForm/types.d.ts +5 -0
- package/dist/cjs/src/organisms/ProcessTracker/ProcessTracker.d.ts +22 -0
- package/dist/cjs/src/organisms/ProcessTracker/ProcessTracker.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/ProcessTracker/mocks.d.ts +2 -0
- package/dist/cjs/src/organisms/ProfileInformation/ProfileInformation.d.ts +18 -0
- package/dist/cjs/src/organisms/ProfileInformation/ProfileInformation.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/SetPasswordForm/SetPasswordForm.d.ts +16 -0
- package/dist/cjs/src/organisms/SetPasswordForm/SetPasswordForm.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/SetPasswordForm/types.d.ts +13 -0
- package/dist/cjs/src/organisms/SetPasswordForm/utils.d.ts +3 -0
- package/dist/cjs/src/organisms/SubscribePanel/SubscribePanel.d.ts +3 -0
- package/dist/cjs/src/organisms/SubscribePanel/SubscribePanel.stories.d.ts +11 -0
- package/dist/cjs/src/organisms/SubscribePanel/SubscribePanelA.d.ts +3 -0
- package/dist/cjs/src/organisms/SubscribePanel/SubscribePanelB.d.ts +3 -0
- package/dist/cjs/src/organisms/SubscribePanel/constants.d.ts +4 -0
- package/dist/cjs/src/organisms/SubscribePanel/organism-data.d.ts +2 -0
- package/dist/cjs/src/organisms/SubscribePanel/styles.d.ts +17 -0
- package/dist/cjs/src/organisms/SubscribePanel/type.d.ts +19 -0
- package/dist/cjs/src/organisms/SubscribePanel/useSubscribeHandler.d.ts +5 -0
- package/dist/cjs/src/organisms/TwoFactorAuth/TwoFactorAuth.d.ts +13 -0
- package/dist/cjs/src/organisms/TwoFactorAuth/TwoFactorAuth.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/TwoFactorAuth/constants.d.ts +9 -0
- package/dist/cjs/src/organisms/TwoFactorAuth/styles.d.ts +1 -0
- package/dist/cjs/src/organisms/index.d.ts +18 -0
- package/dist/cjs/src/templates/DefaultTemplate/DefaultTemplate.d.ts +12 -0
- package/dist/cjs/src/templates/DefaultTemplate/DefaultTemplate.stories.d.ts +9 -0
- package/dist/cjs/src/templates/DefaultTemplate/mockProps.d.ts +6 -0
- package/dist/cjs/src/templates/index.d.ts +1 -0
- package/dist/cjs/src/theme/provider.d.ts +5 -0
- package/dist/cjs/src/theme/theme.d.ts +2 -0
- package/dist/cjs/src/theme/toastStyles.d.ts +1 -0
- package/dist/cjs/src/typescript.d.ts +17 -0
- package/dist/esm/index.js +242 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/atoms/Avatar/Avatar.d.ts +21 -0
- package/dist/esm/src/atoms/Avatar/Avatar.stories.d.ts +9 -0
- package/dist/esm/src/atoms/Buttons/Buttons.stories.d.ts +20 -0
- package/dist/esm/src/atoms/Buttons/IconButton.d.ts +13 -0
- package/dist/esm/src/atoms/Buttons/TextButton.d.ts +17 -0
- package/dist/esm/src/atoms/Buttons/TouchableOpacity.d.ts +13 -0
- package/dist/esm/src/atoms/Checkbox/Checkbox.d.ts +15 -0
- package/dist/esm/src/atoms/Checkbox/Checkbox.stories.d.ts +9 -0
- package/dist/esm/src/atoms/Circle/Circle.d.ts +9 -0
- package/dist/esm/src/atoms/Circle/Circle.stories.d.ts +9 -0
- package/dist/esm/src/atoms/CircularIndicator/CircularIndicator.d.ts +9 -0
- package/dist/esm/src/atoms/CircularIndicator/CircularIndicator.stories.d.ts +9 -0
- package/dist/esm/src/atoms/Divider/Divider.d.ts +9 -0
- package/dist/esm/src/atoms/GoogleMap/GoogleMap.d.ts +13 -0
- package/dist/esm/src/atoms/GoogleMap/GoogleMap.stories.d.ts +12 -0
- package/dist/esm/src/atoms/HorizontalButtons/HorizontalButtons.d.ts +12 -0
- package/dist/esm/src/atoms/HorizontalButtons/HorizontalButtons.stories.d.ts +9 -0
- package/dist/esm/src/atoms/Icon/Icon.d.ts +39 -0
- package/dist/esm/src/atoms/Icon/Icon.stories.d.ts +9 -0
- package/dist/esm/src/atoms/Input/Input.d.ts +39 -0
- package/dist/esm/src/atoms/Input/Input.stories.d.ts +38 -0
- package/dist/esm/src/atoms/Input/helpers.d.ts +47 -0
- package/dist/esm/src/atoms/Paddings/Paddings.d.ts +6 -0
- package/dist/esm/src/atoms/RadioButtons/RadioButtons.d.ts +56 -0
- package/dist/esm/src/atoms/RadioButtons/RadioButtons.stories.d.ts +31 -0
- package/dist/esm/src/atoms/RadioButtons/RadioOption.d.ts +12 -0
- package/dist/esm/src/atoms/RadioButtons/helpers.d.ts +15 -0
- package/dist/esm/src/atoms/RadioButtons/styles.d.ts +9 -0
- package/dist/esm/src/atoms/RegularImage/RegularImage.d.ts +29 -0
- package/dist/esm/src/atoms/RegularImage/RegularImage.stories.d.ts +16 -0
- package/dist/esm/src/atoms/RichTextViewer/RichTextViewer.d.ts +20 -0
- package/dist/esm/src/atoms/RichTextViewer/components/EditorElement.d.ts +3 -0
- package/dist/esm/src/atoms/RichTextViewer/components/Leaf.d.ts +3 -0
- package/dist/esm/src/atoms/Select/Select.d.ts +35 -0
- package/dist/esm/src/atoms/Select/Select.stories.d.ts +22 -0
- package/dist/esm/src/atoms/Select/styles.d.ts +16 -0
- package/dist/esm/src/atoms/Spacer/Spacer.d.ts +7 -0
- package/dist/esm/src/atoms/Spinner/Spinner.d.ts +5 -0
- package/dist/esm/src/atoms/Tab/Tab.d.ts +56 -0
- package/dist/esm/src/atoms/Tab/Tab.stories.d.ts +31 -0
- package/dist/esm/src/atoms/Tab/styles.d.ts +8 -0
- package/dist/esm/src/atoms/TextWrapper/TextWrapper.d.ts +22 -0
- package/dist/esm/src/atoms/TextWrapper/TextWrapper.stories.d.ts +9 -0
- package/dist/esm/src/atoms/Toast/Toast.stories.d.ts +9 -0
- package/dist/esm/src/atoms/Toast/ToastContent.d.ts +8 -0
- package/dist/esm/src/atoms/Tooltip/Tooltip.d.ts +9 -0
- package/dist/esm/src/atoms/Tooltip/Tooltip.stories.d.ts +9 -0
- package/dist/esm/src/atoms/ValidationTag/ValidationTag.d.ts +7 -0
- package/dist/esm/src/atoms/ValidationTag/ValidationTag.stories.d.ts +9 -0
- package/dist/esm/src/atoms/index.d.ts +24 -0
- package/dist/esm/src/containers/Container.d.ts +51 -0
- package/dist/esm/src/containers/Container.stories.d.ts +6 -0
- package/dist/esm/src/containers/FormContainer.d.ts +6 -0
- package/dist/esm/src/containers/FormStepContainer.d.ts +6 -0
- package/dist/esm/src/containers/MoleculeItem.d.ts +9 -0
- package/dist/esm/src/containers/OrganismItem.d.ts +8 -0
- package/dist/esm/src/containers/helpers.d.ts +4 -0
- package/dist/esm/src/containers/hooks/index.d.ts +1 -0
- package/dist/esm/src/containers/hooks/useCheckCondition.d.ts +11 -0
- package/dist/esm/src/containers/index.d.ts +5 -0
- package/dist/esm/src/containers/mock-data.d.ts +13 -0
- package/dist/esm/src/containers/styles.d.ts +17 -0
- package/dist/esm/src/containers/types/moleculeTypes.d.ts +231 -0
- package/dist/esm/src/containers/types/types.d.ts +75 -0
- package/dist/esm/src/contexts/ButtonActionsContext/ButtonActionsContext.d.ts +11 -0
- package/dist/esm/src/contexts/ButtonActionsContext/ButtonActionsContextProvider.d.ts +11 -0
- package/dist/esm/src/contexts/FormStepContext/FormStepContextProvider.d.ts +5 -0
- package/dist/esm/src/contexts/MlrRichTextViewerContext/MlrRichTextViewerProvider.d.ts +8 -0
- package/dist/esm/src/contexts/OrganismContext/OrganismContext.d.ts +8 -0
- package/dist/esm/src/contexts/OrganismContext/OrganismContextProvider.d.ts +6 -0
- package/dist/esm/src/contexts/hooks/index.d.ts +4 -0
- package/dist/esm/src/contexts/index.d.ts +9 -0
- package/dist/esm/src/fieldsConfiguration/index.d.ts +4 -0
- package/dist/esm/src/fieldsConfiguration/mock.d.ts +11 -0
- package/dist/esm/src/fieldsConfiguration/shared.d.ts +2 -0
- package/dist/esm/src/fieldsConfiguration/types.d.ts +29 -0
- package/dist/esm/src/helpers/styles.d.ts +5 -0
- package/dist/esm/src/helpers/utils.d.ts +1 -0
- package/dist/esm/src/helpers/validations.d.ts +17 -0
- package/dist/esm/src/icons/ArrowRight.d.ts +3 -0
- package/dist/esm/src/icons/Bell.d.ts +3 -0
- package/dist/esm/src/icons/Bookmark.d.ts +3 -0
- package/dist/esm/src/icons/CaretDown.d.ts +3 -0
- package/dist/esm/src/icons/CaretLeft.d.ts +3 -0
- package/dist/esm/src/icons/CaretRight.d.ts +3 -0
- package/dist/esm/src/icons/CaretUp.d.ts +3 -0
- package/dist/esm/src/icons/Check.d.ts +3 -0
- package/dist/esm/src/icons/Close.d.ts +3 -0
- package/dist/esm/src/icons/Edit.d.ts +3 -0
- package/dist/esm/src/icons/Filter.d.ts +3 -0
- package/dist/esm/src/icons/Hide.d.ts +3 -0
- package/dist/esm/src/icons/Info.d.ts +3 -0
- package/dist/esm/src/icons/InfoBoxIcon.d.ts +3 -0
- package/dist/esm/src/icons/Mail.d.ts +3 -0
- package/dist/esm/src/icons/Menu.d.ts +3 -0
- package/dist/esm/src/icons/Minus.d.ts +3 -0
- package/dist/esm/src/icons/Mobile.d.ts +3 -0
- package/dist/esm/src/icons/Play.d.ts +3 -0
- package/dist/esm/src/icons/Save.d.ts +3 -0
- package/dist/esm/src/icons/Search.d.ts +3 -0
- package/dist/esm/src/icons/View.d.ts +3 -0
- package/dist/esm/src/icons/Warning.d.ts +3 -0
- package/dist/esm/src/index.d.ts +10 -0
- package/dist/esm/src/molecules/Alert/Alert.d.ts +21 -0
- package/dist/esm/src/molecules/Alert/Alert.stories.d.ts +10 -0
- package/dist/esm/src/molecules/AvatarDropdown/AvatarDropdown.d.ts +9 -0
- package/dist/esm/src/molecules/AvatarDropdown/AvatarDropdown.stories.d.ts +9 -0
- package/dist/esm/src/molecules/BottomNavBarItem/BottomNavBarItem.d.ts +11 -0
- package/dist/esm/src/molecules/BottomNavBarItem/BottomNavBarItem.stories.d.ts +9 -0
- package/dist/esm/src/molecules/Button/Button.d.ts +41 -0
- package/dist/esm/src/molecules/Button/Button.stories.d.ts +9 -0
- package/dist/esm/src/molecules/Caruser/Carousel.d.ts +15 -0
- package/dist/esm/src/molecules/CheckboxField/CheckboxField.d.ts +33 -0
- package/dist/esm/src/molecules/CheckboxField/CheckboxField.stories.d.ts +57 -0
- package/dist/esm/src/molecules/CheckboxField/CheckboxGroup.d.ts +11 -0
- package/dist/esm/src/molecules/CheckboxField/styles.d.ts +6 -0
- package/dist/esm/src/molecules/Columns/Column.d.ts +13 -0
- package/dist/esm/src/molecules/Columns/ColumnImage.d.ts +6 -0
- package/dist/esm/src/molecules/Columns/Columns.d.ts +16 -0
- package/dist/esm/src/molecules/Columns/Columns.stories.d.ts +9 -0
- package/dist/esm/src/molecules/Columns/styles.d.ts +28 -0
- package/dist/esm/src/molecules/Columns/types.d.ts +5 -0
- package/dist/esm/src/molecules/Columns/useAnnotationCircle.d.ts +5 -0
- package/dist/esm/src/molecules/Consent/Consent.d.ts +28 -0
- package/dist/esm/src/molecules/Consent/Consent.stories.d.ts +9 -0
- package/dist/esm/src/molecules/Consent/ConsentCapture.d.ts +21 -0
- package/dist/esm/src/molecules/Consent/ConsentMolecule.d.ts +3 -0
- package/dist/esm/src/molecules/CustomValidation/CustomValidation.d.ts +12 -0
- package/dist/esm/src/molecules/CustomValidation/CustomValidation.stories.d.ts +9 -0
- package/dist/esm/src/molecules/Drawer/Drawer.d.ts +3 -0
- package/dist/esm/src/molecules/Drawer/Drawer.stories.d.ts +9 -0
- package/dist/esm/src/molecules/Drawer/styles.d.ts +25 -0
- package/dist/esm/src/molecules/EmphasizedText/EmphasizedText.d.ts +7 -0
- package/dist/esm/src/molecules/EmphasizedText/EmphasizedText.stories.d.ts +9 -0
- package/dist/esm/src/molecules/FeedContentHeader/FeedContentHeader.d.ts +12 -0
- package/dist/esm/src/molecules/FeedContentHeader/FeedContentHeader.stories.d.ts +9 -0
- package/dist/esm/src/molecules/FieldLabels/FieldLabels.d.ts +43 -0
- package/dist/esm/src/molecules/FieldLabels/FieldLabels.stories.d.ts +9 -0
- package/dist/esm/src/molecules/FieldMapper/FieldMapper.d.ts +14 -0
- package/dist/esm/src/molecules/FieldSection/FieldSection.d.ts +10 -0
- package/dist/esm/src/molecules/FieldSection/FieldSection.stories.d.ts +9 -0
- package/dist/esm/src/molecules/HeroImage/HeroImage.d.ts +18 -0
- package/dist/esm/src/molecules/HeroImage/HeroImage.stories.d.ts +9 -0
- package/dist/esm/src/molecules/HorizontalButtonsField/HorizontalButtonsField.d.ts +13 -0
- package/dist/esm/src/molecules/HorizontalButtonsField/HorizontalButtonsField.stories.d.ts +16 -0
- package/dist/esm/src/molecules/Image/Image.d.ts +16 -0
- package/dist/esm/src/molecules/Image/Image.stories.d.ts +9 -0
- package/dist/esm/src/molecules/InputField/InputField.d.ts +24 -0
- package/dist/esm/src/molecules/InputField/InputField.stories.d.ts +67 -0
- package/dist/esm/src/molecules/Link/Link.d.ts +8 -0
- package/dist/esm/src/molecules/Link/Link.stories.d.ts +9 -0
- package/dist/esm/src/molecules/MenuItems/MenuItems.d.ts +12 -0
- package/dist/esm/src/molecules/MenuItems/MenuItems.stories.d.ts +9 -0
- package/dist/esm/src/molecules/MenuNavigation/MenuNavigation.d.ts +9 -0
- package/dist/esm/src/molecules/MenuNavigation/MenuNavigation.stories.d.ts +10 -0
- package/dist/esm/src/molecules/PdfDocument/PdfDocument.d.ts +15 -0
- package/dist/esm/src/molecules/PdfDocument/PdfDocument.stories.d.ts +9 -0
- package/dist/esm/src/molecules/RadioButtonField/RadioButtonField.d.ts +65 -0
- package/dist/esm/src/molecules/RadioButtonField/RadioButtonField.stories.d.ts +70 -0
- package/dist/esm/src/molecules/SelectField/SelectField.d.ts +20 -0
- package/dist/esm/src/molecules/SelectField/SelectField.stories.d.ts +51 -0
- package/dist/esm/src/molecules/SelectableInfoCard/BaseSelectable.d.ts +10 -0
- package/dist/esm/src/molecules/SelectableInfoCard/SelectableCardGroup.d.ts +10 -0
- package/dist/esm/src/molecules/SelectableInfoCard/SelectableInfoCard.stories.d.ts +9 -0
- package/dist/esm/src/molecules/SelectableInfoCard/styles.d.ts +11 -0
- package/dist/esm/src/molecules/SettingsSelectionField/SettingsSelectionField.d.ts +10 -0
- package/dist/esm/src/molecules/SettingsSelectionField/SettingsSelectionField.stories.d.ts +9 -0
- package/dist/esm/src/molecules/Stepper/Step.d.ts +14 -0
- package/dist/esm/src/molecules/Stepper/Stepper.d.ts +13 -0
- package/dist/esm/src/molecules/Stepper/styles.d.ts +21 -0
- package/dist/esm/src/molecules/TabGroup/TabGroup.d.ts +28 -0
- package/dist/esm/src/molecules/TabGroup/TabGroup.stories.d.ts +9 -0
- package/dist/esm/src/molecules/TabGroup/styles.d.ts +34 -0
- package/dist/esm/src/molecules/TextMolecule/TextMolecule.d.ts +18 -0
- package/dist/esm/src/molecules/TextMolecule/TextMolecule.stories.d.ts +9 -0
- package/dist/esm/src/molecules/Video/Video.d.ts +16 -0
- package/dist/esm/src/molecules/Video/Video.stories.d.ts +9 -0
- package/dist/esm/src/molecules/ZealUIModal/ZealUIModal.d.ts +20 -0
- package/dist/esm/src/molecules/ZealUIModal/ZealUIModal.stories.d.ts +9 -0
- package/dist/esm/src/molecules/index.d.ts +32 -0
- package/dist/esm/src/organisms/AccountInformation/AccountInformation.d.ts +11 -0
- package/dist/esm/src/organisms/AcquisitionForm/AcquisitionForm.d.ts +22 -0
- package/dist/esm/src/organisms/AcquisitionForm/AcquisitionForm.stories.d.ts +9 -0
- package/dist/esm/src/organisms/Body/Body.d.ts +15 -0
- package/dist/esm/src/organisms/Body/Body.stories.d.ts +9 -0
- package/dist/esm/src/organisms/BottomNavBarNavigation/BottomNavBarNavigation.d.ts +6 -0
- package/dist/esm/src/organisms/BottomNavBarNavigation/BottomNavBarNavigation.stories.d.ts +9 -0
- package/dist/esm/src/organisms/DynamicContentZone/DynamicContentZone.d.ts +24 -0
- package/dist/esm/src/organisms/DynamicContentZone/DynamicContentZone.stories.d.ts +9 -0
- package/dist/esm/src/organisms/FeedContent/FeedContent.d.ts +3 -0
- package/dist/esm/src/organisms/FeedContent/FeedContent.stories.d.ts +9 -0
- package/dist/esm/src/organisms/FeedContent/components/BackToFeedButton.d.ts +3 -0
- package/dist/esm/src/organisms/FeedContent/components/ExpandedContent.d.ts +3 -0
- package/dist/esm/src/organisms/FeedContent/components/FullWidthContentTemplate.d.ts +3 -0
- package/dist/esm/src/organisms/FeedContent/components/StandardContentTemplate.d.ts +3 -0
- package/dist/esm/src/organisms/FeedContent/constants.d.ts +2 -0
- package/dist/esm/src/organisms/FeedContent/styles.d.ts +19 -0
- package/dist/esm/src/organisms/FeedContent/types.d.ts +35 -0
- package/dist/esm/src/organisms/FeedContent/useSwitchHandler.d.ts +10 -0
- package/dist/esm/src/organisms/FeedContentContainer/FeedContentContainer.d.ts +11 -0
- package/dist/esm/src/organisms/FeedContentContainer/FeedContentContainer.stories.d.ts +9 -0
- package/dist/esm/src/organisms/FeedContentContainer/mocks.d.ts +48 -0
- package/dist/esm/src/organisms/Footer/Footer.d.ts +7 -0
- package/dist/esm/src/organisms/Footer/Footer.stories.d.ts +9 -0
- package/dist/esm/src/organisms/Footer/FooterA.d.ts +13 -0
- package/dist/esm/src/organisms/Footer/FooterB.d.ts +11 -0
- package/dist/esm/src/organisms/Footer/FooterC.d.ts +7 -0
- package/dist/esm/src/organisms/Footer/FooterD.d.ts +16 -0
- package/dist/esm/src/organisms/Footer/constants.d.ts +1 -0
- package/dist/esm/src/organisms/Footer/mocks.d.ts +2 -0
- package/dist/esm/src/organisms/Footer/shared.d.ts +8 -0
- package/dist/esm/src/organisms/Footer/styles.d.ts +18 -0
- package/dist/esm/src/organisms/Footer/types.d.ts +10 -0
- package/dist/esm/src/organisms/ForgotPasswordForm/ForgotPasswordForm.d.ts +13 -0
- package/dist/esm/src/organisms/ForgotPasswordForm/ForgotPasswordForm.stories.d.ts +9 -0
- package/dist/esm/src/organisms/Header/Header.d.ts +15 -0
- package/dist/esm/src/organisms/Header/Header.stories.d.ts +9 -0
- package/dist/esm/src/organisms/Header/HeaderA.d.ts +19 -0
- package/dist/esm/src/organisms/Header/HeaderB.d.ts +4 -0
- package/dist/esm/src/organisms/Header/HeaderC.d.ts +4 -0
- package/dist/esm/src/organisms/Header/HeaderD.d.ts +7 -0
- package/dist/esm/src/organisms/Header/HeaderMobileNavigation.d.ts +4 -0
- package/dist/esm/src/organisms/Header/mock.d.ts +2 -0
- package/dist/esm/src/organisms/Header/styles.d.ts +9 -0
- package/dist/esm/src/organisms/HeroSlider/HeroSlider.d.ts +8 -0
- package/dist/esm/src/organisms/HeroSlider/HeroSlider.stories.d.ts +9 -0
- package/dist/esm/src/organisms/ISI/ISI.d.ts +4 -0
- package/dist/esm/src/organisms/ISI/ISI.stories.d.ts +9 -0
- package/dist/esm/src/organisms/ISI/ISIA.d.ts +7 -0
- package/dist/esm/src/organisms/LoginForm/LoginForm.d.ts +22 -0
- package/dist/esm/src/organisms/LoginForm/LoginForm.stories.d.ts +9 -0
- package/dist/esm/src/organisms/LoginForm/types.d.ts +5 -0
- package/dist/esm/src/organisms/ProcessTracker/ProcessTracker.d.ts +22 -0
- package/dist/esm/src/organisms/ProcessTracker/ProcessTracker.stories.d.ts +9 -0
- package/dist/esm/src/organisms/ProcessTracker/mocks.d.ts +2 -0
- package/dist/esm/src/organisms/ProfileInformation/ProfileInformation.d.ts +18 -0
- package/dist/esm/src/organisms/ProfileInformation/ProfileInformation.stories.d.ts +9 -0
- package/dist/esm/src/organisms/SetPasswordForm/SetPasswordForm.d.ts +16 -0
- package/dist/esm/src/organisms/SetPasswordForm/SetPasswordForm.stories.d.ts +9 -0
- package/dist/esm/src/organisms/SetPasswordForm/types.d.ts +13 -0
- package/dist/esm/src/organisms/SetPasswordForm/utils.d.ts +3 -0
- package/dist/esm/src/organisms/SubscribePanel/SubscribePanel.d.ts +3 -0
- package/dist/esm/src/organisms/SubscribePanel/SubscribePanel.stories.d.ts +11 -0
- package/dist/esm/src/organisms/SubscribePanel/SubscribePanelA.d.ts +3 -0
- package/dist/esm/src/organisms/SubscribePanel/SubscribePanelB.d.ts +3 -0
- package/dist/esm/src/organisms/SubscribePanel/constants.d.ts +4 -0
- package/dist/esm/src/organisms/SubscribePanel/organism-data.d.ts +2 -0
- package/dist/esm/src/organisms/SubscribePanel/styles.d.ts +17 -0
- package/dist/esm/src/organisms/SubscribePanel/type.d.ts +19 -0
- package/dist/esm/src/organisms/SubscribePanel/useSubscribeHandler.d.ts +5 -0
- package/dist/esm/src/organisms/TwoFactorAuth/TwoFactorAuth.d.ts +13 -0
- package/dist/esm/src/organisms/TwoFactorAuth/TwoFactorAuth.stories.d.ts +9 -0
- package/dist/esm/src/organisms/TwoFactorAuth/constants.d.ts +9 -0
- package/dist/esm/src/organisms/TwoFactorAuth/styles.d.ts +1 -0
- package/dist/esm/src/organisms/index.d.ts +18 -0
- package/dist/esm/src/templates/DefaultTemplate/DefaultTemplate.d.ts +12 -0
- package/dist/esm/src/templates/DefaultTemplate/DefaultTemplate.stories.d.ts +9 -0
- package/dist/esm/src/templates/DefaultTemplate/mockProps.d.ts +6 -0
- package/dist/esm/src/templates/index.d.ts +1 -0
- package/dist/esm/src/theme/provider.d.ts +5 -0
- package/dist/esm/src/theme/theme.d.ts +2 -0
- package/dist/esm/src/theme/toastStyles.d.ts +1 -0
- package/dist/esm/src/typescript.d.ts +17 -0
- package/dist/index.d.ts +1271 -1385
- package/package.json +76 -88
- package/dist/cjs/atoms/Avatar/Avatar.d.ts +0 -20
- package/dist/cjs/atoms/Buttons/IconButton.d.ts +0 -12
- package/dist/cjs/atoms/Buttons/TextButton.d.ts +0 -21
- package/dist/cjs/atoms/Buttons/TouchableOpacity.d.ts +0 -16
- package/dist/cjs/atoms/Checkbox/Checkbox.d.ts +0 -14
- package/dist/cjs/atoms/Circle/Circle.d.ts +0 -12
- package/dist/cjs/atoms/CircularIndicator/CircularIndicator.d.ts +0 -12
- package/dist/cjs/atoms/Divider/Divider.d.ts +0 -13
- package/dist/cjs/atoms/HorizontalButtons/HorizontalButtons.d.ts +0 -11
- package/dist/cjs/atoms/Icon/Icon.d.ts +0 -38
- package/dist/cjs/atoms/Input/Input.d.ts +0 -39
- package/dist/cjs/atoms/Input/helpers.d.ts +0 -44
- package/dist/cjs/atoms/Paddings/Paddings.d.ts +0 -13
- package/dist/cjs/atoms/RadioButtons/RadioButtons.d.ts +0 -56
- package/dist/cjs/atoms/RadioButtons/RadioOption.d.ts +0 -11
- package/dist/cjs/atoms/RadioButtons/helpers.d.ts +0 -17
- package/dist/cjs/atoms/RadioButtons/styles.d.ts +0 -13
- package/dist/cjs/atoms/RegularImage/RegularImage.d.ts +0 -38
- package/dist/cjs/atoms/RichTextViewer/RichTextViewer.d.ts +0 -24
- package/dist/cjs/atoms/RichTextViewer/components/EditorElement.d.ts +0 -5
- package/dist/cjs/atoms/RichTextViewer/components/Leaf.d.ts +0 -2
- package/dist/cjs/atoms/Select/Select.d.ts +0 -34
- package/dist/cjs/atoms/Select/styles.d.ts +0 -27
- package/dist/cjs/atoms/Spacer/Spacer.d.ts +0 -11
- package/dist/cjs/atoms/Spinner/Spinner.d.ts +0 -9
- package/dist/cjs/atoms/Tab/Tab.d.ts +0 -56
- package/dist/cjs/atoms/Tab/styles.d.ts +0 -18
- package/dist/cjs/atoms/TextWrapper/TextWrapper.d.ts +0 -23
- package/dist/cjs/atoms/Toast/ToastContent.d.ts +0 -7
- package/dist/cjs/atoms/Tooltip/Tooltip.d.ts +0 -12
- package/dist/cjs/atoms/ValidationTag/ValidationTag.d.ts +0 -6
- package/dist/cjs/atoms/index.d.ts +0 -23
- package/dist/cjs/constants/params.d.ts +0 -8
- package/dist/cjs/containers/Container.d.ts +0 -84
- package/dist/cjs/containers/Container.stories.d.ts +0 -7
- package/dist/cjs/containers/FormContainer.d.ts +0 -8
- package/dist/cjs/containers/FormOrganismItem.d.ts +0 -11
- package/dist/cjs/containers/FormStepContainer.d.ts +0 -9
- package/dist/cjs/containers/MoleculeItem.d.ts +0 -8
- package/dist/cjs/containers/helpers.d.ts +0 -6
- package/dist/cjs/containers/hooks/index.d.ts +0 -3
- package/dist/cjs/containers/hooks/useCheckCondition.d.ts +0 -16
- package/dist/cjs/containers/hooks/useFormOrganismItem.d.ts +0 -3
- package/dist/cjs/containers/hooks/useSetFormData.d.ts +0 -10
- package/dist/cjs/containers/hooks/useStateListenerValue.d.ts +0 -18
- package/dist/cjs/containers/hooks/useStateModifierHandler.d.ts +0 -7
- package/dist/cjs/containers/hooks/useStateViewModifierHandler.d.ts +0 -2
- package/dist/cjs/containers/index.d.ts +0 -5
- package/dist/cjs/containers/mock-data.d.ts +0 -1153
- package/dist/cjs/containers/styles.d.ts +0 -41
- package/dist/cjs/containers/types/moleculeTypes.d.ts +0 -345
- package/dist/cjs/containers/types/types.d.ts +0 -135
- package/dist/cjs/contexts/AccountButtonContext/AccountButtonContext.d.ts +0 -14
- package/dist/cjs/contexts/AccountButtonContext/AccountButtonContextProvider.d.ts +0 -9
- package/dist/cjs/contexts/ButtonActionsContext/ButtonActionsContext.d.ts +0 -12
- package/dist/cjs/contexts/ButtonActionsContext/ButtonActionsContextProvider.d.ts +0 -26
- package/dist/cjs/contexts/FormStepContext/FormStepContextProvider.d.ts +0 -5
- package/dist/cjs/contexts/MlrRichTextViewerContext/MlrRichTextViewerProvider.d.ts +0 -8
- package/dist/cjs/contexts/OrganismContext/OrganismContext.d.ts +0 -33
- package/dist/cjs/contexts/OrganismContext/OrganismContextProvider.d.ts +0 -31
- package/dist/cjs/contexts/StateContext/StateContext.d.ts +0 -7
- package/dist/cjs/contexts/StateContext/StateContextProvider.d.ts +0 -7
- package/dist/cjs/contexts/hooks/index.d.ts +0 -6
- package/dist/cjs/contexts/hooks/useAccountButtonContext.d.ts +0 -6
- package/dist/cjs/contexts/hooks/useStateContext.d.ts +0 -1
- package/dist/cjs/contexts/index.d.ts +0 -13
- package/dist/cjs/fieldsConfiguration/index.d.ts +0 -3
- package/dist/cjs/fieldsConfiguration/types.d.ts +0 -29
- package/dist/cjs/helpers/styles.d.ts +0 -5
- package/dist/cjs/helpers/utils.d.ts +0 -14
- package/dist/cjs/helpers/validations.d.ts +0 -23
- package/dist/cjs/icons/ArrowRight.d.ts +0 -2
- package/dist/cjs/icons/Bell.d.ts +0 -2
- package/dist/cjs/icons/Bookmark.d.ts +0 -2
- package/dist/cjs/icons/CaretDown.d.ts +0 -2
- package/dist/cjs/icons/CaretLeft.d.ts +0 -2
- package/dist/cjs/icons/CaretRight.d.ts +0 -2
- package/dist/cjs/icons/CaretUp.d.ts +0 -2
- package/dist/cjs/icons/Check.d.ts +0 -2
- package/dist/cjs/icons/Close.d.ts +0 -2
- package/dist/cjs/icons/Edit.d.ts +0 -2
- package/dist/cjs/icons/Filter.d.ts +0 -2
- package/dist/cjs/icons/Hide.d.ts +0 -2
- package/dist/cjs/icons/Info.d.ts +0 -2
- package/dist/cjs/icons/InfoBoxIcon.d.ts +0 -2
- package/dist/cjs/icons/Mail.d.ts +0 -2
- package/dist/cjs/icons/Menu.d.ts +0 -2
- package/dist/cjs/icons/Minus.d.ts +0 -2
- package/dist/cjs/icons/Mobile.d.ts +0 -2
- package/dist/cjs/icons/Play.d.ts +0 -2
- package/dist/cjs/icons/Save.d.ts +0 -2
- package/dist/cjs/icons/Search.d.ts +0 -2
- package/dist/cjs/icons/View.d.ts +0 -2
- package/dist/cjs/icons/Warning.d.ts +0 -2
- package/dist/cjs/index.d.ts +0 -7
- package/dist/cjs/molecules/Alert/Alert.d.ts +0 -20
- package/dist/cjs/molecules/Alert/Alert.stories.d.ts +0 -9
- package/dist/cjs/molecules/AvatarDropdown/AvatarDropdown.d.ts +0 -11
- package/dist/cjs/molecules/AvatarDropdown/AvatarDropdown.stories.d.ts +0 -8
- package/dist/cjs/molecules/BottomNavBarItem/BottomNavBarItem.d.ts +0 -11
- package/dist/cjs/molecules/BottomNavBarItem/BottomNavBarItem.stories.d.ts +0 -8
- package/dist/cjs/molecules/Button/Button.d.ts +0 -47
- package/dist/cjs/molecules/Button/Button.stories.d.ts +0 -8
- package/dist/cjs/molecules/Caruser/Carousel.d.ts +0 -35
- package/dist/cjs/molecules/CheckboxField/CheckboxField.d.ts +0 -37
- package/dist/cjs/molecules/CheckboxField/CheckboxField.stories.d.ts +0 -61
- package/dist/cjs/molecules/CheckboxField/CheckboxGroup.d.ts +0 -10
- package/dist/cjs/molecules/CheckboxField/CheckboxGroup.stories.d.ts +0 -32
- package/dist/cjs/molecules/CheckboxField/styles.d.ts +0 -13
- package/dist/cjs/molecules/Checklist/Checklist.d.ts +0 -30
- package/dist/cjs/molecules/Checklist/Checklist.stories.d.ts +0 -8
- package/dist/cjs/molecules/Consent/Consent.d.ts +0 -27
- package/dist/cjs/molecules/Consent/Consent.stories.d.ts +0 -8
- package/dist/cjs/molecules/Consent/ConsentCapture.d.ts +0 -20
- package/dist/cjs/molecules/Consent/ConsentMolecule.d.ts +0 -11
- package/dist/cjs/molecules/CustomValidation/CustomValidation.d.ts +0 -14
- package/dist/cjs/molecules/CustomValidation/CustomValidation.stories.d.ts +0 -8
- package/dist/cjs/molecules/Drawer/Drawer.d.ts +0 -3
- package/dist/cjs/molecules/Drawer/Drawer.stories.d.ts +0 -9
- package/dist/cjs/molecules/Drawer/styles.d.ts +0 -34
- package/dist/cjs/molecules/EmphasizedText/EmphasizedText.d.ts +0 -6
- package/dist/cjs/molecules/EmphasizedText/EmphasizedText.stories.d.ts +0 -8
- package/dist/cjs/molecules/FeedContentHeader/FeedContentHeader.d.ts +0 -11
- package/dist/cjs/molecules/FeedContentHeader/FeedContentHeader.stories.d.ts +0 -8
- package/dist/cjs/molecules/FieldLabels/FieldLabels.d.ts +0 -42
- package/dist/cjs/molecules/FieldLabels/FieldLabels.stories.d.ts +0 -8
- package/dist/cjs/molecules/FieldMapper/FieldMapper.d.ts +0 -13
- package/dist/cjs/molecules/FieldSection/FieldSection.d.ts +0 -9
- package/dist/cjs/molecules/FieldSection/FieldSection.stories.d.ts +0 -8
- package/dist/cjs/molecules/HorizontalButtonsField/HorizontalButtonsField.d.ts +0 -12
- package/dist/cjs/molecules/HorizontalButtonsField/HorizontalButtonsField.stories.d.ts +0 -15
- package/dist/cjs/molecules/Image/Image.d.ts +0 -20
- package/dist/cjs/molecules/Image/Image.stories.d.ts +0 -8
- package/dist/cjs/molecules/InputField/InputField.d.ts +0 -22
- package/dist/cjs/molecules/InputField/InputField.stories.d.ts +0 -66
- package/dist/cjs/molecules/Link/Link.d.ts +0 -14
- package/dist/cjs/molecules/Link/Link.stories.d.ts +0 -8
- package/dist/cjs/molecules/MenuItems/MenuItem.d.ts +0 -20
- package/dist/cjs/molecules/MenuItems/MenuItems.d.ts +0 -11
- package/dist/cjs/molecules/MenuItems/MenuItems.stories.d.ts +0 -8
- package/dist/cjs/molecules/MenuNavigation/MenuNavigation.d.ts +0 -15
- package/dist/cjs/molecules/MenuNavigation/MenuNavigation.stories.d.ts +0 -9
- package/dist/cjs/molecules/PasswordSetup/PasswordSetup.d.ts +0 -13
- package/dist/cjs/molecules/PasswordSetup/PasswordSetup.stories.d.ts +0 -8
- package/dist/cjs/molecules/PasswordSetup/types.d.ts +0 -25
- package/dist/cjs/molecules/PasswordSetup/utils.d.ts +0 -3
- package/dist/cjs/molecules/PdfDocument/PdfDocument.d.ts +0 -14
- package/dist/cjs/molecules/PdfDocument/PdfDocument.stories.d.ts +0 -8
- package/dist/cjs/molecules/RadioButtonField/RadioButtonField.d.ts +0 -74
- package/dist/cjs/molecules/RadioButtonField/RadioButtonField.stories.d.ts +0 -74
- package/dist/cjs/molecules/SelectField/SelectField.d.ts +0 -23
- package/dist/cjs/molecules/SelectField/SelectField.stories.d.ts +0 -53
- package/dist/cjs/molecules/SelectableInfoCard/BaseSelectable.d.ts +0 -9
- package/dist/cjs/molecules/SelectableInfoCard/SelectableCardGroup.d.ts +0 -9
- package/dist/cjs/molecules/SelectableInfoCard/SelectableInfoCard.stories.d.ts +0 -8
- package/dist/cjs/molecules/SelectableInfoCard/styles.d.ts +0 -19
- package/dist/cjs/molecules/SettingsSelectionField/SettingsSelectionField.d.ts +0 -9
- package/dist/cjs/molecules/SettingsSelectionField/SettingsSelectionField.stories.d.ts +0 -8
- package/dist/cjs/molecules/Stepper/Step.d.ts +0 -9
- package/dist/cjs/molecules/Stepper/Stepper.d.ts +0 -12
- package/dist/cjs/molecules/Stepper/Stepper.stories.d.ts +0 -8
- package/dist/cjs/molecules/Stepper/styles.d.ts +0 -40
- package/dist/cjs/molecules/TabGroup/TabGroup.d.ts +0 -32
- package/dist/cjs/molecules/TabGroup/TabGroup.stories.d.ts +0 -8
- package/dist/cjs/molecules/TabGroup/styles.d.ts +0 -43
- package/dist/cjs/molecules/TextMolecule/TextMolecule.d.ts +0 -20
- package/dist/cjs/molecules/TextMolecule/TextMolecule.stories.d.ts +0 -8
- package/dist/cjs/molecules/Video/Video.d.ts +0 -22
- package/dist/cjs/molecules/Video/Video.stories.d.ts +0 -8
- package/dist/cjs/molecules/ZealUIModal/ZealUIModal.d.ts +0 -30
- package/dist/cjs/molecules/ZealUIModal/ZealUIModal.stories.d.ts +0 -8
- package/dist/cjs/molecules/index.d.ts +0 -31
- package/dist/cjs/organisms/Organism/Organism.d.ts +0 -5
- package/dist/cjs/organisms/Organism/Organism.stories.d.ts +0 -8
- package/dist/cjs/organisms/Organism/mock-data.d.ts +0 -410
- package/dist/cjs/organisms/OrganismItem/OrganismItem.d.ts +0 -14
- package/dist/cjs/organisms/OrganismItem/helpers.d.ts +0 -3
- package/dist/cjs/organisms/index.d.ts +0 -2
- package/dist/cjs/organisms/types.d.ts +0 -21
- package/dist/cjs/theme/provider.d.ts +0 -7
- package/dist/cjs/theme/theme.d.ts +0 -2
- package/dist/cjs/theme/toastStyles.d.ts +0 -1
- package/dist/cjs/typescript.d.ts +0 -17
- package/dist/esm/atoms/Avatar/Avatar.d.ts +0 -20
- package/dist/esm/atoms/Buttons/IconButton.d.ts +0 -12
- package/dist/esm/atoms/Buttons/TextButton.d.ts +0 -21
- package/dist/esm/atoms/Buttons/TouchableOpacity.d.ts +0 -16
- package/dist/esm/atoms/Checkbox/Checkbox.d.ts +0 -14
- package/dist/esm/atoms/Circle/Circle.d.ts +0 -12
- package/dist/esm/atoms/CircularIndicator/CircularIndicator.d.ts +0 -12
- package/dist/esm/atoms/Divider/Divider.d.ts +0 -13
- package/dist/esm/atoms/HorizontalButtons/HorizontalButtons.d.ts +0 -11
- package/dist/esm/atoms/Icon/Icon.d.ts +0 -38
- package/dist/esm/atoms/Input/Input.d.ts +0 -39
- package/dist/esm/atoms/Input/helpers.d.ts +0 -44
- package/dist/esm/atoms/Paddings/Paddings.d.ts +0 -13
- package/dist/esm/atoms/RadioButtons/RadioButtons.d.ts +0 -56
- package/dist/esm/atoms/RadioButtons/RadioOption.d.ts +0 -11
- package/dist/esm/atoms/RadioButtons/helpers.d.ts +0 -17
- package/dist/esm/atoms/RadioButtons/styles.d.ts +0 -13
- package/dist/esm/atoms/RegularImage/RegularImage.d.ts +0 -38
- package/dist/esm/atoms/RichTextViewer/RichTextViewer.d.ts +0 -24
- package/dist/esm/atoms/RichTextViewer/components/EditorElement.d.ts +0 -5
- package/dist/esm/atoms/RichTextViewer/components/Leaf.d.ts +0 -2
- package/dist/esm/atoms/Select/Select.d.ts +0 -34
- package/dist/esm/atoms/Select/styles.d.ts +0 -27
- package/dist/esm/atoms/Spacer/Spacer.d.ts +0 -11
- package/dist/esm/atoms/Spinner/Spinner.d.ts +0 -9
- package/dist/esm/atoms/Tab/Tab.d.ts +0 -56
- package/dist/esm/atoms/Tab/styles.d.ts +0 -18
- package/dist/esm/atoms/TextWrapper/TextWrapper.d.ts +0 -23
- package/dist/esm/atoms/Toast/ToastContent.d.ts +0 -7
- package/dist/esm/atoms/Tooltip/Tooltip.d.ts +0 -12
- package/dist/esm/atoms/ValidationTag/ValidationTag.d.ts +0 -6
- package/dist/esm/atoms/index.d.ts +0 -23
- package/dist/esm/constants/params.d.ts +0 -8
- package/dist/esm/containers/Container.d.ts +0 -84
- package/dist/esm/containers/Container.stories.d.ts +0 -7
- package/dist/esm/containers/FormContainer.d.ts +0 -8
- package/dist/esm/containers/FormOrganismItem.d.ts +0 -11
- package/dist/esm/containers/FormStepContainer.d.ts +0 -9
- package/dist/esm/containers/MoleculeItem.d.ts +0 -8
- package/dist/esm/containers/helpers.d.ts +0 -6
- package/dist/esm/containers/hooks/index.d.ts +0 -3
- package/dist/esm/containers/hooks/useCheckCondition.d.ts +0 -16
- package/dist/esm/containers/hooks/useFormOrganismItem.d.ts +0 -3
- package/dist/esm/containers/hooks/useSetFormData.d.ts +0 -10
- package/dist/esm/containers/hooks/useStateListenerValue.d.ts +0 -18
- package/dist/esm/containers/hooks/useStateModifierHandler.d.ts +0 -7
- package/dist/esm/containers/hooks/useStateViewModifierHandler.d.ts +0 -2
- package/dist/esm/containers/index.d.ts +0 -5
- package/dist/esm/containers/mock-data.d.ts +0 -1153
- package/dist/esm/containers/styles.d.ts +0 -41
- package/dist/esm/containers/types/moleculeTypes.d.ts +0 -345
- package/dist/esm/containers/types/types.d.ts +0 -135
- package/dist/esm/contexts/AccountButtonContext/AccountButtonContext.d.ts +0 -14
- package/dist/esm/contexts/AccountButtonContext/AccountButtonContextProvider.d.ts +0 -9
- package/dist/esm/contexts/ButtonActionsContext/ButtonActionsContext.d.ts +0 -12
- package/dist/esm/contexts/ButtonActionsContext/ButtonActionsContextProvider.d.ts +0 -26
- package/dist/esm/contexts/FormStepContext/FormStepContextProvider.d.ts +0 -5
- package/dist/esm/contexts/MlrRichTextViewerContext/MlrRichTextViewerProvider.d.ts +0 -8
- package/dist/esm/contexts/OrganismContext/OrganismContext.d.ts +0 -33
- package/dist/esm/contexts/OrganismContext/OrganismContextProvider.d.ts +0 -31
- package/dist/esm/contexts/StateContext/StateContext.d.ts +0 -7
- package/dist/esm/contexts/StateContext/StateContextProvider.d.ts +0 -7
- package/dist/esm/contexts/hooks/index.d.ts +0 -6
- package/dist/esm/contexts/hooks/useAccountButtonContext.d.ts +0 -6
- package/dist/esm/contexts/hooks/useStateContext.d.ts +0 -1
- package/dist/esm/contexts/index.d.ts +0 -13
- package/dist/esm/fieldsConfiguration/index.d.ts +0 -3
- package/dist/esm/fieldsConfiguration/types.d.ts +0 -29
- package/dist/esm/helpers/styles.d.ts +0 -5
- package/dist/esm/helpers/utils.d.ts +0 -14
- package/dist/esm/helpers/validations.d.ts +0 -23
- package/dist/esm/icons/ArrowRight.d.ts +0 -2
- package/dist/esm/icons/Bell.d.ts +0 -2
- package/dist/esm/icons/Bookmark.d.ts +0 -2
- package/dist/esm/icons/CaretDown.d.ts +0 -2
- package/dist/esm/icons/CaretLeft.d.ts +0 -2
- package/dist/esm/icons/CaretRight.d.ts +0 -2
- package/dist/esm/icons/CaretUp.d.ts +0 -2
- package/dist/esm/icons/Check.d.ts +0 -2
- package/dist/esm/icons/Close.d.ts +0 -2
- package/dist/esm/icons/Edit.d.ts +0 -2
- package/dist/esm/icons/Filter.d.ts +0 -2
- package/dist/esm/icons/Hide.d.ts +0 -2
- package/dist/esm/icons/Info.d.ts +0 -2
- package/dist/esm/icons/InfoBoxIcon.d.ts +0 -2
- package/dist/esm/icons/Mail.d.ts +0 -2
- package/dist/esm/icons/Menu.d.ts +0 -2
- package/dist/esm/icons/Minus.d.ts +0 -2
- package/dist/esm/icons/Mobile.d.ts +0 -2
- package/dist/esm/icons/Play.d.ts +0 -2
- package/dist/esm/icons/Save.d.ts +0 -2
- package/dist/esm/icons/Search.d.ts +0 -2
- package/dist/esm/icons/View.d.ts +0 -2
- package/dist/esm/icons/Warning.d.ts +0 -2
- package/dist/esm/index.d.ts +0 -7
- package/dist/esm/molecules/Alert/Alert.d.ts +0 -20
- package/dist/esm/molecules/Alert/Alert.stories.d.ts +0 -9
- package/dist/esm/molecules/AvatarDropdown/AvatarDropdown.d.ts +0 -11
- package/dist/esm/molecules/AvatarDropdown/AvatarDropdown.stories.d.ts +0 -8
- package/dist/esm/molecules/BottomNavBarItem/BottomNavBarItem.d.ts +0 -11
- package/dist/esm/molecules/BottomNavBarItem/BottomNavBarItem.stories.d.ts +0 -8
- package/dist/esm/molecules/Button/Button.d.ts +0 -47
- package/dist/esm/molecules/Button/Button.stories.d.ts +0 -8
- package/dist/esm/molecules/Caruser/Carousel.d.ts +0 -35
- package/dist/esm/molecules/CheckboxField/CheckboxField.d.ts +0 -37
- package/dist/esm/molecules/CheckboxField/CheckboxField.stories.d.ts +0 -61
- package/dist/esm/molecules/CheckboxField/CheckboxGroup.d.ts +0 -10
- package/dist/esm/molecules/CheckboxField/CheckboxGroup.stories.d.ts +0 -32
- package/dist/esm/molecules/CheckboxField/styles.d.ts +0 -13
- package/dist/esm/molecules/Checklist/Checklist.d.ts +0 -30
- package/dist/esm/molecules/Checklist/Checklist.stories.d.ts +0 -8
- package/dist/esm/molecules/Consent/Consent.d.ts +0 -27
- package/dist/esm/molecules/Consent/Consent.stories.d.ts +0 -8
- package/dist/esm/molecules/Consent/ConsentCapture.d.ts +0 -20
- package/dist/esm/molecules/Consent/ConsentMolecule.d.ts +0 -11
- package/dist/esm/molecules/CustomValidation/CustomValidation.d.ts +0 -14
- package/dist/esm/molecules/CustomValidation/CustomValidation.stories.d.ts +0 -8
- package/dist/esm/molecules/Drawer/Drawer.d.ts +0 -3
- package/dist/esm/molecules/Drawer/Drawer.stories.d.ts +0 -9
- package/dist/esm/molecules/Drawer/styles.d.ts +0 -34
- package/dist/esm/molecules/EmphasizedText/EmphasizedText.d.ts +0 -6
- package/dist/esm/molecules/EmphasizedText/EmphasizedText.stories.d.ts +0 -8
- package/dist/esm/molecules/FeedContentHeader/FeedContentHeader.d.ts +0 -11
- package/dist/esm/molecules/FeedContentHeader/FeedContentHeader.stories.d.ts +0 -8
- package/dist/esm/molecules/FieldLabels/FieldLabels.d.ts +0 -42
- package/dist/esm/molecules/FieldLabels/FieldLabels.stories.d.ts +0 -8
- package/dist/esm/molecules/FieldMapper/FieldMapper.d.ts +0 -13
- package/dist/esm/molecules/FieldSection/FieldSection.d.ts +0 -9
- package/dist/esm/molecules/FieldSection/FieldSection.stories.d.ts +0 -8
- package/dist/esm/molecules/HorizontalButtonsField/HorizontalButtonsField.d.ts +0 -12
- package/dist/esm/molecules/HorizontalButtonsField/HorizontalButtonsField.stories.d.ts +0 -15
- package/dist/esm/molecules/Image/Image.d.ts +0 -20
- package/dist/esm/molecules/Image/Image.stories.d.ts +0 -8
- package/dist/esm/molecules/InputField/InputField.d.ts +0 -22
- package/dist/esm/molecules/InputField/InputField.stories.d.ts +0 -66
- package/dist/esm/molecules/Link/Link.d.ts +0 -14
- package/dist/esm/molecules/Link/Link.stories.d.ts +0 -8
- package/dist/esm/molecules/MenuItems/MenuItem.d.ts +0 -20
- package/dist/esm/molecules/MenuItems/MenuItems.d.ts +0 -11
- package/dist/esm/molecules/MenuItems/MenuItems.stories.d.ts +0 -8
- package/dist/esm/molecules/MenuNavigation/MenuNavigation.d.ts +0 -15
- package/dist/esm/molecules/MenuNavigation/MenuNavigation.stories.d.ts +0 -9
- package/dist/esm/molecules/PasswordSetup/PasswordSetup.d.ts +0 -13
- package/dist/esm/molecules/PasswordSetup/PasswordSetup.stories.d.ts +0 -8
- package/dist/esm/molecules/PasswordSetup/types.d.ts +0 -25
- package/dist/esm/molecules/PasswordSetup/utils.d.ts +0 -3
- package/dist/esm/molecules/PdfDocument/PdfDocument.d.ts +0 -14
- package/dist/esm/molecules/PdfDocument/PdfDocument.stories.d.ts +0 -8
- package/dist/esm/molecules/RadioButtonField/RadioButtonField.d.ts +0 -74
- package/dist/esm/molecules/RadioButtonField/RadioButtonField.stories.d.ts +0 -74
- package/dist/esm/molecules/SelectField/SelectField.d.ts +0 -23
- package/dist/esm/molecules/SelectField/SelectField.stories.d.ts +0 -53
- package/dist/esm/molecules/SelectableInfoCard/BaseSelectable.d.ts +0 -9
- package/dist/esm/molecules/SelectableInfoCard/SelectableCardGroup.d.ts +0 -9
- package/dist/esm/molecules/SelectableInfoCard/SelectableInfoCard.stories.d.ts +0 -8
- package/dist/esm/molecules/SelectableInfoCard/styles.d.ts +0 -19
- package/dist/esm/molecules/SettingsSelectionField/SettingsSelectionField.d.ts +0 -9
- package/dist/esm/molecules/SettingsSelectionField/SettingsSelectionField.stories.d.ts +0 -8
- package/dist/esm/molecules/Stepper/Step.d.ts +0 -9
- package/dist/esm/molecules/Stepper/Stepper.d.ts +0 -12
- package/dist/esm/molecules/Stepper/Stepper.stories.d.ts +0 -8
- package/dist/esm/molecules/Stepper/styles.d.ts +0 -40
- package/dist/esm/molecules/TabGroup/TabGroup.d.ts +0 -32
- package/dist/esm/molecules/TabGroup/TabGroup.stories.d.ts +0 -8
- package/dist/esm/molecules/TabGroup/styles.d.ts +0 -43
- package/dist/esm/molecules/TextMolecule/TextMolecule.d.ts +0 -20
- package/dist/esm/molecules/TextMolecule/TextMolecule.stories.d.ts +0 -8
- package/dist/esm/molecules/Video/Video.d.ts +0 -22
- package/dist/esm/molecules/Video/Video.stories.d.ts +0 -8
- package/dist/esm/molecules/ZealUIModal/ZealUIModal.d.ts +0 -30
- package/dist/esm/molecules/ZealUIModal/ZealUIModal.stories.d.ts +0 -8
- package/dist/esm/molecules/index.d.ts +0 -31
- package/dist/esm/organisms/Organism/Organism.d.ts +0 -5
- package/dist/esm/organisms/Organism/Organism.stories.d.ts +0 -8
- package/dist/esm/organisms/Organism/mock-data.d.ts +0 -410
- package/dist/esm/organisms/OrganismItem/OrganismItem.d.ts +0 -14
- package/dist/esm/organisms/OrganismItem/helpers.d.ts +0 -3
- package/dist/esm/organisms/index.d.ts +0 -2
- package/dist/esm/organisms/types.d.ts +0 -21
- package/dist/esm/theme/provider.d.ts +0 -7
- package/dist/esm/theme/theme.d.ts +0 -2
- package/dist/esm/theme/toastStyles.d.ts +0 -1
- package/dist/esm/typescript.d.ts +0 -17
- /package/dist/cjs/{assets → src/assets}/index.d.ts +0 -0
- /package/dist/cjs/{atoms → src/atoms}/Checkbox/helpers.d.ts +0 -0
- /package/dist/cjs/{atoms → src/atoms}/Checkbox/types.d.ts +0 -0
- /package/dist/cjs/{atoms → src/atoms}/RichTextViewer/components/index.d.ts +0 -0
- /package/dist/cjs/{atoms → src/atoms}/RichTextViewer/types.d.ts +0 -0
- /package/dist/cjs/{atoms → src/atoms}/Tab/utils.d.ts +0 -0
- /package/dist/cjs/{atoms → src/atoms}/Toast/toast.d.ts +0 -0
- /package/dist/cjs/{atoms → src/atoms}/Toast/types.d.ts +0 -0
- /package/dist/cjs/{containers → src/containers}/hooks/useCheckCondition.test.d.ts +0 -0
- /package/dist/cjs/{contexts → src/contexts}/FormStepContext/FormStepContext.d.ts +0 -0
- /package/dist/cjs/{contexts → src/contexts}/FormStepContext/utils.d.ts +0 -0
- /package/dist/cjs/{contexts → src/contexts}/MlrRichTextViewerContext/MlrRichTextViewerContext.d.ts +0 -0
- /package/dist/cjs/{contexts → src/contexts}/MlrRichTextViewerContext/types.d.ts +0 -0
- /package/dist/cjs/{contexts → src/contexts}/OrganismContext/utils.d.ts +0 -0
- /package/dist/cjs/{contexts → src/contexts}/hooks/useButtonActionsContext.d.ts +0 -0
- /package/dist/cjs/{contexts → src/contexts}/hooks/useFormStepContext.d.ts +0 -0
- /package/dist/cjs/{contexts → src/contexts}/hooks/useMlrRichTextViewerContext.d.ts +0 -0
- /package/dist/cjs/{contexts → src/contexts}/hooks/useOrganismContext.d.ts +0 -0
- /package/dist/cjs/{fieldsConfiguration → src/fieldsConfiguration}/getFieldPlaceholder.d.ts +0 -0
- /package/dist/cjs/{fieldsConfiguration → src/fieldsConfiguration}/utils.d.ts +0 -0
- /package/dist/cjs/{helpers → src/helpers}/constants.d.ts +0 -0
- /package/dist/cjs/{helpers → src/helpers}/date.d.ts +0 -0
- /package/dist/cjs/{helpers → src/helpers}/slate.d.ts +0 -0
- /package/dist/cjs/{hooks → src/hooks}/index.d.ts +0 -0
- /package/dist/cjs/{hooks → src/hooks}/useRequiredConsentsAcceptedValues.d.ts +0 -0
- /package/dist/cjs/{hooks → src/hooks}/useStep.d.ts +0 -0
- /package/dist/cjs/{icons → src/icons}/index.d.ts +0 -0
- /package/dist/cjs/{molecules → src/molecules}/Consent/consentMock.d.ts +0 -0
- /package/dist/cjs/{molecules → src/molecules}/FieldLabels/helpers.d.ts +0 -0
- /package/dist/cjs/{molecules → src/molecules}/TabGroup/useTabAnimation.d.ts +0 -0
- /package/dist/cjs/{theme → src/theme}/index.d.ts +0 -0
- /package/dist/cjs/{theme → src/theme}/types.d.ts +0 -0
- /package/dist/cjs/{theme → src/theme}/useMediaQuery.d.ts +0 -0
- /package/dist/esm/{assets → src/assets}/index.d.ts +0 -0
- /package/dist/esm/{atoms → src/atoms}/Checkbox/helpers.d.ts +0 -0
- /package/dist/esm/{atoms → src/atoms}/Checkbox/types.d.ts +0 -0
- /package/dist/esm/{atoms → src/atoms}/RichTextViewer/components/index.d.ts +0 -0
- /package/dist/esm/{atoms → src/atoms}/RichTextViewer/types.d.ts +0 -0
- /package/dist/esm/{atoms → src/atoms}/Tab/utils.d.ts +0 -0
- /package/dist/esm/{atoms → src/atoms}/Toast/toast.d.ts +0 -0
- /package/dist/esm/{atoms → src/atoms}/Toast/types.d.ts +0 -0
- /package/dist/esm/{containers → src/containers}/hooks/useCheckCondition.test.d.ts +0 -0
- /package/dist/esm/{contexts → src/contexts}/FormStepContext/FormStepContext.d.ts +0 -0
- /package/dist/esm/{contexts → src/contexts}/FormStepContext/utils.d.ts +0 -0
- /package/dist/esm/{contexts → src/contexts}/MlrRichTextViewerContext/MlrRichTextViewerContext.d.ts +0 -0
- /package/dist/esm/{contexts → src/contexts}/MlrRichTextViewerContext/types.d.ts +0 -0
- /package/dist/esm/{contexts → src/contexts}/OrganismContext/utils.d.ts +0 -0
- /package/dist/esm/{contexts → src/contexts}/hooks/useButtonActionsContext.d.ts +0 -0
- /package/dist/esm/{contexts → src/contexts}/hooks/useFormStepContext.d.ts +0 -0
- /package/dist/esm/{contexts → src/contexts}/hooks/useMlrRichTextViewerContext.d.ts +0 -0
- /package/dist/esm/{contexts → src/contexts}/hooks/useOrganismContext.d.ts +0 -0
- /package/dist/esm/{fieldsConfiguration → src/fieldsConfiguration}/getFieldPlaceholder.d.ts +0 -0
- /package/dist/esm/{fieldsConfiguration → src/fieldsConfiguration}/utils.d.ts +0 -0
- /package/dist/esm/{helpers → src/helpers}/constants.d.ts +0 -0
- /package/dist/esm/{helpers → src/helpers}/date.d.ts +0 -0
- /package/dist/esm/{helpers → src/helpers}/slate.d.ts +0 -0
- /package/dist/esm/{hooks → src/hooks}/index.d.ts +0 -0
- /package/dist/esm/{hooks → src/hooks}/useRequiredConsentsAcceptedValues.d.ts +0 -0
- /package/dist/esm/{hooks → src/hooks}/useStep.d.ts +0 -0
- /package/dist/esm/{icons → src/icons}/index.d.ts +0 -0
- /package/dist/esm/{molecules → src/molecules}/Consent/consentMock.d.ts +0 -0
- /package/dist/esm/{molecules → src/molecules}/FieldLabels/helpers.d.ts +0 -0
- /package/dist/esm/{molecules → src/molecules}/TabGroup/useTabAnimation.d.ts +0 -0
- /package/dist/esm/{theme → src/theme}/index.d.ts +0 -0
- /package/dist/esm/{theme → src/theme}/types.d.ts +0 -0
- /package/dist/esm/{theme → src/theme}/useMediaQuery.d.ts +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,60 +1,64 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import * as _emotion_styled from '@emotion/styled';
|
|
3
2
|
import * as react from 'react';
|
|
4
|
-
import react__default, { PropsWithChildren, ReactNode, Dispatch, SetStateAction,
|
|
5
|
-
import * as
|
|
6
|
-
import {
|
|
7
|
-
import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
|
|
3
|
+
import react__default, { PropsWithChildren, ReactNode, Dispatch, SetStateAction, CSSProperties as CSSProperties$1, ComponentType, KeyboardEvent } from 'react';
|
|
4
|
+
import * as styled_components from 'styled-components';
|
|
5
|
+
import { CSSProperties, DefaultTheme } from 'styled-components';
|
|
8
6
|
import * as theme from 'theme';
|
|
9
7
|
import { ThemeColors as ThemeColors$1, SizesTypes as SizesTypes$1, FontSizesTypes as FontSizesTypes$2 } from 'theme';
|
|
10
8
|
import * as typescript from 'typescript';
|
|
11
|
-
import { StylesType, AnyObject as AnyObject$1, Callback as Callback$1,
|
|
12
|
-
import { RefCallBack, Control, ControllerProps as ControllerProps$1 } from 'react-hook-form/dist/types';
|
|
9
|
+
import { StylesType, AnyObject as AnyObject$1, Callback as Callback$1, OverrideStyles, StyledTransientProps, Nullable, StrictUnion } from 'typescript';
|
|
10
|
+
import { RefCallBack, Control as Control$1, ControllerProps as ControllerProps$1 } from 'react-hook-form/dist/types';
|
|
13
11
|
import { IconNames as IconNames$1 } from 'atoms/Icon/Icon';
|
|
14
12
|
import * as containers from 'containers';
|
|
15
|
-
import {
|
|
13
|
+
import { FormStateType as FormStateType$1, ContainerComponentProps as ContainerComponentProps$1, Molecule as Molecule$1, ConditionConfig as ConditionConfig$1 } from 'containers';
|
|
16
14
|
import { FieldTypes as FieldTypes$1, UIFields as UIFields$1, InputFieldTypes as InputFieldTypes$1 } from 'fieldsConfiguration/types';
|
|
17
15
|
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, FieldSectionProps as FieldSectionProps$1, BaseButtonProps as BaseButtonProps$1, MenuItemsProps as MenuItemsProps$1 } from 'molecules';
|
|
21
16
|
import * as react_hook_form from 'react-hook-form';
|
|
22
|
-
import {
|
|
23
|
-
import
|
|
24
|
-
import {
|
|
17
|
+
import { ControllerProps, DeepPartial, FieldValues, FormState, Control, UseFormReturn, ValidationMode } from 'react-hook-form';
|
|
18
|
+
import * as atoms from 'atoms';
|
|
19
|
+
import { SelectOption as SelectOption$1, TextProps as TextProps$1, IconNames as IconNames$2, TouchableOpacityProps as TouchableOpacityProps$1, AvatarProps as AvatarProps$1, TabProps as TabProps$1, InputProps as InputProps$1, SelectProps as SelectProps$1, RegularImageProps as RegularImageProps$1, TextButtonProps as TextButtonProps$1, TabTheme as TabTheme$1, RadioButtonsProps as RadioButtonsProps$1, RadioButtonInternalConfigProps as RadioButtonInternalConfigProps$1, HorizontalButtonsProps as HorizontalButtonsProps$1, IconProps as IconProps$1, LinkVariant as LinkVariant$1 } from 'atoms';
|
|
20
|
+
import { InputFieldProps as InputFieldProps$1, SelectFieldProps as SelectFieldProps$1, FieldSectionProps as FieldSectionProps$1, BaseButtonProps as BaseButtonProps$1, MenuItem as MenuItem$1, ConsentProps as ConsentProps$1, HeroImageProps as HeroImageProps$1, ColumnsProps as ColumnsProps$1, EmphasizedTextProps as EmphasizedTextProps$1, TabGroupProps as TabGroupProps$1, AvatarDropdownProps as AvatarDropdownProps$1, FeedContentHeaderProps as FeedContentHeaderProps$1, AlertProps as AlertProps$1, BottomNaVBarItemProps as BottomNaVBarItemProps$1, ButtonProps as ButtonProps$1, MenuItemsProps as MenuItemsProps$1, ImageProps as ImageProps$1, TextMoleculeProps as TextMoleculeProps$1, AdditionalTabContainerProps as AdditionalTabContainerProps$1, RadioButtonFieldProps as RadioButtonFieldProps$1, CheckboxFieldProps as CheckboxFieldProps$1, Consent as Consent$1, LinkProps as LinkProps$1 } from 'molecules';
|
|
25
21
|
import { TooltipProps as TooltipProps$1 } from 'rc-tooltip/lib/Tooltip';
|
|
26
|
-
import {
|
|
27
|
-
import
|
|
28
|
-
import { DrawerProps as DrawerProps$1, ModalProps } from '@mui/material';
|
|
29
|
-
import {
|
|
22
|
+
import { WithGoogleMapProps } from 'react-google-maps/lib/withGoogleMap';
|
|
23
|
+
import { WithScriptjsProps } from 'react-google-maps/lib/withScriptjs';
|
|
24
|
+
import { RadioGroup, DrawerProps as DrawerProps$1, ModalProps } from '@mui/material';
|
|
25
|
+
import { UIFields as UIFields$2, InputFieldTypes as InputFieldTypes$2, UIField as UIField$1 } from 'fieldsConfiguration';
|
|
26
|
+
import { SetPasswordFields, MaxRuleValidation, MinRuleValidation } from 'organisms/SetPasswordForm/types';
|
|
27
|
+
import { ConsentProps as ConsentProps$2 } from 'molecules/Consent/Consent';
|
|
28
|
+
import { FooterAProps } from 'organisms/Footer/FooterA';
|
|
29
|
+
import { FooterBProps } from 'organisms/Footer/FooterB';
|
|
30
|
+
import { FooterCProps } from 'organisms/Footer/FooterC';
|
|
31
|
+
import { FooterDProps } from 'organisms/Footer/FooterD';
|
|
32
|
+
import { FilteredFeedContentType as FilteredFeedContentType$1, HeroSliderProps as HeroSliderProps$1, ProcessTrackerProps as ProcessTrackerProps$1, ConsentProps as ConsentProps$3, ProcessTrackerStatus as ProcessTrackerStatus$1 } from 'organisms';
|
|
33
|
+
import { FeedContentContainerProps as FeedContentContainerProps$1 } from 'organisms/FeedContentContainer/FeedContentContainer';
|
|
34
|
+
import { SubscribePanelProps as SubscribePanelProps$1 } from 'organisms/SubscribePanel/type';
|
|
35
|
+
import { ISIAProps } from 'organisms/ISI/ISIA';
|
|
36
|
+
import { HeaderAProps as HeaderAProps$1 } from 'organisms/Header/HeaderA';
|
|
37
|
+
import { FeedContentProps as FeedContentProps$1, FeedContentTemplateTypes as FeedContentTemplateTypes$1 } from 'organisms/FeedContent/types';
|
|
38
|
+
import { AlertProps as AlertProps$2 } from 'molecules/Alert/Alert';
|
|
39
|
+
import { LoginFields as LoginFields$1 } from 'organisms/LoginForm/types';
|
|
30
40
|
import { AnnotationsList as AnnotationsList$1 } from 'contexts/MlrRichTextViewerContext/types';
|
|
31
41
|
import * as contexts_MlrRichTextViewerContext_MlrRichTextViewerContext from 'contexts/MlrRichTextViewerContext/MlrRichTextViewerContext';
|
|
32
42
|
import * as contexts_ButtonActionsContext_ButtonActionsContext from 'contexts/ButtonActionsContext/ButtonActionsContext';
|
|
33
|
-
|
|
34
|
-
import {
|
|
35
|
-
import { FeedContentTemplateTypes } from 'organisms/FeedContent/types';
|
|
43
|
+
export * from 'helpers/constants';
|
|
44
|
+
import { CheckboxInternalConfigProps as CheckboxInternalConfigProps$1 } from 'atoms/Checkbox/types';
|
|
36
45
|
import { CustomDescendant } from 'atoms/RichTextViewer/types';
|
|
37
46
|
import { ConsentCaptureProps } from 'molecules/Consent/ConsentCapture';
|
|
38
|
-
import * as _emotion_utils from '@emotion/utils';
|
|
39
|
-
import * as _emotion_serialize from '@emotion/serialize';
|
|
40
47
|
import * as containers_types_types from 'containers/types/types';
|
|
41
|
-
import { ContainerProps as ContainerProps$1
|
|
48
|
+
import { ContainerProps as ContainerProps$1 } from 'containers/types/types';
|
|
42
49
|
|
|
43
50
|
declare type TouchableOpacityProps = PropsWithChildren<{
|
|
44
51
|
activeOpacity?: number;
|
|
45
52
|
withoutOpacityEffect?: boolean;
|
|
46
53
|
disabled?: boolean;
|
|
47
54
|
}>;
|
|
48
|
-
declare const TouchableOpacity:
|
|
49
|
-
theme?: _emotion_react.Theme | undefined;
|
|
50
|
-
as?: react.ElementType<any> | undefined;
|
|
51
|
-
} & {
|
|
55
|
+
declare const TouchableOpacity: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {
|
|
52
56
|
activeOpacity?: number | undefined;
|
|
53
57
|
withoutOpacityEffect?: boolean | undefined;
|
|
54
58
|
disabled?: boolean | undefined;
|
|
55
59
|
} & {
|
|
56
60
|
children?: react.ReactNode;
|
|
57
|
-
},
|
|
61
|
+
}, never>;
|
|
58
62
|
|
|
59
63
|
declare type CheckboxInternalConfigProps = Partial<{
|
|
60
64
|
selectedCheckboxBackgroundColor: ThemeColors$1 | string;
|
|
@@ -70,15 +74,15 @@ declare type CheckboxProps = {
|
|
|
70
74
|
id: string;
|
|
71
75
|
onClick: (id: string) => void;
|
|
72
76
|
label: string;
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
internalConfig
|
|
80
|
-
}
|
|
81
|
-
declare const Checkbox: ({ id, onClick, label, isError, disabled, isEditMode, isSelected, isRichText,
|
|
77
|
+
} & Partial<{
|
|
78
|
+
isError: boolean;
|
|
79
|
+
disabled: boolean;
|
|
80
|
+
isEditMode: boolean;
|
|
81
|
+
isSelected: boolean;
|
|
82
|
+
isRichText: boolean;
|
|
83
|
+
internalConfig: CheckboxInternalConfigProps;
|
|
84
|
+
}>;
|
|
85
|
+
declare const Checkbox: ({ id, onClick, label, isError, disabled, isEditMode, isSelected, isRichText, internalConfig, }: CheckboxProps) => JSX.Element;
|
|
82
86
|
|
|
83
87
|
declare type SelectOption = {
|
|
84
88
|
id: string;
|
|
@@ -110,821 +114,221 @@ declare type SelectProps = Partial<{
|
|
|
110
114
|
selectInternalConfig: SelectInternalConfigurationOptions;
|
|
111
115
|
isRichText: boolean;
|
|
112
116
|
}>;
|
|
113
|
-
declare const Select: ({ ref, onBlur, onChange, value, placeholder, options, disabled, optionsPresentation, isError,
|
|
117
|
+
declare const Select: ({ ref, onBlur, onChange, value, placeholder, options, disabled, optionsPresentation, isError, selectInternalConfig, isRichText, }: SelectProps) => JSX.Element;
|
|
114
118
|
|
|
115
|
-
declare
|
|
116
|
-
|
|
117
|
-
metadata: containers.MetadataType;
|
|
118
|
-
} & Partial<{
|
|
119
|
-
containerTemplateType: "row_content_container";
|
|
120
|
-
wide: Partial<{
|
|
121
|
-
containerStyle: _emotion_serialize.CSSObject;
|
|
122
|
-
containerProps: Partial<{
|
|
123
|
-
position: containers.ContainerPositionType;
|
|
124
|
-
alignItems: containers.ContainerAlignItemsType;
|
|
125
|
-
scrollBehaviour: containers.ContainerScrollBehaviourType;
|
|
126
|
-
cornerRadius: number | theme.SizesTypes;
|
|
127
|
-
gap: theme.SizesTypes;
|
|
128
|
-
styles: _emotion_utils.SerializedStyles;
|
|
129
|
-
paddingTop: theme.SizesTypes;
|
|
130
|
-
paddingBottom: theme.SizesTypes;
|
|
131
|
-
paddingLeft: theme.SizesTypes;
|
|
132
|
-
paddingRight: theme.SizesTypes;
|
|
133
|
-
autoplay: boolean;
|
|
134
|
-
autoplayDuration: number;
|
|
135
|
-
formProps: containers.FormContainerProps;
|
|
136
|
-
formStepProps: containers.FormStepContainerProps;
|
|
137
|
-
border: string;
|
|
138
|
-
activeChildrenIds: string[];
|
|
139
|
-
activeOrganismIds: string[];
|
|
140
|
-
padding: containers.Padding;
|
|
141
|
-
}>;
|
|
142
|
-
}>;
|
|
143
|
-
compact: Partial<{
|
|
144
|
-
containerStyle: _emotion_serialize.CSSObject;
|
|
145
|
-
containerProps: Partial<{
|
|
146
|
-
position: containers.ContainerPositionType;
|
|
147
|
-
alignItems: containers.ContainerAlignItemsType;
|
|
148
|
-
scrollBehaviour: containers.ContainerScrollBehaviourType;
|
|
149
|
-
cornerRadius: number | theme.SizesTypes;
|
|
150
|
-
gap: theme.SizesTypes;
|
|
151
|
-
styles: _emotion_utils.SerializedStyles;
|
|
152
|
-
paddingTop: theme.SizesTypes;
|
|
153
|
-
paddingBottom: theme.SizesTypes;
|
|
154
|
-
paddingLeft: theme.SizesTypes;
|
|
155
|
-
paddingRight: theme.SizesTypes;
|
|
156
|
-
autoplay: boolean;
|
|
157
|
-
autoplayDuration: number;
|
|
158
|
-
formProps: containers.FormContainerProps;
|
|
159
|
-
formStepProps: containers.FormStepContainerProps;
|
|
160
|
-
border: string;
|
|
161
|
-
activeChildrenIds: string[];
|
|
162
|
-
activeOrganismIds: string[];
|
|
163
|
-
padding: containers.Padding;
|
|
164
|
-
}>;
|
|
165
|
-
}>;
|
|
166
|
-
props: Partial<{
|
|
167
|
-
position: containers.ContainerPositionType;
|
|
168
|
-
alignItems: containers.ContainerAlignItemsType;
|
|
169
|
-
scrollBehaviour: containers.ContainerScrollBehaviourType;
|
|
170
|
-
cornerRadius: number | theme.SizesTypes;
|
|
171
|
-
gap: theme.SizesTypes;
|
|
172
|
-
styles: _emotion_utils.SerializedStyles;
|
|
173
|
-
paddingTop: theme.SizesTypes;
|
|
174
|
-
paddingBottom: theme.SizesTypes;
|
|
175
|
-
paddingLeft: theme.SizesTypes;
|
|
176
|
-
paddingRight: theme.SizesTypes;
|
|
177
|
-
autoplay: boolean;
|
|
178
|
-
autoplayDuration: number;
|
|
179
|
-
formProps: containers.FormContainerProps;
|
|
180
|
-
formStepProps: containers.FormStepContainerProps;
|
|
181
|
-
border: string;
|
|
182
|
-
activeChildrenIds: string[];
|
|
183
|
-
activeOrganismIds: string[];
|
|
184
|
-
padding: containers.Padding;
|
|
185
|
-
}>;
|
|
186
|
-
isMobile: boolean;
|
|
187
|
-
}> & {
|
|
188
|
-
children?: ReactNode;
|
|
189
|
-
} & {
|
|
190
|
-
id: string;
|
|
191
|
-
}) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
192
|
-
declare const ContainerComponent: ({ config, tabsProps, id, type, items, metadata, formData, setFormData, isMobile, isConfigurationMode, }: ContainerComponentProps$1 & {
|
|
193
|
-
formData?: AnyObject$1 | undefined;
|
|
194
|
-
setFormData?: Dispatch<SetStateAction<AnyObject$1>> | undefined;
|
|
195
|
-
}) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
119
|
+
declare type Callback = () => void;
|
|
120
|
+
declare type AnyObject = Record<string, unknown>;
|
|
196
121
|
|
|
197
|
-
declare
|
|
198
|
-
|
|
199
|
-
declare type
|
|
200
|
-
declare type
|
|
201
|
-
|
|
202
|
-
name:
|
|
122
|
+
declare const getFieldPlaceholder: (type: FieldTypes$1, title?: string) => string;
|
|
123
|
+
|
|
124
|
+
declare type InputFieldTypes = 'phone_number' | 'text' | 'email' | 'password' | 'numerical' | 'month_year_date' | 'day_month_year_date' | 'month_day_year_date' | 'us_zip_code' | 'any';
|
|
125
|
+
declare type FieldTypes = 'input' | 'select' | 'checkbox';
|
|
126
|
+
declare type UIField<T = string> = (UIInputField & UISelectField & UICheckboxField) & {
|
|
127
|
+
name: T;
|
|
128
|
+
type: FieldTypes;
|
|
129
|
+
value?: string;
|
|
130
|
+
label?: string;
|
|
131
|
+
placeholder?: string;
|
|
132
|
+
required?: boolean;
|
|
133
|
+
tooltip?: string;
|
|
134
|
+
rules?: ControllerProps['rules'];
|
|
135
|
+
order?: number;
|
|
203
136
|
};
|
|
204
|
-
declare type
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
declare type
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
137
|
+
declare type UIInputField = {
|
|
138
|
+
inputType?: InputFieldTypes;
|
|
139
|
+
maxLength?: number;
|
|
140
|
+
onKeyDown?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
141
|
+
} & InputFieldProps$1;
|
|
142
|
+
declare type UISelectField = {
|
|
143
|
+
options?: SelectOption$1[];
|
|
144
|
+
} & SelectFieldProps$1;
|
|
145
|
+
declare type UICheckboxField = {
|
|
146
|
+
checkboxLabel?: string;
|
|
147
|
+
};
|
|
148
|
+
declare type UIFields<T extends object> = UIField<keyof T>[];
|
|
149
|
+
|
|
150
|
+
declare const getInitialValuesFromFields: <T extends object>(fields: UIFields$1<T>) => DeepPartial<T>;
|
|
151
|
+
declare const isFormValid: <T extends FieldValues>(formState: FormState<T>) => boolean;
|
|
152
|
+
declare const getFieldsFromFieldSections: <T extends object>(sections: Pick<FieldSectionProps$1<T>, "fields">[]) => UIFields$1<T>;
|
|
153
|
+
|
|
154
|
+
declare const acquisitionFormMockFields: UIFields$1<Record<string, string>>;
|
|
155
|
+
declare const setPasswordMockFields: UIFields$1<SetPasswordFields>;
|
|
156
|
+
declare const loginMockFields: UIFields$1<LoginFields$1>;
|
|
157
|
+
declare const sectionMockFields: UIFields$1<Record<string, string>>;
|
|
158
|
+
declare const profileInformationMockForm: {
|
|
159
|
+
label: string;
|
|
160
|
+
fields: UIFields$1<Record<string, string>>;
|
|
161
|
+
}[];
|
|
162
|
+
|
|
163
|
+
declare type MaskConfig = Partial<{
|
|
164
|
+
maskPlaceholder: string;
|
|
165
|
+
dataModelFieldType: InputFieldTypes;
|
|
166
|
+
maskPattern: Array<string | RegExp>;
|
|
222
167
|
}>;
|
|
223
|
-
|
|
224
|
-
declare type
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
168
|
+
|
|
169
|
+
declare type InputFieldInternalConfigProps = Partial<{
|
|
170
|
+
textColor: ThemeColors$2 | string;
|
|
171
|
+
textFontSize: number;
|
|
172
|
+
placeholderTextColor: ThemeColors$2 | string;
|
|
173
|
+
placeholderTextFontSize: number;
|
|
174
|
+
verticalPadding: number;
|
|
175
|
+
horizontalPadding: number;
|
|
176
|
+
styles: StylesType;
|
|
177
|
+
wrapperStyles: StylesType;
|
|
178
|
+
}>;
|
|
179
|
+
declare type InputIconProps = {
|
|
180
|
+
name: IconNames$1;
|
|
181
|
+
onClick?: Callback$1;
|
|
234
182
|
};
|
|
235
|
-
declare type
|
|
236
|
-
|
|
237
|
-
|
|
183
|
+
declare type InputProps = Partial<{
|
|
184
|
+
value: string;
|
|
185
|
+
leftIcon: InputIconProps;
|
|
186
|
+
rightIcon: InputIconProps;
|
|
187
|
+
onBlur: Callback$1;
|
|
188
|
+
type: InputFieldTypes$1;
|
|
189
|
+
placeholder: string;
|
|
190
|
+
disabled: boolean;
|
|
191
|
+
isEditMode: boolean;
|
|
192
|
+
isError: boolean;
|
|
193
|
+
maxLength: number;
|
|
194
|
+
onChange: (value: string) => void;
|
|
195
|
+
onKeyDown: (event: react__default.KeyboardEvent<HTMLInputElement>) => void;
|
|
196
|
+
internalConfig: InputFieldInternalConfigProps;
|
|
197
|
+
config?: MaskConfig;
|
|
198
|
+
state: FormStateType$1;
|
|
199
|
+
}>;
|
|
200
|
+
declare const Input: ({ value, leftIcon, rightIcon, onChange, onBlur, disabled, isError, placeholder, isEditMode, type, internalConfig, config, ...rest }: InputProps) => JSX.Element;
|
|
201
|
+
|
|
202
|
+
declare type TextTypes = 'primary' | 'secondary' | 'error' | 'success';
|
|
203
|
+
declare type TextAlign = 'center' | 'right' | 'left';
|
|
204
|
+
declare type SeoTags = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div';
|
|
205
|
+
declare type TextProps = {
|
|
206
|
+
variant: FontSizesTypes$1;
|
|
207
|
+
layout?: 'div' | 'span';
|
|
208
|
+
type?: TextTypes;
|
|
209
|
+
styles?: StylesType;
|
|
210
|
+
color?: ThemeColors$2 | string;
|
|
211
|
+
numberOfLines?: number;
|
|
212
|
+
textAlign?: TextAlign;
|
|
213
|
+
behaveAs?: 'text' | 'button';
|
|
214
|
+
seoTag?: SeoTags;
|
|
238
215
|
};
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
isRichText?: boolean;
|
|
216
|
+
declare type TextWrapperProps = PropsWithChildren<TextProps>;
|
|
217
|
+
declare const TextWrapper: ({ children, seoTag, ...textProps }: TextWrapperProps) => JSX.Element;
|
|
218
|
+
declare const ErrorText: ({ text }: {
|
|
243
219
|
text: string;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
interface LinkAttributes {
|
|
254
|
-
id: string;
|
|
255
|
-
attributeType: 'link';
|
|
256
|
-
type: 'internalLink' | 'externalLink' | 'external_link' | 'internal_link';
|
|
257
|
-
internalLink: Nullable<string>;
|
|
258
|
-
externalLink: Nullable<string>;
|
|
259
|
-
name: string;
|
|
260
|
-
}
|
|
261
|
-
interface SelectAttributes {
|
|
262
|
-
id?: string;
|
|
263
|
-
attributeType: 'select';
|
|
264
|
-
value: string;
|
|
265
|
-
options: SelectOption$1[];
|
|
266
|
-
}
|
|
267
|
-
interface BooleanAttributes {
|
|
268
|
-
attributeType: 'boolean';
|
|
269
|
-
value: boolean;
|
|
270
|
-
}
|
|
271
|
-
interface IterableAttributes {
|
|
272
|
-
attributeType: 'iterable';
|
|
273
|
-
options: SelectOption$1[];
|
|
274
|
-
}
|
|
275
|
-
declare type DataModelFieldFormat = {
|
|
276
|
-
id: string;
|
|
277
|
-
label: string;
|
|
278
|
-
value: DataModelFieldFormatValueTypes;
|
|
279
|
-
code: DataModelFieldFormatCodeTypes;
|
|
280
|
-
config: MaskConfig$1;
|
|
220
|
+
}) => JSX.Element;
|
|
221
|
+
|
|
222
|
+
declare type IconProps = {
|
|
223
|
+
name: IconNames;
|
|
224
|
+
size?: number;
|
|
225
|
+
color?: ThemeColors$1 | string;
|
|
226
|
+
fill?: ThemeColors$1 | string;
|
|
227
|
+
pointerEvents?: 'auto' | 'none';
|
|
228
|
+
style?: CSSProperties;
|
|
281
229
|
};
|
|
282
|
-
declare
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
};
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
color:
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
attributeType: 'select';
|
|
307
|
-
options: {
|
|
308
|
-
id: OrientationType;
|
|
309
|
-
label: OrientationTypeLabel;
|
|
310
|
-
}[];
|
|
311
|
-
value: OrientationType;
|
|
312
|
-
};
|
|
313
|
-
processSteps: {
|
|
314
|
-
attributeType: 'process_steps';
|
|
315
|
-
steps: ProcessStep[];
|
|
316
|
-
};
|
|
317
|
-
}
|
|
318
|
-
interface ChecklistAttributes {
|
|
319
|
-
checklist: {
|
|
320
|
-
attributeType: 'checklist';
|
|
321
|
-
items: ChecklistItem$1[];
|
|
322
|
-
};
|
|
323
|
-
}
|
|
324
|
-
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';
|
|
325
|
-
interface BaseMolecule {
|
|
326
|
-
id: string;
|
|
327
|
-
type: MoleculeTypes;
|
|
328
|
-
instance: 'molecule';
|
|
329
|
-
metadata: MetadataType;
|
|
330
|
-
moleculeLibraryId: string;
|
|
331
|
-
organismLibraryMoleculeId: string;
|
|
332
|
-
}
|
|
333
|
-
interface ImageMolecule extends BaseMolecule {
|
|
334
|
-
type: 'image';
|
|
335
|
-
attributes: Partial<{
|
|
336
|
-
image: ImageAttributes;
|
|
337
|
-
altText: Omit<TextAttributes, 'isRichText'>;
|
|
338
|
-
link: LinkAttributes;
|
|
339
|
-
}>;
|
|
340
|
-
config: {
|
|
341
|
-
props?: Omit<ImageProps$1, 'src' | 'link' | 'altText'>;
|
|
342
|
-
};
|
|
343
|
-
}
|
|
344
|
-
interface TextMoleculeType extends BaseMolecule {
|
|
345
|
-
type: 'text';
|
|
346
|
-
attributes: Partial<{
|
|
347
|
-
text: TextAttributes;
|
|
348
|
-
seoStyle: SelectAttributes;
|
|
349
|
-
fontVariant: SelectAttributes;
|
|
350
|
-
color: ColorAttributes;
|
|
351
|
-
}>;
|
|
352
|
-
config: {
|
|
353
|
-
props?: TextMoleculeProps$1;
|
|
354
|
-
};
|
|
355
|
-
}
|
|
356
|
-
interface ButtonMolecule extends BaseMolecule {
|
|
357
|
-
type: 'button';
|
|
358
|
-
attributes: Partial<{
|
|
359
|
-
title: TextAttributes;
|
|
360
|
-
action: ActionAttributes;
|
|
361
|
-
}>;
|
|
362
|
-
config: {
|
|
363
|
-
props?: Partial<Omit<ButtonProps$1, 'disabled' | 'children' | 'link' | 'text' | 'onClick' | 'elementId'>>;
|
|
364
|
-
};
|
|
365
|
-
}
|
|
366
|
-
interface VideoMolecule extends BaseMolecule {
|
|
367
|
-
type: 'video';
|
|
368
|
-
attributes: Partial<{
|
|
369
|
-
video: VideoAttributes;
|
|
370
|
-
altText: Omit<TextAttributes, 'isRichText'>;
|
|
371
|
-
autoPlayVideo: BooleanAttributes;
|
|
372
|
-
enableCoverImage: BooleanAttributes;
|
|
373
|
-
coverImage: ImageAttributes;
|
|
374
|
-
}>;
|
|
375
|
-
config: {
|
|
376
|
-
props: Partial<{
|
|
377
|
-
width: number;
|
|
378
|
-
styles: StylesType;
|
|
379
|
-
}>;
|
|
380
|
-
};
|
|
381
|
-
}
|
|
382
|
-
interface TabGroupMolecule extends BaseMolecule {
|
|
383
|
-
type: 'header_tab_group';
|
|
384
|
-
attributes: Partial<{
|
|
385
|
-
tabs: {
|
|
386
|
-
tabKey: string;
|
|
387
|
-
text: string;
|
|
388
|
-
disabled: boolean;
|
|
389
|
-
divider: boolean;
|
|
390
|
-
}[];
|
|
391
|
-
activeTabKey: string;
|
|
392
|
-
attributeType: 'tab_group';
|
|
393
|
-
}>;
|
|
394
|
-
config: {
|
|
395
|
-
props: TabGroupProps$1;
|
|
396
|
-
wide: AdditionalTabContainerProps$1;
|
|
397
|
-
compact: AdditionalTabContainerProps$1;
|
|
398
|
-
};
|
|
399
|
-
}
|
|
400
|
-
interface TextInputMolecule extends BaseMolecule {
|
|
401
|
-
type: 'input_field';
|
|
402
|
-
attributes: Partial<{
|
|
403
|
-
label: TextAttributes;
|
|
404
|
-
required: BooleanAttributes;
|
|
405
|
-
dataModelField: DataConnectionAttributes;
|
|
406
|
-
conditionConfig: ConditionConfigAttributes;
|
|
407
|
-
}>;
|
|
408
|
-
config: {
|
|
409
|
-
props: InputFieldProps$1;
|
|
410
|
-
};
|
|
411
|
-
}
|
|
412
|
-
interface SelectFieldMolecule extends BaseMolecule {
|
|
413
|
-
type: 'select_field';
|
|
414
|
-
attributes: Partial<{
|
|
415
|
-
label: TextAttributes;
|
|
416
|
-
required: BooleanAttributes;
|
|
417
|
-
options: IterableAttributes;
|
|
418
|
-
dataModelField: DataConnectionAttributes;
|
|
419
|
-
conditionConfig: ConditionConfigAttributes;
|
|
420
|
-
}>;
|
|
421
|
-
config: {
|
|
422
|
-
props: SelectFieldProps$1;
|
|
423
|
-
};
|
|
424
|
-
}
|
|
425
|
-
interface RadioButtonFieldMolecule extends BaseMolecule {
|
|
426
|
-
type: 'radio_button_field';
|
|
427
|
-
attributes: Partial<{
|
|
428
|
-
label: TextAttributes;
|
|
429
|
-
required: BooleanAttributes;
|
|
430
|
-
options: IterableAttributes;
|
|
431
|
-
dataModelField: DataConnectionAttributes;
|
|
432
|
-
conditionConfig: ConditionConfigAttributes;
|
|
433
|
-
}>;
|
|
434
|
-
config: {
|
|
435
|
-
props: RadioButtonFieldProps$1<string>;
|
|
436
|
-
};
|
|
437
|
-
}
|
|
438
|
-
interface CheckboxFieldMolecule extends BaseMolecule {
|
|
439
|
-
type: 'checkbox_field';
|
|
440
|
-
attributes: Partial<{
|
|
441
|
-
label: TextAttributes;
|
|
442
|
-
required: BooleanAttributes;
|
|
443
|
-
options: IterableAttributes;
|
|
444
|
-
dataModelField: DataConnectionAttributes;
|
|
445
|
-
conditionConfig: ConditionConfigAttributes;
|
|
446
|
-
}>;
|
|
447
|
-
config: {
|
|
448
|
-
props: CheckboxFieldProps$1;
|
|
449
|
-
};
|
|
450
|
-
}
|
|
451
|
-
interface ConsentFieldMolecule extends BaseMolecule {
|
|
452
|
-
type: 'consent';
|
|
453
|
-
attributes: Partial<{
|
|
454
|
-
consent: Partial<{
|
|
455
|
-
attributeType: 'consent';
|
|
456
|
-
consent: ConsentType$1;
|
|
457
|
-
required: BooleanAttributes;
|
|
458
|
-
}>;
|
|
459
|
-
conditionConfig: ConditionConfigAttributes;
|
|
460
|
-
}>;
|
|
461
|
-
config: {
|
|
462
|
-
props: Partial<{
|
|
463
|
-
state: 'field_error';
|
|
464
|
-
}>;
|
|
465
|
-
};
|
|
466
|
-
}
|
|
467
|
-
interface LinkMolecule extends BaseMolecule {
|
|
468
|
-
type: 'link';
|
|
469
|
-
attributes: {
|
|
470
|
-
text: TextAttributes;
|
|
471
|
-
link: LinkAttributes;
|
|
472
|
-
};
|
|
473
|
-
config: {
|
|
474
|
-
props: Omit<LinkProps$1, '$variant' | '$styles'> & Partial<{
|
|
475
|
-
variant: LinkVariant$1;
|
|
476
|
-
styles: StylesType;
|
|
477
|
-
}>;
|
|
478
|
-
};
|
|
479
|
-
}
|
|
480
|
-
interface PasswordSetupMolecule extends BaseMolecule {
|
|
481
|
-
type: 'password_setup_field';
|
|
482
|
-
attributes: Partial<{
|
|
483
|
-
passwordFieldLabel: TextAttributes;
|
|
484
|
-
reenteredPasswordFieldLabel: TextAttributes;
|
|
485
|
-
passwordFieldRequired: BooleanAttributes;
|
|
486
|
-
reenteredPasswordFieldRequired: BooleanAttributes;
|
|
487
|
-
dataModelField: DataConnectionAttributes;
|
|
488
|
-
}>;
|
|
489
|
-
config: {
|
|
490
|
-
props: {
|
|
491
|
-
validationLabel?: string;
|
|
492
|
-
state?: FormStateType;
|
|
493
|
-
passwordInputProps: InputFieldProps$1;
|
|
494
|
-
reenteredPasswordInputProps: InputFieldProps$1;
|
|
495
|
-
};
|
|
496
|
-
};
|
|
497
|
-
}
|
|
498
|
-
interface AccountButtonMolecule extends BaseMolecule {
|
|
499
|
-
type: 'account_button';
|
|
500
|
-
config: {
|
|
501
|
-
props: AvatarDropdownProps$1<AvatarDropdownMenuConfigType$1>;
|
|
502
|
-
};
|
|
503
|
-
}
|
|
504
|
-
interface ProcessStepsMoleculeType extends BaseMolecule {
|
|
505
|
-
type: 'process_steps';
|
|
506
|
-
organismMoleculeLibraryId: string;
|
|
507
|
-
attributes: ProcessStepsAttributes;
|
|
508
|
-
}
|
|
509
|
-
interface ChecklistsMolecule extends BaseMolecule {
|
|
510
|
-
type: 'checklist';
|
|
511
|
-
config: {
|
|
512
|
-
props: {
|
|
513
|
-
gap: SizesTypes$1;
|
|
514
|
-
} & CheckboxInternalConfigProps$1;
|
|
515
|
-
};
|
|
516
|
-
attributes: ChecklistAttributes;
|
|
517
|
-
}
|
|
518
|
-
declare type Molecule = StrictUnion<ImageMolecule | TextMoleculeType | ButtonMolecule | VideoMolecule | TabGroupMolecule | TextInputMolecule | SelectFieldMolecule | RadioButtonFieldMolecule | CheckboxFieldMolecule | ConsentFieldMolecule | LinkMolecule | PasswordSetupMolecule | AccountButtonMolecule | ProcessStepsMoleculeType | ChecklistsMolecule> & Partial<{
|
|
519
|
-
form: UseFormReturn<any>;
|
|
520
|
-
formData: AnyObject$1;
|
|
521
|
-
setFormData: Dispatch<SetStateAction<AnyObject$1>>;
|
|
522
|
-
}>;
|
|
523
|
-
declare type SlateValueChildType = {
|
|
524
|
-
id: string;
|
|
525
|
-
text: string;
|
|
526
|
-
variable?: {
|
|
527
|
-
dataModelField: DataConnectionValues;
|
|
528
|
-
text: string;
|
|
529
|
-
isStateConfigPresent?: boolean;
|
|
530
|
-
};
|
|
230
|
+
declare const availableIcons: {
|
|
231
|
+
ArrowRight: ({ color, ...props }: Omit<IconProps, "name">) => JSX.Element;
|
|
232
|
+
Bell: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
|
233
|
+
Bookmark: ({ fill, color, size, ...props }: Omit<IconProps, "name">) => JSX.Element;
|
|
234
|
+
CaretDown: ({ color, size, }: Omit<IconProps, "name">) => JSX.Element;
|
|
235
|
+
CaretLeft: ({ color, size, ...props }: Omit<IconProps, "name">) => JSX.Element;
|
|
236
|
+
CaretRight: ({ color, size, ...props }: Omit<IconProps, "name">) => JSX.Element;
|
|
237
|
+
CaretUp: ({ color, ...props }: Omit<IconProps, "name">) => JSX.Element;
|
|
238
|
+
Check: ({ size, color, }: Omit<IconProps, "name">) => JSX.Element;
|
|
239
|
+
Close: ({ size, color, }: Omit<IconProps, "name">) => JSX.Element;
|
|
240
|
+
Edit: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
|
241
|
+
Filter: ({ size, color, }: Omit<IconProps, "name">) => JSX.Element;
|
|
242
|
+
Hide: ({ color, size }: Omit<IconProps, "name">) => JSX.Element;
|
|
243
|
+
Info: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
|
244
|
+
InfoBoxIcon: ({ color, size }: Omit<IconProps, "name">) => JSX.Element;
|
|
245
|
+
Mail: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
|
246
|
+
Menu: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
|
247
|
+
Minus: ({ size, color, }: Omit<IconProps, "name">) => JSX.Element;
|
|
248
|
+
Mobile: ({ size, color, }: Omit<IconProps, "name">) => JSX.Element;
|
|
249
|
+
Play: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
|
250
|
+
Save: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
|
251
|
+
Search: ({ size, color, ...props }: Omit<IconProps, "name">) => JSX.Element;
|
|
252
|
+
View: ({ color, size, }: Omit<IconProps, "name">) => JSX.Element;
|
|
253
|
+
Warning: ({ size, color, }: Omit<IconProps, "name">) => JSX.Element;
|
|
531
254
|
};
|
|
255
|
+
declare type IconNames = keyof typeof availableIcons;
|
|
256
|
+
declare const Icon: ({ name, color, ...props }: IconProps) => JSX.Element;
|
|
532
257
|
|
|
533
|
-
declare type
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
declare type ContainerAlignItemsType = 'start' | 'center' | 'end' | 'stretch';
|
|
538
|
-
declare type ContainerScrollBehaviourType = 'vertical' | 'horizontal' | 'auto' | 'none';
|
|
539
|
-
declare type StateActionType = 'visible' | 'disabled';
|
|
540
|
-
declare type StateEventType = 'click' | 'view';
|
|
541
|
-
declare type StateListenerConfigType = {
|
|
542
|
-
role: 'stateListener';
|
|
543
|
-
stateKey: string;
|
|
544
|
-
stateValue: string | boolean;
|
|
545
|
-
defaultState: Partial<Record<StateActionType, boolean>>;
|
|
546
|
-
action: Partial<Record<StateActionType, boolean>>;
|
|
547
|
-
};
|
|
548
|
-
declare type StateModifierConfigType = {
|
|
549
|
-
role: 'stateModifier';
|
|
550
|
-
stateKey: string;
|
|
551
|
-
event: StateEventType;
|
|
552
|
-
};
|
|
553
|
-
declare type MetadataStateConfig = StateListenerConfigType | StateModifierConfigType;
|
|
554
|
-
declare type MetadataType = AnyObject$1 & Partial<{
|
|
555
|
-
stateConfig: MetadataStateConfig[];
|
|
556
|
-
referenceName: string;
|
|
557
|
-
isAction: boolean;
|
|
558
|
-
isTrigger: boolean;
|
|
559
|
-
notEditable: boolean;
|
|
560
|
-
hasOwnButton: boolean;
|
|
561
|
-
stateListenerId: string;
|
|
562
|
-
configurationPath: string;
|
|
563
|
-
}>;
|
|
564
|
-
declare type SliderProps = {
|
|
565
|
-
autoplay?: boolean;
|
|
566
|
-
autoplayDuration?: number;
|
|
567
|
-
};
|
|
568
|
-
declare type FormStepContainerProps = {
|
|
569
|
-
formStepName: string;
|
|
570
|
-
order: number;
|
|
571
|
-
conditionConfig: ConditionConfig;
|
|
572
|
-
formStepStyles?: CSSObject;
|
|
573
|
-
};
|
|
574
|
-
declare type FormContainerProps = {
|
|
575
|
-
mode: keyof ValidationMode;
|
|
258
|
+
declare type SpacerProps = {
|
|
259
|
+
width?: SizesTypes$1 | number;
|
|
260
|
+
height?: SizesTypes$1 | number;
|
|
261
|
+
layout?: 'div' | 'span';
|
|
576
262
|
};
|
|
577
|
-
declare
|
|
578
|
-
|
|
579
|
-
declare
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
paddingTop: SizesTypes$1;
|
|
587
|
-
paddingBottom: SizesTypes$1;
|
|
588
|
-
paddingLeft: SizesTypes$1;
|
|
589
|
-
paddingRight: SizesTypes$1;
|
|
590
|
-
autoplay: boolean;
|
|
591
|
-
autoplayDuration: number;
|
|
592
|
-
formProps: FormContainerProps;
|
|
593
|
-
formStepProps: FormStepContainerProps;
|
|
594
|
-
border: string;
|
|
595
|
-
activeChildrenIds: string[];
|
|
596
|
-
activeOrganismIds: string[];
|
|
597
|
-
padding: Padding;
|
|
598
|
-
}>;
|
|
599
|
-
declare type AdditionalContainerProps = Partial<{
|
|
600
|
-
containerStyle: CSSObject;
|
|
601
|
-
containerProps: ContainerPropsType;
|
|
602
|
-
}>;
|
|
603
|
-
declare type ContainerProps = PropsWithChildren<{
|
|
604
|
-
type: ContainerType;
|
|
605
|
-
metadata: MetadataType;
|
|
263
|
+
declare const Spacer: styled_components.StyledComponent<"div", styled_components.DefaultTheme, SpacerProps, never>;
|
|
264
|
+
|
|
265
|
+
declare const Spinner: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {
|
|
266
|
+
color?: ThemeColors$2 | undefined;
|
|
267
|
+
size?: SizesTypes$2 | undefined;
|
|
268
|
+
}, never>;
|
|
269
|
+
|
|
270
|
+
declare type RegularImageProps = {
|
|
271
|
+
src: string;
|
|
606
272
|
} & Partial<{
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
}
|
|
613
|
-
declare
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
dataValue: Nullable<string>;
|
|
639
|
-
connectedTo: Nullable<string>;
|
|
640
|
-
};
|
|
641
|
-
declare type SegmentationType = 'simple' | 'advanced';
|
|
642
|
-
declare type ConditionConfig = Nullable<{
|
|
643
|
-
id: string;
|
|
644
|
-
segmentationType: SegmentationType;
|
|
645
|
-
criteriaList: ConditionCriteria[];
|
|
646
|
-
}>;
|
|
647
|
-
declare type FormDataStateConfig = {
|
|
648
|
-
value?: string | number;
|
|
649
|
-
} & Record<string, {
|
|
650
|
-
value?: string | number;
|
|
273
|
+
alt: string;
|
|
274
|
+
width: number | string;
|
|
275
|
+
height: number | string;
|
|
276
|
+
onClick: Callback$1;
|
|
277
|
+
cornerRadius: number;
|
|
278
|
+
}> & OverrideStyles;
|
|
279
|
+
declare const RegularImage: styled_components.StyledComponent<"img", styled_components.DefaultTheme, {
|
|
280
|
+
src: string;
|
|
281
|
+
} & Partial<{
|
|
282
|
+
alt: string;
|
|
283
|
+
width: number | string;
|
|
284
|
+
height: number | string;
|
|
285
|
+
onClick: Callback$1;
|
|
286
|
+
cornerRadius: number;
|
|
287
|
+
}> & OverrideStyles, never>;
|
|
288
|
+
declare const BackgroundImage: styled_components.StyledComponent<"img", styled_components.DefaultTheme, {
|
|
289
|
+
src: string;
|
|
290
|
+
} & Partial<{
|
|
291
|
+
alt: string;
|
|
292
|
+
width: number | string;
|
|
293
|
+
height: number | string;
|
|
294
|
+
onClick: Callback$1;
|
|
295
|
+
cornerRadius: number;
|
|
296
|
+
}> & OverrideStyles, never>;
|
|
297
|
+
|
|
298
|
+
declare type LinkVariant = 'link' | 'custom';
|
|
299
|
+
declare type TextButtonProps = Pick<BaseButtonProps$1, 'disabled' | 'onClick' | 'children' | 'colorTheme' | 'size'> & Partial<{
|
|
300
|
+
buttonLink: string;
|
|
301
|
+
elementId: string;
|
|
302
|
+
$styles: StylesType;
|
|
303
|
+
$variant: LinkVariant;
|
|
651
304
|
}>;
|
|
652
|
-
declare
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
305
|
+
declare const TextButton: styled_components.StyledComponent<"a", styled_components.DefaultTheme, {
|
|
306
|
+
target: "_blank";
|
|
307
|
+
} & Pick<BaseButtonProps$1, "children" | "onClick" | "disabled" | "size" | "colorTheme"> & Partial<{
|
|
308
|
+
buttonLink: string;
|
|
309
|
+
elementId: string;
|
|
310
|
+
$styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
|
311
|
+
$variant: LinkVariant;
|
|
312
|
+
}>, "target">;
|
|
313
|
+
|
|
314
|
+
declare type ValidationTagStatus = 'DEFAULT' | 'ERROR' | 'SUCCESS';
|
|
315
|
+
declare type ValidationTagProps = {
|
|
316
|
+
status: ValidationTagStatus;
|
|
317
|
+
text: string;
|
|
660
318
|
};
|
|
319
|
+
declare const ValidationTag: ({ text, status }: ValidationTagProps) => JSX.Element;
|
|
661
320
|
|
|
662
|
-
declare type
|
|
663
|
-
|
|
321
|
+
declare type TooltipProps = Pick<TooltipProps$1, 'overlay' | 'placement' | 'trigger' | 'visible' | 'children'> & {
|
|
322
|
+
styles?: StylesType;
|
|
323
|
+
};
|
|
324
|
+
declare const StyleWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, OverrideStyles, never>;
|
|
325
|
+
declare const Tooltip: ({ trigger, placement, styles, ...props }: TooltipProps) => JSX.Element;
|
|
664
326
|
|
|
665
|
-
declare type
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
declare const ContainerWrapper: _emotion_styled.StyledComponent<{
|
|
671
|
-
theme?: Theme | undefined;
|
|
672
|
-
as?: react.ElementType<any> | undefined;
|
|
673
|
-
} & Pick<ContainerProps$1, "type"> & {
|
|
674
|
-
containerProps?: Partial<{
|
|
675
|
-
position: containers_types_types.ContainerPositionType;
|
|
676
|
-
alignItems: containers_types_types.ContainerAlignItemsType;
|
|
677
|
-
scrollBehaviour: containers_types_types.ContainerScrollBehaviourType;
|
|
678
|
-
cornerRadius: number | SizesTypes$1;
|
|
679
|
-
gap: SizesTypes$1;
|
|
680
|
-
styles: _emotion_react.SerializedStyles;
|
|
681
|
-
paddingTop: SizesTypes$1;
|
|
682
|
-
paddingBottom: SizesTypes$1;
|
|
683
|
-
paddingLeft: SizesTypes$1;
|
|
684
|
-
paddingRight: SizesTypes$1;
|
|
685
|
-
autoplay: boolean;
|
|
686
|
-
autoplayDuration: number;
|
|
687
|
-
formProps: containers_types_types.FormContainerProps;
|
|
688
|
-
formStepProps: containers_types_types.FormStepContainerProps;
|
|
689
|
-
border: string;
|
|
690
|
-
activeChildrenIds: string[];
|
|
691
|
-
activeOrganismIds: string[];
|
|
692
|
-
padding: containers_types_types.Padding;
|
|
693
|
-
}> | undefined;
|
|
694
|
-
metadata?: AnyObject | undefined;
|
|
695
|
-
}, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
696
|
-
|
|
697
|
-
declare type FormOrganismItemProps = {
|
|
698
|
-
item: ContainerComponentProps$2;
|
|
699
|
-
activeChildrenIds: string[];
|
|
700
|
-
formData?: AnyObject$1;
|
|
701
|
-
setFormData?: Dispatch<SetStateAction<AnyObject$1>>;
|
|
702
|
-
isMobile?: boolean;
|
|
703
|
-
};
|
|
704
|
-
declare const FormOrganismItem: ({ formData, setFormData, isMobile, ...props }: FormOrganismItemProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
705
|
-
|
|
706
|
-
declare const getFieldPlaceholder: (type: FieldTypes$1, title?: string) => string;
|
|
707
|
-
|
|
708
|
-
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';
|
|
709
|
-
declare type FieldTypes = 'input' | 'select' | 'checkbox';
|
|
710
|
-
declare type UIField<T = string> = (UIInputField & UISelectField & UICheckboxField) & {
|
|
711
|
-
name: T;
|
|
712
|
-
type: FieldTypes;
|
|
713
|
-
value?: string;
|
|
714
|
-
label?: string;
|
|
715
|
-
placeholder?: string;
|
|
716
|
-
required?: boolean;
|
|
717
|
-
tooltip?: string;
|
|
718
|
-
rules?: ControllerProps['rules'];
|
|
719
|
-
order?: number;
|
|
720
|
-
};
|
|
721
|
-
declare type UIInputField = {
|
|
722
|
-
inputType?: InputFieldTypes;
|
|
723
|
-
maxLength?: number;
|
|
724
|
-
onKeyDown?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
725
|
-
} & InputFieldProps$1;
|
|
726
|
-
declare type UISelectField = {
|
|
727
|
-
options?: SelectOption$1[];
|
|
728
|
-
} & SelectFieldProps$1;
|
|
729
|
-
declare type UICheckboxField = {
|
|
730
|
-
checkboxLabel?: string;
|
|
731
|
-
};
|
|
732
|
-
declare type UIFields<T extends object> = UIField<keyof T>[];
|
|
733
|
-
|
|
734
|
-
declare const getInitialValuesFromFields: <T extends object>(fields: UIFields$1<T>) => DeepPartial<T>;
|
|
735
|
-
declare const isFormValid: <T extends FieldValues>(formState: FormState<T>) => boolean;
|
|
736
|
-
declare const getFieldsFromFieldSections: <T extends object>(sections: Pick<FieldSectionProps$1<T>, "fields">[]) => UIFields$1<T>;
|
|
737
|
-
|
|
738
|
-
declare type MaskConfig = {
|
|
739
|
-
maskPlaceholder?: string;
|
|
740
|
-
maskPattern?: Array<string | RegExp>;
|
|
741
|
-
dataModelFieldType: DataModelFieldFormatCodeTypes;
|
|
742
|
-
};
|
|
743
|
-
|
|
744
|
-
declare type InputFieldInternalConfigProps = Partial<{
|
|
745
|
-
textColor: ThemeColors$2 | string;
|
|
746
|
-
textFontSize: number;
|
|
747
|
-
placeholderTextColor: ThemeColors$2 | string;
|
|
748
|
-
placeholderTextFontSize: number;
|
|
749
|
-
verticalPadding: number;
|
|
750
|
-
horizontalPadding: number;
|
|
751
|
-
styles: StylesType;
|
|
752
|
-
wrapperStyles: StylesType;
|
|
753
|
-
}>;
|
|
754
|
-
declare type InputIconProps = {
|
|
755
|
-
name: IconNames$1;
|
|
756
|
-
onClick?: Callback$1;
|
|
757
|
-
};
|
|
758
|
-
declare type InputProps = Partial<{
|
|
759
|
-
value: string;
|
|
760
|
-
leftIcon: InputIconProps;
|
|
761
|
-
rightIcon: InputIconProps;
|
|
762
|
-
onBlur: Callback$1;
|
|
763
|
-
type: InputFieldTypes$1;
|
|
764
|
-
placeholder: string;
|
|
765
|
-
disabled: boolean;
|
|
766
|
-
isEditMode: boolean;
|
|
767
|
-
isError: boolean;
|
|
768
|
-
maxLength: number;
|
|
769
|
-
onChange: (value: string) => void;
|
|
770
|
-
onKeyDown: (event: react__default.KeyboardEvent<HTMLInputElement>) => void;
|
|
771
|
-
internalConfig: InputFieldInternalConfigProps;
|
|
772
|
-
config?: MaskConfig;
|
|
773
|
-
state: FormStateType$1;
|
|
774
|
-
}>;
|
|
775
|
-
declare const Input: ({ value, leftIcon, rightIcon, onChange, onBlur, disabled, isError, placeholder, isEditMode, type, internalConfig, config, ...rest }: InputProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
776
|
-
|
|
777
|
-
declare type TextTypes = 'primary' | 'secondary' | 'error' | 'success';
|
|
778
|
-
declare type TextAlign = 'center' | 'right' | 'left';
|
|
779
|
-
declare type SeoTags = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div';
|
|
780
|
-
declare type TextProps = {
|
|
781
|
-
variant: FontSizesTypes$1;
|
|
782
|
-
layout?: 'div' | 'span';
|
|
783
|
-
type?: TextTypes;
|
|
784
|
-
styles?: StylesType;
|
|
785
|
-
color?: ThemeColors$2 | string;
|
|
786
|
-
numberOfLines?: number;
|
|
787
|
-
textAlign?: TextAlign;
|
|
788
|
-
behaveAs?: 'text' | 'button';
|
|
789
|
-
seoTag?: SeoTags;
|
|
790
|
-
htmlElementId?: string;
|
|
791
|
-
};
|
|
792
|
-
declare type TextWrapperProps = PropsWithChildren<TextProps>;
|
|
793
|
-
declare const TextWrapper: ({ children, seoTag, ...textProps }: TextWrapperProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
794
|
-
declare const ErrorText: ({ text }: {
|
|
795
|
-
text: string;
|
|
796
|
-
}) => _emotion_react_jsx_runtime.JSX.Element;
|
|
797
|
-
|
|
798
|
-
declare type IconProps = {
|
|
799
|
-
name: IconNames;
|
|
800
|
-
size?: number;
|
|
801
|
-
color?: ThemeColors$1 | string;
|
|
802
|
-
fill?: ThemeColors$1 | string;
|
|
803
|
-
pointerEvents?: 'auto' | 'none';
|
|
804
|
-
style?: CSSObject;
|
|
805
|
-
};
|
|
806
|
-
declare const availableIcons: {
|
|
807
|
-
ArrowRight: ({ color, ...props }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
808
|
-
Bell: ({ size, color }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
809
|
-
Bookmark: ({ fill, color, size, ...props }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
810
|
-
CaretDown: ({ color, size, }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
811
|
-
CaretLeft: ({ color, size, ...props }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
812
|
-
CaretRight: ({ color, size, ...props }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
813
|
-
CaretUp: ({ color, ...props }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
814
|
-
Check: ({ size, color, }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
815
|
-
Close: ({ size, color, }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
816
|
-
Edit: ({ size, color }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
817
|
-
Filter: ({ size, color, }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
818
|
-
Hide: ({ color, size }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
819
|
-
Info: ({ size, color }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
820
|
-
InfoBoxIcon: ({ color, size }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
821
|
-
Mail: ({ size, color }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
822
|
-
Menu: ({ size, color }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
823
|
-
Minus: ({ size, color, }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
824
|
-
Mobile: ({ size, color, }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
825
|
-
Play: ({ size, color }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
826
|
-
Save: ({ size, color }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
827
|
-
Search: ({ size, color, ...props }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
828
|
-
View: ({ color, size, }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
829
|
-
Warning: ({ size, color, }: Omit<IconProps, "name">) => _emotion_react_jsx_runtime.JSX.Element;
|
|
830
|
-
};
|
|
831
|
-
declare type IconNames = keyof typeof availableIcons;
|
|
832
|
-
declare const Icon: ({ name, color, ...props }: IconProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
833
|
-
|
|
834
|
-
declare type SpacerProps = {
|
|
835
|
-
width?: SizesTypes$1 | number;
|
|
836
|
-
height?: SizesTypes$1 | number;
|
|
837
|
-
layout?: 'div' | 'span';
|
|
838
|
-
};
|
|
839
|
-
declare const Spacer: _emotion_styled.StyledComponent<{
|
|
840
|
-
theme?: _emotion_react.Theme | undefined;
|
|
841
|
-
as?: react.ElementType<any> | undefined;
|
|
842
|
-
} & SpacerProps, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
843
|
-
|
|
844
|
-
declare const Spinner: _emotion_styled.StyledComponent<{
|
|
845
|
-
theme?: _emotion_react.Theme | undefined;
|
|
846
|
-
as?: react.ElementType<any> | undefined;
|
|
847
|
-
} & {
|
|
848
|
-
color?: ThemeColors$2 | undefined;
|
|
849
|
-
size?: SizesTypes$2 | undefined;
|
|
850
|
-
}, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
851
|
-
|
|
852
|
-
declare type RegularImageProps = {
|
|
853
|
-
src: string;
|
|
854
|
-
} & Partial<{
|
|
855
|
-
alt: string;
|
|
856
|
-
width: number | string;
|
|
857
|
-
height: number | string;
|
|
858
|
-
onClick: Callback$1;
|
|
859
|
-
cornerRadius: SizesTypes$1 | number;
|
|
860
|
-
}> & OverrideStyles;
|
|
861
|
-
declare const RegularImage: _emotion_styled.StyledComponent<{
|
|
862
|
-
theme?: _emotion_react.Theme | undefined;
|
|
863
|
-
as?: react.ElementType<any> | undefined;
|
|
864
|
-
} & {
|
|
865
|
-
src: string;
|
|
866
|
-
} & Partial<{
|
|
867
|
-
alt: string;
|
|
868
|
-
width: number | string;
|
|
869
|
-
height: number | string;
|
|
870
|
-
onClick: Callback$1;
|
|
871
|
-
cornerRadius: SizesTypes$1 | number;
|
|
872
|
-
}> & OverrideStyles, react.DetailedHTMLProps<react.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
873
|
-
declare const BackgroundImage: _emotion_styled.StyledComponent<{
|
|
874
|
-
theme?: _emotion_react.Theme | undefined;
|
|
875
|
-
as?: react.ElementType<any> | undefined;
|
|
876
|
-
} & {
|
|
877
|
-
src: string;
|
|
878
|
-
} & Partial<{
|
|
879
|
-
alt: string;
|
|
880
|
-
width: number | string;
|
|
881
|
-
height: number | string;
|
|
882
|
-
onClick: Callback$1;
|
|
883
|
-
cornerRadius: SizesTypes$1 | number;
|
|
884
|
-
}> & OverrideStyles & react.ClassAttributes<HTMLImageElement> & react.ImgHTMLAttributes<HTMLImageElement> & {
|
|
885
|
-
theme?: _emotion_react.Theme | undefined;
|
|
886
|
-
}, {}, {}>;
|
|
887
|
-
|
|
888
|
-
declare type LinkVariant = 'link' | 'custom';
|
|
889
|
-
declare type TextButtonProps = Pick<BaseButtonProps$1, 'disabled' | 'onClick' | 'children' | 'colorTheme' | 'size'> & Partial<{
|
|
890
|
-
buttonLink: string;
|
|
891
|
-
elementId: string;
|
|
892
|
-
$styles: StylesType;
|
|
893
|
-
$variant: LinkVariant;
|
|
894
|
-
textColor: string;
|
|
895
|
-
}>;
|
|
896
|
-
declare const BaseTextButton: react__default.FC<TextButtonProps & react__default.AnchorHTMLAttributes<HTMLAnchorElement>>;
|
|
897
|
-
declare const TextButton: _emotion_styled.StyledComponent<Pick<BaseButtonProps$1, "children" | "disabled" | "size" | "onClick" | "colorTheme"> & Partial<{
|
|
898
|
-
buttonLink: string;
|
|
899
|
-
elementId: string;
|
|
900
|
-
$styles: StylesType;
|
|
901
|
-
$variant: LinkVariant;
|
|
902
|
-
textColor: string;
|
|
903
|
-
}> & react__default.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
904
|
-
theme?: _emotion_react.Theme | undefined;
|
|
905
|
-
}, {}, {}>;
|
|
906
|
-
|
|
907
|
-
declare type ValidationTagStatus = 'DEFAULT' | 'ERROR' | 'SUCCESS';
|
|
908
|
-
declare type ValidationTagProps = {
|
|
909
|
-
status: ValidationTagStatus;
|
|
910
|
-
text: string;
|
|
911
|
-
};
|
|
912
|
-
declare const ValidationTag: ({ text, status }: ValidationTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
913
|
-
|
|
914
|
-
declare type TooltipProps = Pick<TooltipProps$1, 'overlay' | 'placement' | 'trigger' | 'visible' | 'children'> & {
|
|
915
|
-
styles?: StylesType;
|
|
916
|
-
};
|
|
917
|
-
declare const StyleWrapper: _emotion_styled.StyledComponent<{
|
|
918
|
-
theme?: _emotion_react.Theme | undefined;
|
|
919
|
-
as?: react.ElementType<any> | undefined;
|
|
920
|
-
} & OverrideStyles, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
921
|
-
declare const Tooltip: ({ trigger, placement, styles, ...props }: TooltipProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
922
|
-
|
|
923
|
-
declare type ToastType = 'success' | 'infoTierOne' | 'infoTierTwo' | 'warning' | 'error';
|
|
924
|
-
declare type ToastParams = {
|
|
925
|
-
message: string;
|
|
926
|
-
type?: ToastType;
|
|
927
|
-
duration?: number;
|
|
327
|
+
declare type ToastType = 'success' | 'infoTierOne' | 'infoTierTwo' | 'warning' | 'error';
|
|
328
|
+
declare type ToastParams = {
|
|
329
|
+
message: string;
|
|
330
|
+
type?: ToastType;
|
|
331
|
+
duration?: number;
|
|
928
332
|
};
|
|
929
333
|
|
|
930
334
|
declare const toast: ({ message, type, duration }: ToastParams) => void | undefined;
|
|
@@ -939,7 +343,7 @@ declare type HorizontalButtonsProps = {
|
|
|
939
343
|
disabled?: boolean;
|
|
940
344
|
error?: boolean;
|
|
941
345
|
};
|
|
942
|
-
declare const HorizontalButtons: ({ onClick, disabled, buttonOptions, selectedButtonId, error, }: HorizontalButtonsProps) =>
|
|
346
|
+
declare const HorizontalButtons: ({ onClick, disabled, buttonOptions, selectedButtonId, error, }: HorizontalButtonsProps) => JSX.Element;
|
|
943
347
|
|
|
944
348
|
declare type AvatarProps = {
|
|
945
349
|
size?: SizesTypes$1 | number;
|
|
@@ -957,19 +361,13 @@ declare type AvatarProps = {
|
|
|
957
361
|
};
|
|
958
362
|
onPress?: Callback$1;
|
|
959
363
|
};
|
|
960
|
-
declare const Avatar: ({ size, withShadow, label, backgroundColor, onPress, content: { initials, iconName, imageUrl }, textConfig: { color, font }, }: AvatarProps) =>
|
|
364
|
+
declare const Avatar: ({ size, withShadow, label, backgroundColor, onPress, content: { initials, iconName, imageUrl }, textConfig: { color, font }, }: AvatarProps) => JSX.Element;
|
|
961
365
|
|
|
962
|
-
declare type
|
|
366
|
+
declare type HorizontalPaddingProps = {
|
|
963
367
|
padding: SizesTypes$1 | number;
|
|
964
368
|
};
|
|
965
|
-
declare const HorizontalPadding:
|
|
966
|
-
|
|
967
|
-
as?: react.ElementType<any> | undefined;
|
|
968
|
-
} & PaddingProps, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
969
|
-
declare const VerticalPadding: _emotion_styled.StyledComponent<{
|
|
970
|
-
theme?: _emotion_react.Theme | undefined;
|
|
971
|
-
as?: react.ElementType<any> | undefined;
|
|
972
|
-
} & PaddingProps, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
369
|
+
declare const HorizontalPadding: styled_components.StyledComponent<"div", styled_components.DefaultTheme, HorizontalPaddingProps, never>;
|
|
370
|
+
declare const VerticalPadding: styled_components.StyledComponent<"div", styled_components.DefaultTheme, HorizontalPaddingProps, never>;
|
|
973
371
|
|
|
974
372
|
declare type DividerProps = {
|
|
975
373
|
type?: 'horizontal' | 'vertical';
|
|
@@ -978,31 +376,35 @@ declare type DividerProps = {
|
|
|
978
376
|
marginHorizontal?: SizesTypes$1 | number;
|
|
979
377
|
weight?: number;
|
|
980
378
|
};
|
|
981
|
-
declare const Divider:
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
379
|
+
declare const Divider: styled_components.StyledComponent<"div", styled_components.DefaultTheme, DividerProps, never>;
|
|
380
|
+
|
|
381
|
+
declare type MapPosition = {
|
|
382
|
+
lat: number;
|
|
383
|
+
lng: number;
|
|
384
|
+
};
|
|
385
|
+
declare type GoogleMapProps = {
|
|
386
|
+
position: MapPosition;
|
|
387
|
+
} & WithScriptjsProps & WithGoogleMapProps;
|
|
388
|
+
declare const GoogleMap: react__default.ComponentClass<{
|
|
389
|
+
position: MapPosition;
|
|
390
|
+
} & WithScriptjsProps & WithGoogleMapProps, any>;
|
|
985
391
|
|
|
986
|
-
declare const defaultValue: Descendant[];
|
|
987
392
|
declare const MATRIX_MESSAGE_ELEMENT_ID = "matrix-message";
|
|
988
393
|
declare const COMMUNICATION_LINK_ELEMENT_ID = "communication-link";
|
|
989
394
|
declare const MATRIX_MESSAGE_DATA_ID = "matrix-message-id";
|
|
990
395
|
declare const COMMUNICATION_LINK_DATA_URL = "communication-link-url";
|
|
991
396
|
declare const COMMUNICATION_LINK_DATA_TEXT = "communication-link-text";
|
|
992
|
-
declare type RichTextEditorProps = {
|
|
993
|
-
moleculeId: string;
|
|
397
|
+
declare type RichTextEditorProps = Partial<{
|
|
994
398
|
value: string;
|
|
995
|
-
font
|
|
996
|
-
color
|
|
997
|
-
textStyles
|
|
998
|
-
numberOfLines
|
|
999
|
-
extraTextProps
|
|
1000
|
-
renderElementWrapperComponent
|
|
1001
|
-
renderElementWrapperProps
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
};
|
|
1005
|
-
declare const RichTextViewer: ({ value, font, color, textStyles, numberOfLines, extraTextProps, renderElementWrapperComponent, renderElementWrapperProps, htmlElementId, moleculeId, isTrigger, }: RichTextEditorProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
399
|
+
font: FontSizesTypes$2;
|
|
400
|
+
color: ThemeColors$1 | string;
|
|
401
|
+
textStyles: StylesType;
|
|
402
|
+
numberOfLines: number;
|
|
403
|
+
extraTextProps: TextProps$1;
|
|
404
|
+
renderElementWrapperComponent: (props: AnyObject$1) => JSX.Element;
|
|
405
|
+
renderElementWrapperProps: AnyObject$1;
|
|
406
|
+
}>;
|
|
407
|
+
declare const RichTextViewer: ({ value, color, textStyles, font, numberOfLines, extraTextProps, renderElementWrapperComponent: RenderElementWrapperComponent, renderElementWrapperProps, }: RichTextEditorProps) => JSX.Element | null;
|
|
1006
408
|
|
|
1007
409
|
declare type RadioButtonInternalConfigProps = Partial<{
|
|
1008
410
|
selectedRadioOptionBackgroundColor: ThemeColors$1 | string;
|
|
@@ -1045,39 +447,31 @@ declare const RadioButtons: <T extends string>({ ref, name, value, options, onBl
|
|
|
1045
447
|
selectedRadioOptionIndicatorColor: ThemeColors$1 | string;
|
|
1046
448
|
buttonPadding: number;
|
|
1047
449
|
textPadding: number;
|
|
1048
|
-
styles:
|
|
1049
|
-
wrapperStyles:
|
|
450
|
+
styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
|
451
|
+
wrapperStyles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
|
1050
452
|
buttonOptionSpacing: SizesTypes$1;
|
|
1051
|
-
radioGroupWrapperStyles:
|
|
453
|
+
radioGroupWrapperStyles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
|
1052
454
|
}>;
|
|
1053
|
-
}>) =>
|
|
1054
|
-
declare const RadioGroupWrapper:
|
|
1055
|
-
theme?: _emotion_react.Theme | undefined;
|
|
1056
|
-
} & StyledTransientProps<{
|
|
455
|
+
}>) => JSX.Element;
|
|
456
|
+
declare const RadioGroupWrapper: styled_components.StyledComponent<typeof RadioGroup, styled_components.DefaultTheme, StyledTransientProps<{
|
|
1057
457
|
isRow: boolean;
|
|
1058
|
-
}> & OverrideStyles,
|
|
458
|
+
}> & OverrideStyles, never>;
|
|
1059
459
|
|
|
1060
460
|
declare type CircleType = 'link' | 'message';
|
|
1061
461
|
declare type CircleBoxProps = {
|
|
1062
462
|
index: number;
|
|
1063
463
|
type: CircleType;
|
|
1064
464
|
};
|
|
1065
|
-
declare const Circle: ({ index, type }: CircleBoxProps) =>
|
|
1066
|
-
declare const CirclesWrapper:
|
|
1067
|
-
theme?: _emotion_react.Theme | undefined;
|
|
1068
|
-
as?: react__default.ElementType<any> | undefined;
|
|
1069
|
-
}, react__default.DetailedHTMLProps<react__default.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
465
|
+
declare const Circle: ({ index, type }: CircleBoxProps) => JSX.Element;
|
|
466
|
+
declare const CirclesWrapper: styled_components.StyledComponent<"span", styled_components.DefaultTheme, {}, never>;
|
|
1070
467
|
|
|
1071
468
|
declare type CircularIndicatorProps = {
|
|
1072
469
|
active: boolean;
|
|
1073
470
|
activeColor?: ThemeColors$1 | string;
|
|
1074
471
|
inactiveColor?: ThemeColors$1 | string;
|
|
1075
472
|
};
|
|
1076
|
-
declare const CircularIndicator: ({ activeColor, inactiveColor, ...props }: CircularIndicatorProps) =>
|
|
1077
|
-
declare const CircularIndicatorStyledComponent:
|
|
1078
|
-
theme?: _emotion_react.Theme | undefined;
|
|
1079
|
-
as?: react.ElementType<any> | undefined;
|
|
1080
|
-
} & CircularIndicatorProps, react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
473
|
+
declare const CircularIndicator: ({ activeColor, inactiveColor, ...props }: CircularIndicatorProps) => JSX.Element;
|
|
474
|
+
declare const CircularIndicatorStyledComponent: styled_components.StyledComponent<"span", styled_components.DefaultTheme, CircularIndicatorProps, never>;
|
|
1081
475
|
|
|
1082
476
|
declare type IconButtonProps = {
|
|
1083
477
|
name: IconNames$2;
|
|
@@ -1087,19 +481,7 @@ declare type IconButtonProps = {
|
|
|
1087
481
|
fill?: ThemeColors$1 | string;
|
|
1088
482
|
pointerEvents?: 'auto' | 'none';
|
|
1089
483
|
};
|
|
1090
|
-
declare const IconButton: ({ name, color, onClick, disabled, activeOpacity, withoutOpacityEffect, ...props }: IconButtonProps & TouchableOpacityProps$1) =>
|
|
1091
|
-
|
|
1092
|
-
declare type MenuItemType<T> = {
|
|
1093
|
-
id: T;
|
|
1094
|
-
title: string;
|
|
1095
|
-
active?: boolean;
|
|
1096
|
-
onClick: (id: T) => void;
|
|
1097
|
-
options?: MenuItemType<T>[];
|
|
1098
|
-
divider?: boolean;
|
|
1099
|
-
disabled?: boolean;
|
|
1100
|
-
itemColor?: string;
|
|
1101
|
-
activeItemColor?: string;
|
|
1102
|
-
};
|
|
484
|
+
declare const IconButton: ({ name, color, onClick, disabled, activeOpacity, withoutOpacityEffect, ...props }: IconButtonProps & TouchableOpacityProps$1) => JSX.Element;
|
|
1103
485
|
|
|
1104
486
|
declare type TabOption<T = string> = {
|
|
1105
487
|
menuText: string;
|
|
@@ -1117,7 +499,7 @@ declare type TabProps<T = string, K = string> = {
|
|
|
1117
499
|
vertical: boolean;
|
|
1118
500
|
isActive: boolean;
|
|
1119
501
|
onClick: (key: T) => void;
|
|
1120
|
-
options:
|
|
502
|
+
options: MenuItem$1<K>[];
|
|
1121
503
|
onOptionClick: (optionKey: K) => void;
|
|
1122
504
|
tabTheme: TabTheme;
|
|
1123
505
|
divider: boolean;
|
|
@@ -1129,7 +511,7 @@ declare type TabProps<T = string, K = string> = {
|
|
|
1129
511
|
selectedTabIndicatorColor: ThemeColors$1 | string;
|
|
1130
512
|
styles: StylesType;
|
|
1131
513
|
}>;
|
|
1132
|
-
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>) =>
|
|
514
|
+
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>) => JSX.Element;
|
|
1133
515
|
declare const Tab: <T, K>(props: {
|
|
1134
516
|
tabKey: T;
|
|
1135
517
|
text: string;
|
|
@@ -1138,7 +520,7 @@ declare const Tab: <T, K>(props: {
|
|
|
1138
520
|
vertical: boolean;
|
|
1139
521
|
isActive: boolean;
|
|
1140
522
|
onClick: (key: T) => void;
|
|
1141
|
-
options:
|
|
523
|
+
options: MenuItem$1<K>[];
|
|
1142
524
|
onOptionClick: (optionKey: K) => void;
|
|
1143
525
|
tabTheme: TabTheme;
|
|
1144
526
|
divider: boolean;
|
|
@@ -1148,66 +530,346 @@ declare const Tab: <T, K>(props: {
|
|
|
1148
530
|
defaultTabTextColor: ThemeColors$1 | string;
|
|
1149
531
|
selectedTabTextColor: ThemeColors$1 | string;
|
|
1150
532
|
selectedTabIndicatorColor: ThemeColors$1 | string;
|
|
1151
|
-
styles:
|
|
533
|
+
styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
|
1152
534
|
}> & {
|
|
1153
535
|
ref?: react__default.ForwardedRef<TabElement> | undefined;
|
|
1154
536
|
}) => ReturnType<typeof ZealTab>;
|
|
1155
537
|
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
538
|
+
declare type SetPasswordRuleValidation = {
|
|
539
|
+
label: string;
|
|
540
|
+
rule: MaxRuleValidation | MinRuleValidation;
|
|
541
|
+
};
|
|
542
|
+
declare type SetPasswordFormProps = {
|
|
543
|
+
fields: UIFields$2<SetPasswordFields>;
|
|
544
|
+
logoUrl: string;
|
|
545
|
+
isLoading?: boolean;
|
|
546
|
+
validations: SetPasswordRuleValidation[];
|
|
547
|
+
onSubmit: (values: SetPasswordFields) => void;
|
|
548
|
+
onBack: () => void;
|
|
549
|
+
};
|
|
550
|
+
declare const SetPasswordForm: ({ logoUrl, fields, validations, onBack, onSubmit, isLoading, }: SetPasswordFormProps) => JSX.Element;
|
|
551
|
+
|
|
552
|
+
declare const showAcceptToastMessage: () => void | undefined;
|
|
553
|
+
declare type AcquisitionFormProps<T extends object> = {
|
|
554
|
+
fields: UIFields$2<T>;
|
|
555
|
+
consents: ConsentProps$1[];
|
|
556
|
+
logoUrl: string;
|
|
557
|
+
isLoading?: boolean;
|
|
558
|
+
isSubmitDisabled?: boolean;
|
|
559
|
+
title: string;
|
|
560
|
+
description?: string;
|
|
561
|
+
buttonText?: string;
|
|
562
|
+
onSubmit: (values: T) => void;
|
|
563
|
+
onLinkButtonClick?: Callback$1;
|
|
564
|
+
showConsentLabel?: boolean;
|
|
565
|
+
triggerFormInitially?: boolean;
|
|
566
|
+
isTooltipVisible?: boolean;
|
|
567
|
+
optionsPresentation?: boolean;
|
|
568
|
+
};
|
|
569
|
+
declare const AcquisitionForm: <T extends object>({ logoUrl, title, description, buttonText, fields, optionsPresentation, onSubmit, showConsentLabel, onLinkButtonClick, isSubmitDisabled, consents, isLoading, triggerFormInitially, isTooltipVisible, }: AcquisitionFormProps<T>) => JSX.Element;
|
|
1165
570
|
|
|
1166
|
-
declare
|
|
571
|
+
declare type VerificationCodeForm = {
|
|
572
|
+
code: string;
|
|
573
|
+
};
|
|
574
|
+
declare type AuthMethod = 'email' | 'sms';
|
|
575
|
+
declare type TwoFactorAuthProps = {
|
|
576
|
+
logoUrl: string;
|
|
577
|
+
onNext?: (authMethod: AuthMethod) => Promise<void>;
|
|
578
|
+
onSubmit?: (values: VerificationCodeForm) => void;
|
|
579
|
+
onBack?: () => void;
|
|
580
|
+
};
|
|
581
|
+
declare const TwoFactorAuth: ({ logoUrl, onSubmit, onBack, onNext }: TwoFactorAuthProps) => JSX.Element;
|
|
1167
582
|
|
|
1168
|
-
declare
|
|
583
|
+
declare type LoginFields = {
|
|
584
|
+
email: string;
|
|
585
|
+
password: string;
|
|
586
|
+
rememberMe: boolean;
|
|
587
|
+
};
|
|
1169
588
|
|
|
1170
|
-
declare
|
|
1171
|
-
|
|
1172
|
-
|
|
589
|
+
declare type LoginFormProps = {
|
|
590
|
+
fields: UIFields$2<LoginFields>;
|
|
591
|
+
logoUrl: string;
|
|
592
|
+
isLoading?: boolean;
|
|
593
|
+
twoFactorAuthConfig?: {
|
|
594
|
+
twoFactorShow: boolean;
|
|
595
|
+
twoFactorAuthProps: TwoFactorAuthProps;
|
|
596
|
+
};
|
|
597
|
+
optionsPresentation?: boolean;
|
|
598
|
+
onSubmit: (values: LoginFields) => void;
|
|
599
|
+
onSignUpButtonClick?: Callback$1;
|
|
600
|
+
onForgotPasswordButtonClick?: Callback$1;
|
|
601
|
+
isTooltipVisible?: boolean;
|
|
602
|
+
consents: ConsentProps$2[];
|
|
603
|
+
};
|
|
604
|
+
declare const LoginForm: ({ logoUrl, fields, isTooltipVisible, onSubmit, optionsPresentation, onSignUpButtonClick, isLoading, twoFactorAuthConfig, consents, onForgotPasswordButtonClick, }: LoginFormProps) => JSX.Element;
|
|
1173
605
|
|
|
1174
|
-
declare type
|
|
1175
|
-
declare
|
|
1176
|
-
|
|
1177
|
-
declare type
|
|
1178
|
-
declare type
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
606
|
+
declare type FooterProps = FooterAProps | FooterBProps | FooterCProps | FooterDProps;
|
|
607
|
+
declare const Footer: (props: FooterProps) => JSX.Element;
|
|
608
|
+
|
|
609
|
+
declare type FeedContentTemplateTypes = 'full_width_content' | 'standard_content' | 'auto_play' | '';
|
|
610
|
+
declare type FeedContentProps = {
|
|
611
|
+
feedContentType: Omit<FilteredFeedContentType$1, 'all'>;
|
|
612
|
+
feedContentTemplate: FeedContentTemplateTypes;
|
|
613
|
+
id?: string;
|
|
614
|
+
image?: string;
|
|
615
|
+
video?: string;
|
|
616
|
+
document?: string;
|
|
617
|
+
title?: Nullable<string>;
|
|
618
|
+
description: Nullable<string>;
|
|
619
|
+
lastUpdated: string;
|
|
620
|
+
buttonConfig: {
|
|
621
|
+
disabled?: boolean;
|
|
622
|
+
onClick?: () => void;
|
|
623
|
+
};
|
|
624
|
+
withCloseIcon?: {
|
|
625
|
+
onClose: Callback$1;
|
|
626
|
+
};
|
|
627
|
+
isMobile?: boolean;
|
|
628
|
+
isExpanded?: boolean;
|
|
629
|
+
fullWidth?: boolean;
|
|
630
|
+
fullWidthTemplateContainerStyles?: CSSProperties;
|
|
631
|
+
showDefaultDocumentStyles?: boolean;
|
|
632
|
+
destinationLink?: string;
|
|
633
|
+
onDestinationHandler?: Callback$1;
|
|
634
|
+
imageStyles?: StylesType;
|
|
635
|
+
videoStyles?: CSSProperties;
|
|
636
|
+
isEnabledFavoriting?: boolean;
|
|
637
|
+
isFavorite?: boolean;
|
|
638
|
+
onFavoriteClickHandler?: Callback$1;
|
|
639
|
+
onFavoriteIconClick?: (selectedFeedContent: FeedContentProps) => void;
|
|
1192
640
|
};
|
|
1193
641
|
|
|
1194
|
-
declare const
|
|
642
|
+
declare const FeedContent: ({ feedContentTemplate, ...props }: FeedContentProps) => JSX.Element;
|
|
1195
643
|
|
|
1196
|
-
declare
|
|
644
|
+
declare type FooterContactInfo = {
|
|
645
|
+
phoneNumber: string;
|
|
646
|
+
addressLine1: string;
|
|
647
|
+
addressLine2: string;
|
|
648
|
+
};
|
|
649
|
+
declare type FooterLink = {
|
|
650
|
+
id: string;
|
|
651
|
+
name: string;
|
|
652
|
+
location: string;
|
|
653
|
+
};
|
|
1197
654
|
|
|
1198
|
-
declare type
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
655
|
+
declare type ProfileInformationProps<TabKeys extends string> = {
|
|
656
|
+
backgroundImageUrl: string;
|
|
657
|
+
avatarProps: AvatarProps$1;
|
|
658
|
+
tabs: TabProps$1<string, TabKeys>[];
|
|
659
|
+
tabContents: Record<TabKeys, () => ReactNode>;
|
|
660
|
+
initialTabKey: TabKeys;
|
|
661
|
+
title: string;
|
|
662
|
+
editIcons?: {
|
|
663
|
+
isEditMode: boolean;
|
|
664
|
+
onSave: Callback$1;
|
|
665
|
+
onEdit: Callback$1;
|
|
666
|
+
onClose: Callback$1;
|
|
667
|
+
};
|
|
668
|
+
};
|
|
669
|
+
declare const ProfileInformation: <TabKeys extends string>({ avatarProps, backgroundImageUrl, initialTabKey, tabs, title, editIcons, tabContents, }: ProfileInformationProps<TabKeys>) => JSX.Element;
|
|
1204
670
|
|
|
1205
|
-
declare type
|
|
1206
|
-
|
|
1207
|
-
showAnnotations: boolean;
|
|
1208
|
-
annotationsList: AnnotationsList$1;
|
|
671
|
+
declare type EmailAddressFields = {
|
|
672
|
+
email: string;
|
|
1209
673
|
};
|
|
1210
|
-
declare
|
|
674
|
+
declare type ForgotPasswordFormProps = {
|
|
675
|
+
logoUrl: string;
|
|
676
|
+
isLoading?: boolean;
|
|
677
|
+
onSubmit?: (values: EmailAddressFields) => void;
|
|
678
|
+
onBack?: Callback$1;
|
|
679
|
+
};
|
|
680
|
+
declare const ForgotPasswordForm: ({ logoUrl, onBack, onSubmit, isLoading, }: ForgotPasswordFormProps) => JSX.Element;
|
|
681
|
+
|
|
682
|
+
declare type BodyProps = {
|
|
683
|
+
elements: {
|
|
684
|
+
data: (HeroImageProps$1 | HeroSliderProps$1 | SubscribePanelProps$1 | ColumnsProps$1 | EmphasizedTextProps$1 | FeedContentContainerProps$1)[];
|
|
685
|
+
spacer?: number;
|
|
686
|
+
};
|
|
687
|
+
horizontalPaddings?: number;
|
|
688
|
+
containerStyles?: CSSProperties;
|
|
689
|
+
};
|
|
690
|
+
declare const Body: ({ elements, horizontalPaddings, containerStyles, }: BodyProps) => JSX.Element;
|
|
691
|
+
|
|
692
|
+
declare type ISIProps = ISIAProps;
|
|
693
|
+
declare const ISI: (props: ISIProps) => JSX.Element;
|
|
694
|
+
|
|
695
|
+
declare type ImportantLink = {
|
|
696
|
+
text: string;
|
|
697
|
+
href: string;
|
|
698
|
+
};
|
|
699
|
+
declare type HeaderAProps<T = string> = {
|
|
700
|
+
className?: string;
|
|
701
|
+
links?: ImportantLink[];
|
|
702
|
+
logoUrl: string;
|
|
703
|
+
tabsProps: TabGroupProps$1;
|
|
704
|
+
onActionButtonClick?: Callback$1;
|
|
705
|
+
buttonText: string;
|
|
706
|
+
buttonLink: string;
|
|
707
|
+
isMobile?: boolean;
|
|
708
|
+
};
|
|
709
|
+
|
|
710
|
+
declare type HeaderBProps<T = string> = Pick<HeaderAProps$1<T>, 'isMobile' | 'logoUrl' | 'tabsProps' | 'buttonText' | 'onActionButtonClick' | 'buttonLink' | 'className'>;
|
|
711
|
+
|
|
712
|
+
declare type HeaderCProps<T> = Pick<HeaderAProps$1<T>, 'logoUrl' | 'tabsProps' | 'isMobile' | 'className'>;
|
|
713
|
+
|
|
714
|
+
declare type HeaderDProps = {
|
|
715
|
+
withAvatar: AvatarDropdownProps$1<string>;
|
|
716
|
+
} & Pick<HeaderAProps$1, 'isMobile' | 'logoUrl' | 'links' | 'tabsProps' | 'className'>;
|
|
717
|
+
|
|
718
|
+
declare type HeaderProps<T = string> = (HeaderAProps<T> & {
|
|
719
|
+
type: 'header_a';
|
|
720
|
+
}) | (HeaderBProps<T> & {
|
|
721
|
+
type: 'header_b';
|
|
722
|
+
}) | (HeaderCProps<T> & {
|
|
723
|
+
type: 'header_c';
|
|
724
|
+
}) | (HeaderDProps & {
|
|
725
|
+
type: 'header_d';
|
|
726
|
+
});
|
|
727
|
+
declare const Header: <T extends string | number>(props: HeaderProps<T>) => JSX.Element;
|
|
728
|
+
|
|
729
|
+
declare type ProcessTrackerStatus = 'complete' | 'incomplete' | 'in_progress';
|
|
730
|
+
declare type ProcessTrackerProps = {
|
|
731
|
+
title?: Nullable<string>;
|
|
732
|
+
description?: Nullable<string>;
|
|
733
|
+
isMobile?: boolean;
|
|
734
|
+
statuses?: {
|
|
735
|
+
title: string;
|
|
736
|
+
description: string;
|
|
737
|
+
status: ProcessTrackerStatus;
|
|
738
|
+
}[];
|
|
739
|
+
currentStep?: number;
|
|
740
|
+
style?: CSSProperties;
|
|
741
|
+
withCloseIcon?: {
|
|
742
|
+
onClose: Callback$1;
|
|
743
|
+
};
|
|
744
|
+
destinationLink?: string;
|
|
745
|
+
onDestinationHandler?: Callback$1;
|
|
746
|
+
};
|
|
747
|
+
declare const ProcessTracker: ({ title, statuses, isMobile, description, currentStep, style, withCloseIcon, }: ProcessTrackerProps) => JSX.Element;
|
|
748
|
+
|
|
749
|
+
declare type FilteredFeedContentType = 'all' | 'favourite';
|
|
750
|
+
declare type FeedContentContainerProps = {
|
|
751
|
+
type: 'feed';
|
|
752
|
+
feedHeader: Omit<FeedContentHeaderProps$1, 'isMobile'>;
|
|
753
|
+
feedContent?: Omit<FeedContentProps$1, 'isMobile'>[];
|
|
754
|
+
isMobile?: boolean;
|
|
755
|
+
};
|
|
756
|
+
declare const FeedContentContainer: ({ feedHeader, feedContent, isMobile, }: FeedContentContainerProps) => JSX.Element;
|
|
757
|
+
|
|
758
|
+
declare type DynamicElementProps = (AlertProps$1 & {
|
|
759
|
+
elementType: 'alert';
|
|
760
|
+
}) | (ProcessTrackerProps$1 & {
|
|
761
|
+
elementType: 'process_tracker';
|
|
762
|
+
}) | (FeedContentProps$1 & {
|
|
763
|
+
elementType: 'feed_content';
|
|
764
|
+
});
|
|
765
|
+
declare type SizeProps = SizesTypes$1 | number;
|
|
766
|
+
declare type DynamicContentZoneProps = {
|
|
767
|
+
elements: {
|
|
768
|
+
data: DynamicElementProps[];
|
|
769
|
+
spacer?: SizeProps;
|
|
770
|
+
};
|
|
771
|
+
horizontalPaddings?: SizeProps;
|
|
772
|
+
containerStyles?: CSSProperties;
|
|
773
|
+
};
|
|
774
|
+
declare const DynamicContentZone: ({ elements, horizontalPaddings, containerStyles, }: DynamicContentZoneProps) => JSX.Element;
|
|
775
|
+
|
|
776
|
+
declare type BottomNavBarNavigationProps = {
|
|
777
|
+
navbarItems: BottomNaVBarItemProps$1[];
|
|
778
|
+
};
|
|
779
|
+
declare const BottomNavBarNavigation: ({ navbarItems }: BottomNavBarNavigationProps) => JSX.Element;
|
|
780
|
+
|
|
781
|
+
declare type HeroSliderProps = {
|
|
782
|
+
type: 'hero_slides';
|
|
783
|
+
heroSlides: Omit<HeroImageProps$1, 'type' | 'template'>[];
|
|
784
|
+
};
|
|
785
|
+
declare const HeroSlider: ({ heroSlides }: HeroSliderProps) => JSX.Element | null;
|
|
786
|
+
declare const HeroSliderWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {}, never>;
|
|
787
|
+
|
|
788
|
+
declare type SubscribePanelTemplateKeys = `subscribe_template_${'a' | 'b'}`;
|
|
789
|
+
declare type SubscribePanelTemplateProps = {
|
|
790
|
+
title?: string;
|
|
791
|
+
description?: string;
|
|
792
|
+
isSubscribing?: boolean;
|
|
793
|
+
subscribeHandler: Callback$1;
|
|
794
|
+
isMobile: boolean;
|
|
795
|
+
control: Control<SubscribePanelForm>;
|
|
796
|
+
};
|
|
797
|
+
declare type SubscribePanelProps = Omit<SubscribePanelTemplateProps, 'isMobile' | 'control' | 'subscribeHandler'> & {
|
|
798
|
+
type: 'subscribe_panel';
|
|
799
|
+
template: SubscribePanelTemplateKeys;
|
|
800
|
+
onSubscribe: (email: string) => void;
|
|
801
|
+
};
|
|
802
|
+
declare type SubscribePanelForm = {
|
|
803
|
+
email: string;
|
|
804
|
+
};
|
|
805
|
+
|
|
806
|
+
declare const SubscribePanel: ({ template, onSubscribe, ...props }: SubscribePanelProps) => JSX.Element;
|
|
807
|
+
|
|
808
|
+
declare type DefaultTemplateProps = {
|
|
809
|
+
alerts?: AlertProps$2[];
|
|
810
|
+
processTracker?: ProcessTrackerProps$1;
|
|
811
|
+
header: React.ReactNode;
|
|
812
|
+
feedContent?: React.ReactNode;
|
|
813
|
+
banner?: React.ReactNode;
|
|
814
|
+
content?: React.ReactNode;
|
|
815
|
+
};
|
|
816
|
+
declare const DefaultTemplate: ({ header, banner, content, alerts, processTracker, feedContent, }: DefaultTemplateProps) => JSX.Element;
|
|
817
|
+
|
|
818
|
+
interface Helpers {
|
|
819
|
+
goToNextStep: () => void;
|
|
820
|
+
goToPrevStep: () => void;
|
|
821
|
+
reset: () => void;
|
|
822
|
+
canGoToNextStep: boolean;
|
|
823
|
+
canGoToPrevStep: boolean;
|
|
824
|
+
setStep: Dispatch<SetStateAction<number>>;
|
|
825
|
+
}
|
|
826
|
+
declare const useStep: (maxStep: number) => [number, Helpers];
|
|
827
|
+
|
|
828
|
+
declare const useRequiredConsentsAcceptedValues: (consents: ConsentProps$3[]) => boolean;
|
|
829
|
+
|
|
830
|
+
declare const defaultTheme: DefaultTheme;
|
|
831
|
+
|
|
832
|
+
declare const ZealThemeProvider: (props: PropsWithChildren<{
|
|
833
|
+
theme?: DefaultTheme;
|
|
834
|
+
}>) => JSX.Element;
|
|
835
|
+
|
|
836
|
+
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' | 'background';
|
|
837
|
+
declare type SizesTypes = '5XL' | '4XL' | '3XL' | '2XL' | 'XL' | 'L' | 'M' | 'S' | 'XS';
|
|
838
|
+
declare type FontSizesTypes = Exclude<SizesTypes, '5XL' | '4XL'>;
|
|
839
|
+
declare type BreakpointSizesTypes = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
840
|
+
declare type FontWeight = 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
|
|
841
|
+
declare type ThemeColorsType = Record<ThemeColors, string>;
|
|
842
|
+
declare type ThemeTextType = Record<FontSizesTypes, {
|
|
843
|
+
'font-weight': string;
|
|
844
|
+
'font-size': number;
|
|
845
|
+
'line-height': number;
|
|
846
|
+
}>;
|
|
847
|
+
declare type ThemeSizesType = Record<SizesTypes, number>;
|
|
848
|
+
declare type ThemeDevicesType = Record<BreakpointSizesTypes, string>;
|
|
849
|
+
declare type ZealTheme = {
|
|
850
|
+
colors: ThemeColorsType;
|
|
851
|
+
fonts: Record<FontSizesTypes, number>;
|
|
852
|
+
sizes: ThemeSizesType;
|
|
853
|
+
devices: ThemeDevicesType;
|
|
854
|
+
};
|
|
855
|
+
|
|
856
|
+
declare const toastStyles: styled_components.FlattenSimpleInterpolation;
|
|
857
|
+
|
|
858
|
+
declare const useMediaQuery: (breakpointSize: BreakpointSizesTypes$1) => boolean;
|
|
859
|
+
|
|
860
|
+
declare type MlrRichTextViewerProviderProps = PropsWithChildren<{
|
|
861
|
+
annotationsList: AnnotationsList$1;
|
|
862
|
+
isMLRReview: boolean;
|
|
863
|
+
showAnnotations: boolean;
|
|
864
|
+
}>;
|
|
865
|
+
declare const MlrRichTextViewerProvider: ({ children, isMLRReview, showAnnotations, annotationsList, }: MlrRichTextViewerProviderProps) => JSX.Element;
|
|
866
|
+
|
|
867
|
+
declare type MlrRichTextViewerContextType = {
|
|
868
|
+
isMLRReview: boolean;
|
|
869
|
+
showAnnotations: boolean;
|
|
870
|
+
annotationsList: AnnotationsList$1;
|
|
871
|
+
};
|
|
872
|
+
declare const MlrRichTextViewerContext: react.Context<MlrRichTextViewerContextType>;
|
|
1211
873
|
|
|
1212
874
|
declare type AnnotationsList = {
|
|
1213
875
|
tags: {
|
|
@@ -1233,127 +895,35 @@ declare type ButtonActionsContextType = {
|
|
|
1233
895
|
actionContent?: ContainerComponentProps$1;
|
|
1234
896
|
setActionContent: Dispatch<SetStateAction<ContainerComponentProps$1>>;
|
|
1235
897
|
isModalVisible: boolean;
|
|
898
|
+
setModalVisible: Dispatch<SetStateAction<boolean>>;
|
|
1236
899
|
isDrawerVisible: boolean;
|
|
1237
900
|
setDrawerVisible: Dispatch<SetStateAction<boolean>>;
|
|
1238
|
-
setActivePopUpById: (id: string) => void;
|
|
1239
|
-
onCloseModal: (id: string) => void;
|
|
1240
901
|
};
|
|
1241
902
|
declare const ButtonActionsContext: react.Context<ButtonActionsContextType>;
|
|
1242
903
|
|
|
1243
|
-
declare type PopupPropsType = {
|
|
1244
|
-
id: string;
|
|
1245
|
-
config: {
|
|
1246
|
-
styles?: AnyObject$1;
|
|
1247
|
-
size?: 'large' | 'medium';
|
|
1248
|
-
withCloseIcon?: boolean;
|
|
1249
|
-
};
|
|
1250
|
-
content: {
|
|
1251
|
-
embedded?: (ContainerComponentProps$1 | Molecule$1)[];
|
|
1252
|
-
isi?: ContainerComponentProps$1 | Molecule$1;
|
|
1253
|
-
};
|
|
1254
|
-
};
|
|
1255
904
|
declare type ButtonActionsProviderProps = PropsWithChildren<Partial<{
|
|
1256
905
|
actionContent: ContainerComponentProps$1;
|
|
1257
906
|
setActionContent: Dispatch<SetStateAction<ContainerComponentProps$1>>;
|
|
1258
907
|
isModalVisible: boolean;
|
|
908
|
+
setModalVisible: Dispatch<SetStateAction<boolean>>;
|
|
1259
909
|
setDrawerVisible: Dispatch<SetStateAction<boolean>>;
|
|
1260
910
|
isDrawerVisible: boolean;
|
|
1261
|
-
setActivePopUpById: (id: string) => void;
|
|
1262
|
-
onCloseModal: (id: string) => void;
|
|
1263
|
-
popupProps?: PopupPropsType[];
|
|
1264
911
|
}>>;
|
|
1265
|
-
declare const ButtonActionsProvider: ({ children
|
|
912
|
+
declare const ButtonActionsProvider: ({ children }: ButtonActionsProviderProps) => JSX.Element;
|
|
1266
913
|
|
|
1267
914
|
declare type StepItem = ContainerComponentProps$1 | Molecule$1;
|
|
1268
915
|
declare type GroupedStepItemsByStepContainer = Map<string, StepItem[]>;
|
|
1269
916
|
|
|
1270
|
-
declare type ConfigurationItem = {
|
|
1271
|
-
entity: 'container' | 'molecule';
|
|
1272
|
-
entityId: string;
|
|
1273
|
-
organismId: string;
|
|
1274
|
-
entityType: MoleculeTypes$1 | ContainerType$1;
|
|
1275
|
-
entityMetadata: MetadataType$1;
|
|
1276
|
-
organismLibraryMoleculeId?: string;
|
|
1277
|
-
};
|
|
1278
|
-
declare type OrganismContextProviderProps = PropsWithChildren<{
|
|
1279
|
-
organismId: string;
|
|
1280
|
-
} & Partial<{
|
|
1281
|
-
formId: string;
|
|
1282
|
-
editable: boolean;
|
|
1283
|
-
isPreview: boolean;
|
|
1284
|
-
initItems: (ContainerComponentProps$1 | Molecule$1)[];
|
|
1285
|
-
validations: PasswordRuleValidation[];
|
|
1286
|
-
submitHandler: (data: {
|
|
1287
|
-
formId: string;
|
|
1288
|
-
data: AnyObject$1;
|
|
1289
|
-
}) => Promise<void>;
|
|
1290
|
-
isFormInEditMode: boolean;
|
|
1291
|
-
organismMetadata: AnyObject$1;
|
|
1292
|
-
isConfigurationMode: boolean;
|
|
1293
|
-
onConfigurationItemHandler: (itemInfo: ConfigurationItem) => void;
|
|
1294
|
-
selectedConfigurationItemId: string;
|
|
1295
|
-
}>>;
|
|
1296
|
-
declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, organismId, validations, editable, isPreview, isFormInEditMode, organismMetadata, isConfigurationMode, onConfigurationItemHandler, selectedConfigurationItemId, }: OrganismContextProviderProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1297
|
-
|
|
1298
917
|
declare type OrganismContextType = {
|
|
1299
918
|
items: (ContainerComponentProps$1 | Molecule$1)[];
|
|
1300
919
|
groupStepItemsByStepContainer: () => GroupedStepItemsByStepContainer;
|
|
1301
|
-
dateFields: {
|
|
1302
|
-
id: string;
|
|
1303
|
-
dateType: InputFieldTypes$2;
|
|
1304
|
-
}[];
|
|
1305
|
-
setDateFields: Dispatch<SetStateAction<{
|
|
1306
|
-
id: string;
|
|
1307
|
-
dateType: InputFieldTypes$2;
|
|
1308
|
-
}[]>>;
|
|
1309
|
-
formId?: string;
|
|
1310
|
-
isPreview?: boolean;
|
|
1311
|
-
submitHandler?: (data: {
|
|
1312
|
-
formId: string;
|
|
1313
|
-
data: AnyObject$1;
|
|
1314
|
-
}) => Promise<void>;
|
|
1315
|
-
validations?: PasswordRuleValidation[];
|
|
1316
|
-
editable?: boolean;
|
|
1317
|
-
isFormInEditMode?: boolean;
|
|
1318
|
-
isConfigurationMode?: boolean;
|
|
1319
|
-
organismMetadata?: MetadataType$1;
|
|
1320
|
-
onConfigurationItemClicked: (itemInfo?: Omit<ConfigurationItem, 'organismId'>) => void;
|
|
1321
|
-
selectedConfigurationItemId?: string;
|
|
1322
920
|
};
|
|
1323
921
|
declare const OrganismContext: react.Context<OrganismContextType>;
|
|
1324
922
|
|
|
1325
|
-
declare type
|
|
1326
|
-
|
|
1327
|
-
logOutHandler: Callback$1;
|
|
1328
|
-
goToAccountInfo: Callback$1;
|
|
1329
|
-
username: string;
|
|
1330
|
-
}>;
|
|
1331
|
-
declare const AccountButtonContext: react.Context<Partial<{
|
|
1332
|
-
userInitials: string;
|
|
1333
|
-
logOutHandler: Callback$1;
|
|
1334
|
-
goToAccountInfo: Callback$1;
|
|
1335
|
-
username: string;
|
|
1336
|
-
}>>;
|
|
1337
|
-
|
|
1338
|
-
declare type AccountButtonProviderProps = PropsWithChildren<Partial<{
|
|
1339
|
-
userInitials: string;
|
|
1340
|
-
logOutHandler: Callback$1;
|
|
1341
|
-
goToAccountInfo: Callback$1;
|
|
1342
|
-
username: string;
|
|
923
|
+
declare type FormStepContextProviderProps = PropsWithChildren<Partial<{
|
|
924
|
+
initItems: (ContainerComponentProps$1 | Molecule$1)[];
|
|
1343
925
|
}>>;
|
|
1344
|
-
declare const
|
|
1345
|
-
|
|
1346
|
-
declare type StateContextType = {
|
|
1347
|
-
stateConfig: StateConfigType$1;
|
|
1348
|
-
stateHandler?: (updatedStateConfig: StateConfigType$1) => void;
|
|
1349
|
-
};
|
|
1350
|
-
declare const StateContext: react.Context<StateContextType>;
|
|
1351
|
-
|
|
1352
|
-
declare type StateContextProviderProps = PropsWithChildren<{
|
|
1353
|
-
initStateConfig: StateConfigType$1;
|
|
1354
|
-
stateHandler?: (updatedStateConfig: StateConfigType$1) => void;
|
|
1355
|
-
}>;
|
|
1356
|
-
declare const StateContextProvider: ({ initStateConfig, children, stateHandler, }: StateContextProviderProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
926
|
+
declare const OrganismContextProvider: ({ initItems, children, }: FormStepContextProviderProps) => JSX.Element;
|
|
1357
927
|
|
|
1358
928
|
declare type FieldRuleLabelTypes = 'OPTIONAL' | 'REQUIRED';
|
|
1359
929
|
declare type LabelInternalConfig = {
|
|
@@ -1388,17 +958,17 @@ declare type FieldLabelsProps = {
|
|
|
1388
958
|
tooltipText?: string;
|
|
1389
959
|
isError?: boolean;
|
|
1390
960
|
isTooltipVisible?: boolean;
|
|
1391
|
-
ruleLabel?:
|
|
961
|
+
ruleLabel?: FieldRuleLabelTypes;
|
|
1392
962
|
labelInternalConfig?: LabelInternalConfig;
|
|
1393
963
|
ruleLabelInternalConfig?: RuleLabelInternalConfig;
|
|
1394
964
|
tooltipInternalConfig?: TooltipInternalConfig;
|
|
1395
965
|
isRichText?: boolean;
|
|
1396
966
|
};
|
|
1397
|
-
declare const FieldLabels: ({ label, isTooltipVisible, isError, ruleLabel, tooltipText, labelInternalConfig, ruleLabelInternalConfig, tooltipInternalConfig, isRichText, }: FieldLabelsProps) =>
|
|
967
|
+
declare const FieldLabels: ({ label, isTooltipVisible, isError, ruleLabel, tooltipText, labelInternalConfig, ruleLabelInternalConfig, tooltipInternalConfig, isRichText, }: FieldLabelsProps) => JSX.Element;
|
|
1398
968
|
|
|
1399
969
|
declare type InputFieldProps = Partial<{
|
|
1400
970
|
name: string;
|
|
1401
|
-
control: Control<any>;
|
|
971
|
+
control: Control$1<any>;
|
|
1402
972
|
rules: ControllerProps$1['rules'];
|
|
1403
973
|
required: boolean;
|
|
1404
974
|
optional: boolean;
|
|
@@ -1408,22 +978,21 @@ declare type InputFieldProps = Partial<{
|
|
|
1408
978
|
labelsProps: FieldLabelsProps;
|
|
1409
979
|
conditionConfig: ConditionConfig$1;
|
|
1410
980
|
state: FormStateType$1;
|
|
1411
|
-
formData: AnyObject$1;
|
|
1412
|
-
htmlElementId: string;
|
|
1413
|
-
configurationItemInfo?: ConfigurationItemInfo$1;
|
|
1414
981
|
}>;
|
|
1415
|
-
declare
|
|
982
|
+
declare type ReturnValueType = Record<FormStateType$1, string>;
|
|
983
|
+
declare const getMockValueForSuccessAndFormatError: (type: InputFieldTypes$2) => ReturnValueType;
|
|
984
|
+
declare const InputField: ({ control, name, inputProps, styles, labelsProps, defaultValue, optional, required, rules, conditionConfig, state, }: InputFieldProps) => JSX.Element | null;
|
|
1416
985
|
|
|
1417
986
|
declare type FieldMapperProps<T extends object> = {
|
|
1418
987
|
field: UIField$1<keyof T>;
|
|
1419
988
|
isEditMode?: boolean;
|
|
1420
|
-
control?: Control<T>;
|
|
989
|
+
control?: Control$1<T>;
|
|
1421
990
|
spacer?: number;
|
|
1422
991
|
isTooltipVisible?: boolean;
|
|
1423
992
|
optionsPresentation?: boolean;
|
|
1424
993
|
styles?: StylesType;
|
|
1425
994
|
};
|
|
1426
|
-
declare const FieldMapper: <T extends object>({ field, isEditMode, spacer, control, isTooltipVisible, optionsPresentation, styles, }: FieldMapperProps<T>) =>
|
|
995
|
+
declare const FieldMapper: <T extends object>({ field, isEditMode, spacer, control, isTooltipVisible, optionsPresentation, styles, }: FieldMapperProps<T>) => JSX.Element | null;
|
|
1427
996
|
|
|
1428
997
|
declare type CheckboxesProps = Partial<{
|
|
1429
998
|
checkboxGroupWrapperStyles: StylesType;
|
|
@@ -1442,20 +1011,15 @@ declare type CheckboxFieldProps = Partial<{
|
|
|
1442
1011
|
labelsProps: FieldLabelsProps;
|
|
1443
1012
|
name: string;
|
|
1444
1013
|
rules: ControllerProps$1['rules'];
|
|
1445
|
-
control: Control<any>;
|
|
1014
|
+
control: Control$1<any>;
|
|
1446
1015
|
required: boolean;
|
|
1447
1016
|
optional: boolean;
|
|
1448
1017
|
wrapperStyles: StylesType;
|
|
1449
1018
|
conditionConfig: ConditionConfig$1;
|
|
1450
1019
|
state: FormStateType$1;
|
|
1451
|
-
defaultValue: string
|
|
1452
|
-
formData: AnyObject$1;
|
|
1453
|
-
htmlElementId: string;
|
|
1454
|
-
isTrigger?: boolean;
|
|
1455
|
-
moleculeId: string;
|
|
1456
|
-
configurationItemInfo?: ConfigurationItemInfo$1;
|
|
1020
|
+
defaultValue: string;
|
|
1457
1021
|
}>;
|
|
1458
|
-
declare const CheckboxField: ({ checkboxesProps, name, rules, control, optional, required, labelsProps, wrapperStyles, conditionConfig, defaultValue,
|
|
1022
|
+
declare const CheckboxField: ({ checkboxesProps, name, rules, control, optional, required, labelsProps, wrapperStyles, conditionConfig, defaultValue, }: CheckboxFieldProps) => JSX.Element | null;
|
|
1459
1023
|
|
|
1460
1024
|
declare type CheckboxGroupProps = Partial<{
|
|
1461
1025
|
ref: RefCallBack;
|
|
@@ -1463,25 +1027,22 @@ declare type CheckboxGroupProps = Partial<{
|
|
|
1463
1027
|
onChange: (checkedIds: string[]) => void;
|
|
1464
1028
|
checkboxesProps: CheckboxesProps;
|
|
1465
1029
|
}>;
|
|
1466
|
-
declare const CheckboxGroup: ({ ref, onBlur, onChange, checkboxesProps }: CheckboxGroupProps) =>
|
|
1030
|
+
declare const CheckboxGroup: ({ ref, onBlur, onChange, checkboxesProps }: CheckboxGroupProps) => JSX.Element;
|
|
1467
1031
|
|
|
1468
1032
|
declare type SelectFieldProps = Partial<{
|
|
1469
1033
|
selectProps: SelectProps$1;
|
|
1470
1034
|
labelsProps: FieldLabelsProps;
|
|
1471
1035
|
name: string;
|
|
1472
1036
|
rules: ControllerProps$1['rules'];
|
|
1473
|
-
control: Control<any>;
|
|
1037
|
+
control: Control$1<any>;
|
|
1474
1038
|
required: boolean;
|
|
1475
1039
|
optional: boolean;
|
|
1476
1040
|
defaultValue: string;
|
|
1477
1041
|
styles: StylesType;
|
|
1478
1042
|
conditionConfig: ConditionConfig$1;
|
|
1479
1043
|
state: FormStateType$1;
|
|
1480
|
-
formData: AnyObject$1;
|
|
1481
|
-
htmlElementId: string;
|
|
1482
|
-
configurationItemInfo?: ConfigurationItemInfo$1;
|
|
1483
1044
|
}>;
|
|
1484
|
-
declare const SelectField: ({ selectProps, name, defaultValue, optional, required, control, styles, labelsProps, rules, conditionConfig,
|
|
1045
|
+
declare const SelectField: ({ selectProps, name, defaultValue, optional, required, control, styles, labelsProps, rules, conditionConfig, }: SelectFieldProps) => JSX.Element | null;
|
|
1485
1046
|
|
|
1486
1047
|
declare type CustomValidationRule<T = string> = {
|
|
1487
1048
|
text: string;
|
|
@@ -1492,10 +1053,8 @@ declare type CustomValidationProps<T = string> = {
|
|
|
1492
1053
|
value: T;
|
|
1493
1054
|
isSubmitted?: boolean;
|
|
1494
1055
|
rules: CustomValidationRule<T>[];
|
|
1495
|
-
spacer?: number;
|
|
1496
|
-
validationState?: FormStateType$1;
|
|
1497
1056
|
};
|
|
1498
|
-
declare const CustomValidation: <T extends string = string>({ rules, value, isSubmitted, label,
|
|
1057
|
+
declare const CustomValidation: <T extends string = string>({ rules, value, isSubmitted, label, }: CustomValidationProps<T>) => JSX.Element;
|
|
1499
1058
|
|
|
1500
1059
|
declare type BaseSelectableProps<T> = {
|
|
1501
1060
|
iconName: IconNames$2;
|
|
@@ -1511,38 +1070,68 @@ declare type SelectableCardGroupProps<T> = {
|
|
|
1511
1070
|
spacing?: SizesTypes$1;
|
|
1512
1071
|
initialValue?: T;
|
|
1513
1072
|
};
|
|
1514
|
-
declare const SelectableCardGroup: <T extends string>({ cards, handleChange, spacing, initialValue, }: SelectableCardGroupProps<T>) =>
|
|
1073
|
+
declare const SelectableCardGroup: <T extends string>({ cards, handleChange, spacing, initialValue, }: SelectableCardGroupProps<T>) => JSX.Element;
|
|
1074
|
+
|
|
1075
|
+
declare type HeroImageAlignment = 'left_aligned' | 'center_aligned';
|
|
1076
|
+
declare type HeroImageTemplate = 'card' | 'full_width';
|
|
1077
|
+
declare type HeroImageProps = {
|
|
1078
|
+
type: 'hero_image';
|
|
1079
|
+
backgroundImage: RegularImageProps$1;
|
|
1080
|
+
mainHeading: string;
|
|
1081
|
+
subHeading?: string;
|
|
1082
|
+
button?: ButtonProps$1;
|
|
1083
|
+
contentAlignment?: HeroImageAlignment;
|
|
1084
|
+
horizontalPaddings?: number;
|
|
1085
|
+
template?: HeroImageTemplate;
|
|
1086
|
+
isMobile?: boolean;
|
|
1087
|
+
height?: number;
|
|
1088
|
+
};
|
|
1089
|
+
declare const HeroImage: ({ backgroundImage, button, contentAlignment, mainHeading, horizontalPaddings, subHeading, template, isMobile, height, }: HeroImageProps) => JSX.Element;
|
|
1515
1090
|
|
|
1516
1091
|
declare type Anchor = 'top' | 'left' | 'bottom' | 'right';
|
|
1517
1092
|
declare type DrawerProps = DrawerProps$1 & {
|
|
1518
1093
|
anchor: Anchor;
|
|
1519
|
-
padding?: SizesTypes$2 | number
|
|
1094
|
+
padding?: SizesTypes$2 | number;
|
|
1520
1095
|
height?: number | string;
|
|
1521
1096
|
width?: number | string;
|
|
1522
|
-
withCloseIcon?: boolean;
|
|
1523
1097
|
closeIconColor?: ThemeColors$2 | string;
|
|
1524
1098
|
};
|
|
1525
1099
|
|
|
1526
|
-
declare const Drawer: ({ children, closeIconColor,
|
|
1100
|
+
declare const Drawer: ({ children, closeIconColor, ...props }: PropsWithChildren<DrawerProps>) => JSX.Element;
|
|
1101
|
+
|
|
1102
|
+
declare type ColumnsTemplateKeys = 'horizontal' | 'card' | 'with_image';
|
|
1103
|
+
|
|
1104
|
+
declare type ColumnsProps = {
|
|
1105
|
+
type: 'columns';
|
|
1106
|
+
columns: ColumnItem[];
|
|
1107
|
+
containerStyles?: CSSProperties$1;
|
|
1108
|
+
template?: ColumnsTemplateKeys;
|
|
1109
|
+
};
|
|
1110
|
+
declare type ColumnItem = {
|
|
1111
|
+
title?: string;
|
|
1112
|
+
mainContent?: string;
|
|
1113
|
+
button?: TextButtonProps$1;
|
|
1114
|
+
icon: string;
|
|
1115
|
+
};
|
|
1116
|
+
declare const Columns: ({ columns, containerStyles, template }: ColumnsProps) => JSX.Element;
|
|
1527
1117
|
|
|
1118
|
+
declare type MenuItem<T> = {
|
|
1119
|
+
id: T;
|
|
1120
|
+
title: string;
|
|
1121
|
+
onClick?: (id: T) => void;
|
|
1122
|
+
};
|
|
1528
1123
|
declare type MenuItemsProps<T> = {
|
|
1529
1124
|
title?: string;
|
|
1530
|
-
options?: MenuItemType<T>[];
|
|
1531
|
-
activeKey?: T;
|
|
1532
|
-
itemColor?: string;
|
|
1533
|
-
menuTheme?: 'light' | 'dark';
|
|
1534
1125
|
onItemPress?: (id: T) => void;
|
|
1535
|
-
|
|
1126
|
+
options?: MenuItem<T>[];
|
|
1536
1127
|
};
|
|
1537
|
-
declare const MenuItems: <T extends string | number>({ title,
|
|
1128
|
+
declare const MenuItems: <T extends string | number>({ title, onItemPress, options, }: MenuItemsProps<T>) => JSX.Element;
|
|
1538
1129
|
|
|
1539
|
-
declare type
|
|
1540
|
-
declare type AvatarDropdownProps<T = string> = {
|
|
1130
|
+
declare type AvatarDropdownProps<T> = {
|
|
1541
1131
|
avatarProps: AvatarProps$1;
|
|
1542
1132
|
menuConfig: MenuItemsProps<T>;
|
|
1543
|
-
configurationItemInfo?: ConfigurationItemInfo$1;
|
|
1544
1133
|
};
|
|
1545
|
-
declare const AvatarDropdown: <T extends string | number>({ avatarProps, menuConfig,
|
|
1134
|
+
declare const AvatarDropdown: <T extends string | number>({ avatarProps, menuConfig, }: AvatarDropdownProps<T>) => JSX.Element;
|
|
1546
1135
|
|
|
1547
1136
|
declare type TabType<T = string, K = string> = Pick<TabProps$1<T, K>, 'text' | 'tabKey' | 'disabled' | 'options' | 'divider'>;
|
|
1548
1137
|
declare type AdditionalTabContainerProps = {
|
|
@@ -1566,46 +1155,37 @@ declare type TabGroupProps<T = string, K = string> = {
|
|
|
1566
1155
|
selectedTabIndicatorColor?: ThemeColors$2 | string;
|
|
1567
1156
|
wide?: AdditionalTabContainerProps;
|
|
1568
1157
|
compact?: AdditionalTabContainerProps;
|
|
1569
|
-
isMobile?: boolean;
|
|
1570
|
-
htmlElementId?: string;
|
|
1571
|
-
menuIconColor?: string;
|
|
1572
|
-
configurationItemInfo?: ConfigurationItemInfo$1;
|
|
1573
1158
|
};
|
|
1574
|
-
declare const TabGroup: <T extends string, K extends string>({ tabs, vertical, activeTabKey, onTabChange, tabTheme, wide, compact, tabSpacing,
|
|
1159
|
+
declare const TabGroup: <T extends string, K extends string>({ tabs, vertical, activeTabKey, onTabChange, tabTheme, wide, compact, tabSpacing, ...props }: TabGroupProps<T, K>) => JSX.Element;
|
|
1575
1160
|
|
|
1576
1161
|
declare type FieldSectionProps<T extends object> = {
|
|
1577
1162
|
label: string;
|
|
1578
|
-
control?: Control<T>;
|
|
1163
|
+
control?: Control$1<T>;
|
|
1579
1164
|
isEditMode?: boolean;
|
|
1580
1165
|
fields: UIFields<T>;
|
|
1581
1166
|
};
|
|
1582
|
-
declare const FieldSection: <T extends object>({ fields, label, isEditMode, control, }: FieldSectionProps<T>) =>
|
|
1167
|
+
declare const FieldSection: <T extends object>({ fields, label, isEditMode, control, }: FieldSectionProps<T>) => JSX.Element;
|
|
1583
1168
|
|
|
1584
1169
|
declare type MenuNavigationProps<T> = {
|
|
1585
1170
|
menuConfig: MenuItemsProps<T>;
|
|
1586
|
-
customIconType?: IconNames$2;
|
|
1587
|
-
menuIconColor?: string;
|
|
1588
1171
|
};
|
|
1589
|
-
declare const MenuNavigation: <T extends string | number>({ menuConfig,
|
|
1590
|
-
declare const CaretIconWrapper:
|
|
1591
|
-
theme?: _emotion_react.Theme | undefined;
|
|
1592
|
-
as?: react.ElementType<any> | undefined;
|
|
1593
|
-
} & {
|
|
1172
|
+
declare const MenuNavigation: <T extends string | number>({ menuConfig, }: MenuNavigationProps<T>) => JSX.Element;
|
|
1173
|
+
declare const CaretIconWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {
|
|
1594
1174
|
isOpen: boolean;
|
|
1595
|
-
},
|
|
1175
|
+
}, never>;
|
|
1596
1176
|
|
|
1597
1177
|
declare type EmphasizedTextProps = {
|
|
1598
1178
|
type: 'emphasized_text';
|
|
1599
1179
|
invertColors: boolean;
|
|
1600
1180
|
textContent: string;
|
|
1601
1181
|
};
|
|
1602
|
-
declare const EmphasizedText: ({ textContent, invertColors }: EmphasizedTextProps) =>
|
|
1182
|
+
declare const EmphasizedText: ({ textContent, invertColors }: EmphasizedTextProps) => JSX.Element;
|
|
1603
1183
|
|
|
1604
1184
|
declare type RadioButtonFieldProps<T extends string> = Partial<{
|
|
1605
1185
|
name: string;
|
|
1606
1186
|
rules: ControllerProps$1['rules'];
|
|
1607
1187
|
styles: StylesType;
|
|
1608
|
-
control: Control<any>;
|
|
1188
|
+
control: Control$1<any>;
|
|
1609
1189
|
optional: boolean;
|
|
1610
1190
|
required: boolean;
|
|
1611
1191
|
labelsProps: FieldLabelsProps;
|
|
@@ -1614,17 +1194,12 @@ declare type RadioButtonFieldProps<T extends string> = Partial<{
|
|
|
1614
1194
|
internalConfig: RadioButtonInternalConfigProps$1;
|
|
1615
1195
|
conditionConfig: ConditionConfig$1;
|
|
1616
1196
|
state: FormStateType$1;
|
|
1617
|
-
formData: AnyObject$1;
|
|
1618
|
-
htmlElementId: string;
|
|
1619
|
-
isTrigger?: boolean;
|
|
1620
|
-
moleculeId: string;
|
|
1621
|
-
configurationItemInfo?: ConfigurationItemInfo$1;
|
|
1622
1197
|
}>;
|
|
1623
|
-
declare const RadioButtonField: <T extends string>({ name, rules, styles, control, optional, required, labelsProps, defaultValue, radioButtonsProps, conditionConfig,
|
|
1198
|
+
declare const RadioButtonField: <T extends string>({ name, rules, styles, control, optional, required, labelsProps, defaultValue, radioButtonsProps, conditionConfig, }: Partial<{
|
|
1624
1199
|
name: string;
|
|
1625
1200
|
rules: ControllerProps$1['rules'];
|
|
1626
|
-
styles:
|
|
1627
|
-
control: Control<any>;
|
|
1201
|
+
styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
|
1202
|
+
control: Control$1<any>;
|
|
1628
1203
|
optional: boolean;
|
|
1629
1204
|
required: boolean;
|
|
1630
1205
|
labelsProps: FieldLabelsProps;
|
|
@@ -1646,298 +1221,609 @@ declare const RadioButtonField: <T extends string>({ name, rules, styles, contro
|
|
|
1646
1221
|
selectedRadioOptionIndicatorColor: string;
|
|
1647
1222
|
buttonPadding: number;
|
|
1648
1223
|
textPadding: number;
|
|
1649
|
-
styles:
|
|
1650
|
-
wrapperStyles:
|
|
1224
|
+
styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
|
1225
|
+
wrapperStyles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
|
1651
1226
|
buttonOptionSpacing: SizesTypes;
|
|
1652
|
-
radioGroupWrapperStyles:
|
|
1227
|
+
radioGroupWrapperStyles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
|
1228
|
+
}>;
|
|
1229
|
+
}>;
|
|
1230
|
+
internalConfig: Partial<{
|
|
1231
|
+
selectedRadioOptionBackgroundColor: string;
|
|
1232
|
+
selectedRadioOptionIndicatorColor: string;
|
|
1233
|
+
buttonPadding: number;
|
|
1234
|
+
textPadding: number;
|
|
1235
|
+
styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
|
1236
|
+
wrapperStyles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
|
1237
|
+
buttonOptionSpacing: SizesTypes;
|
|
1238
|
+
radioGroupWrapperStyles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
|
1239
|
+
}>;
|
|
1240
|
+
conditionConfig: ConditionConfig$1;
|
|
1241
|
+
state: FormStateType$1;
|
|
1242
|
+
}>) => JSX.Element | null;
|
|
1243
|
+
|
|
1244
|
+
declare type AlertProps = {
|
|
1245
|
+
style?: CSSProperties;
|
|
1246
|
+
title: string;
|
|
1247
|
+
description: string;
|
|
1248
|
+
color?: string;
|
|
1249
|
+
isMobile?: boolean;
|
|
1250
|
+
logo?: string;
|
|
1251
|
+
fullWidth?: boolean;
|
|
1252
|
+
withCloseIcon?: {
|
|
1253
|
+
onClose: Callback$1;
|
|
1254
|
+
};
|
|
1255
|
+
fontColor?: ThemeColors$1;
|
|
1256
|
+
destinationLink?: string;
|
|
1257
|
+
onDestinationHandler?: Callback$1;
|
|
1258
|
+
containerStyles?: CSSProperties;
|
|
1259
|
+
};
|
|
1260
|
+
declare const Alert: ({ logo, title, withCloseIcon, description, style, fontColor, containerStyles, isMobile, ...props }: AlertProps) => JSX.Element;
|
|
1261
|
+
|
|
1262
|
+
declare type OrientationType = 'horizontal' | 'vertical';
|
|
1263
|
+
declare type StepperProps = {
|
|
1264
|
+
steps: {
|
|
1265
|
+
title: string;
|
|
1266
|
+
description?: string;
|
|
1267
|
+
status?: ProcessTrackerStatus$1;
|
|
1268
|
+
}[];
|
|
1269
|
+
currentStep: number;
|
|
1270
|
+
orientation?: OrientationType;
|
|
1271
|
+
};
|
|
1272
|
+
declare const Stepper: ({ steps, orientation, currentStep }: StepperProps) => JSX.Element;
|
|
1273
|
+
|
|
1274
|
+
declare type PdfDocumentProps = {
|
|
1275
|
+
source: string;
|
|
1276
|
+
isMobile?: boolean;
|
|
1277
|
+
customDocumentStyles?: Partial<{
|
|
1278
|
+
wrapperBackgroundColor: ThemeColors$1 | string;
|
|
1279
|
+
pageNumberColor: ThemeColors$1 | string;
|
|
1280
|
+
pageWidth: number;
|
|
1281
|
+
pageHeight: number;
|
|
1282
|
+
paginationArrowColor: ThemeColors$1 | string;
|
|
1283
|
+
disabledPaginationArrowColor: ThemeColors$1 | string;
|
|
1284
|
+
}>;
|
|
1285
|
+
};
|
|
1286
|
+
declare const PdfDocument: ({ source, isMobile, customDocumentStyles, }: PdfDocumentProps) => JSX.Element;
|
|
1287
|
+
|
|
1288
|
+
declare type FeedTemplateKeys = `feed_${'a' | 'b'}`;
|
|
1289
|
+
declare type FeedContentHeaderProps = {
|
|
1290
|
+
title: string;
|
|
1291
|
+
enableFavoriting?: boolean;
|
|
1292
|
+
templateType: FeedTemplateKeys;
|
|
1293
|
+
isMobile?: boolean;
|
|
1294
|
+
menuConfig: MenuItemsProps$1<FilteredFeedContentType$1>;
|
|
1295
|
+
} & Partial<Omit<InputFieldProps$1, 'labelsProps' | 'required' | 'optional'>>;
|
|
1296
|
+
declare const FeedContentHeader: ({ templateType, title, name, inputProps, isMobile, menuConfig, ...rest }: FeedContentHeaderProps) => JSX.Element;
|
|
1297
|
+
|
|
1298
|
+
declare type ToggleFieldProps = {
|
|
1299
|
+
name: string;
|
|
1300
|
+
title: string;
|
|
1301
|
+
control?: Control$1<any>;
|
|
1302
|
+
description?: string;
|
|
1303
|
+
horizontalButtonsProps: HorizontalButtonsProps$1;
|
|
1304
|
+
defaultValue?: string;
|
|
1305
|
+
};
|
|
1306
|
+
declare const HorizontalButtonsField: ({ name, title, control, description, horizontalButtonsProps, }: ToggleFieldProps) => JSX.Element;
|
|
1307
|
+
|
|
1308
|
+
declare type BottomNaVBarItemProps = {
|
|
1309
|
+
name: string;
|
|
1310
|
+
icon: ComponentType<Omit<IconProps$1, 'name'>>;
|
|
1311
|
+
active: boolean;
|
|
1312
|
+
activeColor: string;
|
|
1313
|
+
onNavigate: Callback;
|
|
1314
|
+
};
|
|
1315
|
+
declare const BottomNavBarItem: ({ name, icon: IconComponent, active, activeColor, onNavigate, }: BottomNaVBarItemProps) => JSX.Element;
|
|
1316
|
+
|
|
1317
|
+
declare type VideoProps = {
|
|
1318
|
+
src: string;
|
|
1319
|
+
} & Partial<{
|
|
1320
|
+
width: number;
|
|
1321
|
+
autoplay: boolean;
|
|
1322
|
+
enableCoverImage: boolean;
|
|
1323
|
+
coverImageSrc: string;
|
|
1324
|
+
style: CSSProperties;
|
|
1325
|
+
styles: StylesType;
|
|
1326
|
+
template: FeedContentTemplateTypes$1;
|
|
1327
|
+
}>;
|
|
1328
|
+
declare const Video: ({ style, src, width, template, autoplay, enableCoverImage, coverImageSrc, styles, }: VideoProps) => JSX.Element | null;
|
|
1329
|
+
|
|
1330
|
+
declare type ImageProps = {
|
|
1331
|
+
src: string;
|
|
1332
|
+
} & Partial<{
|
|
1333
|
+
id: string;
|
|
1334
|
+
altText: string;
|
|
1335
|
+
link: string;
|
|
1336
|
+
onClick: Callback$1;
|
|
1337
|
+
width: number;
|
|
1338
|
+
height: number;
|
|
1339
|
+
cornerRadius: number;
|
|
1340
|
+
behaveAs: 'background' | 'regular';
|
|
1341
|
+
styles: StylesType;
|
|
1342
|
+
}>;
|
|
1343
|
+
declare const Image: ({ src, onClick, link, altText, styles, width, height, id, behaveAs, cornerRadius, }: ImageProps) => JSX.Element | null;
|
|
1344
|
+
|
|
1345
|
+
declare type CarouselProps = {
|
|
1346
|
+
children: JSX.Element[];
|
|
1347
|
+
};
|
|
1348
|
+
declare const Carousel: ({ children }: PropsWithChildren<CarouselProps>) => JSX.Element;
|
|
1349
|
+
declare const Wrapper: styled_components.StyledComponent<"section", styled_components.DefaultTheme, {}, never>;
|
|
1350
|
+
declare const SlidesWrapper: styled_components.StyledComponent<"ul", styled_components.DefaultTheme, {
|
|
1351
|
+
translateX: number;
|
|
1352
|
+
}, never>;
|
|
1353
|
+
declare const Slide: styled_components.StyledComponent<"li", styled_components.DefaultTheme, {}, never>;
|
|
1354
|
+
declare const ButtonsWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {}, never>;
|
|
1355
|
+
declare const ArrowIconWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {
|
|
1356
|
+
arrowSide: 'left' | 'right';
|
|
1357
|
+
}, never>;
|
|
1358
|
+
declare const NavigationDotsWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {}, never>;
|
|
1359
|
+
|
|
1360
|
+
declare type TextMoleculeProps = Partial<{
|
|
1361
|
+
text: string;
|
|
1362
|
+
variant: 'base' | 'custom';
|
|
1363
|
+
fontVariant: FontSizesTypes$2;
|
|
1364
|
+
textSize: number;
|
|
1365
|
+
textColor: ThemeColors$1 | string;
|
|
1366
|
+
letterSpacing: number;
|
|
1367
|
+
lineHeight: number;
|
|
1368
|
+
fontWeight: string | number;
|
|
1369
|
+
isRichText: boolean;
|
|
1370
|
+
styles: StylesType;
|
|
1371
|
+
textAlign: 'center' | 'right' | 'left';
|
|
1372
|
+
}> & Pick<TextProps$1, 'seoTag' | 'numberOfLines'>;
|
|
1373
|
+
declare const TextMolecule: ({ isRichText, variant, text, seoTag, fontVariant, textColor, textSize, fontWeight, lineHeight, letterSpacing, styles, textAlign, ...restOfTextProps }: TextMoleculeProps) => JSX.Element;
|
|
1374
|
+
|
|
1375
|
+
declare type ButtonVariant = 'primary' | 'secondary' | 'text' | 'custom';
|
|
1376
|
+
declare type ButtonType = 'button' | 'submit' | 'reset';
|
|
1377
|
+
declare type BaseButtonProps = PropsWithChildren<Partial<{
|
|
1378
|
+
onClick: Callback$1;
|
|
1379
|
+
variant: ButtonVariant;
|
|
1380
|
+
disabled: boolean;
|
|
1381
|
+
state: 'disabled' | 'enabled';
|
|
1382
|
+
fullWidth: boolean;
|
|
1383
|
+
size: 'medium' | 'small';
|
|
1384
|
+
buttonFont: FontSizesTypes$2;
|
|
1385
|
+
textColor: ThemeColors$1 | string;
|
|
1386
|
+
textSize: number;
|
|
1387
|
+
horizontalPadding: SizesTypes$1;
|
|
1388
|
+
verticalPadding: SizesTypes$1;
|
|
1389
|
+
buttonColor: ThemeColors$1 | string;
|
|
1390
|
+
buttonStroke: ThemeColors$1 | string;
|
|
1391
|
+
cornerRadius: SizesTypes$1 | number;
|
|
1392
|
+
hoverButtonColor: ThemeColors$1 | string;
|
|
1393
|
+
hoverStrokeColor: ThemeColors$1 | string;
|
|
1394
|
+
inactiveButtonColor: ThemeColors$1 | string;
|
|
1395
|
+
inactiveStrokeColor: ThemeColors$1 | string;
|
|
1396
|
+
inactiveTextColor: ThemeColors$1 | string;
|
|
1397
|
+
styles: StylesType;
|
|
1398
|
+
colorTheme: 'light' | 'dark';
|
|
1399
|
+
href: string;
|
|
1400
|
+
type: ButtonType;
|
|
1401
|
+
}>>;
|
|
1402
|
+
declare type ButtonProps = BaseButtonProps & {
|
|
1403
|
+
fullWidth?: boolean;
|
|
1404
|
+
text?: string;
|
|
1405
|
+
link?: string;
|
|
1406
|
+
elementId?: string;
|
|
1407
|
+
loading?: boolean;
|
|
1408
|
+
isRichText?: boolean;
|
|
1409
|
+
containerStyle?: StylesType;
|
|
1410
|
+
buttonStyle?: StylesType;
|
|
1411
|
+
};
|
|
1412
|
+
declare const Button: ({ text: textProp, onClick, loading, disabled, variant, isRichText, fullWidth, elementId, link, containerStyle, children, buttonStyle, size, textColor, inactiveTextColor, state, href, ...props }: ButtonProps) => JSX.Element | null;
|
|
1413
|
+
|
|
1414
|
+
declare type ZealUIModalProps = PropsWithChildren<Pick<ModalProps, 'open'>> & {
|
|
1415
|
+
padding?: number | string;
|
|
1416
|
+
wrapperStyles?: CSSProperties;
|
|
1417
|
+
onKeyDown?: <T extends HTMLElement>(event: KeyboardEvent<T>) => void;
|
|
1418
|
+
modalStyles?: CSSProperties;
|
|
1419
|
+
onClose?: Callback$1;
|
|
1420
|
+
};
|
|
1421
|
+
declare const ZealUIModal: ({ children, wrapperStyles, padding, onKeyDown, modalStyles, ...rest }: ZealUIModalProps) => JSX.Element;
|
|
1422
|
+
declare const ModalWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, OverrideStyles, never>;
|
|
1423
|
+
declare const IconWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {
|
|
1424
|
+
activeOpacity?: number | undefined;
|
|
1425
|
+
withoutOpacityEffect?: boolean | undefined;
|
|
1426
|
+
disabled?: boolean | undefined;
|
|
1427
|
+
} & {
|
|
1428
|
+
children?: react__default.ReactNode;
|
|
1429
|
+
}, never>;
|
|
1430
|
+
|
|
1431
|
+
declare type ConsentCaptureMethod = 'button' | 'radioButton' | 'checkbox';
|
|
1432
|
+
declare type DefaultSelectionType = 'confirmation' | 'rejection';
|
|
1433
|
+
declare type ConsentProps<T extends string = string> = {
|
|
1434
|
+
text: string;
|
|
1435
|
+
isRequired?: boolean;
|
|
1436
|
+
consentCaptureProps: ConsentCaptureProps<T>;
|
|
1437
|
+
containerStyles?: CSSProperties;
|
|
1438
|
+
clearStyles?: boolean;
|
|
1439
|
+
};
|
|
1440
|
+
declare type Consent = {
|
|
1441
|
+
id: string;
|
|
1442
|
+
name: string;
|
|
1443
|
+
acknowledgment: CustomDescendant[];
|
|
1444
|
+
methodOfCapture: ConsentCaptureMethod;
|
|
1445
|
+
description: string;
|
|
1446
|
+
language: CustomDescendant[];
|
|
1447
|
+
expiration: string;
|
|
1448
|
+
confirmationButtonText: string;
|
|
1449
|
+
rejectionButtonText: string;
|
|
1450
|
+
defaultSelection: DefaultSelectionType;
|
|
1451
|
+
value?: DefaultSelectionType | boolean;
|
|
1452
|
+
isRequired?: boolean;
|
|
1453
|
+
};
|
|
1454
|
+
declare const Consent: <T extends string>({ text, consentCaptureProps, containerStyles, clearStyles, }: ConsentProps<T>) => JSX.Element;
|
|
1455
|
+
|
|
1456
|
+
declare type LinkProps = Omit<TextButtonProps$1, 'children'> & Partial<{
|
|
1457
|
+
text: string;
|
|
1458
|
+
isRichText: boolean;
|
|
1459
|
+
href: string;
|
|
1460
|
+
}>;
|
|
1461
|
+
declare const Link: ({ text: textProp, isRichText, ...props }: LinkProps) => JSX.Element | null;
|
|
1462
|
+
|
|
1463
|
+
declare const Container: ({ children, wide, compact, type, props, id, metadata, }: Partial<{
|
|
1464
|
+
type: containers.ContainerType;
|
|
1465
|
+
containerTemplateType: "row_content_container";
|
|
1466
|
+
wide: Partial<{
|
|
1467
|
+
containerStyle: styled_components.CSSProperties;
|
|
1468
|
+
containerProps: Partial<{
|
|
1469
|
+
position: containers.ContainerPositionType;
|
|
1470
|
+
scrollBehaviour: containers.ContainerScrollBehaviourType;
|
|
1471
|
+
cornerRadius: number | theme.SizesTypes;
|
|
1472
|
+
gap: theme.SizesTypes;
|
|
1473
|
+
styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
|
1474
|
+
formProps: containers.FormContainerProps;
|
|
1475
|
+
formStepProps: containers.FormStepContainerProps;
|
|
1476
|
+
padding: containers.Padding;
|
|
1477
|
+
border: string;
|
|
1478
|
+
}>;
|
|
1479
|
+
}>;
|
|
1480
|
+
compact: Partial<{
|
|
1481
|
+
containerStyle: styled_components.CSSProperties;
|
|
1482
|
+
containerProps: Partial<{
|
|
1483
|
+
position: containers.ContainerPositionType;
|
|
1484
|
+
scrollBehaviour: containers.ContainerScrollBehaviourType;
|
|
1485
|
+
cornerRadius: number | theme.SizesTypes;
|
|
1486
|
+
gap: theme.SizesTypes;
|
|
1487
|
+
styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
|
1488
|
+
formProps: containers.FormContainerProps;
|
|
1489
|
+
formStepProps: containers.FormStepContainerProps;
|
|
1490
|
+
padding: containers.Padding;
|
|
1491
|
+
border: string;
|
|
1492
|
+
}>;
|
|
1493
|
+
}>;
|
|
1494
|
+
props: Partial<{
|
|
1495
|
+
position: containers.ContainerPositionType;
|
|
1496
|
+
scrollBehaviour: containers.ContainerScrollBehaviourType;
|
|
1497
|
+
cornerRadius: number | theme.SizesTypes;
|
|
1498
|
+
gap: theme.SizesTypes;
|
|
1499
|
+
styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
|
1500
|
+
formProps: containers.FormContainerProps;
|
|
1501
|
+
formStepProps: containers.FormStepContainerProps;
|
|
1502
|
+
padding: containers.Padding;
|
|
1503
|
+
border: string;
|
|
1504
|
+
}>;
|
|
1505
|
+
metadata: AnyObject;
|
|
1506
|
+
}> & {
|
|
1507
|
+
children?: react.ReactNode;
|
|
1508
|
+
} & {
|
|
1509
|
+
id: string;
|
|
1510
|
+
}) => JSX.Element;
|
|
1511
|
+
declare const ContainerComponent: ({ config, tabsProps, id, type, items, metadata, }: ContainerComponentProps$1) => JSX.Element | null;
|
|
1512
|
+
|
|
1513
|
+
declare type ActionTypes = 'link' | 'popup' | 'drawer' | 'download' | 'submit' | 'reset' | 'destroy';
|
|
1514
|
+
declare type DownloadFile = {
|
|
1515
|
+
url: string;
|
|
1516
|
+
name: string;
|
|
1517
|
+
};
|
|
1518
|
+
declare type LinkAction = LinkAttributes;
|
|
1519
|
+
declare type PopupDrawerAction = ContainerComponentProps;
|
|
1520
|
+
declare type DownloadAction = DownloadFile;
|
|
1521
|
+
declare type SubmitAction = AnyObject$1;
|
|
1522
|
+
declare type CancelAction = AnyObject$1;
|
|
1523
|
+
declare type ResetAction = AnyObject$1;
|
|
1524
|
+
declare type DestroyAction = AnyObject$1;
|
|
1525
|
+
declare type Action = {
|
|
1526
|
+
type: ActionTypes;
|
|
1527
|
+
} & Partial<{
|
|
1528
|
+
link: LinkAction;
|
|
1529
|
+
popup: PopupDrawerAction;
|
|
1530
|
+
drawer: PopupDrawerAction;
|
|
1531
|
+
download: DownloadAction;
|
|
1532
|
+
submit: SubmitAction;
|
|
1533
|
+
cancel: CancelAction;
|
|
1534
|
+
reset: ResetAction;
|
|
1535
|
+
destroy: DestroyAction;
|
|
1536
|
+
}>;
|
|
1537
|
+
declare type FormStateType = 'default' | 'success' | 'format_error' | 'field_error' | 'open_dropdown';
|
|
1538
|
+
declare type ImageAttributes = {
|
|
1539
|
+
attributeType: 'image';
|
|
1540
|
+
imageSource: string;
|
|
1541
|
+
};
|
|
1542
|
+
interface TextAttributes {
|
|
1543
|
+
id?: string;
|
|
1544
|
+
attributeType: 'text';
|
|
1545
|
+
isRichText?: boolean;
|
|
1546
|
+
text: string;
|
|
1547
|
+
}
|
|
1548
|
+
interface VideoAttributes {
|
|
1549
|
+
attributeType: 'video';
|
|
1550
|
+
videoSource: string;
|
|
1551
|
+
}
|
|
1552
|
+
interface ActionAttributes {
|
|
1553
|
+
attributeType: 'action';
|
|
1554
|
+
action: Action;
|
|
1555
|
+
}
|
|
1556
|
+
interface LinkAttributes {
|
|
1557
|
+
id: string;
|
|
1558
|
+
attributeType: 'link';
|
|
1559
|
+
type: 'internalLink' | 'externalLink';
|
|
1560
|
+
internalLink: Nullable<string>;
|
|
1561
|
+
externalLink: Nullable<string>;
|
|
1562
|
+
name: string;
|
|
1563
|
+
}
|
|
1564
|
+
interface SelectAttributes {
|
|
1565
|
+
id?: string;
|
|
1566
|
+
attributeType: 'select';
|
|
1567
|
+
value: string;
|
|
1568
|
+
options: SelectOption$1[];
|
|
1569
|
+
}
|
|
1570
|
+
interface BooleanAttributes {
|
|
1571
|
+
attributeType: 'boolean';
|
|
1572
|
+
value: boolean;
|
|
1573
|
+
}
|
|
1574
|
+
interface IterableAttributes {
|
|
1575
|
+
attributeType: 'iterable';
|
|
1576
|
+
options: SelectOption$1[];
|
|
1577
|
+
}
|
|
1578
|
+
interface DataConnectionAttributes {
|
|
1579
|
+
id: string;
|
|
1580
|
+
attributeType: 'data_model_field';
|
|
1581
|
+
dataModelField: {
|
|
1582
|
+
id: string;
|
|
1583
|
+
fieldName: string;
|
|
1584
|
+
code: string;
|
|
1585
|
+
};
|
|
1586
|
+
}
|
|
1587
|
+
interface ConditionConfigAttributes {
|
|
1588
|
+
id: string;
|
|
1589
|
+
attributeType: 'condition_config';
|
|
1590
|
+
conditionConfig: ConditionConfig;
|
|
1591
|
+
}
|
|
1592
|
+
interface ColorAttributes {
|
|
1593
|
+
attributeType: 'color';
|
|
1594
|
+
color: string;
|
|
1595
|
+
}
|
|
1596
|
+
declare type MoleculeTypes = 'image' | 'text' | 'button' | 'video' | 'header_tab_group' | 'input_field' | 'select_field' | 'radio_button_field' | 'checkbox_field' | 'consent' | 'link';
|
|
1597
|
+
interface BaseMolecule {
|
|
1598
|
+
id: string;
|
|
1599
|
+
instance: 'molecule';
|
|
1600
|
+
type: MoleculeTypes;
|
|
1601
|
+
metadata?: AnyObject$1;
|
|
1602
|
+
}
|
|
1603
|
+
interface ImageMolecule extends BaseMolecule {
|
|
1604
|
+
type: 'image';
|
|
1605
|
+
attributes: Partial<{
|
|
1606
|
+
image: ImageAttributes;
|
|
1607
|
+
altText: Omit<TextAttributes, 'isRichText'>;
|
|
1608
|
+
link: LinkAttributes;
|
|
1609
|
+
}>;
|
|
1610
|
+
config: {
|
|
1611
|
+
props?: Omit<ImageProps$1, 'src' | 'link' | 'altText'>;
|
|
1612
|
+
};
|
|
1613
|
+
}
|
|
1614
|
+
interface TextMoleculeType extends BaseMolecule {
|
|
1615
|
+
type: 'text';
|
|
1616
|
+
attributes: Partial<{
|
|
1617
|
+
text: TextAttributes;
|
|
1618
|
+
seoStyle: SelectAttributes;
|
|
1619
|
+
fontVariant: SelectAttributes;
|
|
1620
|
+
color: ColorAttributes;
|
|
1621
|
+
}>;
|
|
1622
|
+
config: {
|
|
1623
|
+
props?: TextMoleculeProps$1;
|
|
1624
|
+
};
|
|
1625
|
+
}
|
|
1626
|
+
interface ButtonMolecule extends BaseMolecule {
|
|
1627
|
+
type: 'button';
|
|
1628
|
+
attributes: Partial<{
|
|
1629
|
+
title: TextAttributes;
|
|
1630
|
+
action: ActionAttributes;
|
|
1631
|
+
}>;
|
|
1632
|
+
config: {
|
|
1633
|
+
props?: Partial<Omit<ButtonProps$1, 'disabled' | 'children' | 'link' | 'text' | 'onClick' | 'elementId'>>;
|
|
1634
|
+
};
|
|
1635
|
+
}
|
|
1636
|
+
interface VideoMolecule extends BaseMolecule {
|
|
1637
|
+
type: 'video';
|
|
1638
|
+
attributes: Partial<{
|
|
1639
|
+
video: VideoAttributes;
|
|
1640
|
+
altText: Omit<TextAttributes, 'isRichText'>;
|
|
1641
|
+
autoPlayVideo: BooleanAttributes;
|
|
1642
|
+
enableCoverImage: BooleanAttributes;
|
|
1643
|
+
coverImage: ImageAttributes;
|
|
1644
|
+
}>;
|
|
1645
|
+
config: {
|
|
1646
|
+
props: Partial<{
|
|
1647
|
+
width: number;
|
|
1648
|
+
styles: StylesType;
|
|
1649
|
+
}>;
|
|
1650
|
+
};
|
|
1651
|
+
}
|
|
1652
|
+
interface TabGroupMolecule extends BaseMolecule {
|
|
1653
|
+
type: 'header_tab_group';
|
|
1654
|
+
config: {
|
|
1655
|
+
props: TabGroupProps$1;
|
|
1656
|
+
wide: AdditionalTabContainerProps$1;
|
|
1657
|
+
compact: AdditionalTabContainerProps$1;
|
|
1658
|
+
};
|
|
1659
|
+
}
|
|
1660
|
+
interface TextInputMolecule extends BaseMolecule {
|
|
1661
|
+
type: 'input_field';
|
|
1662
|
+
attributes: Partial<{
|
|
1663
|
+
label: TextAttributes;
|
|
1664
|
+
required: BooleanAttributes;
|
|
1665
|
+
inputType: SelectAttributes;
|
|
1666
|
+
dataModelField: DataConnectionAttributes;
|
|
1667
|
+
conditionConfig: ConditionConfigAttributes;
|
|
1668
|
+
}>;
|
|
1669
|
+
config: {
|
|
1670
|
+
props: InputFieldProps$1;
|
|
1671
|
+
};
|
|
1672
|
+
}
|
|
1673
|
+
interface SelectFieldMolecule extends BaseMolecule {
|
|
1674
|
+
type: 'select_field';
|
|
1675
|
+
attributes: Partial<{
|
|
1676
|
+
label: TextAttributes;
|
|
1677
|
+
required: BooleanAttributes;
|
|
1678
|
+
options: IterableAttributes;
|
|
1679
|
+
dataModelField: DataConnectionAttributes;
|
|
1680
|
+
conditionConfig: ConditionConfigAttributes;
|
|
1681
|
+
}>;
|
|
1682
|
+
config: {
|
|
1683
|
+
props: SelectFieldProps$1;
|
|
1684
|
+
};
|
|
1685
|
+
}
|
|
1686
|
+
interface RadioButtonFieldMolecule extends BaseMolecule {
|
|
1687
|
+
type: 'radio_button_field';
|
|
1688
|
+
attributes: Partial<{
|
|
1689
|
+
label: TextAttributes;
|
|
1690
|
+
required: BooleanAttributes;
|
|
1691
|
+
options: IterableAttributes;
|
|
1692
|
+
dataModelField: DataConnectionAttributes;
|
|
1693
|
+
conditionConfig: ConditionConfigAttributes;
|
|
1694
|
+
}>;
|
|
1695
|
+
config: {
|
|
1696
|
+
props: RadioButtonFieldProps$1<string>;
|
|
1697
|
+
};
|
|
1698
|
+
}
|
|
1699
|
+
interface CheckboxFieldMolecule extends BaseMolecule {
|
|
1700
|
+
type: 'checkbox_field';
|
|
1701
|
+
attributes: Partial<{
|
|
1702
|
+
label: TextAttributes;
|
|
1703
|
+
required: BooleanAttributes;
|
|
1704
|
+
options: IterableAttributes;
|
|
1705
|
+
dataModelField: DataConnectionAttributes;
|
|
1706
|
+
conditionConfig: ConditionConfigAttributes;
|
|
1707
|
+
}>;
|
|
1708
|
+
config: {
|
|
1709
|
+
props: CheckboxFieldProps$1;
|
|
1710
|
+
};
|
|
1711
|
+
}
|
|
1712
|
+
interface ConsentFieldMolecule extends BaseMolecule {
|
|
1713
|
+
type: 'consent';
|
|
1714
|
+
attributes: Partial<{
|
|
1715
|
+
consent: Partial<{
|
|
1716
|
+
attributeType: 'consent';
|
|
1717
|
+
consent: Consent$1;
|
|
1718
|
+
required: BooleanAttributes;
|
|
1653
1719
|
}>;
|
|
1654
1720
|
}>;
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
wrapperStyles: _emotion_react.SerializedStyles;
|
|
1662
|
-
buttonOptionSpacing: SizesTypes;
|
|
1663
|
-
radioGroupWrapperStyles: _emotion_react.SerializedStyles;
|
|
1664
|
-
}>;
|
|
1665
|
-
conditionConfig: ConditionConfig$1;
|
|
1666
|
-
state: FormStateType$1;
|
|
1667
|
-
formData: AnyObject$1;
|
|
1668
|
-
htmlElementId: string;
|
|
1669
|
-
isTrigger?: boolean | undefined;
|
|
1670
|
-
moleculeId: string;
|
|
1671
|
-
configurationItemInfo?: ConfigurationItemInfo$1 | undefined;
|
|
1672
|
-
}>) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
1673
|
-
|
|
1674
|
-
declare type AlertProps = {
|
|
1675
|
-
style?: CSSObject;
|
|
1676
|
-
title: string;
|
|
1677
|
-
description: string;
|
|
1678
|
-
color?: string;
|
|
1679
|
-
isMobile?: boolean;
|
|
1680
|
-
logo?: string;
|
|
1681
|
-
fullWidth?: boolean;
|
|
1682
|
-
withCloseIcon?: {
|
|
1683
|
-
onClose: Callback$1;
|
|
1721
|
+
}
|
|
1722
|
+
interface LinkMolecule extends BaseMolecule {
|
|
1723
|
+
type: 'link';
|
|
1724
|
+
attributes: {
|
|
1725
|
+
text: TextAttributes;
|
|
1726
|
+
link: LinkAttributes;
|
|
1684
1727
|
};
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
}
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
declare type
|
|
1693
|
-
|
|
1694
|
-
steps: ProcessStep$1[];
|
|
1695
|
-
orientation: ProcessTrackerOrientation;
|
|
1696
|
-
htmlElementId?: string;
|
|
1697
|
-
metadata: MetadataType$1;
|
|
1698
|
-
isMobile?: boolean;
|
|
1699
|
-
isOnClickDisabled?: boolean;
|
|
1700
|
-
configurationItemInfo?: ConfigurationItemInfo$1;
|
|
1701
|
-
};
|
|
1702
|
-
declare const Stepper: ({ steps, orientation, htmlElementId, metadata, isMobile, isOnClickDisabled, configurationItemInfo, }: StepperProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
1703
|
-
|
|
1704
|
-
declare type PdfDocumentProps = {
|
|
1705
|
-
source: string;
|
|
1706
|
-
isMobile?: boolean;
|
|
1707
|
-
customDocumentStyles?: Partial<{
|
|
1708
|
-
wrapperBackgroundColor: ThemeColors$1 | string;
|
|
1709
|
-
pageNumberColor: ThemeColors$1 | string;
|
|
1710
|
-
pageWidth: number;
|
|
1711
|
-
pageHeight: number;
|
|
1712
|
-
paginationArrowColor: ThemeColors$1 | string;
|
|
1713
|
-
disabledPaginationArrowColor: ThemeColors$1 | string;
|
|
1714
|
-
}>;
|
|
1728
|
+
config: {
|
|
1729
|
+
props: Omit<LinkProps$1, '$variant' | '$styles'> & Partial<{
|
|
1730
|
+
variant: LinkVariant$1;
|
|
1731
|
+
styles: StylesType;
|
|
1732
|
+
}>;
|
|
1733
|
+
};
|
|
1734
|
+
}
|
|
1735
|
+
declare type Molecule = StrictUnion<ImageMolecule | TextMoleculeType | ButtonMolecule | VideoMolecule | TabGroupMolecule | TextInputMolecule | SelectFieldMolecule | RadioButtonFieldMolecule | CheckboxFieldMolecule | ConsentFieldMolecule | LinkMolecule> & {
|
|
1736
|
+
form?: UseFormReturn<any>;
|
|
1715
1737
|
};
|
|
1716
|
-
declare const PdfDocument: ({ source, isMobile, customDocumentStyles, }: PdfDocumentProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1717
|
-
|
|
1718
|
-
declare type FeedTemplateKeys = `feed_${'a' | 'b'}`;
|
|
1719
|
-
declare type FeedContentHeaderProps = {
|
|
1720
|
-
title: string;
|
|
1721
|
-
enableFavoriting?: boolean;
|
|
1722
|
-
templateType: FeedTemplateKeys;
|
|
1723
|
-
isMobile?: boolean;
|
|
1724
|
-
menuConfig: MenuItemsProps$1<FilteredFeedContentType>;
|
|
1725
|
-
} & Partial<Omit<InputFieldProps$1, 'labelsProps' | 'required' | 'optional'>>;
|
|
1726
|
-
declare const FeedContentHeader: ({ templateType, title, name, inputProps, isMobile, menuConfig, ...rest }: FeedContentHeaderProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1727
1738
|
|
|
1728
|
-
declare type
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1739
|
+
declare type ContainerType = 'row' | 'column' | 'slider' | 'form' | 'form_step' | 'dynamic';
|
|
1740
|
+
declare type ContainerTemplateType = 'row_content_container';
|
|
1741
|
+
declare type ContainerPositionType = 'fixed' | 'sticky' | 'static' | 'relative';
|
|
1742
|
+
declare type ContainerScrollBehaviourType = 'vertical' | 'horizontal' | 'auto' | 'none';
|
|
1743
|
+
declare type FormStepContainerProps = {
|
|
1744
|
+
formStepName: string;
|
|
1745
|
+
order: number;
|
|
1746
|
+
conditionConfig: ConditionConfig;
|
|
1735
1747
|
};
|
|
1736
|
-
declare
|
|
1737
|
-
|
|
1738
|
-
declare type BottomNaVBarItemProps = {
|
|
1739
|
-
name: string;
|
|
1740
|
-
icon: ComponentType<Omit<IconProps$1, 'name'>>;
|
|
1741
|
-
active: boolean;
|
|
1742
|
-
activeColor: string;
|
|
1743
|
-
onNavigate: Callback;
|
|
1748
|
+
declare type FormContainerProps = {
|
|
1749
|
+
mode: keyof ValidationMode;
|
|
1744
1750
|
};
|
|
1745
|
-
declare
|
|
1746
|
-
|
|
1747
|
-
declare type
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
width: number;
|
|
1751
|
-
height: number;
|
|
1752
|
-
autoplay: boolean;
|
|
1753
|
-
enableCoverImage: boolean;
|
|
1754
|
-
coverImageSrc: string;
|
|
1755
|
-
style: CSSProperties;
|
|
1756
|
-
styles: StylesType;
|
|
1757
|
-
template: FeedContentTemplateTypes;
|
|
1758
|
-
htmlElementId: string;
|
|
1759
|
-
moleculeId: string;
|
|
1760
|
-
isTrigger: boolean;
|
|
1761
|
-
isOnClickDisabled: boolean;
|
|
1762
|
-
configurationItemInfo?: ConfigurationItemInfo$1;
|
|
1763
|
-
}>;
|
|
1764
|
-
declare const Video: ({ style, src, width, height, template, autoplay, enableCoverImage, coverImageSrc, styles, htmlElementId, isTrigger, moleculeId, isOnClickDisabled, configurationItemInfo, }: VideoProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
1765
|
-
|
|
1766
|
-
declare type ImageProps = {
|
|
1767
|
-
src: string;
|
|
1768
|
-
} & Partial<{
|
|
1769
|
-
id: string;
|
|
1770
|
-
altText: string;
|
|
1771
|
-
link: string;
|
|
1772
|
-
onClick: Callback$1;
|
|
1773
|
-
width: number;
|
|
1774
|
-
height: number;
|
|
1751
|
+
declare type PaddingVariants = 'top' | 'right' | 'bottom' | 'left';
|
|
1752
|
+
declare type Padding = Record<PaddingVariants, SizesTypes$1 | string> | SizesTypes$1 | string;
|
|
1753
|
+
declare type ContainerPropsType = Partial<{
|
|
1754
|
+
position: ContainerPositionType;
|
|
1755
|
+
scrollBehaviour: ContainerScrollBehaviourType;
|
|
1775
1756
|
cornerRadius: SizesTypes$1 | number;
|
|
1776
|
-
|
|
1757
|
+
gap: SizesTypes$1;
|
|
1777
1758
|
styles: StylesType;
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1759
|
+
formProps: FormContainerProps;
|
|
1760
|
+
formStepProps: FormStepContainerProps;
|
|
1761
|
+
padding: Padding;
|
|
1762
|
+
border: string;
|
|
1781
1763
|
}>;
|
|
1782
|
-
declare
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
variant: 'base' | 'custom';
|
|
1794
|
-
fontVariant: FontSizesTypes$2;
|
|
1795
|
-
textSize: number;
|
|
1796
|
-
textColor: ThemeColors$1 | string;
|
|
1797
|
-
letterSpacing: number;
|
|
1798
|
-
lineHeight: number;
|
|
1799
|
-
fontWeight: string | number;
|
|
1800
|
-
isRichText: boolean;
|
|
1801
|
-
styles: StylesType;
|
|
1802
|
-
textAlign: 'center' | 'right' | 'left';
|
|
1803
|
-
htmlElementId: string;
|
|
1804
|
-
configurationItemInfo: ConfigurationItemInfo$1;
|
|
1805
|
-
}> & Pick<TextProps$1, 'seoTag' | 'numberOfLines'>;
|
|
1806
|
-
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;
|
|
1807
|
-
|
|
1808
|
-
declare type ButtonVariant = 'primary' | 'secondary' | 'text' | 'custom';
|
|
1809
|
-
declare type ButtonType = 'button' | 'submit' | 'reset';
|
|
1810
|
-
declare type BaseButtonProps = PropsWithChildren<Partial<{
|
|
1811
|
-
onClick: Callback$1;
|
|
1812
|
-
variant: ButtonVariant;
|
|
1813
|
-
disabled: boolean;
|
|
1814
|
-
state: 'disabled' | 'enabled';
|
|
1815
|
-
fullWidth: boolean;
|
|
1816
|
-
size: 'medium' | 'small';
|
|
1817
|
-
buttonFont: FontSizesTypes$2;
|
|
1818
|
-
textColor: ThemeColors$1 | string;
|
|
1819
|
-
textSize: number;
|
|
1820
|
-
horizontalPadding: SizesTypes$1;
|
|
1821
|
-
verticalPadding: SizesTypes$1;
|
|
1822
|
-
buttonColor: ThemeColors$1 | string;
|
|
1823
|
-
buttonStroke: ThemeColors$1 | string;
|
|
1824
|
-
cornerRadius: SizesTypes$1 | number;
|
|
1825
|
-
hoverButtonColor: ThemeColors$1 | string;
|
|
1826
|
-
hoverStrokeColor: ThemeColors$1 | string;
|
|
1827
|
-
inactiveButtonColor: ThemeColors$1 | string;
|
|
1828
|
-
inactiveStrokeColor: ThemeColors$1 | string;
|
|
1829
|
-
inactiveTextColor: ThemeColors$1 | string;
|
|
1830
|
-
styles: StylesType;
|
|
1831
|
-
colorTheme: 'light' | 'dark';
|
|
1832
|
-
href: string;
|
|
1833
|
-
type: ButtonType;
|
|
1764
|
+
declare type AdditionalContainerProps = Partial<{
|
|
1765
|
+
containerStyle: CSSProperties;
|
|
1766
|
+
containerProps: ContainerPropsType;
|
|
1767
|
+
}>;
|
|
1768
|
+
declare type ContainerProps = PropsWithChildren<Partial<{
|
|
1769
|
+
type: ContainerType;
|
|
1770
|
+
containerTemplateType: ContainerTemplateType;
|
|
1771
|
+
wide: AdditionalContainerProps;
|
|
1772
|
+
compact: AdditionalContainerProps;
|
|
1773
|
+
props: ContainerPropsType;
|
|
1774
|
+
metadata: AnyObject$1;
|
|
1834
1775
|
}>>;
|
|
1835
|
-
declare type
|
|
1836
|
-
fullWidth?: boolean;
|
|
1837
|
-
text?: string;
|
|
1838
|
-
link?: string;
|
|
1839
|
-
elementId?: string;
|
|
1840
|
-
loading?: boolean;
|
|
1841
|
-
isRichText?: boolean;
|
|
1842
|
-
containerStyle?: StylesType;
|
|
1843
|
-
buttonStyle?: StylesType;
|
|
1844
|
-
stateConfig?: MetadataStateConfig$1[];
|
|
1845
|
-
htmlElementId?: string;
|
|
1846
|
-
metadata?: MetadataType$1;
|
|
1847
|
-
configurationItemInfo?: ConfigurationItemInfo$1;
|
|
1848
|
-
};
|
|
1849
|
-
declare const Button: ({ text, onClick, loading, disabled, variant, isRichText, fullWidth, elementId, link, containerStyle, children, buttonStyle, size, textColor, inactiveTextColor, state, href, stateConfig, htmlElementId, metadata, configurationItemInfo, ...props }: ButtonProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
1850
|
-
|
|
1851
|
-
declare type ZealUIModalProps = PropsWithChildren<Pick<ModalProps, 'open'>> & {
|
|
1852
|
-
padding?: number | string;
|
|
1853
|
-
wrapperStyles?: CSSProperties;
|
|
1854
|
-
onKeyDown?: <T extends HTMLElement>(event: KeyboardEvent<T>) => void;
|
|
1855
|
-
modalStyles?: CSSProperties;
|
|
1856
|
-
size?: string;
|
|
1857
|
-
popupId: string;
|
|
1858
|
-
onClose: () => void;
|
|
1859
|
-
withCloseIcon?: boolean;
|
|
1860
|
-
};
|
|
1861
|
-
declare const ZealUIModal: ({ children, wrapperStyles, padding, onKeyDown, modalStyles, size, popupId, withCloseIcon, ...rest }: ZealUIModalProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1862
|
-
declare const ModalWrapper: _emotion_styled.StyledComponent<{
|
|
1863
|
-
theme?: _emotion_react.Theme | undefined;
|
|
1864
|
-
as?: react__default.ElementType<any> | undefined;
|
|
1865
|
-
} & OverrideStyles, react__default.DetailedHTMLProps<react__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
1866
|
-
declare const IconWrapper: _emotion_styled.StyledComponent<{
|
|
1867
|
-
theme?: _emotion_react.Theme | undefined;
|
|
1868
|
-
as?: react__default.ElementType<any> | undefined;
|
|
1869
|
-
} & {
|
|
1870
|
-
activeOpacity?: number | undefined;
|
|
1871
|
-
withoutOpacityEffect?: boolean | undefined;
|
|
1872
|
-
disabled?: boolean | undefined;
|
|
1873
|
-
} & {
|
|
1874
|
-
children?: react__default.ReactNode;
|
|
1875
|
-
} & react__default.ClassAttributes<HTMLDivElement> & react__default.HTMLAttributes<HTMLDivElement> & {
|
|
1876
|
-
theme?: _emotion_react.Theme | undefined;
|
|
1877
|
-
}, {}, {}>;
|
|
1878
|
-
|
|
1879
|
-
declare type ConsentCaptureMethod = 'button' | 'radioButton' | 'checkbox';
|
|
1880
|
-
declare type DefaultSelectionType = 'confirmation' | 'rejection';
|
|
1881
|
-
declare type ConsentType = {
|
|
1776
|
+
declare type ContainerComponentProps = {
|
|
1882
1777
|
id: string;
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1778
|
+
instance: 'container';
|
|
1779
|
+
type: ContainerType;
|
|
1780
|
+
items: (ContainerComponentProps | Molecule)[];
|
|
1781
|
+
config: {
|
|
1782
|
+
wide?: AdditionalContainerProps;
|
|
1783
|
+
compact?: AdditionalContainerProps;
|
|
1784
|
+
props?: ContainerPropsType;
|
|
1785
|
+
};
|
|
1786
|
+
tabsProps?: Pick<TabGroupProps$1, 'tabs' | 'activeTabKey' | 'onTabChange'>;
|
|
1787
|
+
metadata?: AnyObject$1;
|
|
1788
|
+
attributes?: AnyObject$1;
|
|
1789
|
+
containerLibraryId?: string;
|
|
1894
1790
|
};
|
|
1895
|
-
declare type
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1791
|
+
declare type CriteriaType = 'operator' | 'condition';
|
|
1792
|
+
declare type ConditionCriteria = {
|
|
1793
|
+
id: string;
|
|
1794
|
+
type: CriteriaType;
|
|
1795
|
+
operator: string;
|
|
1796
|
+
dataFieldId: Nullable<string>;
|
|
1797
|
+
dataFieldName: Nullable<string>;
|
|
1798
|
+
dataValue: Nullable<string>;
|
|
1799
|
+
connectedTo: Nullable<string>;
|
|
1901
1800
|
};
|
|
1902
|
-
declare
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
href: string;
|
|
1908
|
-
htmlElementId: string;
|
|
1909
|
-
moleculeId: string;
|
|
1910
|
-
isTrigger: boolean;
|
|
1911
|
-
variant: string;
|
|
1912
|
-
onExternalLink?: () => void;
|
|
1913
|
-
configurationItemInfo?: ConfigurationItemInfo$1;
|
|
1801
|
+
declare type SegmentationType = 'simple' | 'advanced';
|
|
1802
|
+
declare type ConditionConfig = Nullable<{
|
|
1803
|
+
id: string;
|
|
1804
|
+
segmentationType: SegmentationType;
|
|
1805
|
+
criteriaList: ConditionCriteria[];
|
|
1914
1806
|
}>;
|
|
1915
|
-
declare const Link: ({ text, isRichText, htmlElementId, isTrigger, moleculeId, variant, configurationItemInfo, ...props }: LinkProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
1916
1807
|
|
|
1917
|
-
declare type
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1808
|
+
declare const ContainerWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, Pick<ContainerProps$1, "type"> & {
|
|
1809
|
+
containerProps?: Partial<{
|
|
1810
|
+
position: containers_types_types.ContainerPositionType;
|
|
1811
|
+
scrollBehaviour: containers_types_types.ContainerScrollBehaviourType;
|
|
1812
|
+
cornerRadius: number | SizesTypes$1;
|
|
1813
|
+
gap: SizesTypes$1;
|
|
1814
|
+
styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
|
1815
|
+
formProps: containers_types_types.FormContainerProps;
|
|
1816
|
+
formStepProps: containers_types_types.FormStepContainerProps;
|
|
1817
|
+
padding: containers_types_types.Padding;
|
|
1818
|
+
border: string;
|
|
1819
|
+
}> | undefined;
|
|
1820
|
+
metadata?: AnyObject | undefined;
|
|
1821
|
+
}, never>;
|
|
1822
|
+
|
|
1823
|
+
declare type OrganismItemProps = {
|
|
1824
|
+
item: ContainerComponentProps$1 | Molecule$1;
|
|
1825
|
+
tabsProps?: Pick<TabGroupProps$1, 'tabs' | 'activeTabKey' | 'onTabChange'>;
|
|
1926
1826
|
};
|
|
1927
|
-
declare
|
|
1928
|
-
items: ChecklistItem[];
|
|
1929
|
-
props?: {
|
|
1930
|
-
gap?: SizesTypes$1;
|
|
1931
|
-
} & CheckboxInternalConfigProps$1;
|
|
1932
|
-
configurationItemInfo?: ConfigurationItemInfo$1;
|
|
1933
|
-
metadata: MetadataType$1;
|
|
1934
|
-
};
|
|
1935
|
-
declare const Checklist: ({ items, props: { gap, ...checkboxProps }, configurationItemInfo, metadata, }: ChecklistProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1936
|
-
declare const ChecklistWrapper: _emotion_styled.StyledComponent<{
|
|
1937
|
-
theme?: _emotion_react.Theme | undefined;
|
|
1938
|
-
as?: react.ElementType<any> | undefined;
|
|
1939
|
-
} & {
|
|
1940
|
-
$gap: SizesTypes$1;
|
|
1941
|
-
}, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
1827
|
+
declare const OrganismItem: ({ item, tabsProps }: OrganismItemProps) => JSX.Element | null;
|
|
1942
1828
|
|
|
1943
|
-
export {
|
|
1829
|
+
export { AcquisitionForm, AcquisitionFormProps, ActionAttributes, ActionTypes, AdditionalContainerProps, AdditionalTabContainerProps, Alert, AlertProps, AnnotationsList, ArrowIconWrapper, AuthMethod, Avatar, AvatarDropdown, AvatarDropdownProps, AvatarProps, BackgroundImage, BaseButtonProps, BaseMolecule, Body, BodyProps, BooleanAttributes, BottomNaVBarItemProps, BottomNavBarItem, BottomNavBarNavigation, BottomNavBarNavigationProps, BreakpointSizesTypes, Button, ButtonActionsContext, ButtonActionsContextType, ButtonActionsProvider, ButtonActionsProviderProps, ButtonMolecule, ButtonProps, ButtonType, ButtonVariant, ButtonsWrapper, COMMUNICATION_LINK_DATA_TEXT, COMMUNICATION_LINK_DATA_URL, COMMUNICATION_LINK_ELEMENT_ID, CaretIconWrapper, Carousel, CarouselProps, Checkbox, CheckboxField, CheckboxFieldMolecule, CheckboxFieldProps, CheckboxGroup, CheckboxGroupProps, CheckboxProps, CheckboxesProps, Circle, CircleBoxProps, CirclesWrapper, CircularIndicator, CircularIndicatorProps, CircularIndicatorStyledComponent, ColorAttributes, ColumnItem, Columns, ColumnsProps, ConditionConfig, ConditionConfigAttributes, ConditionCriteria, Consent, ConsentCaptureMethod, ConsentFieldMolecule, ConsentProps, Container, ContainerComponent, ContainerComponentProps, ContainerPositionType, ContainerProps, ContainerPropsType, ContainerScrollBehaviourType, ContainerTemplateType, ContainerType, ContainerWrapper, CriteriaType, CustomValidation, CustomValidationProps, CustomValidationRule, DataConnectionAttributes, DefaultSelectionType, DefaultTemplate, DefaultTemplateProps, Divider, DividerProps, DownloadFile, Drawer, DynamicContentZone, DynamicContentZoneProps, DynamicElementProps, EmphasizedText, EmphasizedTextProps, ErrorText, FeedContent, FeedContentContainer, FeedContentContainerProps, FeedContentHeader, FeedContentHeaderProps, FeedTemplateKeys, FieldLabels, FieldLabelsProps, FieldMapper, FieldMapperProps, FieldRuleLabelTypes, FieldSection, FieldSectionProps, FieldTypes, FilteredFeedContentType, FontSizesTypes, FontWeight, Footer, FooterContactInfo, FooterLink, FooterProps, ForgotPasswordForm, ForgotPasswordFormProps, FormContainerProps, FormStateType, FormStepContainerProps, FormStepContextProviderProps, GoogleMap, GoogleMapProps, Header, HeaderProps, HeroImage, HeroImageAlignment, HeroImageProps, HeroImageTemplate, HeroSlider, HeroSliderProps, HeroSliderWrapper, HorizontalButtons, HorizontalButtonsField, HorizontalButtonsProps, HorizontalPadding, HorizontalPaddingProps, ISI, ISIProps, Icon, IconButton, IconButtonProps, IconNames, IconProps, IconWrapper, Image, ImageAttributes, ImageMolecule, ImageProps, Input, InputField, InputFieldInternalConfigProps, InputFieldProps, InputFieldTypes, InputIconProps, InputProps, IterableAttributes, LabelInternalConfig, Link, LinkAttributes, LinkMolecule, LinkProps, LinkVariant, LoginForm, LoginFormProps, MATRIX_MESSAGE_DATA_ID, MATRIX_MESSAGE_ELEMENT_ID, MapPosition, MenuItem, MenuItems, MenuItemsProps, MenuNavigation, MenuNavigationProps, MlrRichTextViewerContext, MlrRichTextViewerContextType, MlrRichTextViewerProvider, MlrRichTextViewerProviderProps, ModalWrapper, Molecule, MoleculeTypes, NavigationDotsWrapper, OrganismContext, OrganismContextProvider, OrganismContextType, OrganismItem, OrganismItemProps, OrientationType, Padding, PaddingVariants, PdfDocument, PdfDocumentProps, ProcessTracker, ProcessTrackerProps, ProcessTrackerStatus, ProfileInformation, ProfileInformationProps, RadioButtonField, RadioButtonFieldMolecule, RadioButtonFieldProps, RadioButtonInternalConfigProps, RadioButtons, RadioButtonsProps, RadioGroupWrapper, RegularImage, RegularImageProps, RichTextEditorProps, RichTextViewer, RuleLabelInternalConfig, SegmentationType, Select, SelectAttributes, SelectField, SelectFieldMolecule, SelectFieldProps, SelectInternalConfigurationOptions, SelectOption, SelectProps, SelectableCardGroup, SelectableCardGroupProps, SeoTags, SetPasswordForm, SetPasswordFormProps, SetPasswordRuleValidation, SizesTypes, Slide, SlidesWrapper, Spacer, SpacerProps, Spinner, Stepper, StepperProps, StyleWrapper, SubscribePanel, 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, TwoFactorAuth, TwoFactorAuthProps, UICheckboxField, UIField, UIFields, UIInputField, UISelectField, ValidationTag, ValidationTagProps, ValidationTagStatus, VerticalPadding, Video, VideoAttributes, VideoMolecule, VideoProps, Wrapper, ZealTheme, ZealThemeProvider, ZealUIModal, ZealUIModalProps, acquisitionFormMockFields, defaultTheme, getFieldPlaceholder, getFieldsFromFieldSections, getInitialValuesFromFields, getMockValueForSuccessAndFormatError, isFormValid, loginMockFields, profileInformationMockForm, sectionMockFields, setPasswordMockFields, showAcceptToastMessage, toast, toastStyles, useButtonActionsContext, useMediaQuery, useMlrRichTextViewerContext, useRequiredConsentsAcceptedValues, useStep };
|