@zealicsolutions/web-ui 0.3.138 → 0.3.139

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
- declare type ActionTypeType = 'click' | 'start' | 'complete' | 'close';
1
+ declare type ActionTypeType = 'click' | 'start' | 'complete';
2
2
  interface UseStateModifierHandlerProps {
3
3
  isTrigger?: boolean;
4
4
  id: string;
@@ -16,179 +16,4 @@ export declare const DataField: ContainerComponentProps;
16
16
  export declare const LogInPermanentPage: ContainerComponentProps;
17
17
  export declare const stateObjectButton: ContainerComponentProps;
18
18
  export declare const stateObjectLink: ContainerComponentProps;
19
- export declare const popUP: {
20
- id: string;
21
- config: {
22
- size: string;
23
- styles: {};
24
- };
25
- content: {
26
- embedded: {
27
- id: string;
28
- createdAt: string;
29
- updatedAt: string;
30
- name: string;
31
- type: string;
32
- body: {
33
- instance: string;
34
- type: string;
35
- items: {
36
- instance: string;
37
- config: {
38
- compact: {
39
- containerProps: {};
40
- containerStyle: {
41
- display: string;
42
- gap: string;
43
- width: string;
44
- flexDirection: string;
45
- };
46
- };
47
- wide: {
48
- containerProps: {};
49
- containerStyle: {
50
- display: string;
51
- gap: string;
52
- width: string;
53
- flexDirection: string;
54
- };
55
- };
56
- props: {
57
- formStepProps: {
58
- formStepName: string;
59
- order: number;
60
- conditionConfig: null;
61
- };
62
- };
63
- };
64
- type: string;
65
- items: {
66
- type: string;
67
- config: {
68
- wide: {
69
- containerProps: {};
70
- containerStyle: {
71
- display: string;
72
- gap: string;
73
- width: string;
74
- flexDirection: string;
75
- };
76
- };
77
- compact: {
78
- containerProps: {};
79
- containerStyle: {
80
- display: string;
81
- gap: string;
82
- width: string;
83
- flexDirection: string;
84
- };
85
- };
86
- };
87
- items: {
88
- id: string;
89
- moleculeLibraryId: string;
90
- instance: string;
91
- type: string;
92
- metadata: {};
93
- config: {};
94
- attributes: {
95
- label: {
96
- required: boolean;
97
- isRichText: boolean;
98
- attributeType: string;
99
- showRichTextToolbar: boolean;
100
- text: string;
101
- id: string;
102
- };
103
- required: {
104
- attributeType: string;
105
- value: boolean;
106
- id: string;
107
- };
108
- dataModelField: {
109
- id: string;
110
- attributeType: string;
111
- required: boolean;
112
- dataModelField: {
113
- dataFieldName: string;
114
- dataModelFieldId: string;
115
- defaultValue: null;
116
- entitySubtypeId: string;
117
- entitySubtypeName: string;
118
- };
119
- };
120
- conditionConfig: {
121
- id: string;
122
- attributeType: string;
123
- conditionConfig: {
124
- criteriaList: never[];
125
- segmentationType: string;
126
- };
127
- };
128
- inputType: {};
129
- };
130
- }[];
131
- metadata: {};
132
- instance: string;
133
- containerLibraryId: string;
134
- id: string;
135
- }[];
136
- metadata: {
137
- validation: string;
138
- };
139
- organismLibraryContainerId: string;
140
- containerLibraryId: string;
141
- id: string;
142
- }[];
143
- config: {
144
- compact: {
145
- containerProps: {};
146
- containerStyle: {
147
- padding: string;
148
- };
149
- };
150
- wide: {
151
- containerProps: {};
152
- containerStyle: {
153
- padding: string;
154
- };
155
- };
156
- props: {
157
- formProps: {
158
- mode: string;
159
- };
160
- styles: {
161
- display: string;
162
- flexDirection: string;
163
- gap: string;
164
- padding: string;
165
- };
166
- };
167
- };
168
- metadata: {
169
- validation: string;
170
- display: {
171
- type: string;
172
- itemsPerStep: number;
173
- };
174
- };
175
- organismLibraryContainerId: string;
176
- containerLibraryId: string;
177
- id: string;
178
- };
179
- metadata: {
180
- formType: string;
181
- editable: boolean;
182
- isEditMode: boolean;
183
- group: string[];
184
- isTrigger: boolean;
185
- referenceName: string;
186
- };
187
- status: string;
188
- brandId: string;
189
- organismLibraryId: string;
190
- subtype: string;
191
- }[];
192
- isi: null;
193
- };
194
- };
19
+ export declare const oneFieldMock: ContainerComponentProps;
@@ -4,9 +4,8 @@ export declare type ButtonActionsContextType = {
4
4
  actionContent?: ContainerComponentProps;
5
5
  setActionContent: Dispatch<SetStateAction<ContainerComponentProps>>;
6
6
  isModalVisible: boolean;
7
+ setModalVisible: Dispatch<SetStateAction<boolean>>;
7
8
  isDrawerVisible: boolean;
8
9
  setDrawerVisible: Dispatch<SetStateAction<boolean>>;
9
- setActivePopUpById: (id: string) => void;
10
- onCloseModal: (id: string) => void;
11
10
  };
12
11
  export declare const ButtonActionsContext: import("react").Context<ButtonActionsContextType>;
@@ -1,25 +1,11 @@
1
1
  import { Dispatch, PropsWithChildren, SetStateAction } from 'react';
2
- import { AnyObject } from 'typescript';
3
- import { ContainerComponentProps, Molecule } from 'containers';
4
- export declare type PopupPropsType = {
5
- id: string;
6
- config: {
7
- styles?: AnyObject;
8
- size?: 'large' | 'medium';
9
- };
10
- content: {
11
- embedded?: (ContainerComponentProps | Molecule)[];
12
- isi?: ContainerComponentProps | Molecule;
13
- };
14
- };
2
+ import { ContainerComponentProps } from 'containers';
15
3
  export declare type ButtonActionsProviderProps = PropsWithChildren<Partial<{
16
4
  actionContent: ContainerComponentProps;
17
5
  setActionContent: Dispatch<SetStateAction<ContainerComponentProps>>;
18
6
  isModalVisible: boolean;
7
+ setModalVisible: Dispatch<SetStateAction<boolean>>;
19
8
  setDrawerVisible: Dispatch<SetStateAction<boolean>>;
20
9
  isDrawerVisible: boolean;
21
- setActivePopUpById: (id: string) => void;
22
- onCloseModal: (id: string) => void;
23
- popupProps?: PopupPropsType[];
24
10
  }>>;
25
- export declare const ButtonActionsProvider: ({ children, popupProps, }: ButtonActionsProviderProps) => JSX.Element;
11
+ export declare const ButtonActionsProvider: ({ children }: ButtonActionsProviderProps) => JSX.Element;
@@ -23,6 +23,5 @@ export declare type OrganismContextType = {
23
23
  validations?: PasswordRuleValidation[];
24
24
  editable?: boolean;
25
25
  isFormInEditMode?: boolean;
26
- organismMetadata?: AnyObject;
27
26
  };
28
27
  export declare const OrganismContext: import("react").Context<OrganismContextType>;
@@ -1,7 +1,7 @@
1
- import { PropsWithChildren } from 'react';
2
1
  import { ContainerComponentProps, Molecule } from 'containers';
3
- import type { AnyObject } from 'typescript';
4
2
  import { PasswordRuleValidation } from 'molecules/PasswordSetup/PasswordSetup';
3
+ import { PropsWithChildren } from 'react';
4
+ import { AnyObject } from 'typescript';
5
5
  export declare type FormStepContextProviderProps = PropsWithChildren<Partial<{
6
6
  initItems: (ContainerComponentProps | Molecule)[];
7
7
  formId: string;
@@ -12,6 +12,5 @@ export declare type FormStepContextProviderProps = PropsWithChildren<Partial<{
12
12
  validations: PasswordRuleValidation[];
13
13
  editable: boolean;
14
14
  isFormInEditMode?: boolean;
15
- organismMetadata?: AnyObject;
16
15
  }>>;
17
- export declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, validations, editable, isFormInEditMode, organismMetadata, }: FormStepContextProviderProps) => JSX.Element;
16
+ export declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, validations, editable, isFormInEditMode, }: FormStepContextProviderProps) => JSX.Element;
@@ -1,17 +1,15 @@
1
1
  import { ModalProps as MUIModalProps } from '@mui/material';
