@zealicsolutions/web-ui 0.3.36 → 0.3.38
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 +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/containers/Container.d.ts +4 -1
- package/dist/cjs/src/containers/OrganismItem.d.ts +1 -2
- package/dist/cjs/src/containers/helpers.d.ts +3 -1
- package/dist/cjs/src/containers/index.d.ts +0 -1
- package/dist/cjs/src/containers/mock-data.d.ts +1 -0
- package/dist/cjs/src/containers/styles.d.ts +1 -0
- package/dist/cjs/src/containers/types/types.d.ts +3 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/containers/Container.d.ts +4 -1
- package/dist/esm/src/containers/OrganismItem.d.ts +1 -2
- package/dist/esm/src/containers/helpers.d.ts +3 -1
- package/dist/esm/src/containers/index.d.ts +0 -1
- package/dist/esm/src/containers/mock-data.d.ts +1 -0
- package/dist/esm/src/containers/styles.d.ts +1 -0
- package/dist/esm/src/containers/types/types.d.ts +3 -1
- package/dist/index.d.ts +11 -13
- package/package.json +1 -1
- package/dist/cjs/src/containers/DynamicContentContainer.d.ts +0 -9
- package/dist/esm/src/containers/DynamicContentContainer.d.ts +0 -9
@@ -13,6 +13,7 @@ export declare const Container: ({ children, wide, compact, type, props, id, }:
|
|
13
13
|
styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
|
14
14
|
formProps: import("containers").FormContainerProps;
|
15
15
|
formStepProps: import("containers").FormStepContainerProps;
|
16
|
+
padding: import("containers").Padding;
|
16
17
|
}>;
|
17
18
|
}>;
|
18
19
|
compact: Partial<{
|
@@ -25,6 +26,7 @@ export declare const Container: ({ children, wide, compact, type, props, id, }:
|
|
25
26
|
styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
|
26
27
|
formProps: import("containers").FormContainerProps;
|
27
28
|
formStepProps: import("containers").FormStepContainerProps;
|
29
|
+
padding: import("containers").Padding;
|
28
30
|
}>;
|
29
31
|
}>;
|
30
32
|
props: Partial<{
|
@@ -35,10 +37,11 @@ export declare const Container: ({ children, wide, compact, type, props, id, }:
|
|
35
37
|
styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
|
36
38
|
formProps: import("containers").FormContainerProps;
|
37
39
|
formStepProps: import("containers").FormStepContainerProps;
|
40
|
+
padding: import("containers").Padding;
|
38
41
|
}>;
|
39
42
|
}> & {
|
40
43
|
children?: import("react").ReactNode;
|
41
44
|
} & {
|
42
45
|
id: string;
|
43
46
|
}) => JSX.Element;
|
44
|
-
export declare const ContainerComponent: (
|
47
|
+
export declare const ContainerComponent: ({ config, tabsProps, id, type, items, }: ContainerComponentProps) => JSX.Element | null;
|
@@ -4,6 +4,5 @@ import { TabGroupProps } from 'molecules';
|
|
4
4
|
export declare type OrganismItemProps = {
|
5
5
|
item: ContainerComponentProps | Molecule;
|
6
6
|
tabsProps?: Pick<TabGroupProps, 'tabs' | 'activeTabKey' | 'onTabChange'>;
|
7
|
-
dynamicOrganisms?: (ContainerComponentProps | Molecule)[];
|
8
7
|
};
|
9
|
-
export declare const OrganismItem: ({ item, tabsProps
|
8
|
+
export declare const OrganismItem: ({ item, tabsProps }: OrganismItemProps) => JSX.Element | null;
|
@@ -1,2 +1,4 @@
|
|
1
|
-
import { ContainerScrollBehaviourType } from 'containers/types/types';
|
1
|
+
import { ContainerScrollBehaviourType, Padding } from 'containers/types/types';
|
2
|
+
import { ThemeSizesType } from 'theme';
|
2
3
|
export declare const getScrollBehaviour: (scrollBehaviour?: ContainerScrollBehaviourType) => "overflow-y: scroll" | "overflow-x: scroll" | "overflow: visible" | "overflow: unset";
|
4
|
+
export declare const getPadding: (padding: Padding, sizes: ThemeSizesType) => string;
|
@@ -5,3 +5,4 @@ export declare const dynamicOrganisms: (ContainerComponentProps | Molecule)[];
|
|
5
5
|
export declare const dynamicContainerMock: ContainerComponentProps;
|
6
6
|
export declare const columnContainerProps: ContainerComponentProps;
|
7
7
|
export declare const formBuilderData: ContainerComponentProps;
|
8
|
+
export declare const rowContainer: ContainerComponentProps;
|
@@ -8,5 +8,6 @@ export declare const ContainerWrapper: import("styled-components").StyledCompone
|
|
8
8
|
styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
|
9
9
|
formProps: import("containers/types/types").FormContainerProps;
|
10
10
|
formStepProps: import("containers/types/types").FormStepContainerProps;
|
11
|
+
padding: import("containers/types/types").Padding;
|
11
12
|
}> | undefined;
|
12
13
|
}, never>;
|
@@ -17,6 +17,8 @@ export declare type FormStepContainerProps = {
|
|
17
17
|
export declare type FormContainerProps = {
|
18
18
|
mode: keyof ValidationMode;
|
19
19
|
};
|
20
|
+
export declare type PaddingVariants = 'top' | 'right' | 'bottom' | 'left';
|
21
|
+
export declare type Padding = Record<PaddingVariants, SizesTypes | string> | SizesTypes | string;
|
20
22
|
export declare type ContainerPropsType = Partial<{
|
21
23
|
position: ContainerPositionType;
|
22
24
|
scrollBehaviour: ContainerScrollBehaviourType;
|
@@ -25,6 +27,7 @@ export declare type ContainerPropsType = Partial<{
|
|
25
27
|
styles: StylesType;
|
26
28
|
formProps: FormContainerProps;
|
27
29
|
formStepProps: FormStepContainerProps;
|
30
|
+
padding: Padding;
|
28
31
|
}>;
|
29
32
|
export declare type AdditionalContainerProps = Partial<{
|
30
33
|
containerStyle: CSSProperties;
|
@@ -51,7 +54,6 @@ export declare type ContainerComponentProps = {
|
|
51
54
|
metadata?: AnyObject;
|
52
55
|
attributes?: AnyObject;
|
53
56
|
containerLibraryId?: string;
|
54
|
-
dynamicOrganisms?: (ContainerComponentProps | Molecule)[];
|
55
57
|
};
|
56
58
|
export declare type CriteriaType = 'operator' | 'condition';
|
57
59
|
export declare type ConditionCriteria = {
|
package/dist/index.d.ts
CHANGED
@@ -45,8 +45,7 @@ import { CheckboxInternalConfigProps as CheckboxInternalConfigProps$1 } from 'at
|
|
45
45
|
import { CustomDescendant } from 'atoms/RichTextViewer/types';
|
46
46
|
import { ConsentCaptureProps } from 'molecules/Consent/ConsentCapture';
|
47
47
|
import * as containers_types_types from 'containers/types/types';
|
48
|
-
import { ContainerProps as ContainerProps$1
|
49
|
-
import { Molecule as Molecule$2 } from 'containers/types/moleculeTypes';
|
48
|
+
import { ContainerProps as ContainerProps$1 } from 'containers/types/types';
|
50
49
|
|
51
50
|
declare type TouchableOpacityProps = PropsWithChildren<{
|
52
51
|
activeOpacity?: number;
|
@@ -1473,6 +1472,7 @@ declare const Container: ({ children, wide, compact, type, props, id, }: Partial
|
|
1473
1472
|
styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
1474
1473
|
formProps: containers.FormContainerProps;
|
1475
1474
|
formStepProps: containers.FormStepContainerProps;
|
1475
|
+
padding: containers.Padding;
|
1476
1476
|
}>;
|
1477
1477
|
}>;
|
1478
1478
|
compact: Partial<{
|
@@ -1485,6 +1485,7 @@ declare const Container: ({ children, wide, compact, type, props, id, }: Partial
|
|
1485
1485
|
styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
1486
1486
|
formProps: containers.FormContainerProps;
|
1487
1487
|
formStepProps: containers.FormStepContainerProps;
|
1488
|
+
padding: containers.Padding;
|
1488
1489
|
}>;
|
1489
1490
|
}>;
|
1490
1491
|
props: Partial<{
|
@@ -1495,13 +1496,14 @@ declare const Container: ({ children, wide, compact, type, props, id, }: Partial
|
|
1495
1496
|
styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
1496
1497
|
formProps: containers.FormContainerProps;
|
1497
1498
|
formStepProps: containers.FormStepContainerProps;
|
1499
|
+
padding: containers.Padding;
|
1498
1500
|
}>;
|
1499
1501
|
}> & {
|
1500
1502
|
children?: react.ReactNode;
|
1501
1503
|
} & {
|
1502
1504
|
id: string;
|
1503
1505
|
}) => JSX.Element;
|
1504
|
-
declare const ContainerComponent: (
|
1506
|
+
declare const ContainerComponent: ({ config, tabsProps, id, type, items, }: ContainerComponentProps$1) => JSX.Element | null;
|
1505
1507
|
|
1506
1508
|
declare type ActionTypes = 'link' | 'popup' | 'drawer' | 'download' | 'submit' | 'reset' | 'destroy';
|
1507
1509
|
declare type DownloadFile = {
|
@@ -1741,6 +1743,8 @@ declare type FormStepContainerProps = {
|
|
1741
1743
|
declare type FormContainerProps = {
|
1742
1744
|
mode: keyof ValidationMode;
|
1743
1745
|
};
|
1746
|
+
declare type PaddingVariants = 'top' | 'right' | 'bottom' | 'left';
|
1747
|
+
declare type Padding = Record<PaddingVariants, SizesTypes$1 | string> | SizesTypes$1 | string;
|
1744
1748
|
declare type ContainerPropsType = Partial<{
|
1745
1749
|
position: ContainerPositionType;
|
1746
1750
|
scrollBehaviour: ContainerScrollBehaviourType;
|
@@ -1749,6 +1753,7 @@ declare type ContainerPropsType = Partial<{
|
|
1749
1753
|
styles: StylesType;
|
1750
1754
|
formProps: FormContainerProps;
|
1751
1755
|
formStepProps: FormStepContainerProps;
|
1756
|
+
padding: Padding;
|
1752
1757
|
}>;
|
1753
1758
|
declare type AdditionalContainerProps = Partial<{
|
1754
1759
|
containerStyle: CSSProperties;
|
@@ -1775,7 +1780,6 @@ declare type ContainerComponentProps = {
|
|
1775
1780
|
metadata?: AnyObject;
|
1776
1781
|
attributes?: AnyObject;
|
1777
1782
|
containerLibraryId?: string;
|
1778
|
-
dynamicOrganisms?: (ContainerComponentProps | Molecule)[];
|
1779
1783
|
};
|
1780
1784
|
declare type CriteriaType = 'operator' | 'condition';
|
1781
1785
|
declare type ConditionCriteria = {
|
@@ -1803,20 +1807,14 @@ declare const ContainerWrapper: styled_components.StyledComponent<"div", styled_
|
|
1803
1807
|
styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
1804
1808
|
formProps: containers_types_types.FormContainerProps;
|
1805
1809
|
formStepProps: containers_types_types.FormStepContainerProps;
|
1810
|
+
padding: containers_types_types.Padding;
|
1806
1811
|
}> | undefined;
|
1807
1812
|
}, never>;
|
1808
1813
|
|
1809
1814
|
declare type OrganismItemProps = {
|
1810
1815
|
item: ContainerComponentProps$1 | Molecule$1;
|
1811
1816
|
tabsProps?: Pick<TabGroupProps$1, 'tabs' | 'activeTabKey' | 'onTabChange'>;
|
1812
|
-
dynamicOrganisms?: (ContainerComponentProps$1 | Molecule$1)[];
|
1813
1817
|
};
|
1814
|
-
declare const OrganismItem: ({ item, tabsProps
|
1818
|
+
declare const OrganismItem: ({ item, tabsProps }: OrganismItemProps) => JSX.Element | null;
|
1815
1819
|
|
1816
|
-
|
1817
|
-
container: ContainerComponentProps$2;
|
1818
|
-
dynamicOrganisms?: (ContainerComponentProps$2 | Molecule$2)[];
|
1819
|
-
};
|
1820
|
-
declare const DynamicContentContainer: ({ dynamicOrganisms, container, }: DynamicContentContainerProps) => JSX.Element | null;
|
1821
|
-
|
1822
|
-
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, DynamicContentContainer, 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, 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 };
|
1820
|
+
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 };
|
package/package.json
CHANGED
@@ -1,9 +0,0 @@
|
|
1
|
-
/// <reference types="react" />
|
2
|
-
import { Molecule } from 'containers/types/moleculeTypes';
|
3
|
-
import { ContainerComponentProps } from 'containers/types/types';
|
4
|
-
declare type DynamicContentContainerProps = {
|
5
|
-
container: ContainerComponentProps;
|
6
|
-
dynamicOrganisms?: (ContainerComponentProps | Molecule)[];
|
7
|
-
};
|
8
|
-
export declare const DynamicContentContainer: ({ dynamicOrganisms, container, }: DynamicContentContainerProps) => JSX.Element | null;
|
9
|
-
export {};
|
@@ -1,9 +0,0 @@
|
|
1
|
-
/// <reference types="react" />
|
2
|
-
import { Molecule } from 'containers/types/moleculeTypes';
|
3
|
-
import { ContainerComponentProps } from 'containers/types/types';
|
4
|
-
declare type DynamicContentContainerProps = {
|
5
|
-
container: ContainerComponentProps;
|
6
|
-
dynamicOrganisms?: (ContainerComponentProps | Molecule)[];
|
7
|
-
};
|
8
|
-
export declare const DynamicContentContainer: ({ dynamicOrganisms, container, }: DynamicContentContainerProps) => JSX.Element | null;
|
9
|
-
export {};
|