@zealicsolutions/web-ui 0.3.19 → 0.3.21

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. package/dist/cjs/index.js +3 -3
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/src/containers/Container.d.ts +38 -2
  4. package/dist/cjs/src/containers/FormStepContainer.d.ts +4 -2
  5. package/dist/cjs/src/contexts/FormStepContext/FormStepContext.d.ts +12 -0
  6. package/dist/cjs/src/contexts/FormStepContext/FormStepContextProvider.d.ts +5 -0
  7. package/dist/cjs/src/contexts/OrganismContext/OrganismContext.d.ts +8 -0
  8. package/dist/cjs/src/contexts/OrganismContext/OrganismContextProvider.d.ts +6 -0
  9. package/dist/cjs/src/contexts/OrganismContext/utils.d.ts +3 -0
  10. package/dist/cjs/src/contexts/hooks/index.d.ts +4 -0
  11. package/dist/cjs/src/contexts/hooks/useFormStepContext.d.ts +1 -0
  12. package/dist/cjs/src/contexts/hooks/useOrganismContext.d.ts +1 -0
  13. package/dist/cjs/src/contexts/index.d.ts +2 -0
  14. package/dist/cjs/src/organisms/FeedContent/styles.d.ts +1 -1
  15. package/dist/esm/index.js +3 -3
  16. package/dist/esm/index.js.map +1 -1
  17. package/dist/esm/src/containers/Container.d.ts +38 -2
  18. package/dist/esm/src/containers/FormStepContainer.d.ts +4 -2
  19. package/dist/esm/src/contexts/FormStepContext/FormStepContext.d.ts +12 -0
  20. package/dist/esm/src/contexts/FormStepContext/FormStepContextProvider.d.ts +5 -0
  21. package/dist/esm/src/contexts/OrganismContext/OrganismContext.d.ts +8 -0
  22. package/dist/esm/src/contexts/OrganismContext/OrganismContextProvider.d.ts +6 -0
  23. package/dist/esm/src/contexts/OrganismContext/utils.d.ts +3 -0
  24. package/dist/esm/src/contexts/hooks/index.d.ts +4 -0
  25. package/dist/esm/src/contexts/hooks/useFormStepContext.d.ts +1 -0
  26. package/dist/esm/src/contexts/hooks/useOrganismContext.d.ts +1 -0
  27. package/dist/esm/src/contexts/index.d.ts +2 -0
  28. package/dist/esm/src/organisms/FeedContent/styles.d.ts +1 -1
  29. package/dist/index.d.ts +66 -16
  30. package/package.json +1 -1
@@ -1,4 +1,40 @@
1
1
  /// <reference types="react" />
2
2
  import { ContainerComponentProps, ContainerProps } from 'containers';
3
- export declare const Container: ({ children, wide, compact, type, props }: ContainerProps) => JSX.Element;
4
- export declare const ContainerComponent: ({ type, items, config, tabsProps }: ContainerComponentProps) => JSX.Element | null;
3
+ export declare const Container: ({ children, wide, compact, type, props, id, }: Partial<{
4
+ type: import("containers").ContainerType;
5
+ wide: Partial<{
6
+ containerStyle: import("styled-components").CSSProperties;
7
+ containerProps: Partial<{
8
+ position: import("containers").ContainerPositionType;
9
+ scrollBehaviour: import("containers").ContainerScrollBehaviourType;
10
+ cornerRadius: number;
11
+ styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
12
+ formProps: import("containers").FormContainerProps;
13
+ formStepProps: import("containers").FormStepContainerProps;
14
+ }>;
15
+ }>;
16
+ compact: Partial<{
17
+ containerStyle: import("styled-components").CSSProperties;
18
+ containerProps: Partial<{
19
+ position: import("containers").ContainerPositionType;
20
+ scrollBehaviour: import("containers").ContainerScrollBehaviourType;
21
+ cornerRadius: number;
22
+ styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
23
+ formProps: import("containers").FormContainerProps;
24
+ formStepProps: import("containers").FormStepContainerProps;
25
+ }>;
26
+ }>;
27
+ props: Partial<{
28
+ position: import("containers").ContainerPositionType;
29
+ scrollBehaviour: import("containers").ContainerScrollBehaviourType;
30
+ cornerRadius: number;
31
+ styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
32
+ formProps: import("containers").FormContainerProps;
33
+ formStepProps: import("containers").FormStepContainerProps;
34
+ }>;
35
+ }> & {
36
+ children?: import("react").ReactNode;
37
+ } & {
38
+ id: string;
39
+ }) => JSX.Element;
40
+ export declare const ContainerComponent: ({ type, items, config, tabsProps, id, }: ContainerComponentProps) => JSX.Element | null;
@@ -1,4 +1,6 @@
1
1
  import { PropsWithChildren } from 'react';
