@zealicsolutions/web-ui 0.3.35 → 0.3.37

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.
@@ -2,12 +2,14 @@
2
2
  import { ContainerComponentProps, ContainerProps } from 'containers';
3
3
  export declare const Container: ({ children, wide, compact, type, props, id, }: Partial<{
4
4
  type: import("containers").ContainerType;
5
+ containerTemplateType: "row_content_container";
5
6
  wide: Partial<{
6
7
  containerStyle: import("styled-components").CSSProperties;
7
8
  containerProps: Partial<{
8
9
  position: import("containers").ContainerPositionType;
9
10
  scrollBehaviour: import("containers").ContainerScrollBehaviourType;
10
11
  cornerRadius: number;
12
+ gap: import("theme").SizesTypes;
11
13
  styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
12
14
  formProps: import("containers").FormContainerProps;
13
15
  formStepProps: import("containers").FormStepContainerProps;
@@ -19,6 +21,7 @@ export declare const Container: ({ children, wide, compact, type, props, id, }:
19
21
  position: import("containers").ContainerPositionType;
20
22
  scrollBehaviour: import("containers").ContainerScrollBehaviourType;
21
23
  cornerRadius: number;
24
+ gap: import("theme").SizesTypes;
22
25
  styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
23
26
  formProps: import("containers").FormContainerProps;
24
27
  formStepProps: import("containers").FormStepContainerProps;
@@ -28,6 +31,7 @@ export declare const Container: ({ children, wide, compact, type, props, id, }:
28
31
  position: import("containers").ContainerPositionType;
29
32
  scrollBehaviour: import("containers").ContainerScrollBehaviourType;
30
33
  cornerRadius: number;
34
+ gap: import("theme").SizesTypes;
31
35
  styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
32
36
  formProps: import("containers").FormContainerProps;
33
37
  formStepProps: import("containers").FormStepContainerProps;
@@ -37,4 +41,4 @@ export declare const Container: ({ children, wide, compact, type, props, id, }:
37
41
  } & {
38
42
  id: string;
39
43
  }) => JSX.Element;
40
- export declare const ContainerComponent: ({ type, items, config, tabsProps, id, }: ContainerComponentProps) => JSX.Element | null;
44
+ export declare const ContainerComponent: ({ config, tabsProps, id, type, items, }: ContainerComponentProps) => JSX.Element | null;
@@ -1,7 +1,8 @@
1
1
  /// <reference types="react" />
2
2
  import { ContainerComponentProps, Molecule } from 'containers';
3
3
  import { TabGroupProps } from 'molecules';
4
- export declare const OrganismItem: ({ item, tabsProps, }: {
4
+ export declare type OrganismItemProps = {
5
5
  item: ContainerComponentProps | Molecule;
6
- tabsProps?: Pick<TabGroupProps<string, string>, "tabs" | "activeTabKey" | "onTabChange"> | undefined;
7
- }) => JSX.Element | null;
6
+ tabsProps?: Pick<TabGroupProps, 'tabs' | 'activeTabKey' | 'onTabChange'>;
7
+ };
8
+ export declare const OrganismItem: ({ item, tabsProps }: OrganismItemProps) => JSX.Element | null;
@@ -1,5 +1,7 @@
1
- import { ContainerComponentProps } from 'containers';
1
+ import { ContainerComponentProps, Molecule } from 'containers';
2
2
  export declare const sliderContainerProps: ContainerComponentProps;
3
3
  export declare const formContainerProps: ContainerComponentProps;
4
+ export declare const dynamicOrganisms: (ContainerComponentProps | Molecule)[];
5
+ export declare const dynamicContainerMock: ContainerComponentProps;
4
6
  export declare const columnContainerProps: ContainerComponentProps;
5
7
  export declare const formBuilderData: ContainerComponentProps;
@@ -4,6 +4,7 @@ export declare const ContainerWrapper: import("styled-components").StyledCompone
4
4
  position: import("containers/types/types").ContainerPositionType;
5
5
  scrollBehaviour: import("containers/types/types").ContainerScrollBehaviourType;
6
6
  cornerRadius: number;
7
+ gap: import("..").SizesTypes;
7
8
  styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
8
9
  formProps: import("containers/types/types").FormContainerProps;
9
10
  formStepProps: import("containers/types/types").FormStepContainerProps;
@@ -1,10 +1,12 @@
1
1
  import { TabGroupProps } from 'molecules';
2
2
  import { PropsWithChildren } from 'react';
3
- import { CSSProperties } from 'styled-components';
4
3
  import { ValidationMode } from 'react-hook-form';
4
+ import { CSSProperties } from 'styled-components';
5
+ import { SizesTypes } from 'theme';
5
6
  import type { AnyObject, Nullable, StylesType } from 'typescript';
6
7
  import { Molecule } from './moleculeTypes';
7
- export declare type ContainerType = 'row' | 'column' | 'slider' | 'form' | 'form_step';
8
+ export declare type ContainerType = 'row' | 'column' | 'slider' | 'form' | 'form_step' | 'dynamic';
9
+ export declare type ContainerTemplateType = 'row_content_container';
8
10
  export declare type ContainerPositionType = 'fixed' | 'sticky' | 'static' | 'relative';
9
11
  export declare type ContainerScrollBehaviourType = 'vertical' | 'horizontal' | 'auto' | 'none';
10
12
  export declare type FormStepContainerProps = {
@@ -19,6 +21,7 @@ export declare type ContainerPropsType = Partial<{
19
21
  position: ContainerPositionType;
20
22
  scrollBehaviour: ContainerScrollBehaviourType;
21
23
  cornerRadius: number;
24
+ gap: SizesTypes;
22
25
  styles: StylesType;
23
26
  formProps: FormContainerProps;
24
27
  formStepProps: FormStepContainerProps;
@@ -29,6 +32,7 @@ export declare type AdditionalContainerProps = Partial<{
29
32
  }>;
30
33
  export declare type ContainerProps = PropsWithChildren<Partial<{
31
34
  type: ContainerType;
35
+ containerTemplateType: ContainerTemplateType;
32
36
  wide: AdditionalContainerProps;
33
37
  compact: AdditionalContainerProps;
34
38
  props: ContainerPropsType;
package/dist/index.d.ts CHANGED
@@ -3,6 +3,7 @@ import * as react from 'react';
3
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
+ import * as theme from 'theme';
6
7
  import { ThemeColors as ThemeColors$1, SizesTypes as SizesTypes$1, FontSizesTypes as FontSizesTypes$2 } from 'theme';
7
8
  import * as typescript from 'typescript';
8
9
  import { StylesType, AnyObject, Callback as Callback$1, OverrideStyles, StyledTransientProps, Nullable, StrictUnion } from 'typescript';
@@ -1460,12 +1461,14 @@ declare const Link: ({ text: textProp, isRichText, ...props }: LinkProps) => JSX
1460
1461
 
1461
1462
  declare const Container: ({ children, wide, compact, type, props, id, }: Partial<{
1462
1463
  type: containers.ContainerType;
1464
+ containerTemplateType: "row_content_container";
1463
1465
  wide: Partial<{
1464
1466
  containerStyle: styled_components.CSSProperties;
1465
1467
  containerProps: Partial<{
1466
1468
  position: containers.ContainerPositionType;
1467
1469
  scrollBehaviour: containers.ContainerScrollBehaviourType;
1468
1470
  cornerRadius: number;
1471
+ gap: theme.SizesTypes;
1469
1472
  styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
1470
1473
  formProps: containers.FormContainerProps;
1471
1474
  formStepProps: containers.FormStepContainerProps;
@@ -1477,6 +1480,7 @@ declare const Container: ({ children, wide, compact, type, props, id, }: Partial
1477
1480
  position: containers.ContainerPositionType;
1478
1481
  scrollBehaviour: containers.ContainerScrollBehaviourType;
1479
1482
  cornerRadius: number;
1483
+ gap: theme.SizesTypes;
1480
1484
  styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
1481
1485
  formProps: containers.FormContainerProps;
1482
1486
  formStepProps: containers.FormStepContainerProps;
@@ -1486,6 +1490,7 @@ declare const Container: ({ children, wide, compact, type, props, id, }: Partial
1486
1490
  position: containers.ContainerPositionType;
1487
1491
  scrollBehaviour: containers.ContainerScrollBehaviourType;
1488
1492
  cornerRadius: number;
1493
+ gap: theme.SizesTypes;
1489
1494
  styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
1490
1495
  formProps: containers.FormContainerProps;
1491
1496
  formStepProps: containers.FormStepContainerProps;
@@ -1495,7 +1500,7 @@ declare const Container: ({ children, wide, compact, type, props, id, }: Partial
1495
1500
  } & {
1496
1501
  id: string;
1497
1502
  }) => JSX.Element;
1498
- declare const ContainerComponent: ({ type, items, config, tabsProps, id, }: ContainerComponentProps$1) => JSX.Element | null;
1503
+ declare const ContainerComponent: ({ config, tabsProps, id, type, items, }: ContainerComponentProps$1) => JSX.Element | null;
1499
1504
 
1500
1505
  declare type ActionTypes = 'link' | 'popup' | 'drawer' | 'download' | 'submit' | 'reset' | 'destroy';
1501
1506
  declare type DownloadFile = {
@@ -1723,7 +1728,8 @@ declare type Molecule = StrictUnion<ImageMolecule | TextMoleculeType | ButtonMol
1723
1728
  form?: UseFormReturn<any>;
1724
1729
  };
1725
1730
 
1726
- declare type ContainerType = 'row' | 'column' | 'slider' | 'form' | 'form_step';
1731
+ declare type ContainerType = 'row' | 'column' | 'slider' | 'form' | 'form_step' | 'dynamic';
1732
+ declare type ContainerTemplateType = 'row_content_container';
1727
1733
  declare type ContainerPositionType = 'fixed' | 'sticky' | 'static' | 'relative';
1728
1734
  declare type ContainerScrollBehaviourType = 'vertical' | 'horizontal' | 'auto' | 'none';
1729
1735
  declare type FormStepContainerProps = {
@@ -1738,6 +1744,7 @@ declare type ContainerPropsType = Partial<{
1738
1744
  position: ContainerPositionType;
1739
1745
  scrollBehaviour: ContainerScrollBehaviourType;
1740
1746
  cornerRadius: number;
1747
+ gap: SizesTypes$1;
1741
1748
  styles: StylesType;
1742
1749
  formProps: FormContainerProps;
1743
1750
  formStepProps: FormStepContainerProps;
@@ -1748,6 +1755,7 @@ declare type AdditionalContainerProps = Partial<{
1748
1755
  }>;
1749
1756
  declare type ContainerProps = PropsWithChildren<Partial<{
1750
1757
  type: ContainerType;
1758
+ containerTemplateType: ContainerTemplateType;
1751
1759
  wide: AdditionalContainerProps;
1752
1760
  compact: AdditionalContainerProps;
1753
1761
  props: ContainerPropsType;
@@ -1789,15 +1797,17 @@ declare const ContainerWrapper: styled_components.StyledComponent<"div", styled_
1789
1797
  position: containers_types_types.ContainerPositionType;
1790
1798
  scrollBehaviour: containers_types_types.ContainerScrollBehaviourType;
1791
1799
  cornerRadius: number;
1800
+ gap: SizesTypes;
1792
1801
  styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
1793
1802
  formProps: containers_types_types.FormContainerProps;
1794
1803
  formStepProps: containers_types_types.FormStepContainerProps;
1795
1804
  }> | undefined;
1796
1805
  }, never>;
1797
1806
 
1798
- declare const OrganismItem: ({ item, tabsProps, }: {
1807
+ declare type OrganismItemProps = {
1799
1808
  item: ContainerComponentProps$1 | Molecule$1;
1800
- tabsProps?: Pick<TabGroupProps$1<string, string>, "tabs" | "activeTabKey" | "onTabChange"> | undefined;
1801
- }) => JSX.Element | null;
1809
+ tabsProps?: Pick<TabGroupProps$1, 'tabs' | 'activeTabKey' | 'onTabChange'>;
1810
+ };
1811
+ declare const OrganismItem: ({ item, tabsProps }: OrganismItemProps) => JSX.Element | null;
1802
1812
 
1803
- 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, 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, 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 };
1813
+ 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, 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,6 +1,6 @@
1
1
  {
2
2
  "name": "@zealicsolutions/web-ui",
3
- "version": "0.3.35",
3
+ "version": "0.3.37",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+ssh://git@bitbucket.org/Zealic_Solutions/zeal-ui-web.git"