2
2
  import React, { KeyboardEvent, PropsWithChildren } from 'react';
3
3
  import { CSSProperties } from 'styled-components';
4
- import type { OverrideStyles } from 'typescript';
4
+ import type { Callback, OverrideStyles } from 'typescript';
5
5
  export declare type ZealUIModalProps = PropsWithChildren<Pick<MUIModalProps, 'open'>> & {
6
6
  padding?: number | string;
7
7
  wrapperStyles?: CSSProperties;
8
8
  onKeyDown?: <T extends HTMLElement>(event: KeyboardEvent<T>) => void;
9
9
  modalStyles?: CSSProperties;
10
- size?: string;
11
- popupId: string;
12
- onClose: (popupId: string) => void;
10
+ onClose?: Callback;
13
11
  };
14
- export declare const ZealUIModal: ({ children, wrapperStyles, padding, onKeyDown, modalStyles, size, popupId, ...rest }: ZealUIModalProps) => JSX.Element;
12
+ export declare const ZealUIModal: ({ children, wrapperStyles, padding, onKeyDown, modalStyles, ...rest }: ZealUIModalProps) => JSX.Element;
15
13
  export declare const ModalWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, OverrideStyles, never>;
16
14
  export declare const IconWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
17
15
  activeOpacity?: number | undefined;
