@zealicsolutions/web-ui 0.2.63 → 0.2.65

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.
@@ -1,12 +1,15 @@
1
1
  import { PropsWithChildren } from 'react';
2
2
  import { CSSProperties } from 'styled-components';
3
3
  import type { Callback } from 'typescript';
4
+ export declare type ButtonVariant = 'primary' | 'secondary' | 'text';
4
5
  export declare type BaseButtonProps = PropsWithChildren<{
5
6
  onClick?: Callback;
6
- variant?: 'primary' | 'secondary';
7
+ variant?: ButtonVariant;
7
8
  disabled?: boolean;
8
9
  fullWidth?: boolean;
9
10
  size?: 'medium' | 'small';
11
+ activeOpacity?: number;
12
+ withoutOpacityEffect?: boolean;
10
13
  }>;
11
14
  export declare type ButtonProps = BaseButtonProps & {
12
15
  fullWidth?: boolean;
@@ -16,5 +19,6 @@ export declare type ButtonProps = BaseButtonProps & {
16
19
  loading?: boolean;
17
20
  isRichText?: boolean;
18
21
  containerStyle?: CSSProperties;
22
+ buttonStyle?: CSSProperties;
19
23
  };
20
- export declare const Button: ({ text: textProp, onClick, loading, disabled, variant, isRichText, fullWidth, elementId, link, containerStyle, children, size, }: ButtonProps) => JSX.Element | null;
24
+ export declare const Button: ({ text: textProp, onClick, loading, disabled, variant, isRichText, fullWidth, elementId, link, containerStyle, children, activeOpacity, withoutOpacityEffect, buttonStyle, size, }: ButtonProps) => JSX.Element | null;
@@ -1,12 +1,12 @@
1
1
  import type { ComponentStory } from '@storybook/react';
2
- import { FC } from 'react';
3
2
  import { TextButtonProps } from 'atoms/Buttons/TextButton';
3
+ import { FC } from 'react';
4
4
  import { Button as ButtonComponent } from './Button';
5
- import { TouchableOpacityProps } from './TouchableOpacity';
6
5
  import { IconButton as IconButtonComponent } from './IconButton';
6
+ import { TouchableOpacityProps } from './TouchableOpacity';
7
7
  declare const _default: {
8
8
  title: string;
9
- component: ({ text: textProp, onClick, loading, disabled, variant, isRichText, fullWidth, elementId, link, containerStyle, children, size, }: import("./Button").ButtonProps) => JSX.Element | null;
9
+ component: ({ text: textProp, onClick, loading, disabled, variant, isRichText, fullWidth, elementId, link, containerStyle, children, activeOpacity, withoutOpacityEffect, buttonStyle, size, }: import("./Button").ButtonProps) => JSX.Element | null;
10
10
  };
11
11
  export default _default;
12
12
  export declare const Button: ComponentStory<typeof ButtonComponent>;
@@ -1,24 +1,16 @@
1
- import { PropsWithChildren } from 'react';
2
- import type { Callback } from 'typescript';
3
- export declare type TextButtonProps = PropsWithChildren<{
4
- activeOpacity?: number;
5
- withoutOpacityEffect?: boolean;
6
- disabled?: boolean;
7
- onClick?: Callback;
1
+ /// <reference types="react" />
2
+ import { BaseButtonProps } from './Button';
3
+ export declare type TextButtonProps = Pick<BaseButtonProps, 'disabled' | 'activeOpacity' | 'withoutOpacityEffect' | 'onClick' | 'children'> & {
8
4
  buttonLink?: string;
9
5
  elementId?: string;
10
- }>;
6
+ };
11
7
  export declare const TextButton: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
12
8
  activeOpacity?: number | undefined;
13
9
  withoutOpacityEffect?: boolean | undefined;
14
10
  disabled?: boolean | undefined;
15
11
  } & {
16
12
  children?: import("react").ReactNode;
17
- } & {
18
- activeOpacity?: number | undefined;
19
- withoutOpacityEffect?: boolean | undefined;
20
- disabled?: boolean | undefined;
21
- onClick?: Callback | undefined;
13
+ } & Pick<BaseButtonProps, "children" | "onClick" | "disabled" | "activeOpacity" | "withoutOpacityEffect"> & {
22
14
  buttonLink?: string | undefined;
23
15
  elementId?: string | undefined;
24
16
  }, never>;
