@zealicsolutions/web-ui 0.1.94 → 0.1.96

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.
Files changed (30) hide show
  1. package/dist/cjs/index.js +11 -11
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/src/atoms/RichTextViewer/types.d.ts +6 -1
  4. package/dist/cjs/src/molecules/BottomNavBarItem/BottomNavBarItem.d.ts +11 -0
  5. package/dist/cjs/src/molecules/BottomNavBarItem/BottomNavBarItem.stories.d.ts +9 -0
  6. package/dist/cjs/src/molecules/index.d.ts +1 -0
  7. package/dist/cjs/src/organisms/AcquisitionForm/AcquisitionForm.d.ts +1 -1
  8. package/dist/cjs/src/organisms/BottomNavBarNavigation/BottomNavBarNavigation.d.ts +6 -0
  9. package/dist/cjs/src/organisms/BottomNavBarNavigation/BottomNavBarNavigation.stories.d.ts +9 -0
  10. package/dist/cjs/src/organisms/FeedContent/constants.d.ts +2 -2
  11. package/dist/cjs/src/organisms/FeedContent/styles.d.ts +10 -0
  12. package/dist/cjs/src/organisms/FeedContent/types.d.ts +3 -0
  13. package/dist/cjs/src/organisms/index.d.ts +1 -0
  14. package/dist/cjs/src/theme/types.d.ts +1 -1
  15. package/dist/esm/index.js +8 -8
  16. package/dist/esm/index.js.map +1 -1
  17. package/dist/esm/src/atoms/RichTextViewer/types.d.ts +6 -1
  18. package/dist/esm/src/molecules/BottomNavBarItem/BottomNavBarItem.d.ts +11 -0
  19. package/dist/esm/src/molecules/BottomNavBarItem/BottomNavBarItem.stories.d.ts +9 -0
  20. package/dist/esm/src/molecules/index.d.ts +1 -0
  21. package/dist/esm/src/organisms/AcquisitionForm/AcquisitionForm.d.ts +1 -1
  22. package/dist/esm/src/organisms/BottomNavBarNavigation/BottomNavBarNavigation.d.ts +6 -0
  23. package/dist/esm/src/organisms/BottomNavBarNavigation/BottomNavBarNavigation.stories.d.ts +9 -0
  24. package/dist/esm/src/organisms/FeedContent/constants.d.ts +2 -2
  25. package/dist/esm/src/organisms/FeedContent/styles.d.ts +10 -0
  26. package/dist/esm/src/organisms/FeedContent/types.d.ts +3 -0
  27. package/dist/esm/src/organisms/index.d.ts +1 -0
  28. package/dist/esm/src/theme/types.d.ts +1 -1
  29. package/dist/index.d.ts +47 -27
  30. package/package.json +1 -1