@@ -3,7 +3,7 @@ import type { StoryFn } from '@storybook/react';
3
3
  import { ZealUIModal as ZealUIModalComponent } from './ZealUIModal';
4
4
  declare const _default: {
5
5
  title: string;
6
- component: ({ children, wrapperStyles, padding, onKeyDown, modalStyles, size, popupId, ...rest }: import("./ZealUIModal").ZealUIModalProps) => JSX.Element;
6
+ component: ({ children, wrapperStyles, padding, onKeyDown, modalStyles, ...rest }: import("./ZealUIModal").ZealUIModalProps) => JSX.Element;
7
7
  };
8
8
  export default _default;
9
9
  export declare const ZealUIModal: StoryFn<typeof ZealUIModalComponent>;
package/dist/index.d.ts CHANGED
@@ -1382,35 +1382,21 @@ declare type ButtonActionsContextType = {
1382
1382
  actionContent?: ContainerComponentProps$1;
1383
1383
  setActionContent: Dispatch<SetStateAction<ContainerComponentProps$1>>;
1384
1384
  isModalVisible: boolean;
1385
+ setModalVisible: Dispatch<SetStateAction<boolean>>;
1385
1386
  isDrawerVisible: boolean;
1386
1387
  setDrawerVisible: Dispatch<SetStateAction<boolean>>;
1387
- setActivePopUpById: (id: string) => void;
1388
- onCloseModal: (id: string) => void;
1389
1388
  };
1390
1389
  declare const ButtonActionsContext: react.Context<ButtonActionsContextType>;
1391
1390
 
1392
- declare type PopupPropsType = {
1393
- id: string;
1394
- config: {
1395
- styles?: AnyObject$1;
1396
- size?: 'large' | 'medium';
1397
- };
1398
- content: {
1399
- embedded?: (ContainerComponentProps$1 | Molecule$1)[];
1400
- isi?: ContainerComponentProps$1 | Molecule$1;
1401
- };
1402
- };
1403
1391
  declare type ButtonActionsProviderProps = PropsWithChildren<Partial<{
1404
1392
  actionContent: ContainerComponentProps$1;
1405
1393
  setActionContent: Dispatch<SetStateAction<ContainerComponentProps$1>>;
1406
1394
  isModalVisible: boolean;
1395
+ setModalVisible: Dispatch<SetStateAction<boolean>>;
1407
1396
  setDrawerVisible: Dispatch<SetStateAction<boolean>>;
1408
1397
  isDrawerVisible: boolean;
1409
- setActivePopUpById: (id: string) => void;
1410
- onCloseModal: (id: string) => void;
1411
- popupProps?: PopupPropsType[];
1412
1398
  }>>;