@@ -1,3 +1,3 @@
1
1
  /// <reference types="react" />
2
- import type { IconProps } from '../atoms/Icon/Icon';
2
+ import type { IconProps } from 'atoms';
3
3
  export declare const Check: ({ size, color }: Omit<IconProps, 'name'>) => JSX.Element;
@@ -1,3 +1,3 @@
1
1
  /// <reference types="react" />
2
- import type { IconProps } from '../atoms/Icon/Icon';
2
+ import type { IconProps } from 'atoms';
3
3
  export declare const Info: ({ size, color }: Omit<IconProps, 'name'>) => JSX.Element;
@@ -9,11 +9,7 @@ export declare const Link: import("styled-components").StyledComponent<"div", im
9
9
  disabled?: boolean | undefined;
10
10
  } & {
11
11
  children?: import("react").ReactNode;
12
- } & {
13
- activeOpacity?: number | undefined;
14
- withoutOpacityEffect?: boolean | undefined;
15
- disabled?: boolean | undefined;
16
- onClick?: import("../../typescript").Callback | undefined;
12
+ } & Pick<import("atoms").BaseButtonProps, "children" | "onClick" | "disabled" | "activeOpacity" | "withoutOpacityEffect"> & {
17
13
  buttonLink?: string | undefined;
18
14
  elementId?: string | undefined;
19
15
  }, never>;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { SizesTypes } from '../../theme';
2
+ import { SizesTypes } from 'theme';
3
3
  import { BaseSelectableProps } from './BaseSelectable';