@@ -1,10 +1,11 @@
1
- export declare type Format = 'bold' | 'italic' | 'underline' | 'strikethrough' | 'numbered-list' | 'bulleted-list' | 'communicationLink' | 'tag';
1
+ export declare type Format = 'bold' | 'italic' | 'underline' | 'strikethrough' | 'numbered-list' | 'bulleted-list' | 'communicationLink' | 'tag' | 'variable';
2
2
  export declare type TextFormat = Partial<{
3
3
  bold: boolean;
4
4
  italic: boolean;
5
5
  underline: boolean;
6
6
  strikethrough: boolean;
7
7
  communicationLink: CommunicationLinkPayload;
8
+ variable: VariablePayload;
8
9
  tag: {
9
10
  id: string;
10
11
  };
@@ -27,4 +28,8 @@ export declare type CommunicationLinkPayload = {
27
28
  type: LinkType;
28
29
  url: string;
29
30
  };
31
+ export declare type VariablePayload = {
32
+ id: string;
33
+ text: string;
34
+ };
30
35
  export declare type CustomDescendant = CustomText | CustomElement;
@@ -0,0 +1,11 @@
1
+ import { ComponentType } from 'react';
2
+ import { IconProps } from 'atoms';
3
+ import { Callback } from '../../typescript';
4
+ export declare type BottomNaVBarItemProps = {
5
+ name: string;
6
+ icon: ComponentType<Omit<IconProps, 'name'>>;
7
+ active: boolean;
8
+ activeColor: string;
9
+ onNavigate: Callback;
10
+ };
11
+ export declare const BottomNavBarItem: ({ name, icon: IconComponent, active, activeColor, onNavigate, }: BottomNaVBarItemProps) => JSX.Element;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import type { ComponentStory } from '@storybook/react';
3
+ import { BottomNavBarItem as BottomNavBarItemComponent } from './BottomNavBarItem';
4
+ declare const _default: {
5
+ title: string;
6
+ component: ({ name, icon: IconComponent, active, activeColor, onNavigate, }: import("./BottomNavBarItem").BottomNaVBarItemProps) => JSX.Element;
7
+ };
8
+ export default _default;
9
+ export declare const BottomNavBarItem: ComponentStory<typeof BottomNavBarItemComponent>;
@@ -20,3 +20,4 @@ export * from './Stepper/Stepper';
20
20
  export * from './PdfDocument/PdfDocument';
21
21
  export * from './FeedContentHeader/FeedContentHeader';
22
22
  export * from './HorizontalButtonsField/HorizontalButtonsField';
23
+ export * from './BottomNavBarItem/BottomNavBarItem';
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
+ import { UIFields } from 'fieldsConfiguration';
2
3
  import { ConsentProps } from 'organisms';
3
4
  import type { Callback } from 'typescript';
4
- import { UIFields } from '../../fieldsConfiguration';
5
5
  export declare const showAcceptToastMessage: () => void | undefined;
6
6
  export declare type AcquisitionFormProps<T extends object> = {
7
7
  fields: UIFields<T>;
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BottomNaVBarItemProps } from 'molecules';
3
+ export declare type BottomNavBarNavigationProps = {
4
+ navbarItems: BottomNaVBarItemProps[];
5
+ };
6
+ export declare const BottomNavBarNavigation: ({ navbarItems }: BottomNavBarNavigationProps) => JSX.Element;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import { ComponentStory } from '@storybook/react';
3
+ import { BottomNavBarNavigation as BottomNavBarComponent } from './BottomNavBarNavigation';
4
+ declare const _default: {
5
+ title: string;
6
+ component: ({ navbarItems }: import("./BottomNavBarNavigation").BottomNavBarNavigationProps) => JSX.Element;
7
+ };
8
+ export default _default;
9
+ export declare const BottomNavBarNavigation: ComponentStory<typeof BottomNavBarComponent>;
@@ -1,2 +1,2 @@
1
- export declare const defaultTitle = "[{\"type\":\"paragraph\",\"children\":[{\"text\":\"Feed Title\",\"bold\":true}]}]";
2
- export declare const defaultDescription = "[{\"type\":\"paragraph\",\"children\":[{\"text\":\"Feed Description\"}]}]";
1
+ export declare const defaultTitle = "[{\"type\":\"paragraph\",\"children\":[{\"text\":\"\"}]}]";
2
+ export declare const defaultDescription = "[{\"type\":\"paragraph\",\"children\":[{\"text\":\"\"}]}]";
@@ -1,3 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { FeedContentProps } from 'organisms/FeedContent/types';
1
3
  export declare const ExpandedWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
2
4
  isMobile?: boolean | undefined;
3
5
  }, never>;
@@ -5,5 +7,13 @@ export declare const TitleWrapper: import("styled-components").StyledComponent<"
5
7
  export declare const CollapsedWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
6
8
  src?: string | undefined;
7
9
  isMobile?: boolean | undefined;
10
+ isPreview?: boolean | undefined;
8
11
  }, never>;
9
12
  export declare const TruncatedText: import("styled-components").StyledComponent<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").BoxTypeMap<{}, "div">>, import("styled-components").DefaultTheme, import("atoms").TextWrapperProps, never>;
13
+ export declare const CloseButton: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
14
+ activeOpacity?: number | undefined;
15
+ withoutOpacityEffect?: boolean | undefined;
16
+ disabled?: boolean | undefined;
17
+ } & {
18
+ children?: import("react").ReactNode;
19
+ } & Pick<FeedContentProps, "withCloseIcon" | "feedContentTemplate">, never>;
@@ -16,6 +16,9 @@ export declare type FeedContentProps = {
16
16
  disabled?: boolean;
17
17
  onClick?: () => void;
18
18
  };