1413
- declare const ButtonActionsProvider: ({ children, popupProps, }: ButtonActionsProviderProps) => JSX.Element;
1399
+ declare const ButtonActionsProvider: ({ children }: ButtonActionsProviderProps) => JSX.Element;
1414
1400
 
1415
1401
  declare type StepItem = ContainerComponentProps$1 | Molecule$1;
1416
1402
  declare type GroupedStepItemsByStepContainer = Map<string, StepItem[]>;
@@ -1434,7 +1420,6 @@ declare type OrganismContextType = {
1434
1420
  validations?: PasswordRuleValidation[];
1435
1421
  editable?: boolean;
1436
1422
  isFormInEditMode?: boolean;
1437
- organismMetadata?: AnyObject$1;
1438
1423
  };
1439
1424
  declare const OrganismContext: react.Context<OrganismContextType>;
1440
1425
 
@@ -1448,9 +1433,8 @@ declare type FormStepContextProviderProps = PropsWithChildren<Partial<{
1448
1433
  validations: PasswordRuleValidation[];
1449
1434
  editable: boolean;
1450
1435
  isFormInEditMode?: boolean;
1451
- organismMetadata?: AnyObject$1;
1452
1436
  }>>;
1453
- declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, validations, editable, isFormInEditMode, organismMetadata, }: FormStepContextProviderProps) => JSX.Element;
1437
+ declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, validations, editable, isFormInEditMode, }: FormStepContextProviderProps) => JSX.Element;
1454
1438
 