2
2
  import { FormStepContainerProps } from 'containers';
3
- export declare type StepContainerProps = PropsWithChildren<Partial<FormStepContainerProps>>;
4
- export declare const FormStepContainer: ({ formStepName, order, conditionConfig, children, }: StepContainerProps) => JSX.Element;
3
+ export declare type StepContainerProps = PropsWithChildren<Partial<FormStepContainerProps>> & {
4
+ id: string;
5
+ };
6
+ export declare const FormStepContainer: ({ formStepName, order, conditionConfig, id, }: StepContainerProps) => JSX.Element | null;
@@ -0,0 +1,12 @@
1
+ import { Dispatch, SetStateAction } from 'react';
2
+ export declare type FormStepContextType = {
3
+ steps: number;
4
+ currentStep: number;
5
+ goToNextStep: () => void;
6
+ goToPrevStep: () => void;
7
+ reset: () => void;
8
+ canGoToNextStep: boolean;
9
+ canGoToPrevStep: boolean;
10
+ setStep: Dispatch<SetStateAction<number>>;
11
+ };
12
+ export declare const FormStepContext: import("react").Context<FormStepContextType>;
@@ -0,0 +1,5 @@
1
+ import { PropsWithChildren } from 'react';
2
+ export declare type FormStepContextProviderProps = PropsWithChildren<Partial<{
3
+ initSteps: number;
4
+ }>>;
5
+ export declare const FormStepContextProvider: ({ initSteps, children, }: FormStepContextProviderProps) => JSX.Element;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import { ContainerComponentProps, Molecule } from 'containers';
3
+ import { GroupedMoleculesByStep } from './utils';
4
+ export declare type OrganismContextType = {
5
+ items: (ContainerComponentProps | Molecule)[];
6
+ groupedMoleculeByStep: GroupedMoleculesByStep;
7
+ };
8
+ export declare const OrganismContext: import("react").Context<OrganismContextType>;
@@ -0,0 +1,6 @@
1
+ import { PropsWithChildren } from 'react';
2
+ import { ContainerComponentProps, Molecule } from 'containers';
3
+ export declare type FormStepContextProviderProps = PropsWithChildren<Partial<{
4
+ initItems: (ContainerComponentProps | Molecule)[];
5
+ }>>;
6
+ export declare const OrganismContextProvider: ({ initItems, children, }: FormStepContextProviderProps) => JSX.Element;
@@ -0,0 +1,3 @@
1
+ import { ContainerComponentProps, Molecule } from 'containers';
2
+ export declare type GroupedMoleculesByStep = Map<string, Molecule[]>;
3
+ export declare const groupMoleculesByFormStep: (items: (ContainerComponentProps | Molecule)[]) => GroupedMoleculesByStep;
@@ -0,0 +1,4 @@
1
+ export { useFormStepContext } from './useFormStepContext';
2
+ export { useButtonActionsContext } from './useButtonActionsContext';
3
+ export { useMlrRichTextViewerContext } from './useMlrRichTextViewerContext';
4
+ export { useOrganismContext } from './useOrganismContext';
@@ -0,0 +1 @@
1
+ export declare const useFormStepContext: () => import("contexts/FormStepContext/FormStepContext").FormStepContextType;
@@ -0,0 +1 @@
1
+ export declare const useOrganismContext: () => import("contexts/OrganismContext/OrganismContext").OrganismContextType;
@@ -5,3 +5,5 @@ export * from './hooks/useMlrRichTextViewerContext';
5
5
  export * from './hooks/useButtonActionsContext';
6
6
  export * from './ButtonActionsContext/ButtonActionsContext';
7
7
  export * from './ButtonActionsContext/ButtonActionsContextProvider';
8
+ export * from './OrganismContext/OrganismContext';
9
+ export * from './OrganismContext/OrganismContextProvider';
@@ -15,5 +15,5 @@ export declare const CloseButton: import("styled-components").StyledComponent<"d
15
15
  disabled?: boolean | undefined;