19
+ withCloseIcon?: {
20
+ onClose: Callback;
21
+ };
19
22
  isMobile?: boolean;
20
23
  isExpanded?: boolean;
21
24
  isPreview?: boolean;
@@ -14,3 +14,4 @@ export * from './Consent/Consent';
14
14
  export * from './ProcessTracker/ProcessTracker';
15
15
  export * from './FeedContentContainer/FeedContentContainer';
16
16
  export * from './DynamicContentZone/DynamicContentZone';
17
+ export * from './BottomNavBarNavigation/BottomNavBarNavigation';
@@ -1,4 +1,4 @@
1
- export declare type ThemeColors = 'primary' | 'secondary' | 'background' | 'gray1' | 'gray2' | 'gray3' | 'gray4' | 'gray5' | 'indigo' | 'blue' | 'white' | 'black' | 'indigoTint' | 'indigoTint2' | 'success' | 'error' | 'warning' | 'green';
1
+ export declare type ThemeColors = 'primary' | 'secondary' | 'background' | 'gray1' | 'gray2' | 'gray3' | 'gray4' | 'gray5' | 'indigo' | 'blue' | 'white' | 'black' | 'indigoTint' | 'indigoTint2' | 'success' | 'error' | 'warning' | 'green' | 'greenTint';
2
2
  export declare type SizesTypes = '2XL' | 'XL' | 'L' | 'M' | 'S' | 'XS';
3
3
  export declare type FontSizesTypes = SizesTypes | 'H2';
4
4
  export declare type BreakpointSizesTypes = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
- import { Callback, StylesType, Nullable } from 'typescript';
2
+ import { Callback as Callback$1, StylesType, Nullable } from 'typescript';
3
3
  import * as react from 'react';
4
- import react__default, { PropsWithChildren, ReactNode, Dispatch, SetStateAction } from 'react';
4
+ import react__default, { PropsWithChildren, ReactNode, ComponentType, Dispatch, SetStateAction } from 'react';
5
5
  import * as styled_components from 'styled-components';
6
6
  import { CSSProperties, DefaultTheme } from 'styled-components';
7
7
  import { IconNames as IconNames$1 } from 'atoms/Icon/Icon';