1455
1439
  declare type AccountButtonContextType = Partial<{
1456
1440
  userInitials: string;
@@ -2008,11 +1992,9 @@ declare type ZealUIModalProps = PropsWithChildren<Pick<ModalProps, 'open'>> & {
2008
1992
  wrapperStyles?: CSSProperties;
2009
1993
  onKeyDown?: <T extends HTMLElement>(event: KeyboardEvent<T>) => void;
2010
1994
  modalStyles?: CSSProperties;
2011
- size?: string;
2012
- popupId: string;
2013
- onClose: (popupId: string) => void;
1995
+ onClose?: Callback$1;
2014
1996
  };
2015
- declare const ZealUIModal: ({ children, wrapperStyles, padding, onKeyDown, modalStyles, size, popupId, ...rest }: ZealUIModalProps) => JSX.Element;
1997
+ declare const ZealUIModal: ({ children, wrapperStyles, padding, onKeyDown, modalStyles, ...rest }: ZealUIModalProps) => JSX.Element;
2016
1998
  declare const ModalWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, OverrideStyles, never>;
2017
1999
  declare const IconWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {
2018
2000
  activeOpacity?: number | undefined;
@@ -2057,4 +2039,4 @@ declare type LinkProps = Omit<TextButtonProps$1, 'children'> & Partial<{
2057
2039
  }>;
2058
2040
  declare const Link: ({ text, isRichText, htmlElementId, isTrigger, moleculeId, ...props }: LinkProps) => JSX.Element | null;
2059
2041
 
2060
- export { AccountButtonContext, AccountButtonContextType, AccountButtonMolecule, AccountButtonProvider, AccountButtonProviderProps, AcquisitionForm, AcquisitionFormProps, ActionAttributes, ActionEventType, ActionTypes, AdditionalContainerProps, AdditionalTabContainerProps, Alert, AlertProps, AnnotationsList, ArrowIconWrapper, AuthMethod, Avatar, AvatarDropdown, AvatarDropdownMenuConfigType, 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, ConsentType, Container, ContainerComponent, ContainerComponentProps, ContainerPositionType, ContainerProps, ContainerPropsType, ContainerScrollBehaviourType, ContainerTemplateType, ContainerType, ContainerWrapper, CriteriaType, CustomValidation, CustomValidationProps, CustomValidationRule, DataConnectionAttributes, DataConnectionValues, DataModelFieldFormat, DataModelFieldFormatCodeTypes, DataModelFieldFormatValueTypes, 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, FormDataStateConfig, FormOrganismItem, 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, MetadataStateConfig, MetadataType, MlrRichTextViewerContext, MlrRichTextViewerContextType, MlrRichTextViewerProvider, MlrRichTextViewerProviderProps, ModalWrapper, Molecule, MoleculeTypes, NavigationDotsWrapper, OrganismContext, OrganismContextProvider, OrganismContextType, OrganismItem, OrganismItemProps, OrientationType, Padding, PaddingVariants, PasswordSetupMolecule, PdfDocument, PdfDocumentProps, PopupPropsType, 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, SliderProps, SlidesWrapper, Spacer, SpacerProps, Spinner, StateActionType, StateConfigType, StateContext, StateContextProvider, StateContextProviderProps, StateContextType, StateEventType, StateListenerConfigType, StateModifierConfigType, 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, WrappedContainerType, Wrapper, ZealTheme, ZealThemeProvider, ZealUIModal, ZealUIModalProps, acquisitionFormMockFields, defaultTheme, defaultValue, getFieldPlaceholder, getFieldsFromFieldSections, getInitialValuesFromFields, isFormValid, loginMockFields, passwordMockFields, profileInformationMockForm, sectionMockFields, setPasswordMockFields, showAcceptToastMessage, toast, toastStyles, useButtonActionsContext, useMediaQuery, useMlrRichTextViewerContext, useRequiredConsentsAcceptedValues, useStep };
2042
+ export { AccountButtonContext, AccountButtonContextType, AccountButtonMolecule, AccountButtonProvider, AccountButtonProviderProps, AcquisitionForm, AcquisitionFormProps, ActionAttributes, ActionEventType, ActionTypes, AdditionalContainerProps, AdditionalTabContainerProps, Alert, AlertProps, AnnotationsList, ArrowIconWrapper, AuthMethod, Avatar, AvatarDropdown, AvatarDropdownMenuConfigType, 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, ConsentType, Container, ContainerComponent, ContainerComponentProps, ContainerPositionType, ContainerProps, ContainerPropsType, ContainerScrollBehaviourType, ContainerTemplateType, ContainerType, ContainerWrapper, CriteriaType, CustomValidation, CustomValidationProps, CustomValidationRule, DataConnectionAttributes, DataConnectionValues, DataModelFieldFormat, DataModelFieldFormatCodeTypes, DataModelFieldFormatValueTypes, 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, FormDataStateConfig, FormOrganismItem, 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, MetadataStateConfig, MetadataType, MlrRichTextViewerContext, MlrRichTextViewerContextType, MlrRichTextViewerProvider, MlrRichTextViewerProviderProps, ModalWrapper, Molecule, MoleculeTypes, NavigationDotsWrapper, OrganismContext, OrganismContextProvider, OrganismContextType, OrganismItem, OrganismItemProps, OrientationType, Padding, PaddingVariants, PasswordSetupMolecule, 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, SliderProps, SlidesWrapper, Spacer, SpacerProps, Spinner, StateActionType, StateConfigType, StateContext, StateContextProvider, StateContextProviderProps, StateContextType, StateEventType, StateListenerConfigType, StateModifierConfigType, 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, WrappedContainerType, Wrapper, ZealTheme, ZealThemeProvider, ZealUIModal, ZealUIModalProps, acquisitionFormMockFields, defaultTheme, defaultValue, getFieldPlaceholder, getFieldsFromFieldSections, getInitialValuesFromFields, isFormValid, loginMockFields, passwordMockFields, profileInformationMockForm, sectionMockFields, setPasswordMockFields, showAcceptToastMessage, toast, toastStyles, useButtonActionsContext, useMediaQuery, useMlrRichTextViewerContext, useRequiredConsentsAcceptedValues, useStep };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zealicsolutions/web-ui",
3
- "version": "0.3.138",
4
- "testVersion": "0.3.137",
3
+ "version": "0.3.139",
4
+ "testVersion": "0.3.139",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+ssh://git@bitbucket.org/Zealic_Solutions/zeal-ui-web.git"