16
16
  } & {
17
17
  children?: import("react").ReactNode;
18
- } & Pick<FeedContentProps, "withCloseIcon" | "feedContentTemplate">, never>;
18
+ } & Pick<FeedContentProps, "feedContentTemplate" | "withCloseIcon">, never>;
19
19
  export declare const PdfWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, Pick<FeedContentProps, "showDefaultDocumentStyles">, never>;
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
- import * as React$1 from 'react';
3
- import React__default, { PropsWithChildren, ReactNode, Dispatch, SetStateAction, CSSProperties as CSSProperties$1, ComponentType, KeyboardEvent } from 'react';
2
+ import * as react from 'react';
3
+ import react__default, { PropsWithChildren, ReactNode, Dispatch, SetStateAction, CSSProperties as CSSProperties$1, ComponentType, KeyboardEvent } from 'react';
4
4
  import * as styled_components from 'styled-components';
5
5
  import { CSSProperties, DefaultTheme } from 'styled-components';
6
6
  import { ThemeColors as ThemeColors$1, SizesTypes as SizesTypes$1, FontSizesTypes as FontSizesTypes$2 } from 'theme';
@@ -37,13 +37,14 @@ import { LoginFields as LoginFields$1 } from 'organisms/LoginForm/types';
37
37
  import { AnnotationsList as AnnotationsList$1 } from 'contexts/MlrRichTextViewerContext/types';
38
38
  import * as contexts_MlrRichTextViewerContext_MlrRichTextViewerContext from 'contexts/MlrRichTextViewerContext/MlrRichTextViewerContext';
39
39
  import * as contexts_ButtonActionsContext_ButtonActionsContext from 'contexts/ButtonActionsContext/ButtonActionsContext';
40
- import { ContainerComponentProps as ContainerComponentProps$1, ConditionConfig as ConditionConfig$1, ContainerProps as ContainerProps$1, Molecule as Molecule$1 } from 'containers';
40
+ import * as containers from 'containers';
41
+ import { ContainerComponentProps as ContainerComponentProps$1, Molecule as Molecule$1, ConditionConfig as ConditionConfig$1 } from 'containers';
41
42
  export * from 'helpers/constants';
42
43
  import { CheckboxInternalConfigProps as CheckboxInternalConfigProps$1 } from 'atoms/Checkbox/types';
43
44
  import { CustomDescendant } from 'atoms/RichTextViewer/types';
44
45
  import { ConsentCaptureProps } from 'molecules/Consent/ConsentCapture';
45
46
  import * as containers_types_types from 'containers/types/types';
46
- import { ContainerProps as ContainerProps$2 } from 'containers/types/types';
47
+ import { ContainerProps as ContainerProps$1 } from 'containers/types/types';
47
48
 
48
49
  declare type TouchableOpacityProps = PropsWithChildren<{
49
50
  activeOpacity?: number;
@@ -55,7 +56,7 @@ declare const TouchableOpacity: styled_components.StyledComponent<"div", styled_
55
56
  withoutOpacityEffect?: boolean | undefined;
56
57
  disabled?: boolean | undefined;
57
58
  } & {
58
- children?: React$1.ReactNode;
59
+ children?: react.ReactNode;
59
60
  }, never>;
60
61
 
