@zealicsolutions/web-ui 0.3.267 → 0.3.268
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/assets/index.d.ts +8 -0
- package/dist/cjs/atoms/Avatar/Avatar.d.ts +20 -0
- package/dist/cjs/atoms/Buttons/IconButton.d.ts +12 -0
- package/dist/cjs/atoms/Buttons/TextButton.d.ts +21 -0
- package/dist/cjs/atoms/Buttons/TouchableOpacity.d.ts +16 -0
- package/dist/cjs/atoms/Checkbox/Checkbox.d.ts +14 -0
- package/dist/cjs/atoms/Checkbox/helpers.d.ts +2 -0
- package/dist/cjs/atoms/Checkbox/types.d.ts +18 -0
- package/dist/cjs/atoms/Circle/Circle.d.ts +12 -0
- package/dist/cjs/atoms/CircularIndicator/CircularIndicator.d.ts +12 -0
- package/dist/cjs/atoms/Divider/Divider.d.ts +13 -0
- package/dist/cjs/atoms/HorizontalButtons/HorizontalButtons.d.ts +11 -0
- package/dist/cjs/atoms/Icon/Icon.d.ts +38 -0
- package/dist/cjs/atoms/Input/Input.d.ts +39 -0
- package/dist/cjs/atoms/Input/helpers.d.ts +44 -0
- package/dist/cjs/atoms/Paddings/Paddings.d.ts +13 -0
- package/dist/cjs/atoms/RadioButtons/RadioButtons.d.ts +56 -0
- package/dist/cjs/atoms/RadioButtons/RadioOption.d.ts +11 -0
- package/dist/cjs/atoms/RadioButtons/helpers.d.ts +17 -0
- package/dist/cjs/atoms/RadioButtons/styles.d.ts +13 -0
- package/dist/cjs/atoms/RegularImage/RegularImage.d.ts +38 -0
- package/dist/cjs/atoms/RichTextViewer/RichTextViewer.d.ts +24 -0
- package/dist/cjs/atoms/RichTextViewer/components/EditorElement.d.ts +5 -0
- package/dist/cjs/atoms/RichTextViewer/components/Leaf.d.ts +2 -0
- package/dist/cjs/atoms/RichTextViewer/components/index.d.ts +2 -0
- package/dist/cjs/atoms/RichTextViewer/types.d.ts +36 -0
- package/dist/cjs/atoms/Select/Select.d.ts +34 -0
- package/dist/cjs/atoms/Select/styles.d.ts +27 -0
- package/dist/cjs/atoms/Spacer/Spacer.d.ts +11 -0
- package/dist/cjs/atoms/Spinner/Spinner.d.ts +9 -0
- package/dist/cjs/atoms/Tab/Tab.d.ts +56 -0
- package/dist/cjs/atoms/Tab/styles.d.ts +18 -0
- package/dist/cjs/atoms/Tab/utils.d.ts +4 -0
- package/dist/cjs/atoms/TextWrapper/TextWrapper.d.ts +23 -0
- package/dist/cjs/atoms/Toast/ToastContent.d.ts +7 -0
- package/dist/cjs/atoms/Toast/toast.d.ts +3 -0
- package/dist/cjs/atoms/Toast/types.d.ts +6 -0
- package/dist/cjs/atoms/Tooltip/Tooltip.d.ts +12 -0
- package/dist/cjs/atoms/ValidationTag/ValidationTag.d.ts +6 -0
- package/dist/cjs/atoms/index.d.ts +23 -0
- package/dist/cjs/constants/params.d.ts +8 -0
- package/dist/cjs/containers/Container.d.ts +84 -0
- package/dist/cjs/containers/Container.stories.d.ts +7 -0
- package/dist/cjs/containers/FormContainer.d.ts +8 -0
- package/dist/cjs/containers/FormOrganismItem.d.ts +11 -0
- package/dist/cjs/containers/FormStepContainer.d.ts +9 -0
- package/dist/cjs/containers/MoleculeItem.d.ts +8 -0
- package/dist/cjs/containers/helpers.d.ts +6 -0
- package/dist/cjs/containers/hooks/index.d.ts +3 -0
- package/dist/cjs/containers/hooks/useCheckCondition.d.ts +16 -0
- package/dist/cjs/containers/hooks/useCheckCondition.test.d.ts +1 -0
- package/dist/cjs/containers/hooks/useFormOrganismItem.d.ts +3 -0
- package/dist/cjs/containers/hooks/useSetFormData.d.ts +10 -0
- package/dist/cjs/containers/hooks/useStateListenerValue.d.ts +18 -0
- package/dist/cjs/containers/hooks/useStateModifierHandler.d.ts +7 -0
- package/dist/cjs/containers/hooks/useStateViewModifierHandler.d.ts +2 -0
- package/dist/cjs/containers/index.d.ts +5 -0
- package/dist/cjs/containers/mock-data.d.ts +1153 -0
- package/dist/cjs/containers/styles.d.ts +41 -0
- package/dist/cjs/containers/types/moleculeTypes.d.ts +345 -0
- package/dist/cjs/containers/types/types.d.ts +135 -0
- package/dist/cjs/contexts/AccountButtonContext/AccountButtonContext.d.ts +14 -0
- package/dist/cjs/contexts/AccountButtonContext/AccountButtonContextProvider.d.ts +9 -0
- package/dist/cjs/contexts/ButtonActionsContext/ButtonActionsContext.d.ts +12 -0
- package/dist/cjs/contexts/ButtonActionsContext/ButtonActionsContextProvider.d.ts +26 -0
- package/dist/cjs/contexts/FormStepContext/FormStepContext.d.ts +13 -0
- package/dist/cjs/contexts/FormStepContext/FormStepContextProvider.d.ts +5 -0
- package/dist/cjs/contexts/FormStepContext/utils.d.ts +2 -0
- package/dist/cjs/contexts/MlrRichTextViewerContext/MlrRichTextViewerContext.d.ts +8 -0
- package/dist/cjs/contexts/MlrRichTextViewerContext/MlrRichTextViewerProvider.d.ts +8 -0
- package/dist/cjs/contexts/MlrRichTextViewerContext/types.d.ts +15 -0
- package/dist/cjs/contexts/OrganismContext/OrganismContext.d.ts +33 -0
- package/dist/cjs/contexts/OrganismContext/OrganismContextProvider.d.ts +31 -0
- package/dist/cjs/contexts/OrganismContext/utils.d.ts +5 -0
- package/dist/cjs/contexts/StateContext/StateContext.d.ts +7 -0
- package/dist/cjs/contexts/StateContext/StateContextProvider.d.ts +7 -0
- package/dist/cjs/contexts/hooks/index.d.ts +6 -0
- package/dist/cjs/contexts/hooks/useAccountButtonContext.d.ts +6 -0
- package/dist/cjs/contexts/hooks/useButtonActionsContext.d.ts +1 -0
- package/dist/cjs/contexts/hooks/useFormStepContext.d.ts +1 -0
- package/dist/cjs/contexts/hooks/useMlrRichTextViewerContext.d.ts +1 -0
- package/dist/cjs/contexts/hooks/useOrganismContext.d.ts +1 -0
- package/dist/cjs/contexts/hooks/useStateContext.d.ts +1 -0
- package/dist/cjs/contexts/index.d.ts +13 -0
- package/dist/cjs/fieldsConfiguration/getFieldPlaceholder.d.ts +2 -0
- package/dist/cjs/fieldsConfiguration/index.d.ts +3 -0
- package/dist/cjs/fieldsConfiguration/types.d.ts +29 -0
- package/dist/cjs/fieldsConfiguration/utils.d.ts +6 -0
- package/dist/cjs/helpers/constants.d.ts +6 -0
- package/dist/cjs/helpers/date.d.ts +3 -0
- package/dist/cjs/helpers/slate.d.ts +2 -0
- package/dist/cjs/helpers/styles.d.ts +5 -0
- package/dist/cjs/helpers/utils.d.ts +14 -0
- package/dist/cjs/helpers/validations.d.ts +23 -0
- package/dist/cjs/hooks/index.d.ts +2 -0
- package/dist/cjs/hooks/useRequiredConsentsAcceptedValues.d.ts +2 -0
- package/dist/cjs/hooks/useStep.d.ts +11 -0
- package/dist/cjs/icons/ArrowRight.d.ts +2 -0
- package/dist/cjs/icons/Bell.d.ts +2 -0
- package/dist/cjs/icons/Bookmark.d.ts +2 -0
- package/dist/cjs/icons/CaretDown.d.ts +2 -0
- package/dist/cjs/icons/CaretLeft.d.ts +2 -0
- package/dist/cjs/icons/CaretRight.d.ts +2 -0
- package/dist/cjs/icons/CaretUp.d.ts +2 -0
- package/dist/cjs/icons/Check.d.ts +2 -0
- package/dist/cjs/icons/Close.d.ts +2 -0
- package/dist/cjs/icons/Edit.d.ts +2 -0
- package/dist/cjs/icons/Filter.d.ts +2 -0
- package/dist/cjs/icons/Hide.d.ts +2 -0
- package/dist/cjs/icons/Info.d.ts +2 -0
- package/dist/cjs/icons/InfoBoxIcon.d.ts +2 -0
- package/dist/cjs/icons/Mail.d.ts +2 -0
- package/dist/cjs/icons/Menu.d.ts +2 -0
- package/dist/cjs/icons/Minus.d.ts +2 -0
- package/dist/cjs/icons/Mobile.d.ts +2 -0
- package/dist/cjs/icons/Play.d.ts +2 -0
- package/dist/cjs/icons/Save.d.ts +2 -0
- package/dist/cjs/icons/Search.d.ts +2 -0
- package/dist/cjs/icons/View.d.ts +2 -0
- package/dist/cjs/icons/Warning.d.ts +2 -0
- package/dist/cjs/icons/index.d.ts +23 -0
- package/dist/cjs/index.css +503 -0
- package/dist/cjs/index.d.ts +7 -0
- package/dist/cjs/index.js +23 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/cjs/molecules/Alert/Alert.d.ts +20 -0
- package/dist/cjs/molecules/Alert/Alert.stories.d.ts +9 -0
- package/dist/cjs/molecules/AvatarDropdown/AvatarDropdown.d.ts +11 -0
- package/dist/cjs/molecules/AvatarDropdown/AvatarDropdown.stories.d.ts +8 -0
- package/dist/cjs/molecules/BottomNavBarItem/BottomNavBarItem.d.ts +11 -0
- package/dist/cjs/molecules/BottomNavBarItem/BottomNavBarItem.stories.d.ts +8 -0
- package/dist/cjs/molecules/Button/Button.d.ts +47 -0
- package/dist/cjs/molecules/Button/Button.stories.d.ts +8 -0
- package/dist/cjs/molecules/Caruser/Carousel.d.ts +35 -0
- package/dist/cjs/molecules/CheckboxField/CheckboxField.d.ts +37 -0
- package/dist/cjs/molecules/CheckboxField/CheckboxField.stories.d.ts +61 -0
- package/dist/cjs/molecules/CheckboxField/CheckboxGroup.d.ts +10 -0
- package/dist/cjs/molecules/CheckboxField/CheckboxGroup.stories.d.ts +32 -0
- package/dist/cjs/molecules/CheckboxField/styles.d.ts +13 -0
- package/dist/cjs/molecules/Checklist/Checklist.d.ts +30 -0
- package/dist/cjs/molecules/Checklist/Checklist.stories.d.ts +8 -0
- package/dist/cjs/molecules/Consent/Consent.d.ts +27 -0
- package/dist/cjs/molecules/Consent/Consent.stories.d.ts +8 -0
- package/dist/cjs/molecules/Consent/ConsentCapture.d.ts +20 -0
- package/dist/cjs/molecules/Consent/ConsentMolecule.d.ts +11 -0
- package/dist/cjs/molecules/Consent/consentMock.d.ts +7 -0
- package/dist/cjs/molecules/CustomValidation/CustomValidation.d.ts +14 -0
- package/dist/cjs/molecules/CustomValidation/CustomValidation.stories.d.ts +8 -0
- package/dist/cjs/molecules/Drawer/Drawer.d.ts +3 -0
- package/dist/cjs/molecules/Drawer/Drawer.stories.d.ts +9 -0
- package/dist/cjs/molecules/Drawer/styles.d.ts +34 -0
- package/dist/cjs/molecules/EmphasizedText/EmphasizedText.d.ts +6 -0
- package/dist/cjs/molecules/EmphasizedText/EmphasizedText.stories.d.ts +8 -0
- package/dist/cjs/molecules/FeedContentHeader/FeedContentHeader.d.ts +11 -0
- package/dist/cjs/molecules/FeedContentHeader/FeedContentHeader.stories.d.ts +8 -0
- package/dist/cjs/molecules/FieldLabels/FieldLabels.d.ts +42 -0
- package/dist/cjs/molecules/FieldLabels/FieldLabels.stories.d.ts +8 -0
- package/dist/cjs/molecules/FieldLabels/helpers.d.ts +8 -0
- package/dist/cjs/molecules/FieldMapper/FieldMapper.d.ts +13 -0
- package/dist/cjs/molecules/FieldSection/FieldSection.d.ts +9 -0
- package/dist/cjs/molecules/FieldSection/FieldSection.stories.d.ts +8 -0
- package/dist/cjs/molecules/HorizontalButtonsField/HorizontalButtonsField.d.ts +12 -0
- package/dist/cjs/molecules/HorizontalButtonsField/HorizontalButtonsField.stories.d.ts +15 -0
- package/dist/cjs/molecules/Image/Image.d.ts +20 -0
- package/dist/cjs/molecules/Image/Image.stories.d.ts +8 -0
- package/dist/cjs/molecules/InputField/InputField.d.ts +22 -0
- package/dist/cjs/molecules/InputField/InputField.stories.d.ts +66 -0
- package/dist/cjs/molecules/Link/Link.d.ts +14 -0
- package/dist/cjs/molecules/Link/Link.stories.d.ts +8 -0
- package/dist/cjs/molecules/MenuItems/MenuItem.d.ts +20 -0
- package/dist/cjs/molecules/MenuItems/MenuItems.d.ts +11 -0
- package/dist/cjs/molecules/MenuItems/MenuItems.stories.d.ts +8 -0
- package/dist/cjs/molecules/MenuNavigation/MenuNavigation.d.ts +15 -0
- package/dist/cjs/molecules/MenuNavigation/MenuNavigation.stories.d.ts +9 -0
- package/dist/cjs/molecules/PasswordSetup/PasswordSetup.d.ts +13 -0
- package/dist/cjs/molecules/PasswordSetup/PasswordSetup.stories.d.ts +8 -0
- package/dist/cjs/molecules/PasswordSetup/types.d.ts +25 -0
- package/dist/cjs/molecules/PasswordSetup/utils.d.ts +3 -0
- package/dist/cjs/molecules/PdfDocument/PdfDocument.d.ts +14 -0
- package/dist/cjs/molecules/PdfDocument/PdfDocument.stories.d.ts +8 -0
- package/dist/cjs/molecules/RadioButtonField/RadioButtonField.d.ts +74 -0
- package/dist/cjs/molecules/RadioButtonField/RadioButtonField.stories.d.ts +74 -0
- package/dist/cjs/molecules/SelectField/SelectField.d.ts +23 -0
- package/dist/cjs/molecules/SelectField/SelectField.stories.d.ts +53 -0
- package/dist/cjs/molecules/SelectableInfoCard/BaseSelectable.d.ts +9 -0
- package/dist/cjs/molecules/SelectableInfoCard/SelectableCardGroup.d.ts +9 -0
- package/dist/cjs/molecules/SelectableInfoCard/SelectableInfoCard.stories.d.ts +8 -0
- package/dist/cjs/molecules/SelectableInfoCard/styles.d.ts +19 -0
- package/dist/cjs/molecules/SettingsSelectionField/SettingsSelectionField.d.ts +9 -0
- package/dist/cjs/molecules/SettingsSelectionField/SettingsSelectionField.stories.d.ts +8 -0
- package/dist/cjs/molecules/Stepper/Step.d.ts +9 -0
- package/dist/cjs/molecules/Stepper/Stepper.d.ts +12 -0
- package/dist/cjs/molecules/Stepper/Stepper.stories.d.ts +8 -0
- package/dist/cjs/molecules/Stepper/styles.d.ts +40 -0
- package/dist/cjs/molecules/TabGroup/TabGroup.d.ts +32 -0
- package/dist/cjs/molecules/TabGroup/TabGroup.stories.d.ts +8 -0
- package/dist/cjs/molecules/TabGroup/styles.d.ts +43 -0
- package/dist/cjs/molecules/TabGroup/useTabAnimation.d.ts +6 -0
- package/dist/cjs/molecules/TextMolecule/TextMolecule.d.ts +20 -0
- package/dist/cjs/molecules/TextMolecule/TextMolecule.stories.d.ts +8 -0
- package/dist/cjs/molecules/Video/Video.d.ts +22 -0
- package/dist/cjs/molecules/Video/Video.stories.d.ts +8 -0
- package/dist/cjs/molecules/ZealUIModal/ZealUIModal.d.ts +30 -0
- package/dist/cjs/molecules/ZealUIModal/ZealUIModal.stories.d.ts +8 -0
- package/dist/cjs/molecules/index.d.ts +31 -0
- package/dist/cjs/organisms/Organism/Organism.d.ts +5 -0
- package/dist/cjs/organisms/Organism/Organism.stories.d.ts +8 -0
- package/dist/cjs/organisms/Organism/mock-data.d.ts +410 -0
- package/dist/cjs/organisms/OrganismItem/OrganismItem.d.ts +14 -0
- package/dist/cjs/organisms/OrganismItem/helpers.d.ts +3 -0
- package/dist/cjs/organisms/index.d.ts +2 -0
- package/dist/cjs/organisms/types.d.ts +21 -0
- package/dist/cjs/theme/index.d.ts +5 -0
- package/dist/cjs/theme/provider.d.ts +7 -0
- package/dist/cjs/theme/theme.d.ts +2 -0
- package/dist/cjs/theme/toastStyles.d.ts +1 -0
- package/dist/cjs/theme/types.d.ts +19 -0
- package/dist/cjs/theme/useMediaQuery.d.ts +2 -0
- package/dist/cjs/typescript.d.ts +17 -0
- package/dist/esm/assets/index.d.ts +8 -0
- package/dist/esm/atoms/Avatar/Avatar.d.ts +20 -0
- package/dist/esm/atoms/Buttons/IconButton.d.ts +12 -0
- package/dist/esm/atoms/Buttons/TextButton.d.ts +21 -0
- package/dist/esm/atoms/Buttons/TouchableOpacity.d.ts +16 -0
- package/dist/esm/atoms/Checkbox/Checkbox.d.ts +14 -0
- package/dist/esm/atoms/Checkbox/helpers.d.ts +2 -0
- package/dist/esm/atoms/Checkbox/types.d.ts +18 -0
- package/dist/esm/atoms/Circle/Circle.d.ts +12 -0
- package/dist/esm/atoms/CircularIndicator/CircularIndicator.d.ts +12 -0
- package/dist/esm/atoms/Divider/Divider.d.ts +13 -0
- package/dist/esm/atoms/HorizontalButtons/HorizontalButtons.d.ts +11 -0
- package/dist/esm/atoms/Icon/Icon.d.ts +38 -0
- package/dist/esm/atoms/Input/Input.d.ts +39 -0
- package/dist/esm/atoms/Input/helpers.d.ts +44 -0
- package/dist/esm/atoms/Paddings/Paddings.d.ts +13 -0
- package/dist/esm/atoms/RadioButtons/RadioButtons.d.ts +56 -0
- package/dist/esm/atoms/RadioButtons/RadioOption.d.ts +11 -0
- package/dist/esm/atoms/RadioButtons/helpers.d.ts +17 -0
- package/dist/esm/atoms/RadioButtons/styles.d.ts +13 -0
- package/dist/esm/atoms/RegularImage/RegularImage.d.ts +38 -0
- package/dist/esm/atoms/RichTextViewer/RichTextViewer.d.ts +24 -0
- package/dist/esm/atoms/RichTextViewer/components/EditorElement.d.ts +5 -0
- package/dist/esm/atoms/RichTextViewer/components/Leaf.d.ts +2 -0
- package/dist/esm/atoms/RichTextViewer/components/index.d.ts +2 -0
- package/dist/esm/atoms/RichTextViewer/types.d.ts +36 -0
- package/dist/esm/atoms/Select/Select.d.ts +34 -0
- package/dist/esm/atoms/Select/styles.d.ts +27 -0
- package/dist/esm/atoms/Spacer/Spacer.d.ts +11 -0
- package/dist/esm/atoms/Spinner/Spinner.d.ts +9 -0
- package/dist/esm/atoms/Tab/Tab.d.ts +56 -0
- package/dist/esm/atoms/Tab/styles.d.ts +18 -0
- package/dist/esm/atoms/Tab/utils.d.ts +4 -0
- package/dist/esm/atoms/TextWrapper/TextWrapper.d.ts +23 -0
- package/dist/esm/atoms/Toast/ToastContent.d.ts +7 -0
- package/dist/esm/atoms/Toast/toast.d.ts +3 -0
- package/dist/esm/atoms/Toast/types.d.ts +6 -0
- package/dist/esm/atoms/Tooltip/Tooltip.d.ts +12 -0
- package/dist/esm/atoms/ValidationTag/ValidationTag.d.ts +6 -0
- package/dist/esm/atoms/index.d.ts +23 -0
- package/dist/esm/constants/params.d.ts +8 -0
- package/dist/esm/containers/Container.d.ts +84 -0
- package/dist/esm/containers/Container.stories.d.ts +7 -0
- package/dist/esm/containers/FormContainer.d.ts +8 -0
- package/dist/esm/containers/FormOrganismItem.d.ts +11 -0
- package/dist/esm/containers/FormStepContainer.d.ts +9 -0
- package/dist/esm/containers/MoleculeItem.d.ts +8 -0
- package/dist/esm/containers/helpers.d.ts +6 -0
- package/dist/esm/containers/hooks/index.d.ts +3 -0
- package/dist/esm/containers/hooks/useCheckCondition.d.ts +16 -0
- package/dist/esm/containers/hooks/useCheckCondition.test.d.ts +1 -0
- package/dist/esm/containers/hooks/useFormOrganismItem.d.ts +3 -0
- package/dist/esm/containers/hooks/useSetFormData.d.ts +10 -0
- package/dist/esm/containers/hooks/useStateListenerValue.d.ts +18 -0
- package/dist/esm/containers/hooks/useStateModifierHandler.d.ts +7 -0
- package/dist/esm/containers/hooks/useStateViewModifierHandler.d.ts +2 -0
- package/dist/esm/containers/index.d.ts +5 -0
- package/dist/esm/containers/mock-data.d.ts +1153 -0
- package/dist/esm/containers/styles.d.ts +41 -0
- package/dist/esm/containers/types/moleculeTypes.d.ts +345 -0
- package/dist/esm/containers/types/types.d.ts +135 -0
- package/dist/esm/contexts/AccountButtonContext/AccountButtonContext.d.ts +14 -0
- package/dist/esm/contexts/AccountButtonContext/AccountButtonContextProvider.d.ts +9 -0
- package/dist/esm/contexts/ButtonActionsContext/ButtonActionsContext.d.ts +12 -0
- package/dist/esm/contexts/ButtonActionsContext/ButtonActionsContextProvider.d.ts +26 -0
- package/dist/esm/contexts/FormStepContext/FormStepContext.d.ts +13 -0
- package/dist/esm/contexts/FormStepContext/FormStepContextProvider.d.ts +5 -0
- package/dist/esm/contexts/FormStepContext/utils.d.ts +2 -0
- package/dist/esm/contexts/MlrRichTextViewerContext/MlrRichTextViewerContext.d.ts +8 -0
- package/dist/esm/contexts/MlrRichTextViewerContext/MlrRichTextViewerProvider.d.ts +8 -0
- package/dist/esm/contexts/MlrRichTextViewerContext/types.d.ts +15 -0
- package/dist/esm/contexts/OrganismContext/OrganismContext.d.ts +33 -0
- package/dist/esm/contexts/OrganismContext/OrganismContextProvider.d.ts +31 -0
- package/dist/esm/contexts/OrganismContext/utils.d.ts +5 -0
- package/dist/esm/contexts/StateContext/StateContext.d.ts +7 -0
- package/dist/esm/contexts/StateContext/StateContextProvider.d.ts +7 -0
- package/dist/esm/contexts/hooks/index.d.ts +6 -0
- package/dist/esm/contexts/hooks/useAccountButtonContext.d.ts +6 -0
- package/dist/esm/contexts/hooks/useButtonActionsContext.d.ts +1 -0
- package/dist/esm/contexts/hooks/useFormStepContext.d.ts +1 -0
- package/dist/esm/contexts/hooks/useMlrRichTextViewerContext.d.ts +1 -0
- package/dist/esm/contexts/hooks/useOrganismContext.d.ts +1 -0
- package/dist/esm/contexts/hooks/useStateContext.d.ts +1 -0
- package/dist/esm/contexts/index.d.ts +13 -0
- package/dist/esm/fieldsConfiguration/getFieldPlaceholder.d.ts +2 -0
- package/dist/esm/fieldsConfiguration/index.d.ts +3 -0
- package/dist/esm/fieldsConfiguration/types.d.ts +29 -0
- package/dist/esm/fieldsConfiguration/utils.d.ts +6 -0
- package/dist/esm/helpers/constants.d.ts +6 -0
- package/dist/esm/helpers/date.d.ts +3 -0
- package/dist/esm/helpers/slate.d.ts +2 -0
- package/dist/esm/helpers/styles.d.ts +5 -0
- package/dist/esm/helpers/utils.d.ts +14 -0
- package/dist/esm/helpers/validations.d.ts +23 -0
- package/dist/esm/hooks/index.d.ts +2 -0
- package/dist/esm/hooks/useRequiredConsentsAcceptedValues.d.ts +2 -0
- package/dist/esm/hooks/useStep.d.ts +11 -0
- package/dist/esm/icons/ArrowRight.d.ts +2 -0
- package/dist/esm/icons/Bell.d.ts +2 -0
- package/dist/esm/icons/Bookmark.d.ts +2 -0
- package/dist/esm/icons/CaretDown.d.ts +2 -0
- package/dist/esm/icons/CaretLeft.d.ts +2 -0
- package/dist/esm/icons/CaretRight.d.ts +2 -0
- package/dist/esm/icons/CaretUp.d.ts +2 -0
- package/dist/esm/icons/Check.d.ts +2 -0
- package/dist/esm/icons/Close.d.ts +2 -0
- package/dist/esm/icons/Edit.d.ts +2 -0
- package/dist/esm/icons/Filter.d.ts +2 -0
- package/dist/esm/icons/Hide.d.ts +2 -0
- package/dist/esm/icons/Info.d.ts +2 -0
- package/dist/esm/icons/InfoBoxIcon.d.ts +2 -0
- package/dist/esm/icons/Mail.d.ts +2 -0
- package/dist/esm/icons/Menu.d.ts +2 -0
- package/dist/esm/icons/Minus.d.ts +2 -0
- package/dist/esm/icons/Mobile.d.ts +2 -0
- package/dist/esm/icons/Play.d.ts +2 -0
- package/dist/esm/icons/Save.d.ts +2 -0
- package/dist/esm/icons/Search.d.ts +2 -0
- package/dist/esm/icons/View.d.ts +2 -0
- package/dist/esm/icons/Warning.d.ts +2 -0
- package/dist/esm/icons/index.d.ts +23 -0
- package/dist/esm/index.css +503 -0
- package/dist/esm/index.d.ts +7 -0
- package/dist/esm/index.js +23 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/molecules/Alert/Alert.d.ts +20 -0
- package/dist/esm/molecules/Alert/Alert.stories.d.ts +9 -0
- package/dist/esm/molecules/AvatarDropdown/AvatarDropdown.d.ts +11 -0
- package/dist/esm/molecules/AvatarDropdown/AvatarDropdown.stories.d.ts +8 -0
- package/dist/esm/molecules/BottomNavBarItem/BottomNavBarItem.d.ts +11 -0
- package/dist/esm/molecules/BottomNavBarItem/BottomNavBarItem.stories.d.ts +8 -0
- package/dist/esm/molecules/Button/Button.d.ts +47 -0
- package/dist/esm/molecules/Button/Button.stories.d.ts +8 -0
- package/dist/esm/molecules/Caruser/Carousel.d.ts +35 -0
- package/dist/esm/molecules/CheckboxField/CheckboxField.d.ts +37 -0
- package/dist/esm/molecules/CheckboxField/CheckboxField.stories.d.ts +61 -0
- package/dist/esm/molecules/CheckboxField/CheckboxGroup.d.ts +10 -0
- package/dist/esm/molecules/CheckboxField/CheckboxGroup.stories.d.ts +32 -0
- package/dist/esm/molecules/CheckboxField/styles.d.ts +13 -0
- package/dist/esm/molecules/Checklist/Checklist.d.ts +30 -0
- package/dist/esm/molecules/Checklist/Checklist.stories.d.ts +8 -0
- package/dist/esm/molecules/Consent/Consent.d.ts +27 -0
- package/dist/esm/molecules/Consent/Consent.stories.d.ts +8 -0
- package/dist/esm/molecules/Consent/ConsentCapture.d.ts +20 -0
- package/dist/esm/molecules/Consent/ConsentMolecule.d.ts +11 -0
- package/dist/esm/molecules/Consent/consentMock.d.ts +7 -0
- package/dist/esm/molecules/CustomValidation/CustomValidation.d.ts +14 -0
- package/dist/esm/molecules/CustomValidation/CustomValidation.stories.d.ts +8 -0
- package/dist/esm/molecules/Drawer/Drawer.d.ts +3 -0
- package/dist/esm/molecules/Drawer/Drawer.stories.d.ts +9 -0
- package/dist/esm/molecules/Drawer/styles.d.ts +34 -0
- package/dist/esm/molecules/EmphasizedText/EmphasizedText.d.ts +6 -0
- package/dist/esm/molecules/EmphasizedText/EmphasizedText.stories.d.ts +8 -0
- package/dist/esm/molecules/FeedContentHeader/FeedContentHeader.d.ts +11 -0
- package/dist/esm/molecules/FeedContentHeader/FeedContentHeader.stories.d.ts +8 -0
- package/dist/esm/molecules/FieldLabels/FieldLabels.d.ts +42 -0
- package/dist/esm/molecules/FieldLabels/FieldLabels.stories.d.ts +8 -0
- package/dist/esm/molecules/FieldLabels/helpers.d.ts +8 -0
- package/dist/esm/molecules/FieldMapper/FieldMapper.d.ts +13 -0
- package/dist/esm/molecules/FieldSection/FieldSection.d.ts +9 -0
- package/dist/esm/molecules/FieldSection/FieldSection.stories.d.ts +8 -0
- package/dist/esm/molecules/HorizontalButtonsField/HorizontalButtonsField.d.ts +12 -0
- package/dist/esm/molecules/HorizontalButtonsField/HorizontalButtonsField.stories.d.ts +15 -0
- package/dist/esm/molecules/Image/Image.d.ts +20 -0
- package/dist/esm/molecules/Image/Image.stories.d.ts +8 -0
- package/dist/esm/molecules/InputField/InputField.d.ts +22 -0
- package/dist/esm/molecules/InputField/InputField.stories.d.ts +66 -0
- package/dist/esm/molecules/Link/Link.d.ts +14 -0
- package/dist/esm/molecules/Link/Link.stories.d.ts +8 -0
- package/dist/esm/molecules/MenuItems/MenuItem.d.ts +20 -0
- package/dist/esm/molecules/MenuItems/MenuItems.d.ts +11 -0
- package/dist/esm/molecules/MenuItems/MenuItems.stories.d.ts +8 -0
- package/dist/esm/molecules/MenuNavigation/MenuNavigation.d.ts +15 -0
- package/dist/esm/molecules/MenuNavigation/MenuNavigation.stories.d.ts +9 -0
- package/dist/esm/molecules/PasswordSetup/PasswordSetup.d.ts +13 -0
- package/dist/esm/molecules/PasswordSetup/PasswordSetup.stories.d.ts +8 -0
- package/dist/esm/molecules/PasswordSetup/types.d.ts +25 -0
- package/dist/esm/molecules/PasswordSetup/utils.d.ts +3 -0
- package/dist/esm/molecules/PdfDocument/PdfDocument.d.ts +14 -0
- package/dist/esm/molecules/PdfDocument/PdfDocument.stories.d.ts +8 -0
- package/dist/esm/molecules/RadioButtonField/RadioButtonField.d.ts +74 -0
- package/dist/esm/molecules/RadioButtonField/RadioButtonField.stories.d.ts +74 -0
- package/dist/esm/molecules/SelectField/SelectField.d.ts +23 -0
- package/dist/esm/molecules/SelectField/SelectField.stories.d.ts +53 -0
- package/dist/esm/molecules/SelectableInfoCard/BaseSelectable.d.ts +9 -0
- package/dist/esm/molecules/SelectableInfoCard/SelectableCardGroup.d.ts +9 -0
- package/dist/esm/molecules/SelectableInfoCard/SelectableInfoCard.stories.d.ts +8 -0
- package/dist/esm/molecules/SelectableInfoCard/styles.d.ts +19 -0
- package/dist/esm/molecules/SettingsSelectionField/SettingsSelectionField.d.ts +9 -0
- package/dist/esm/molecules/SettingsSelectionField/SettingsSelectionField.stories.d.ts +8 -0
- package/dist/esm/molecules/Stepper/Step.d.ts +9 -0
- package/dist/esm/molecules/Stepper/Stepper.d.ts +12 -0
- package/dist/esm/molecules/Stepper/Stepper.stories.d.ts +8 -0
- package/dist/esm/molecules/Stepper/styles.d.ts +40 -0
- package/dist/esm/molecules/TabGroup/TabGroup.d.ts +32 -0
- package/dist/esm/molecules/TabGroup/TabGroup.stories.d.ts +8 -0
- package/dist/esm/molecules/TabGroup/styles.d.ts +43 -0
- package/dist/esm/molecules/TabGroup/useTabAnimation.d.ts +6 -0
- package/dist/esm/molecules/TextMolecule/TextMolecule.d.ts +20 -0
- package/dist/esm/molecules/TextMolecule/TextMolecule.stories.d.ts +8 -0
- package/dist/esm/molecules/Video/Video.d.ts +22 -0
- package/dist/esm/molecules/Video/Video.stories.d.ts +8 -0
- package/dist/esm/molecules/ZealUIModal/ZealUIModal.d.ts +30 -0
- package/dist/esm/molecules/ZealUIModal/ZealUIModal.stories.d.ts +8 -0
- package/dist/esm/molecules/index.d.ts +31 -0
- package/dist/esm/organisms/Organism/Organism.d.ts +5 -0
- package/dist/esm/organisms/Organism/Organism.stories.d.ts +8 -0
- package/dist/esm/organisms/Organism/mock-data.d.ts +410 -0
- package/dist/esm/organisms/OrganismItem/OrganismItem.d.ts +14 -0
- package/dist/esm/organisms/OrganismItem/helpers.d.ts +3 -0
- package/dist/esm/organisms/index.d.ts +2 -0
- package/dist/esm/organisms/types.d.ts +21 -0
- package/dist/esm/theme/index.d.ts +5 -0
- package/dist/esm/theme/provider.d.ts +7 -0
- package/dist/esm/theme/theme.d.ts +2 -0
- package/dist/esm/theme/toastStyles.d.ts +1 -0
- package/dist/esm/theme/types.d.ts +19 -0
- package/dist/esm/theme/useMediaQuery.d.ts +2 -0
- package/dist/esm/typescript.d.ts +17 -0
- package/dist/index.d.ts +1943 -0
- package/package.json +13 -4
@@ -0,0 +1,8 @@
|
|
1
|
+
export declare const AppLogo: any;
|
2
|
+
export declare const HomeHeroImage: any;
|
3
|
+
export declare const ProfileGraphic: any;
|
4
|
+
export declare const PulseEmblem: any;
|
5
|
+
export declare const Logo: any;
|
6
|
+
export declare const AppleLogo: any;
|
7
|
+
export declare const ModernaLogo: any;
|
8
|
+
export declare const PfizerLogo: any;
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import type { Callback } from 'typescript';
|
2
|
+
import { FontSizesTypes, SizesTypes, ThemeColors } from 'theme';
|
3
|
+
import { IconNames } from '..';
|
4
|
+
export declare type AvatarProps = {
|
5
|
+
size?: SizesTypes | number;
|
6
|
+
withShadow?: boolean;
|
7
|
+
label?: string;
|
8
|
+
backgroundColor?: ThemeColors;
|
9
|
+
textConfig?: {
|
10
|
+
color?: ThemeColors;
|
11
|
+
font?: FontSizesTypes;
|
12
|
+
};
|
13
|
+
content: {
|
14
|
+
initials?: string;
|
15
|
+
iconName?: IconNames;
|
16
|
+
imageUrl?: string;
|
17
|
+
};
|
18
|
+
onPress?: Callback;
|
19
|
+
};
|
20
|
+
export declare const Avatar: ({ size, withShadow, label, backgroundColor, onPress, content: { initials, iconName, imageUrl }, textConfig: { color, font }, }: AvatarProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { ThemeColors } from 'theme';
|
2
|
+
import { IconNames, TouchableOpacityProps } from 'atoms';
|
3
|
+
import type { Callback } from 'typescript';
|
4
|
+
export declare type IconButtonProps = {
|
5
|
+
name: IconNames;
|
6
|
+
size?: number;
|
7
|
+
onClick: Callback;
|
8
|
+
color?: ThemeColors | string;
|
9
|
+
fill?: ThemeColors | string;
|
10
|
+
pointerEvents?: 'auto' | 'none';
|
11
|
+
};
|
12
|
+
export declare const IconButton: ({ name, color, onClick, disabled, activeOpacity, withoutOpacityEffect, ...props }: IconButtonProps & TouchableOpacityProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1,21 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import type { StylesType } from 'typescript';
|
3
|
+
import { BaseButtonProps } from 'molecules';
|
4
|
+
export declare type LinkVariant = 'link' | 'custom';
|
5
|
+
export declare type TextButtonProps = Pick<BaseButtonProps, 'disabled' | 'onClick' | 'children' | 'colorTheme' | 'size'> & Partial<{
|
6
|
+
buttonLink: string;
|
7
|
+
elementId: string;
|
8
|
+
$styles: StylesType;
|
9
|
+
$variant: LinkVariant;
|
10
|
+
textColor: string;
|
11
|
+
}>;
|
12
|
+
export declare const BaseTextButton: React.FC<TextButtonProps & React.AnchorHTMLAttributes<HTMLAnchorElement>>;
|
13
|
+
export declare const TextButton: import("@emotion/styled").StyledComponent<Pick<BaseButtonProps, "children" | "disabled" | "size" | "onClick" | "colorTheme"> & Partial<{
|
14
|
+
buttonLink: string;
|
15
|
+
elementId: string;
|
16
|
+
$styles: StylesType;
|
17
|
+
$variant: LinkVariant;
|
18
|
+
textColor: string;
|
19
|
+
}> & React.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
20
|
+
theme?: import("@emotion/react").Theme | undefined;
|
21
|
+
}, {}, {}>;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
2
|
+
export declare type TouchableOpacityProps = PropsWithChildren<{
|
3
|
+
activeOpacity?: number;
|
4
|
+
withoutOpacityEffect?: boolean;
|
5
|
+
disabled?: boolean;
|
6
|
+
}>;
|
7
|
+
export declare const TouchableOpacity: import("@emotion/styled").StyledComponent<{
|
8
|
+
theme?: import("@emotion/react").Theme | undefined;
|
9
|
+
as?: import("react").ElementType<any> | undefined;
|
10
|
+
} & {
|
11
|
+
activeOpacity?: number | undefined;
|
12
|
+
withoutOpacityEffect?: boolean | undefined;
|
13
|
+
disabled?: boolean | undefined;
|
14
|
+
} & {
|
15
|
+
children?: import("react").ReactNode;
|
16
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { CheckboxInternalConfigProps } from './types';
|
2
|
+
export declare type CheckboxProps = {
|
3
|
+
id: string;
|
4
|
+
onClick: (id: string) => void;
|
5
|
+
label: string;
|
6
|
+
isError?: boolean;
|
7
|
+
disabled?: boolean;
|
8
|
+
isEditMode?: boolean;
|
9
|
+
isSelected?: boolean;
|
10
|
+
isRichText?: boolean;
|
11
|
+
notInteractable?: boolean;
|
12
|
+
internalConfig?: CheckboxInternalConfigProps;
|
13
|
+
};
|
14
|
+
export declare const Checkbox: ({ id, onClick, label, isError, disabled, isEditMode, isSelected, isRichText, notInteractable, internalConfig, }: CheckboxProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import { SizesTypes, ThemeColors } from 'theme';
|
2
|
+
import type { StylesType } from 'typescript';
|
3
|
+
export declare type CheckboxInternalConfigProps = Partial<{
|
4
|
+
selectedCheckboxBackgroundColor: ThemeColors | string;
|
5
|
+
selectedCheckboxIconColor: ThemeColors | string;
|
6
|
+
buttonPadding: number;
|
7
|
+
textPadding: number;
|
8
|
+
styles: StylesType;
|
9
|
+
wrapperStyles: StylesType;
|
10
|
+
buttonOptionSpacing?: SizesTypes;
|
11
|
+
}>;
|
12
|
+
export declare type CheckboxStylesConfig = {
|
13
|
+
checkboxIconWrapperColor: StylesType;
|
14
|
+
checkboxIconColor: ThemeColors | string;
|
15
|
+
checkboxWrapperStyles: StylesType;
|
16
|
+
checkboxTextStyles: StylesType;
|
17
|
+
};
|
18
|
+
export declare type CheckBoxStates = 'selected' | 'disabled' | 'error' | 'default';
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
declare type CircleType = 'link' | 'message';
|
3
|
+
export declare type CircleBoxProps = {
|
4
|
+
index: number;
|
5
|
+
type: CircleType;
|
6
|
+
};
|
7
|
+
export declare const Circle: ({ index, type }: CircleBoxProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
8
|
+
export declare const CirclesWrapper: import("@emotion/styled").StyledComponent<{
|
9
|
+
theme?: import("@emotion/react").Theme | undefined;
|
10
|
+
as?: React.ElementType<any> | undefined;
|
11
|
+
}, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
12
|
+
export {};
|
@@ -0,0 +1,12 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { ThemeColors } from 'theme';
|
3
|
+
export declare type CircularIndicatorProps = {
|
4
|
+
active: boolean;
|
5
|
+
activeColor?: ThemeColors | string;
|
6
|
+
inactiveColor?: ThemeColors | string;
|
7
|
+
};
|
8
|
+
export declare const CircularIndicator: ({ activeColor, inactiveColor, ...props }: CircularIndicatorProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
9
|
+
export declare const CircularIndicatorStyledComponent: import("@emotion/styled").StyledComponent<{
|
10
|
+
theme?: import("@emotion/react").Theme | undefined;
|
11
|
+
as?: import("react").ElementType<any> | undefined;
|
12
|
+
} & CircularIndicatorProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { SizesTypes, ThemeColors } from 'theme';
|
3
|
+
export declare type DividerProps = {
|
4
|
+
type?: 'horizontal' | 'vertical';
|
5
|
+
color?: ThemeColors | string;
|
6
|
+
marginVertical?: SizesTypes | number;
|
7
|
+
marginHorizontal?: SizesTypes | number;
|
8
|
+
weight?: number;
|
9
|
+
};
|
10
|
+
export declare const Divider: import("@emotion/styled").StyledComponent<{
|
11
|
+
theme?: import("@emotion/react").Theme | undefined;
|
12
|
+
as?: import("react").ElementType<any> | undefined;
|
13
|
+
} & DividerProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
export declare type HorizontalButtonsProps = {
|
2
|
+
selectedButtonId: string;
|
3
|
+
buttonOptions: {
|
4
|
+
value: string;
|
5
|
+
id: string;
|
6
|
+
}[];
|
7
|
+
onClick: (value: string) => void;
|
8
|
+
disabled?: boolean;
|
9
|
+
error?: boolean;
|
10
|
+
};
|
11
|
+
export declare const HorizontalButtons: ({ onClick, disabled, buttonOptions, selectedButtonId, error, }: HorizontalButtonsProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1,38 @@
|
|
1
|
+
import { CSSObject } from '@emotion/react';
|
2
|
+
import { ThemeColors } from 'theme';
|
3
|
+
export declare type IconProps = {
|
4
|
+
name: IconNames;
|
5
|
+
size?: number;
|
6
|
+
color?: ThemeColors | string;
|
7
|
+
fill?: ThemeColors | string;
|
8
|
+
pointerEvents?: 'auto' | 'none';
|
9
|
+
style?: CSSObject;
|
10
|
+
};
|
11
|
+
declare const availableIcons: {
|
12
|
+
ArrowRight: ({ color, ...props }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
13
|
+
Bell: ({ size, color }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
14
|
+
Bookmark: ({ fill, color, size, ...props }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
15
|
+
CaretDown: ({ color, size, }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
16
|
+
CaretLeft: ({ color, size, ...props }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
17
|
+
CaretRight: ({ color, size, ...props }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
18
|
+
CaretUp: ({ color, ...props }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
19
|
+
Check: ({ size, color, }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
20
|
+
Close: ({ size, color, }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
21
|
+
Edit: ({ size, color }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
22
|
+
Filter: ({ size, color, }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
23
|
+
Hide: ({ color, size }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
24
|
+
Info: ({ size, color }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
25
|
+
InfoBoxIcon: ({ color, size }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
26
|
+
Mail: ({ size, color }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
27
|
+
Menu: ({ size, color }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
28
|
+
Minus: ({ size, color, }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
29
|
+
Mobile: ({ size, color, }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
30
|
+
Play: ({ size, color }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
31
|
+
Save: ({ size, color }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
32
|
+
Search: ({ size, color, ...props }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
33
|
+
View: ({ color, size, }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
34
|
+
Warning: ({ size, color, }: Omit<IconProps, "name">) => import("@emotion/react/jsx-runtime").JSX.Element;
|
35
|
+
};
|
36
|
+
export declare type IconNames = keyof typeof availableIcons;
|
37
|
+
export declare const Icon: ({ name, color, ...props }: IconProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
38
|
+
export {};
|
@@ -0,0 +1,39 @@
|
|
1
|
+
import type { IconNames } from 'atoms/Icon/Icon';
|
2
|
+
import { FormStateType } from 'containers';
|
3
|
+
import { InputFieldTypes } from 'fieldsConfiguration/types';
|
4
|
+
import React from 'react';
|
5
|
+
import { ThemeColors } from 'theme/types';
|
6
|
+
import type { Callback, StylesType } from 'typescript';
|
7
|
+
import { MaskConfig } from './helpers';
|
8
|
+
export declare type InputFieldInternalConfigProps = Partial<{
|
9
|
+
textColor: ThemeColors | string;
|
10
|
+
textFontSize: number;
|
11
|
+
placeholderTextColor: ThemeColors | string;
|
12
|
+
placeholderTextFontSize: number;
|
13
|
+
verticalPadding: number;
|
14
|
+
horizontalPadding: number;
|
15
|
+
styles: StylesType;
|
16
|
+
wrapperStyles: StylesType;
|
17
|
+
}>;
|
18
|
+
export declare type InputIconProps = {
|
19
|
+
name: IconNames;
|
20
|
+
onClick?: Callback;
|
21
|
+
};
|
22
|
+
export declare type InputProps = Partial<{
|
23
|
+
value: string;
|
24
|
+
leftIcon: InputIconProps;
|
25
|
+
rightIcon: InputIconProps;
|
26
|
+
onBlur: Callback;
|
27
|
+
type: InputFieldTypes;
|
28
|
+
placeholder: string;
|
29
|
+
disabled: boolean;
|
30
|
+
isEditMode: boolean;
|
31
|
+
isError: boolean;
|
32
|
+
maxLength: number;
|
33
|
+
onChange: (value: string) => void;
|
34
|
+
onKeyDown: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
35
|
+
internalConfig: InputFieldInternalConfigProps;
|
36
|
+
config?: MaskConfig;
|
37
|
+
state: FormStateType;
|
38
|
+
}>;
|
39
|
+
export declare const Input: ({ value, leftIcon, rightIcon, onChange, onBlur, disabled, isError, placeholder, isEditMode, type, internalConfig, config, ...rest }: InputProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1,44 @@
|
|
1
|
+
import { MaskedInputProps } from 'react-text-mask';
|
2
|
+
import { HTMLInputTypeAttribute } from 'react';
|
3
|
+
import { ThemeColors } from 'theme';
|
4
|
+
import { InputProps } from 'atoms';
|
5
|
+
import { InputFieldTypes } from '../../fieldsConfiguration';
|
6
|
+
import { DataModelFieldFormatCodeTypes } from '../../containers';
|
7
|
+
export declare type MaskConfig = {
|
8
|
+
maskPlaceholder?: string;
|
9
|
+
maskPattern?: Array<string | RegExp>;
|
10
|
+
dataModelFieldType: DataModelFieldFormatCodeTypes;
|
11
|
+
};
|
12
|
+
export declare const getSpecificInputProps: (type: InputFieldTypes) => {
|
13
|
+
type?: HTMLInputTypeAttribute | undefined;
|
14
|
+
inputMode?: "none" | "search" | "text" | "email" | "numeric" | "tel" | "url" | "decimal" | undefined;
|
15
|
+
};
|
16
|
+
export declare const getMaskInputProps: (type?: InputFieldTypes, config?: MaskConfig) => Pick<MaskedInputProps, 'pipe' | 'mask' | 'placeholder' | 'keepCharPositions'>;
|
17
|
+
export declare const getInputIconColor: ({ isEditMode, isFocused, isError, disabled, }: Pick<Partial<{
|
18
|
+
value: string;
|
19
|
+
leftIcon: import("atoms").InputIconProps;
|
20
|
+
rightIcon: import("atoms").InputIconProps;
|
21
|
+
onBlur: import("../../typescript").Callback;
|
22
|
+
type: InputFieldTypes;
|
23
|
+
placeholder: string;
|
24
|
+
disabled: boolean;
|
25
|
+
isEditMode: boolean;
|
26
|
+
isError: boolean;
|
27
|
+
maxLength: number;
|
28
|
+
onChange: (value: string) => void;
|
29
|
+
onKeyDown: (event: import("react").KeyboardEvent<HTMLInputElement>) => void;
|
30
|
+
internalConfig: Partial<{
|
31
|
+
textColor: string;
|
32
|
+
textFontSize: number;
|
33
|
+
placeholderTextColor: string;
|
34
|
+
placeholderTextFontSize: number;
|
35
|
+
verticalPadding: number;
|
36
|
+
horizontalPadding: number;
|
37
|
+
styles: import("@emotion/utils").SerializedStyles;
|
38
|
+
wrapperStyles: import("@emotion/utils").SerializedStyles;
|
39
|
+
}>;
|
40
|
+
config?: MaskConfig | undefined;
|
41
|
+
state: import("../../containers").FormStateType;
|
42
|
+
}>, "disabled" | "isEditMode" | "isError"> & {
|
43
|
+
isFocused: boolean;
|
44
|
+
}) => ThemeColors;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { SizesTypes } from 'theme';
|
3
|
+
export declare type PaddingProps = {
|
4
|
+
padding: SizesTypes | number;
|
5
|
+
};
|
6
|
+
export declare const HorizontalPadding: import("@emotion/styled").StyledComponent<{
|
7
|
+
theme?: import("@emotion/react").Theme | undefined;
|
8
|
+
as?: import("react").ElementType<any> | undefined;
|
9
|
+
} & PaddingProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
10
|
+
export declare const VerticalPadding: import("@emotion/styled").StyledComponent<{
|
11
|
+
theme?: import("@emotion/react").Theme | undefined;
|
12
|
+
as?: import("react").ElementType<any> | undefined;
|
13
|
+
} & PaddingProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
@@ -0,0 +1,56 @@
|
|
1
|
+
import { RefCallBack } from 'react-hook-form/dist/types';
|
2
|
+
import { SizesTypes, ThemeColors } from 'theme';
|
3
|
+
import type { Callback, OverrideStyles, StyledTransientProps, StylesType } from 'typescript';
|
4
|
+
import { SelectOption } from '../Select/Select';
|
5
|
+
export declare type RadioButtonInternalConfigProps = Partial<{
|
6
|
+
selectedRadioOptionBackgroundColor: ThemeColors | string;
|
7
|
+
selectedRadioOptionIndicatorColor: ThemeColors | string;
|
8
|
+
buttonPadding: number;
|
9
|
+
textPadding: number;
|
10
|
+
styles: StylesType;
|
11
|
+
wrapperStyles: StylesType;
|
12
|
+
buttonOptionSpacing: SizesTypes;
|
13
|
+
radioGroupWrapperStyles: StylesType;
|
14
|
+
}>;
|
15
|
+
export declare type RadioButtonsProps<T extends string> = Partial<{
|
16
|
+
ref: RefCallBack;
|
17
|
+
name: string;
|
18
|
+
value: T;
|
19
|
+
options: SelectOption[];
|
20
|
+
onBlur: Callback;
|
21
|
+
onChange: (value: T) => void;
|
22
|
+
isRow: boolean;
|
23
|
+
isError: boolean;
|
24
|
+
disabled: boolean;
|
25
|
+
isEditMode: boolean;
|
26
|
+
isRichText: boolean;
|
27
|
+
internalConfig: RadioButtonInternalConfigProps;
|
28
|
+
}>;
|
29
|
+
export declare const RadioButtons: <T extends string>({ ref, name, value, options, onBlur, onChange, isRow, isError, disabled, isEditMode, isRichText, internalConfig, }: Partial<{
|
30
|
+
ref: RefCallBack;
|
31
|
+
name: string;
|
32
|
+
value: T;
|
33
|
+
options: SelectOption[];
|
34
|
+
onBlur: Callback;
|
35
|
+
onChange: (value: T) => void;
|
36
|
+
isRow: boolean;
|
37
|
+
isError: boolean;
|
38
|
+
disabled: boolean;
|
39
|
+
isEditMode: boolean;
|
40
|
+
isRichText: boolean;
|
41
|
+
internalConfig: Partial<{
|
42
|
+
selectedRadioOptionBackgroundColor: ThemeColors | string;
|
43
|
+
selectedRadioOptionIndicatorColor: ThemeColors | string;
|
44
|
+
buttonPadding: number;
|
45
|
+
textPadding: number;
|
46
|
+
styles: StylesType;
|
47
|
+
wrapperStyles: StylesType;
|
48
|
+
buttonOptionSpacing: SizesTypes;
|
49
|
+
radioGroupWrapperStyles: StylesType;
|
50
|
+
}>;
|
51
|
+
}>) => import("@emotion/react/jsx-runtime").JSX.Element;
|
52
|
+
export declare const RadioGroupWrapper: import("@emotion/styled").StyledComponent<import("@mui/material").RadioGroupProps & {
|
53
|
+
theme?: import("@emotion/react").Theme | undefined;
|
54
|
+
} & StyledTransientProps<{
|
55
|
+
isRow: boolean;
|
56
|
+
}> & OverrideStyles, {}, {}>;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { RadioButtonInternalConfigProps, SelectOption } from 'atoms';
|
2
|
+
declare type RadioOptionProps = {
|
3
|
+
option: SelectOption;
|
4
|
+
isError?: boolean;
|
5
|
+
disabled?: boolean;
|
6
|
+
isEditMode?: boolean;
|
7
|
+
isRichText?: boolean;
|
8
|
+
internalConfig?: RadioButtonInternalConfigProps;
|
9
|
+
};
|
10
|
+
export declare const RadioOption: ({ option, isError, disabled, isEditMode, isRichText, internalConfig, }: RadioOptionProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
11
|
+
export {};
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { RadioButtonInternalConfigProps } from 'atoms';
|
2
|
+
import { ThemeColors } from 'theme';
|
3
|
+
import type { StylesType } from 'typescript';
|
4
|
+
declare type RadioOptionStylesConfig = {
|
5
|
+
textStyles: StylesType;
|
6
|
+
groupWrapperStyles: StylesType;
|
7
|
+
radioIconWrapperStyles: StylesType;
|
8
|
+
radioLabelWrapperStyles: StylesType;
|
9
|
+
textColor: ThemeColors;
|
10
|
+
};
|
11
|
+
declare type GetRadioOptionStylesProps = Partial<{
|
12
|
+
isError: boolean;
|
13
|
+
disabled: boolean;
|
14
|
+
internalConfig: RadioButtonInternalConfigProps;
|
15
|
+
}>;
|
16
|
+
export declare const getRadioOptionStyles: ({ isError, disabled, internalConfig, }: GetRadioOptionStylesProps) => RadioOptionStylesConfig;
|
17
|
+
export {};
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import type { OverrideStyles, StyledTransientProps } from 'typescript';
|
2
|
+
export declare const RadioLabelWrapper: import("@emotion/styled").StyledComponent<import("@mui/material").FormControlLabelProps & {
|
3
|
+
theme?: import("@emotion/react").Theme | undefined;
|
4
|
+
} & StyledTransientProps<{
|
5
|
+
isError?: boolean | undefined;
|
6
|
+
}> & OverrideStyles, {}, {}>;
|
7
|
+
export declare const RadioIconWrapper: import("@emotion/styled").StyledComponent<import("@mui/material").RadioProps & {
|
8
|
+
theme?: import("@emotion/react").Theme | undefined;
|
9
|
+
} & StyledTransientProps<{
|
10
|
+
disabled: boolean;
|
11
|
+
isError?: boolean | undefined;
|
12
|
+
isEditMode?: boolean | undefined;
|
13
|
+
}> & OverrideStyles, {}, {}>;
|
@@ -0,0 +1,38 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import type { Callback, OverrideStyles } from 'typescript';
|
3
|
+
import { SizesTypes } from 'theme';
|
4
|
+
export declare type RegularImageProps = {
|
5
|
+
src: string;
|
6
|
+
} & Partial<{
|
7
|
+
alt: string;
|
8
|
+
width: number | string;
|
9
|
+
height: number | string;
|
10
|
+
onClick: Callback;
|
11
|
+
cornerRadius: SizesTypes | number;
|
12
|
+
}> & OverrideStyles;
|
13
|
+
export declare const RegularImage: import("@emotion/styled").StyledComponent<{
|
14
|
+
theme?: import("@emotion/react").Theme | undefined;
|
15
|
+
as?: import("react").ElementType<any> | undefined;
|
16
|
+
} & {
|
17
|
+
src: string;
|
18
|
+
} & Partial<{
|
19
|
+
alt: string;
|
20
|
+
width: number | string;
|
21
|
+
height: number | string;
|
22
|
+
onClick: Callback;
|
23
|
+
cornerRadius: SizesTypes | number;
|
24
|
+
}> & OverrideStyles, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
25
|
+
export declare const BackgroundImage: import("@emotion/styled").StyledComponent<{
|
26
|
+
theme?: import("@emotion/react").Theme | undefined;
|
27
|
+
as?: import("react").ElementType<any> | undefined;
|
28
|
+
} & {
|
29
|
+
src: string;
|
30
|
+
} & Partial<{
|
31
|
+
alt: string;
|
32
|
+
width: number | string;
|
33
|
+
height: number | string;
|
34
|
+
onClick: Callback;
|
35
|
+
cornerRadius: SizesTypes | number;
|
36
|
+
}> & OverrideStyles & import("react").ClassAttributes<HTMLImageElement> & import("react").ImgHTMLAttributes<HTMLImageElement> & {
|
37
|
+
theme?: import("@emotion/react").Theme | undefined;
|
38
|
+
}, {}, {}>;
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { TextProps } from 'atoms';
|
2
|
+
import { Descendant } from 'slate';
|
3
|
+
import { FontSizesTypes, ThemeColors } from 'theme';
|
4
|
+
import { AnyObject, StylesType } from 'typescript';
|
5
|
+
export declare const defaultValue: Descendant[];
|
6
|
+
export declare const MATRIX_MESSAGE_ELEMENT_ID = "matrix-message";
|
7
|
+
export declare const COMMUNICATION_LINK_ELEMENT_ID = "communication-link";
|
8
|
+
export declare const MATRIX_MESSAGE_DATA_ID = "matrix-message-id";
|
9
|
+
export declare const COMMUNICATION_LINK_DATA_URL = "communication-link-url";
|
10
|
+
export declare const COMMUNICATION_LINK_DATA_TEXT = "communication-link-text";
|
11
|
+
export declare type RichTextEditorProps = {
|
12
|
+
moleculeId: string;
|
13
|
+
value: string;
|
14
|
+
font?: FontSizesTypes;
|
15
|
+
color?: ThemeColors | string;
|
16
|
+
textStyles?: StylesType;
|
17
|
+
numberOfLines?: number;
|
18
|
+
extraTextProps?: TextProps;
|
19
|
+
renderElementWrapperComponent?: (props: AnyObject) => JSX.Element;
|
20
|
+
renderElementWrapperProps?: AnyObject;
|
21
|
+
htmlElementId?: string;
|
22
|
+
isTrigger?: boolean;
|
23
|
+
};
|
24
|
+
export declare const RichTextViewer: ({ value, font, color, textStyles, numberOfLines, extraTextProps, renderElementWrapperComponent, renderElementWrapperProps, htmlElementId, moleculeId, isTrigger, }: RichTextEditorProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1,5 @@
|
|
1
|
+
import { RenderElementProps } from 'slate-react/dist/components/editable';
|
2
|
+
import { Callback } from 'typescript';
|
3
|
+
export declare const EditorElement: ({ element, children, attributes, onClick, }: RenderElementProps & {
|
4
|
+
onClick?: Callback | undefined;
|
5
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1,36 @@
|
|
1
|
+
export declare type Format = 'bold' | 'italic' | 'underline' | 'strikethrough' | 'numbered-list' | 'bulleted-list' | 'communicationLink' | 'tag' | 'variable';
|
2
|
+
export declare type TextFormat = Partial<{
|
3
|
+
bold: boolean;
|
4
|
+
italic: boolean;
|
5
|
+
underline: boolean;
|
6
|
+
strikethrough: boolean;
|
7
|
+
communicationLink: CommunicationLinkPayload;
|
8
|
+
variable: VariablePayload;
|
9
|
+
tag: {
|
10
|
+
id: string;
|
11
|
+
label: string;
|
12
|
+
};
|
13
|
+
'numbered-list': boolean;
|
14
|
+
'bulleted-list': boolean;
|
15
|
+
}>;
|
16
|
+
export declare type CustomElementType = 'paragraph' | 'list-item' | 'bulleted-list' | 'numbered-list' | 'span';
|
17
|
+
export declare type CustomText = {
|
18
|
+
text: string;
|
19
|
+
type?: CustomElementType;
|
20
|
+
} & TextFormat;
|
21
|
+
export declare type CustomElement = {
|
22
|
+
type: CustomElementType;
|
23
|
+
children: CustomText[];
|
24
|
+
href?: string;
|
25
|
+
format?: Format;
|
26
|
+
};
|
27
|
+
export declare type LinkType = 'externalLink' | 'internalLink';
|
28
|
+
export declare type CommunicationLinkPayload = {
|
29
|
+
type: LinkType;
|
30
|
+
url: string;
|
31
|
+
};
|
32
|
+
export declare type VariablePayload = {
|
33
|
+
id: string;
|
34
|
+
text: string;
|
35
|
+
};
|
36
|
+
export declare type CustomDescendant = CustomText | CustomElement;
|
@@ -0,0 +1,34 @@
|
|
1
|
+
import { RefCallBack } from 'react-hook-form/dist/types';
|
2
|
+
import { ThemeColors } from 'theme';
|
3
|
+
import type { AnyObject, Callback, StylesType } from 'typescript';
|
4
|
+
export declare type SelectOption = {
|
5
|
+
id: string;
|
6
|
+
label: string;
|
7
|
+
value?: string;
|
8
|
+
config?: AnyObject;
|
9
|
+
};
|
10
|
+
export declare type SelectInternalConfigurationOptions = {
|
11
|
+
placeholderTextColor: ThemeColors | string;
|
12
|
+
placeholderTextFontSize: number;
|
13
|
+
selectedTextColor: ThemeColors | string;
|
14
|
+
selectedTextFontSize: number;
|
15
|
+
verticalPadding: number;
|
16
|
+
horizontalPadding: number;
|
17
|
+
wrapperStyles: StylesType;
|
18
|
+
styles: StylesType;
|
19
|
+
};
|
20
|
+
export declare type SelectProps = Partial<{
|
21
|
+
ref: RefCallBack;
|
22
|
+
onBlur: Callback;
|
23
|
+
value: string;
|
24
|
+
optionsPresentation: boolean;
|
25
|
+
onChange: (value: string) => void;
|
26
|
+
placeholder: string;
|
27
|
+
disabled: boolean;
|
28
|
+
options: SelectOption[];
|
29
|
+
isError: boolean;
|
30
|
+
isEditMode: boolean;
|
31
|
+
selectInternalConfig: SelectInternalConfigurationOptions;
|
32
|
+
isRichText: boolean;
|
33
|
+
}>;
|
34
|
+
export declare const Select: ({ ref, onBlur, onChange, value, placeholder, options, disabled, optionsPresentation, isError, isEditMode, selectInternalConfig, isRichText, }: SelectProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1,27 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { StylesType } from 'typescript';
|
3
|
+
import { SelectInternalConfigurationOptions } from './Select';
|
4
|
+
declare type SelectContainerProps = {
|
5
|
+
hasValue: boolean;
|
6
|
+
disabled: boolean;
|
7
|
+
isOpen: boolean;
|
8
|
+
hasError: boolean;
|
9
|
+
$styles: StylesType;
|
10
|
+
isEditMode?: boolean;
|
11
|
+
};
|
12
|
+
export declare const SelectContainer: import("@emotion/styled").StyledComponent<{
|
13
|
+
theme?: import("@emotion/react").Theme | undefined;
|
14
|
+
as?: import("react").ElementType<any> | undefined;
|
15
|
+
} & SelectContainerProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
16
|
+
export declare const DropdownMenu: import("@emotion/styled").StyledComponent<{
|
17
|
+
theme?: import("@emotion/react").Theme | undefined;
|
18
|
+
as?: import("react").ElementType<any> | undefined;
|
19
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
20
|
+
export declare const DropdownMenuItem: import("@emotion/styled").StyledComponent<{
|
21
|
+
theme?: import("@emotion/react").Theme | undefined;
|
22
|
+
as?: import("react").ElementType<any> | undefined;
|
23
|
+
} & {
|
24
|
+
$selected: boolean;
|
25
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
26
|
+
export declare const getSelectStyles: (internalConfig?: SelectInternalConfigurationOptions, isSelectedOption?: boolean) => StylesType;
|
27
|
+
export {};
|
@@ -0,0 +1,11 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { SizesTypes } from 'theme';
|
3
|
+
export declare type SpacerProps = {
|
4
|
+
width?: SizesTypes | number;
|
5
|
+
height?: SizesTypes | number;
|
6
|
+
layout?: 'div' | 'span';
|
7
|
+
};
|
8
|
+
export declare const Spacer: import("@emotion/styled").StyledComponent<{
|
9
|
+
theme?: import("@emotion/react").Theme | undefined;
|
10
|
+
as?: import("react").ElementType<any> | undefined;
|
11
|
+
} & SpacerProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import type { SizesTypes, ThemeColors } from 'theme/types';
|
3
|
+
export declare const Spinner: import("@emotion/styled").StyledComponent<{
|
4
|
+
theme?: import("@emotion/react").Theme | undefined;
|
5
|
+
as?: import("react").ElementType<any> | undefined;
|
6
|
+
} & {
|
7
|
+
color?: ThemeColors | undefined;
|
8
|
+
size?: SizesTypes | undefined;
|
9
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|