@@ -15,13 +15,14 @@ import { FeedContentTemplateTypes as FeedContentTemplateTypes$1, FeedContentProp
15
15
  import { TooltipProps as TooltipProps$1 } from 'rc-tooltip/lib/Tooltip';
16
16
  import { WithGoogleMapProps } from 'react-google-maps/lib/withGoogleMap';
17
17
  import { WithScriptjsProps } from 'react-google-maps/lib/withScriptjs';
18
- import { InputProps as InputProps$1, RadioButtonsProps as RadioButtonsProps$1, HorizontalButtonsProps as HorizontalButtonsProps$1, ButtonProps as ButtonProps$1 } from 'atoms';
18
+ import { InputProps as InputProps$1, RadioButtonsProps as RadioButtonsProps$1, HorizontalButtonsProps as HorizontalButtonsProps$1, IconProps as IconProps$1, ButtonProps as ButtonProps$1 } from 'atoms';
19
19
  import { Control, ControllerProps } from 'react-hook-form/dist/types';
20
20
  import { SelectOption as SelectOption$1 } from 'atoms/Select/types';
21
21
  import { ControllerProps as ControllerProps$1, DeepPartial, FieldValues, FormState } from 'react-hook-form';
22
22
  import { ProcessTrackerStatus as ProcessTrackerStatus$1, FilteredFeedContentType as FilteredFeedContentType$1, ConsentProps as ConsentProps$1, ProcessTrackerProps as ProcessTrackerProps$1 } from 'organisms';
23
- import { FieldSectionProps as FieldSectionProps$1, MenuItemsProps as MenuItemsProps$1, InputFieldProps as InputFieldProps$1, HeroImageProps as HeroImageProps$1, ColumnsProps as ColumnsProps$1, EmphasizedTextProps as EmphasizedTextProps$1, TabGroupProps as TabGroupProps$1, AvatarDropdownProps as AvatarDropdownProps$1, FeedContentHeaderProps as FeedContentHeaderProps$1, AlertProps as AlertProps$1 } from 'molecules';
23
+ import { FieldSectionProps as FieldSectionProps$1, MenuItemsProps as MenuItemsProps$1, InputFieldProps as InputFieldProps$1, HeroImageProps as HeroImageProps$1, ColumnsProps as ColumnsProps$1, EmphasizedTextProps as EmphasizedTextProps$1, TabGroupProps as TabGroupProps$1, AvatarDropdownProps as AvatarDropdownProps$1, FeedContentHeaderProps as FeedContentHeaderProps$1, AlertProps as AlertProps$1, BottomNaVBarItemProps as BottomNaVBarItemProps$1 } from 'molecules';
24
24
  import { SetPasswordFields, MaxRuleValidation, MinRuleValidation } from 'organisms/SetPasswordForm/types';
25
+ import { UIFields as UIFields$2 } from 'fieldsConfiguration';
25
26
  import { ConsentProps as ConsentProps$2 } from 'organisms/Consent/Consent';
26
27
  import { FooterAProps } from 'organisms/Footer/FooterA';
27
28
  import { FooterBProps } from 'organisms/Footer/FooterB';
@@ -35,7 +36,7 @@ import { AnnotationsList as AnnotationsList$1 } from 'contexts/MlrRichTextViewer
35
36
  import * as contexts_MlrRichTextViewerContext_MlrRichTextViewerContext from 'contexts/MlrRichTextViewerContext/MlrRichTextViewerContext';
36
37
 
37
38
  declare type BaseButtonProps = {
38
- onClick?: Callback;
39
+ onClick?: Callback$1;
39
40
  variant?: 'primary' | 'secondary';
40
41
  disabled?: boolean;
41
42
  fullWidth?: boolean;
@@ -91,13 +92,13 @@ declare const Select: ({ onChange, value, placeholder, options, disabled, option
91
92
 
92
93
  declare type InputIconProps = {
93
94
  name: IconNames$1;
94
- onClick?: Callback;
95
+ onClick?: Callback$1;
95
96
  };
96
97
  declare type InputProps = {
97
98
  value?: string;
98
99
  leftIcon?: InputIconProps;
99
100
  rightIcon?: InputIconProps;
100
- onBlur?: Callback;
101
+ onBlur?: Callback$1;
101
102
  type?: InputFieldTypes$1;
102
103
  placeholder?: string;
103
104
  disabled?: boolean;
@@ -173,7 +174,7 @@ declare type LinkButtonProps = PropsWithChildren<{
173
174
  activeOpacity?: number;
174
175
  withoutOpacityEffect?: boolean;
175
176
  disabled?: boolean;
176
- onClick?: Callback;
177
+ onClick?: Callback$1;
177
178
  buttonLink?: string;
178
179
  elementId?: string;
179
180
  }>;
@@ -187,7 +188,7 @@ declare const LinkButton: styled_components.StyledComponent<"div", styled_compon
187
188
  activeOpacity?: number | undefined;
188
189
  withoutOpacityEffect?: boolean | undefined;
189
190
  disabled?: boolean | undefined;
190
- onClick?: Callback | undefined;
191
+ onClick?: Callback$1 | undefined;
191
192
  buttonLink?: string | undefined;
192
193
  elementId?: string | undefined;
193
194
  }, never>;
@@ -247,7 +248,7 @@ declare type AvatarProps = {
247
248
  iconName?: IconNames;
248
249
  imageUrl?: string;
249
250
  };
250
- onPress?: Callback;
251
+ onPress?: Callback$1;
251
252
  };
252
253
  declare const Avatar: ({ size, withShadow, label, backgroundColor, onPress, content: { initials, iconName, imageUrl }, textConfig: { color, font }, }: AvatarProps) => JSX.Element;
253
254
 
@@ -427,7 +428,7 @@ declare const ZealThemeProvider: (props: PropsWithChildren<{
427
428
  theme?: DefaultTheme;
428
429
  }>) => JSX.Element;
429
430
 
430
- declare type ThemeColors = 'primary' | 'secondary' | 'background' | 'gray1' | 'gray2' | 'gray3' | 'gray4' | 'gray5' | 'indigo' | 'blue' | 'white' | 'black' | 'indigoTint' | 'indigoTint2' | 'success' | 'error' | 'warning' | 'green';
431
+ declare type ThemeColors = 'primary' | 'secondary' | 'background' | 'gray1' | 'gray2' | 'gray3' | 'gray4' | 'gray5' | 'indigo' | 'blue' | 'white' | 'black' | 'indigoTint' | 'indigoTint2' | 'success' | 'error' | 'warning' | 'green' | 'greenTint';
431
432
  declare type SizesTypes = '2XL' | 'XL' | 'L' | 'M' | 'S' | 'XS';
432
433
  declare type FontSizesTypes = SizesTypes | 'H2';
433
434
  declare type BreakpointSizesTypes = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
@@ -588,11 +589,11 @@ declare type AlertProps = {
588
589
  fullWidth?: boolean;
589
590
  isPreview?: boolean;
590
591
  withCloseIcon?: {
591
- onClose: Callback;
592
+ onClose: Callback$1;
592
593
  };
593
594
  fontColor?: ThemeColors$2;
594
595
  destinationLink?: string;
595
- onDestinationHandler?: Callback;
596
+ onDestinationHandler?: Callback$1;
596
597
  containerStyles?: CSSProperties;
597
598
  };
598
599
  declare const Alert: ({ logo, title, withCloseIcon, description, style, fontColor, containerStyles, ...props }: AlertProps) => JSX.Element;
@@ -635,6 +636,17 @@ declare type ToggleFieldProps = {
635
636
  };
636
637
  declare const HorizontalButtonsField: ({ name, title, control, description, horizontalButtonsProps, }: ToggleFieldProps) => JSX.Element;
637
638
 
639
+ declare type Callback = () => void;
640
+
641
+ declare type BottomNaVBarItemProps = {
642
+ name: string;
643
+ icon: ComponentType<Omit<IconProps$1, 'name'>>;
644
+ active: boolean;
645
+ activeColor: string;
646
+ onNavigate: Callback;
647
+ };
648
+ declare const BottomNavBarItem: ({ name, icon: IconComponent, active, activeColor, onNavigate, }: BottomNaVBarItemProps) => JSX.Element;
649
+
638
650
  declare type SetPasswordRuleValidation = {
639
651
  label: string;
640
652
  rule: MaxRuleValidation | MinRuleValidation;
@@ -651,7 +663,7 @@ declare const SetPasswordForm: ({ logoUrl, fields, validations, onBack, onSubmit
651
663
 
652
664
  declare const showAcceptToastMessage: () => void | undefined;
653
665
  declare type AcquisitionFormProps<T extends object> = {
654
- fields: UIFields<T>;
666
+ fields: UIFields$2<T>;
655
667
  consents: ConsentProps$1[];
656
668
  logoUrl: string;
657
669
  isLoading?: boolean;
@@ -660,7 +672,7 @@ declare type AcquisitionFormProps<T extends object> = {
660
672
  description?: string;
661
673
  buttonText?: string;
662
674
  onSubmit: (values: T) => void;
663
- onLinkButtonClick?: Callback;
675
+ onLinkButtonClick?: Callback$1;
664
676
  showConsentLabel?: boolean;
665
677
  triggerFormInitially?: boolean;
666
678
  isTooltipVisible?: boolean;
@@ -696,8 +708,8 @@ declare type LoginFormProps = {
696
708
  };
697
709
  optionsPresentation?: boolean;
698
710
  onSubmit: (values: LoginFields) => void;
699
- onSignUpButtonClick?: Callback;
700
- onForgotPasswordButtonClick?: Callback;
711
+ onSignUpButtonClick?: Callback$1;
712
+ onForgotPasswordButtonClick?: Callback$1;
701
713
  isTooltipVisible?: boolean;
702
714
  consents: ConsentProps$2[];
703
715
  };
@@ -721,16 +733,19 @@ declare type FeedContentProps = {
721
733
  disabled?: boolean;
722
734
  onClick?: () => void;
723
735
  };
736
+ withCloseIcon?: {
737
+ onClose: Callback$1;
738
+ };
724
739
  isMobile?: boolean;
725
740
  isExpanded?: boolean;
726
741
  isPreview?: boolean;
727
742
  destinationLink?: string;
728
- onDestinationHandler?: Callback;
743
+ onDestinationHandler?: Callback$1;
729
744
  imageStyles?: CSSProperties;
730
745
  videoStyles?: CSSProperties;
731
746
  isEnabledFavoriting?: boolean;
732
747
  isFavorite?: boolean;
733
- onFavoriteClickHandler?: Callback;
748
+ onFavoriteClickHandler?: Callback$1;
734
749
  onFavoriteIconClick?: (selectedFeedContent: FeedContentProps) => void;
735
750
  };
736
751
 
@@ -756,9 +771,9 @@ declare type ProfileInformationProps<TabKeys extends string> = {
756
771
  title: string;
757
772
  editIcons?: {
758
773
  isEditMode: boolean;
759
- onSave: Callback;
760
- onEdit: Callback;
761
- onClose: Callback;
774
+ onSave: Callback$1;
775
+ onEdit: Callback$1;
776
+ onClose: Callback$1;
762
777
  };
763
778
  };
764
779
  declare const ProfileInformation: <TabKeys extends string>({ avatarProps, backgroundImageUrl, initialTabKey, tabs, title, editIcons, tabContents, }: ProfileInformationProps<TabKeys>) => JSX.Element;
@@ -770,7 +785,7 @@ declare type ForgotPasswordFormProps = {
770
785
  logoUrl: string;
771
786
  isLoading?: boolean;
772
787
  onSubmit?: (values: EmailAddressFields) => void;
773
- onBack?: Callback;
788
+ onBack?: Callback$1;
774
789
  };
775
790
  declare const ForgotPasswordForm: ({ logoUrl, onBack, onSubmit, isLoading, }: ForgotPasswordFormProps) => JSX.Element;
776
791
 
@@ -796,7 +811,7 @@ declare type HeaderAProps<T = string> = {
796
811
  links?: ImportantLink[];
797
812
  logoUrl: string;
798
813
  tabsProps: TabGroupProps$1;
799
- onActionButtonClick?: Callback;
814
+ onActionButtonClick?: Callback$1;
800
815
  buttonText: string;
801
816
  buttonLink: string;
802
817
  isMobile?: boolean;
@@ -860,10 +875,10 @@ declare type ProcessTrackerProps = {
860
875
  currentStep?: number;
861
876
  style?: CSSProperties;
862
877
  withCloseIcon?: {
863
- onClose: Callback;
878
+ onClose: Callback$1;
864
879
  };
865
880
  destinationLink?: string;
866
- onDestinationHandler?: Callback;
881
+ onDestinationHandler?: Callback$1;
867
882
  };
868
883
  declare const ProcessTracker: ({ title, statuses, isMobile, description, currentStep, style, withCloseIcon, }: ProcessTrackerProps) => JSX.Element;
869
884
 
@@ -893,6 +908,11 @@ declare type DynamicContentZoneProps = {
893
908
  };
894
909
  declare const DynamicContentZone: ({ elements, horizontalPaddings, containerStyles, }: DynamicContentZoneProps) => JSX.Element;
895
910
 
911
+ declare type BottomNavBarNavigationProps = {
912
+ navbarItems: BottomNaVBarItemProps$1[];
913
+ };
914
+ declare const BottomNavBarNavigation: ({ navbarItems }: BottomNavBarNavigationProps) => JSX.Element;
915
+
896
916
  declare type DefaultTemplateProps = {
897
917
  alerts?: AlertProps$2[];
898
918
  processTracker?: ProcessTrackerProps$1;
@@ -943,4 +963,4 @@ declare type AnnotationsList = {
943
963
 
944
964
  declare const useMlrRichTextViewerContext: () => contexts_MlrRichTextViewerContext_MlrRichTextViewerContext.MlrRichTextViewerContextType;
945
965
 
946
- export { AcquisitionForm, AcquisitionFormProps, Alert, AlertProps, AnnotationsList, AuthMethod, Avatar, AvatarDropdown, AvatarDropdownProps, AvatarProps, BaseButtonProps, Body, BodyProps, BreakpointSizesTypes, Button, ButtonProps, COMMUNICATION_LINK_DATA_TEXT, COMMUNICATION_LINK_DATA_URL, COMMUNICATION_LINK_ELEMENT_ID, CaretIconWrapper, CheckBoxProps, Checkbox, CheckboxField, CheckboxFieldProps, Circle, CircleBoxProps, ColumnItem, Columns, ColumnsProps, Consent, ConsentProps, CustomValidation, CustomValidationProps, CustomValidationRule, DefaultTemplate, DefaultTemplateProps, Divider, DividerProps, Drawer, DynamicContentZone, DynamicContentZoneProps, DynamicElementProps, EmphasizedText, EmphasizedTextProps, FeedContent, FeedContentContainer, FeedContentContainerProps, FeedContentHeader, FeedContentHeaderProps, FeedTemplateKeys, FieldLabels, FieldLabelsProps, FieldMapper, FieldMapperProps, FieldRuleLabelTypes, FieldSection, FieldSectionProps, FieldTypes, FilteredFeedContentType, FontSizesTypes, Footer, FooterContentInfo, FooterLink, FooterProps, ForgotPasswordForm, ForgotPasswordFormProps, GoogleMap, GoogleMapProps, Header, HeaderProps, HeroImage, HeroImageAlignment, HeroImageProps, HorizontalButtons, HorizontalButtonsField, HorizontalButtonsProps, HorizontalPadding, HorizontalPaddingProps, ISI, ISIProps, Icon, IconNames, IconProps, Image, ImageProps, Input, InputField, InputFieldProps, InputFieldTypes, InputIconProps, InputProps, LinkButton, LinkButtonProps, LoginForm, LoginFormProps, MATRIX_MESSAGE_DATA_ID, MATRIX_MESSAGE_ELEMENT_ID, MapPosition, MenuItem, MenuItems, MenuItemsProps, MenuNavigation, MenuNavigationProps, MlrRichTextViewerContext, MlrRichTextViewerContextType, MlrRichTextViewerProvider, MlrRichTextViewerProviderProps, OrientationType, PdfDocument, PdfDocumentProps, ProcessTracker, ProcessTrackerProps, ProcessTrackerStatus, ProfileInformation, ProfileInformationProps, RadioButtonField, RadioButtonFieldProps, RadioButtonType, RadioButtons, RadioButtonsProps, RichTextEditorProps, RichTextViewer, Select, SelectField, SelectFieldProps, SelectableCardGroup, SelectableCardGroupProps, SetPasswordForm, SetPasswordFormProps, SetPasswordRuleValidation, SizesTypes, Spacer, SpacerProps, Spinner, Stepper, StepperProps, StyleWrapper, TabGroup, TabGroupProps, TextTypes, TextWrapper, TextWrapperProps, ThemeColors, ThemeColorsType, ThemeDevicesType, ThemeSizesType, ThemeTextType, Tooltip, TooltipProps, TouchableOpacity, TouchableOpacityProps, TwoFactorAuth, TwoFactorAuthProps, UICheckboxField, UIField, UIFields, UIInputField, UISelectField, ValidationTag, ValidationTagProps, ValidationTagStatus, VerticalPadding, Video, VideoProps, ZealTheme, ZealThemeProvider, acquisitionFormMockFields, defaultTheme, getFieldPlaceholder, getFieldsFromFieldSections, getInitialValuesFromFields, isFormValid, loginMockFields, profileInformationMockForm, sectionMockFields, setPasswordMockFields, showAcceptToastMessage, toast, toastStyles, useMediaQuery, useMlrRichTextViewerContext, useRequiredConsentsAcceptedValues, useStep };
966
+ export { AcquisitionForm, AcquisitionFormProps, Alert, AlertProps, AnnotationsList, AuthMethod, Avatar, AvatarDropdown, AvatarDropdownProps, AvatarProps, BaseButtonProps, Body, BodyProps, BottomNaVBarItemProps, BottomNavBarItem, BottomNavBarNavigation, BottomNavBarNavigationProps, BreakpointSizesTypes, Button, ButtonProps, COMMUNICATION_LINK_DATA_TEXT, COMMUNICATION_LINK_DATA_URL, COMMUNICATION_LINK_ELEMENT_ID, CaretIconWrapper, CheckBoxProps, Checkbox, CheckboxField, CheckboxFieldProps, Circle, CircleBoxProps, ColumnItem, Columns, ColumnsProps, Consent, ConsentProps, CustomValidation, CustomValidationProps, CustomValidationRule, DefaultTemplate, DefaultTemplateProps, Divider, DividerProps, Drawer, DynamicContentZone, DynamicContentZoneProps, DynamicElementProps, EmphasizedText, EmphasizedTextProps, FeedContent, FeedContentContainer, FeedContentContainerProps, FeedContentHeader, FeedContentHeaderProps, FeedTemplateKeys, FieldLabels, FieldLabelsProps, FieldMapper, FieldMapperProps, FieldRuleLabelTypes, FieldSection, FieldSectionProps, FieldTypes, FilteredFeedContentType, FontSizesTypes, Footer, FooterContentInfo, FooterLink, FooterProps, ForgotPasswordForm, ForgotPasswordFormProps, GoogleMap, GoogleMapProps, Header, HeaderProps, HeroImage, HeroImageAlignment, HeroImageProps, HorizontalButtons, HorizontalButtonsField, HorizontalButtonsProps, HorizontalPadding, HorizontalPaddingProps, ISI, ISIProps, Icon, IconNames, IconProps, Image, ImageProps, Input, InputField, InputFieldProps, InputFieldTypes, InputIconProps, InputProps, LinkButton, LinkButtonProps, LoginForm, LoginFormProps, MATRIX_MESSAGE_DATA_ID, MATRIX_MESSAGE_ELEMENT_ID, MapPosition, MenuItem, MenuItems, MenuItemsProps, MenuNavigation, MenuNavigationProps, MlrRichTextViewerContext, MlrRichTextViewerContextType, MlrRichTextViewerProvider, MlrRichTextViewerProviderProps, OrientationType, PdfDocument, PdfDocumentProps, ProcessTracker, ProcessTrackerProps, ProcessTrackerStatus, ProfileInformation, ProfileInformationProps, RadioButtonField, RadioButtonFieldProps, RadioButtonType, RadioButtons, RadioButtonsProps, RichTextEditorProps, RichTextViewer, Select, SelectField, SelectFieldProps, SelectableCardGroup, SelectableCardGroupProps, SetPasswordForm, SetPasswordFormProps, SetPasswordRuleValidation, SizesTypes, Spacer, SpacerProps, Spinner, Stepper, StepperProps, StyleWrapper, TabGroup, TabGroupProps, TextTypes, TextWrapper, TextWrapperProps, ThemeColors, ThemeColorsType, ThemeDevicesType, ThemeSizesType, ThemeTextType, Tooltip, TooltipProps, TouchableOpacity, TouchableOpacityProps, TwoFactorAuth, TwoFactorAuthProps, UICheckboxField, UIField, UIFields, UIInputField, UISelectField, ValidationTag, ValidationTagProps, ValidationTagStatus, VerticalPadding, Video, VideoProps, ZealTheme, ZealThemeProvider, acquisitionFormMockFields, defaultTheme, getFieldPlaceholder, getFieldsFromFieldSections, getInitialValuesFromFields, isFormValid, loginMockFields, profileInformationMockForm, sectionMockFields, setPasswordMockFields, showAcceptToastMessage, toast, toastStyles, useMediaQuery, useMlrRichTextViewerContext, useRequiredConsentsAcceptedValues, useStep };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zealicsolutions/web-ui",
3
- "version": "0.1.94",
3
+ "version": "0.1.96",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+ssh://git@bitbucket.org/Zealic_Solutions/zeal-ui-web.git"