4
4
  export declare type SelectableCardGroupProps<T> = {
5
5
  cards: BaseSelectableProps<T>[];
@@ -12,4 +12,4 @@ export declare type BodyProps = {
12
12
  horizontalPaddings?: number;
13
13
  containerStyles?: CSSProperties;
14
14
  };
15
- export declare const Body: ({ elements, horizontalPaddings, containerStyles }: BodyProps) => JSX.Element;
15
+ export declare const Body: ({ elements, horizontalPaddings, containerStyles, }: BodyProps) => JSX.Element;
@@ -3,7 +3,7 @@ import { ComponentStory } from '@storybook/react';
3
3
  import { Body as BodyComponent } from './Body';
4
4
  declare const _default: {
5
5
  title: string;
6
- component: ({ elements, horizontalPaddings, containerStyles }: import("./Body").BodyProps) => JSX.Element;
6
+ component: ({ elements, horizontalPaddings, containerStyles, }: import("./Body").BodyProps) => JSX.Element;
7
7
  };
8
8
  export default _default;
9
9
  export declare const Body: ComponentStory<typeof BodyComponent>;
@@ -1,5 +1,5 @@
1
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
- export declare type SizesTypes = '3XL' | '2XL' | 'XL-2XL' | 'XL' | 'L' | 'M' | 'S' | 'XS';
2
+ export declare type SizesTypes = '5XL' | '4XL' | '3XL' | '2XL' | 'XL' | 'L' | 'M' | 'S' | 'XS';
3
3
  export declare type FontSizesTypes = Exclude<SizesTypes, 'XL-2XL'> | 'H2' | 'H1';
4
4
  export declare type BreakpointSizesTypes = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
5
5
  export declare type ThemeColorsType = Record<ThemeColors, string>;
package/dist/index.d.ts CHANGED
@@ -37,12 +37,15 @@ 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
 
40
+ declare type ButtonVariant = 'primary' | 'secondary' | 'text';
40
41
  declare type BaseButtonProps = PropsWithChildren<{
41
42
  onClick?: Callback$1;
42
- variant?: 'primary' | 'secondary';
43
+ variant?: ButtonVariant;
43
44
  disabled?: boolean;
44
45
  fullWidth?: boolean;
45
46
  size?: 'medium' | 'small';
47
+ activeOpacity?: number;
48
+ withoutOpacityEffect?: boolean;
46
49
  }>;
47
50
  declare type ButtonProps = BaseButtonProps & {
48
51
  fullWidth?: boolean;
@@ -52,8 +55,9 @@ declare type ButtonProps = BaseButtonProps & {
52
55
  loading?: boolean;
53
56
  isRichText?: boolean;
54
57
  containerStyle?: CSSProperties;
58
+ buttonStyle?: CSSProperties;
55
59
  };
56
- declare const Button: ({ text: textProp, onClick, loading, disabled, variant, isRichText, fullWidth, elementId, link, containerStyle, children, size, }: ButtonProps) => JSX.Element | null;
60
+ declare const Button: ({ text: textProp, onClick, loading, disabled, variant, isRichText, fullWidth, elementId, link, containerStyle, children, activeOpacity, withoutOpacityEffect, buttonStyle, size, }: ButtonProps) => JSX.Element | null;
57
61
 
58
62
  declare type TouchableOpacityProps = PropsWithChildren<{
59
63
  activeOpacity?: number;
@@ -183,25 +187,17 @@ declare type ImageProps = {
183
187
  declare const Image: styled_components.StyledComponent<"img", styled_components.DefaultTheme, ImageProps, never>;
184
188
  declare const BackgroundImage: styled_components.StyledComponent<"img", styled_components.DefaultTheme, ImageProps, never>;
185
189
 
186
- declare type TextButtonProps = PropsWithChildren<{
187
- activeOpacity?: number;
188
- withoutOpacityEffect?: boolean;
189
- disabled?: boolean;
190
- onClick?: Callback$1;
190
+ declare type TextButtonProps = Pick<BaseButtonProps, 'disabled' | 'activeOpacity' | 'withoutOpacityEffect' | 'onClick' | 'children'> & {
191
191
  buttonLink?: string;
192
192
  elementId?: string;
193
- }>;
193
+ };
194
194
  declare const TextButton: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {
195
195
  activeOpacity?: number | undefined;
196
196
  withoutOpacityEffect?: boolean | undefined;
197
197
  disabled?: boolean | undefined;
198
198
  } & {
199
199
  children?: React$1.ReactNode;
200
- } & {
201
- activeOpacity?: number | undefined;
202
- withoutOpacityEffect?: boolean | undefined;
203
- disabled?: boolean | undefined;
204
- onClick?: Callback$1 | undefined;
200
+ } & Pick<BaseButtonProps, "children" | "onClick" | "disabled" | "activeOpacity" | "withoutOpacityEffect"> & {
205
201
  buttonLink?: string | undefined;
206
202
  elementId?: string | undefined;
207
203
  }, never>;
@@ -456,35 +452,6 @@ declare type CustomValidationProps<T = string> = {
456
452
  };
457
453
  declare const CustomValidation: <T extends string = string>({ rules, value, isSubmitted, label, }: CustomValidationProps<T>) => JSX.Element;
458
454
 
459
- declare const defaultTheme: DefaultTheme;
460
-
461
- declare const ZealThemeProvider: (props: PropsWithChildren<{
462
- theme?: DefaultTheme;
463
- }>) => JSX.Element;
464
-
465
- declare type ThemeColors = 'primary' | 'secondary' | 'background' | 'gray1' | 'gray2' | 'gray3' | 'gray4' | 'gray5' | 'indigo' | 'blue' | 'white' | 'black' | 'indigoTint' | 'indigoTint2' | 'success' | 'error' | 'warning' | 'green' | 'greenTint';
466
- declare type SizesTypes = '3XL' | '2XL' | 'XL-2XL' | 'XL' | 'L' | 'M' | 'S' | 'XS';
467
- declare type FontSizesTypes = Exclude<SizesTypes, 'XL-2XL'> | 'H2' | 'H1';
468
- declare type BreakpointSizesTypes = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
469
- declare type ThemeColorsType = Record<ThemeColors, string>;
470
- declare type ThemeTextType = Record<FontSizesTypes, {
471
- 'font-weight': string;
472
- 'font-size': number;
473
- 'line-height': number;
474
- }>;
475
- declare type ThemeSizesType = Record<SizesTypes, number>;
476
- declare type ThemeDevicesType = Record<BreakpointSizesTypes, string>;
477
- declare type ZealTheme = {
478
- colors: ThemeColorsType;
479
- fonts: Record<FontSizesTypes, number>;
480
- sizes: ThemeSizesType;
481
- devices: ThemeDevicesType;
482
- };
483
-
484
- declare const toastStyles: styled_components.FlattenSimpleInterpolation;
485
-
486
- declare const useMediaQuery: (breakpointSize: BreakpointSizesTypes$1) => boolean;
487
-
488
455
  declare type BaseSelectableProps<T> = {
489
456
  iconName: IconNames;
490
457
  infoText: string;
@@ -496,7 +463,7 @@ declare type BaseSelectableProps<T> = {
496
463
  declare type SelectableCardGroupProps<T> = {
497
464
  cards: BaseSelectableProps<T>[];
498
465
  handleChange?: (value: T | undefined) => void;
499
- spacing?: SizesTypes;
466
+ spacing?: SizesTypes$1;
500
467
  initialValue?: T;
501
468
  };
502
469
  declare const SelectableCardGroup: <T extends string>({ cards, handleChange, spacing, initialValue, }: SelectableCardGroupProps<T>) => JSX.Element;
@@ -862,7 +829,7 @@ declare type BodyProps = {
862
829
  horizontalPaddings?: number;
863
830
  containerStyles?: CSSProperties;
864
831
  };
865
- declare const Body: ({ elements, horizontalPaddings, containerStyles }: BodyProps) => JSX.Element;
832
+ declare const Body: ({ elements, horizontalPaddings, containerStyles, }: BodyProps) => JSX.Element;
866
833
 
867
834
  declare type ISIProps = ISIAProps;
868
835
  declare const ISI: (props: ISIProps) => JSX.Element;
@@ -1028,6 +995,35 @@ declare const useStep: (maxStep: number) => [number, Helpers];
1028
995
 
1029
996
  declare const useRequiredConsentsAcceptedValues: (consents: ConsentProps$1[]) => boolean;
1030
997
 
998
+ declare const defaultTheme: DefaultTheme;
999
+
1000
+ declare const ZealThemeProvider: (props: PropsWithChildren<{
1001
+ theme?: DefaultTheme;
1002
+ }>) => JSX.Element;
1003
+
1004
+ declare type ThemeColors = 'primary' | 'secondary' | 'background' | 'gray1' | 'gray2' | 'gray3' | 'gray4' | 'gray5' | 'indigo' | 'blue' | 'white' | 'black' | 'indigoTint' | 'indigoTint2' | 'success' | 'error' | 'warning' | 'green' | 'greenTint';
1005
+ declare type SizesTypes = '5XL' | '4XL' | '3XL' | '2XL' | 'XL' | 'L' | 'M' | 'S' | 'XS';
1006
+ declare type FontSizesTypes = Exclude<SizesTypes, 'XL-2XL'> | 'H2' | 'H1';
1007
+ declare type BreakpointSizesTypes = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
1008
+ declare type ThemeColorsType = Record<ThemeColors, string>;
1009
+ declare type ThemeTextType = Record<FontSizesTypes, {
1010
+ 'font-weight': string;
1011
+ 'font-size': number;
1012
+ 'line-height': number;
1013
+ }>;
1014
+ declare type ThemeSizesType = Record<SizesTypes, number>;
1015
+ declare type ThemeDevicesType = Record<BreakpointSizesTypes, string>;
1016
+ declare type ZealTheme = {
1017
+ colors: ThemeColorsType;
1018
+ fonts: Record<FontSizesTypes, number>;
1019
+ sizes: ThemeSizesType;
1020
+ devices: ThemeDevicesType;
1021
+ };
1022
+
1023
+ declare const toastStyles: styled_components.FlattenSimpleInterpolation;
1024
+
1025
+ declare const useMediaQuery: (breakpointSize: BreakpointSizesTypes$1) => boolean;
1026
+
1031
1027
  declare type MlrRichTextViewerProviderProps = PropsWithChildren<{
1032
1028
  annotationsList: AnnotationsList$1;
1033
1029
  isMLRReview: boolean;
@@ -1056,4 +1052,4 @@ declare type AnnotationsList = {
1056
1052
 
1057
1053
  declare const useMlrRichTextViewerContext: () => contexts_MlrRichTextViewerContext_MlrRichTextViewerContext.MlrRichTextViewerContextType;
1058
1054
 
1059
- export { AcquisitionForm, AcquisitionFormProps, Alert, AlertProps, AnnotationsList, AuthMethod, Avatar, AvatarDropdown, AvatarDropdownProps, AvatarProps, BackgroundImage, 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, CircularIndicator, CircularIndicatorProps, CircularIndicatorStyledComponent, 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, FooterContactInfo, FooterLink, FooterProps, ForgotPasswordForm, ForgotPasswordFormProps, GoogleMap, GoogleMapProps, Header, HeaderProps, HeroImage, HeroImageAlignment, HeroImageProps, HeroImageTemplate, HeroSlider, HeroSliderProps, HeroSliderWrapper, HorizontalButtons, HorizontalButtonsField, HorizontalButtonsProps, HorizontalPadding, HorizontalPaddingProps, ISI, ISIProps, Icon, IconButton, IconButtonProps, IconNames, IconProps, Image, ImageProps, Input, InputField, InputFieldProps, InputFieldTypes, InputIconProps, InputProps, 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, SubscribePanel, Tab, TabGroup, TabGroupProps, TabOption, TabProps, TabTheme, TextAlign, TextButton, TextButtonProps, 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 };
1055
+ export { AcquisitionForm, AcquisitionFormProps, Alert, AlertProps, AnnotationsList, AuthMethod, Avatar, AvatarDropdown, AvatarDropdownProps, AvatarProps, BackgroundImage, BaseButtonProps, Body, BodyProps, BottomNaVBarItemProps, BottomNavBarItem, BottomNavBarNavigation, BottomNavBarNavigationProps, BreakpointSizesTypes, Button, ButtonProps, ButtonVariant, COMMUNICATION_LINK_DATA_TEXT, COMMUNICATION_LINK_DATA_URL, COMMUNICATION_LINK_ELEMENT_ID, CaretIconWrapper, CheckBoxProps, Checkbox, CheckboxField, CheckboxFieldProps, Circle, CircleBoxProps, CircularIndicator, CircularIndicatorProps, CircularIndicatorStyledComponent, 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, FooterContactInfo, FooterLink, FooterProps, ForgotPasswordForm, ForgotPasswordFormProps, GoogleMap, GoogleMapProps, Header, HeaderProps, HeroImage, HeroImageAlignment, HeroImageProps, HeroImageTemplate, HeroSlider, HeroSliderProps, HeroSliderWrapper, HorizontalButtons, HorizontalButtonsField, HorizontalButtonsProps, HorizontalPadding, HorizontalPaddingProps, ISI, ISIProps, Icon, IconButton, IconButtonProps, IconNames, IconProps, Image, ImageProps, Input, InputField, InputFieldProps, InputFieldTypes, InputIconProps, InputProps, 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, SubscribePanel, Tab, TabGroup, TabGroupProps, TabOption, TabProps, TabTheme, TextAlign, TextButton, TextButtonProps, 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.2.63",
3
+ "version": "0.2.65",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+ssh://git@bitbucket.org/Zealic_Solutions/zeal-ui-web.git"