61
62
  declare type CheckboxInternalConfigProps = Partial<{
@@ -187,7 +188,7 @@ declare type InputProps = {
187
188
  isError?: boolean;
188
189
  maxLength?: number;
189
190
  onChange?: (value: string) => void;
190
- onKeyDown?: (event: React__default.KeyboardEvent<HTMLInputElement>) => void;
191
+ onKeyDown?: (event: react__default.KeyboardEvent<HTMLInputElement>) => void;
191
192
  internalConfig?: InputFieldInternalConfigProps;
192
193
  config?: MaskConfig;
193
194
  };
@@ -372,7 +373,7 @@ declare type MapPosition = {
372
373
  declare type GoogleMapProps = {
373
374
  position: MapPosition;
374
375
  } & WithScriptjsProps & WithGoogleMapProps;
375
- declare const GoogleMap: React__default.ComponentClass<{
376
+ declare const GoogleMap: react__default.ComponentClass<{
376
377
  position: MapPosition;
377
378
  } & WithScriptjsProps & WithGoogleMapProps, any>;
378
379
 
@@ -496,7 +497,7 @@ declare type TabProps<T = string, K = string> = {
496
497
  selectedTabIndicatorColor: ThemeColors$1 | string;
497
498
  styles: StylesType;
498
499
  }>;
499
- declare const ZealTab: <T extends string, K extends string>({ options, onClick, text, tabKey, vertical, onOptionClick, tabTheme, tabFont, tabPadding, selectedTabIndicatorColor, textSize, defaultTabTextColor, ...tabProps }: TabProps<T, K>, ref: React__default.ForwardedRef<TabElement>) => JSX.Element;
500
+ declare const ZealTab: <T extends string, K extends string>({ options, onClick, text, tabKey, vertical, onOptionClick, tabTheme, tabFont, tabPadding, selectedTabIndicatorColor, textSize, defaultTabTextColor, ...tabProps }: TabProps<T, K>, ref: react__default.ForwardedRef<TabElement>) => JSX.Element;
500
501
  declare const Tab: <T, K>(props: {
501
502
  tabKey: T;
502
503
  text: string;
@@ -517,7 +518,7 @@ declare const Tab: <T, K>(props: {
517
518
  selectedTabIndicatorColor: ThemeColors$1 | string;
518
519
  styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
519
520
  }> & {
520
- ref?: React__default.ForwardedRef<TabElement> | undefined;
521
+ ref?: react__default.ForwardedRef<TabElement> | undefined;
521
522
  }) => ReturnType<typeof ZealTab>;
522
523
 
523
524
  declare type SetPasswordRuleValidation = {
@@ -854,7 +855,7 @@ declare type MlrRichTextViewerContextType = {
854
855
  showAnnotations: boolean;
855
856
  annotationsList: AnnotationsList$1;
856
857
  };
857
- declare const MlrRichTextViewerContext: React$1.Context<MlrRichTextViewerContextType>;
858
+ declare const MlrRichTextViewerContext: react.Context<MlrRichTextViewerContextType>;
858
859
 
859
860
  declare type AnnotationsList = {
860
861
  tags: {
@@ -884,7 +885,7 @@ declare type ButtonActionsContextType = {
884
885
  isDrawerVisible: boolean;
885
886
  setDrawerVisible: Dispatch<SetStateAction<boolean>>;
886
887
  };
887
- declare const ButtonActionsContext: React$1.Context<ButtonActionsContextType>;
888
+ declare const ButtonActionsContext: react.Context<ButtonActionsContextType>;
888
889
 
889
890
  declare type ButtonActionsProviderProps = PropsWithChildren<Partial<{
890
891
  actionContent: ContainerComponentProps$1;
@@ -896,6 +897,19 @@ declare type ButtonActionsProviderProps = PropsWithChildren<Partial<{
896
897
  }>>;
897
898
  declare const ButtonActionsProvider: ({ children }: ButtonActionsProviderProps) => JSX.Element;
898
899
 
900
+ declare type GroupedMoleculesByStep = Map<string, Molecule$1[]>;
901
+
902
+ declare type OrganismContextType = {
903
+ items: (ContainerComponentProps$1 | Molecule$1)[];
904
+ groupedMoleculeByStep: GroupedMoleculesByStep;
905
+ };
906
+ declare const OrganismContext: react.Context<OrganismContextType>;
907
+
908
+ declare type FormStepContextProviderProps = PropsWithChildren<Partial<{
909
+ initItems: (ContainerComponentProps$1 | Molecule$1)[];
910
+ }>>;
911
+ declare const OrganismContextProvider: ({ initItems, children, }: FormStepContextProviderProps) => JSX.Element;
912
+
899
913
  declare type FieldRuleLabelTypes = 'OPTIONAL' | 'REQUIRED';
900
914
  declare type LabelInternalConfig = {
901
915
  fontVariant: FontSizesTypes$2;
@@ -1389,7 +1403,7 @@ declare const IconWrapper: styled_components.StyledComponent<"div", styled_compo
1389
1403
  withoutOpacityEffect?: boolean | undefined;
1390
1404
  disabled?: boolean | undefined;
1391
1405
  } & {
1392
- children?: React__default.ReactNode;
1406
+ children?: react__default.ReactNode;
1393
1407
  }, never>;
1394
1408
 
1395
1409
  declare type ConsentCaptureMethod = 'button' | 'radioButton' | 'checkbox';
@@ -1417,8 +1431,44 @@ declare type Consent = {
1417
1431
  };
1418
1432
  declare const Consent: <T extends string>({ text, consentCaptureProps, containerStyles, clearStyles, }: ConsentProps<T>) => JSX.Element;
1419
1433
 
1420
- declare const Container: ({ children, wide, compact, type, props }: ContainerProps$1) => JSX.Element;
1421
- declare const ContainerComponent: ({ type, items, config, tabsProps }: ContainerComponentProps$1) => JSX.Element | null;
1434
+ declare const Container: ({ children, wide, compact, type, props, id, }: Partial<{
1435
+ type: containers.ContainerType;
1436
+ wide: Partial<{
1437
+ containerStyle: styled_components.CSSProperties;
1438
+ containerProps: Partial<{
1439
+ position: containers.ContainerPositionType;
1440
+ scrollBehaviour: containers.ContainerScrollBehaviourType;
1441
+ cornerRadius: number;
1442
+ styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
1443
+ formProps: containers.FormContainerProps;
1444
+ formStepProps: containers.FormStepContainerProps;
1445
+ }>;
1446
+ }>;
1447
+ compact: Partial<{
1448
+ containerStyle: styled_components.CSSProperties;
1449
+ containerProps: Partial<{
1450
+ position: containers.ContainerPositionType;
1451
+ scrollBehaviour: containers.ContainerScrollBehaviourType;
1452
+ cornerRadius: number;
1453
+ styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
1454
+ formProps: containers.FormContainerProps;
1455
+ formStepProps: containers.FormStepContainerProps;
1456
+ }>;
1457
+ }>;
1458
+ props: Partial<{
1459
+ position: containers.ContainerPositionType;
1460
+ scrollBehaviour: containers.ContainerScrollBehaviourType;
1461
+ cornerRadius: number;
1462
+ styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
1463
+ formProps: containers.FormContainerProps;
1464
+ formStepProps: containers.FormStepContainerProps;
1465
+ }>;
1466
+ }> & {
1467
+ children?: react.ReactNode;
1468
+ } & {
1469
+ id: string;
1470
+ }) => JSX.Element;
1471
+ declare const ContainerComponent: ({ type, items, config, tabsProps, id, }: ContainerComponentProps$1) => JSX.Element | null;
1422
1472
 
1423
1473
  declare type ActionTypes = 'link' | 'popup' | 'drawer' | 'download' | 'submit' | 'reset' | 'destroy';
1424
1474
  declare type DownloadFile = {
@@ -1696,7 +1746,7 @@ declare type ConditionConfig = Nullable<{
1696
1746
  criteriaList: ConditionCriteria[];
1697
1747
  }>;
1698
1748
 
1699
- declare const ContainerWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, Pick<ContainerProps$2, "type"> & {
1749
+ declare const ContainerWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, Pick<ContainerProps$1, "type"> & {
1700
1750
  containerProps?: Partial<{
1701
1751
  position: containers_types_types.ContainerPositionType;
1702
1752
  scrollBehaviour: containers_types_types.ContainerScrollBehaviourType;
@@ -1712,4 +1762,4 @@ declare const OrganismItem: ({ item, tabsProps, }: {
1712
1762
  tabsProps?: Pick<TabGroupProps$1<string, string>, "tabs" | "activeTabKey" | "onTabChange"> | undefined;
1713
1763
  }) => JSX.Element | null;
1714
1764
 
1715
- 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, ColumnItem, Columns, ColumnsProps, ConditionConfig, ConditionConfigAttributes, ConditionCriteria, Consent, ConsentCaptureMethod, ConsentFieldMolecule, ConsentProps, Container, ContainerComponent, ContainerComponentProps, ContainerPositionType, ContainerProps, ContainerPropsType, ContainerScrollBehaviourType, 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, FormStepContainerProps, 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, LinkAttributes, LoginForm, LoginFormProps, MATRIX_MESSAGE_DATA_ID, MATRIX_MESSAGE_ELEMENT_ID, MapPosition, MenuItem, MenuItems, MenuItemsProps, MenuNavigation, MenuNavigationProps, MlrRichTextViewerContext, MlrRichTextViewerContextType, MlrRichTextViewerProvider, MlrRichTextViewerProviderProps, ModalWrapper, Molecule, MoleculeTypes, NavigationDotsWrapper, OrganismItem, 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, isFormValid, loginMockFields, profileInformationMockForm, sectionMockFields, setPasswordMockFields, showAcceptToastMessage, toast, toastStyles, useButtonActionsContext, useMediaQuery, useMlrRichTextViewerContext, useRequiredConsentsAcceptedValues, useStep };
1765
+ 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, ColumnItem, Columns, ColumnsProps, ConditionConfig, ConditionConfigAttributes, ConditionCriteria, Consent, ConsentCaptureMethod, ConsentFieldMolecule, ConsentProps, Container, ContainerComponent, ContainerComponentProps, ContainerPositionType, ContainerProps, ContainerPropsType, ContainerScrollBehaviourType, 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, 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, LinkAttributes, 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, 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, isFormValid, loginMockFields, profileInformationMockForm, sectionMockFields, setPasswordMockFields, showAcceptToastMessage, toast, toastStyles, useButtonActionsContext, useMediaQuery, useMlrRichTextViewerContext, useRequiredConsentsAcceptedValues, useStep };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zealicsolutions/web-ui",
3
- "version": "0.3.19",
3
+ "version": "0.3.21",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+ssh://git@bitbucket.org/Zealic_Solutions/zeal-ui-web.git"