@zealicsolutions/web-ui 0.2.94 → 0.2.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.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/containers/mock-data.d.ts +2 -63
- package/dist/cjs/src/containers/types/moleculeTypes.d.ts +1 -3
- package/dist/cjs/src/molecules/Button/Button.d.ts +3 -1
- package/dist/cjs/src/molecules/Button/Button.stories.d.ts +1 -1
- package/dist/cjs/src/molecules/Image/Image.d.ts +2 -1
- package/dist/cjs/src/molecules/Image/Image.stories.d.ts +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/containers/mock-data.d.ts +2 -63
- package/dist/esm/src/containers/types/moleculeTypes.d.ts +1 -3
- package/dist/esm/src/molecules/Button/Button.d.ts +3 -1
- package/dist/esm/src/molecules/Button/Button.stories.d.ts +1 -1
- package/dist/esm/src/molecules/Image/Image.d.ts +2 -1
- package/dist/esm/src/molecules/Image/Image.stories.d.ts +1 -1
- package/dist/index.d.ts +7 -6
- package/package.json +1 -1
@@ -1,64 +1,3 @@
|
|
1
|
-
import {
|
1
|
+
import { ContainerComponentProps } from 'containers';
|
2
2
|
export declare const formContainerProps: ContainerComponentProps;
|
3
|
-
export declare const columnContainerProps:
|
4
|
-
id: string;
|
5
|
-
instance: string;
|
6
|
-
type: string;
|
7
|
-
config: {
|
8
|
-
wide: {
|
9
|
-
containerProps: {
|
10
|
-
position: string;
|
11
|
-
scrollBehaviour: string;
|
12
|
-
cornerRadius: number;
|
13
|
-
};
|
14
|
-
containerStyle: {
|
15
|
-
gap: number;
|
16
|
-
padding: number;
|
17
|
-
backgroundColor: string;
|
18
|
-
};
|
19
|
-
};
|
20
|
-
compact: {
|
21
|
-
containerProps: {};
|
22
|
-
containerStyle: {
|
23
|
-
flexDirection: string;
|
24
|
-
gap: number;
|
25
|
-
};
|
26
|
-
};
|
27
|
-
};
|
28
|
-
items: (ButtonMolecule | TabGroupMolecule | {
|
29
|
-
id: string;
|
30
|
-
instance: string;
|
31
|
-
type: string;
|
32
|
-
attributes: {
|
33
|
-
image: {
|
34
|
-
attributeType: string;
|
35
|
-
imageSource: string;
|
36
|
-
};
|
37
|
-
altText: {
|
38
|
-
attributeType: string;
|
39
|
-
text: string;
|
40
|
-
};
|
41
|
-
link: {
|
42
|
-
attributeType: string;
|
43
|
-
id: string;
|
44
|
-
externalLink: string;
|
45
|
-
type: string;
|
46
|
-
name: string;
|
47
|
-
internalLink: string;
|
48
|
-
};
|
49
|
-
};
|
50
|
-
config: {
|
51
|
-
props: {
|
52
|
-
cornerRadius: number;
|
53
|
-
behaveAs: string;
|
54
|
-
};
|
55
|
-
};
|
56
|
-
})[];
|
57
|
-
tabsProps: {
|
58
|
-
tabs: {
|
59
|
-
tabKey: string;
|
60
|
-
text: string;
|
61
|
-
}[];
|
62
|
-
activeTabKey: string;
|
63
|
-
};
|
64
|
-
};
|
3
|
+
export declare const columnContainerProps: ContainerComponentProps;
|
@@ -71,9 +71,7 @@ export interface ButtonMolecule extends BaseMolecule {
|
|
71
71
|
buttonLink: LinkAttributes;
|
72
72
|
};
|
73
73
|
config: {
|
74
|
-
props: Partial<Omit<ButtonProps, 'disabled' | 'children' | 'link' | 'text' | 'onClick' | 'elementId'
|
75
|
-
type?: 'button' | 'submit' | 'reset';
|
76
|
-
};
|
74
|
+
props: Partial<Omit<ButtonProps, 'disabled' | 'children' | 'link' | 'text' | 'onClick' | 'elementId'>>;
|
77
75
|
};
|
78
76
|
}
|
79
77
|
export interface VideoMolecule extends BaseMolecule {
|
@@ -3,6 +3,7 @@ import { FontSizesTypes, SizesTypes, ThemeColors } from 'theme';
|
|
3
3
|
import type { Callback } from 'typescript';
|
4
4
|
import { StylesType } from 'typescript';
|
5
5
|
export declare type ButtonVariant = 'primary' | 'secondary' | 'text' | 'custom';
|
6
|
+
export declare type ButtonType = 'button' | 'submit' | 'reset';
|
6
7
|
export declare type BaseButtonProps = PropsWithChildren<{
|
7
8
|
onClick?: Callback;
|
8
9
|
variant?: ButtonVariant;
|
@@ -26,6 +27,7 @@ export declare type BaseButtonProps = PropsWithChildren<{
|
|
26
27
|
styles?: StylesType;
|
27
28
|
colorTheme?: 'light' | 'dark';
|
28
29
|
href?: string;
|
30
|
+
type?: ButtonType;
|
29
31
|
}>;
|
30
32
|
export declare type ButtonProps = BaseButtonProps & {
|
31
33
|
fullWidth?: boolean;
|
@@ -37,4 +39,4 @@ export declare type ButtonProps = BaseButtonProps & {
|
|
37
39
|
containerStyle?: StylesType;
|
38
40
|
buttonStyle?: StylesType;
|
39
41
|
};
|
40
|
-
export declare const Button: ({ text: textProp, onClick, loading, disabled, variant, isRichText, fullWidth, elementId, link, containerStyle, children, buttonStyle, size, textColor, inactiveTextColor, state, ...props }: ButtonProps) => JSX.Element | null;
|
42
|
+
export declare const Button: ({ text: textProp, onClick, loading, disabled, variant, isRichText, fullWidth, elementId, link, containerStyle, children, buttonStyle, size, textColor, inactiveTextColor, state, href, ...props }: ButtonProps) => JSX.Element | null;
|
@@ -3,7 +3,7 @@ import type { StoryFn } from '@storybook/react';
|
|
3
3
|
import { Button as ButtonComponent } from 'molecules/Button/Button';
|
4
4
|
declare const _default: {
|
5
5
|
title: string;
|
6
|
-
component: ({ text: textProp, onClick, loading, disabled, variant, isRichText, fullWidth, elementId, link, containerStyle, children, buttonStyle, size, textColor, inactiveTextColor, state, ...props }: import("molecules/Button/Button").ButtonProps) => JSX.Element | null;
|
6
|
+
component: ({ text: textProp, onClick, loading, disabled, variant, isRichText, fullWidth, elementId, link, containerStyle, children, buttonStyle, size, textColor, inactiveTextColor, state, href, ...props }: import("molecules/Button/Button").ButtonProps) => JSX.Element | null;
|
7
7
|
};
|
8
8
|
export default _default;
|
9
9
|
export declare const Button: StoryFn<typeof ButtonComponent>;
|
@@ -3,6 +3,7 @@ import { StylesType } from 'typescript';
|
|
3
3
|
export declare type ImageProps = {
|
4
4
|
src: string;
|
5
5
|
} & Partial<{
|
6
|
+
id: string;
|
6
7
|
altText: string;
|
7
8
|
link: string;
|
8
9
|
width: number;
|
@@ -11,4 +12,4 @@ export declare type ImageProps = {
|
|
11
12
|
behaveAs: 'background' | 'regular';
|
12
13
|
styles: StylesType;
|
13
14
|
}>;
|
14
|
-
export declare const Image: ({ src, link, altText, styles, width, height, behaveAs, cornerRadius, }: ImageProps) => JSX.Element;
|
15
|
+
export declare const Image: ({ src, link, altText, styles, width, height, id, behaveAs, cornerRadius, }: ImageProps) => JSX.Element;
|
@@ -3,7 +3,7 @@ import type { StoryFn } from '@storybook/react';
|
|
3
3
|
import { Image as ImageComponent } from './Image';
|
4
4
|
declare const _default: {
|
5
5
|
title: string;
|
6
|
-
component: ({ src, link, altText, styles, width, height, behaveAs, cornerRadius, }: import("./Image").ImageProps) => JSX.Element;
|
6
|
+
component: ({ src, link, altText, styles, width, height, id, behaveAs, cornerRadius, }: import("./Image").ImageProps) => JSX.Element;
|
7
7
|
};
|
8
8
|
export default _default;
|
9
9
|
export declare const Image: StoryFn<typeof ImageComponent>;
|
package/dist/index.d.ts
CHANGED
@@ -1190,6 +1190,7 @@ declare const Video: ({ style, src, width, template, autoplay, enableCoverImage,
|
|
1190
1190
|
declare type ImageProps = {
|
1191
1191
|
src: string;
|
1192
1192
|
} & Partial<{
|
1193
|
+
id: string;
|
1193
1194
|
altText: string;
|
1194
1195
|
link: string;
|
1195
1196
|
width: number;
|
@@ -1198,7 +1199,7 @@ declare type ImageProps = {
|
|
1198
1199
|
behaveAs: 'background' | 'regular';
|
1199
1200
|
styles: StylesType;
|
1200
1201
|
}>;
|
1201
|
-
declare const Image: ({ src, link, altText, styles, width, height, behaveAs, cornerRadius, }: ImageProps) => JSX.Element;
|
1202
|
+
declare const Image: ({ src, link, altText, styles, width, height, id, behaveAs, cornerRadius, }: ImageProps) => JSX.Element;
|
1202
1203
|
|
1203
1204
|
declare type CarouselProps = {
|
1204
1205
|
children: JSX.Element[];
|
@@ -1231,6 +1232,7 @@ declare type TextMoleculeProps = Partial<{
|
|
1231
1232
|
declare const TextMolecule: ({ isRichText, variant, text, seoTag, fontVariant, textColor, textSize, fontWeight, lineHeight, letterSpacing, styles, textAlign, ...restOfTextProps }: TextMoleculeProps) => JSX.Element;
|
1232
1233
|
|
1233
1234
|
declare type ButtonVariant = 'primary' | 'secondary' | 'text' | 'custom';
|
1235
|
+
declare type ButtonType = 'button' | 'submit' | 'reset';
|
1234
1236
|
declare type BaseButtonProps = PropsWithChildren<{
|
1235
1237
|
onClick?: Callback$1;
|
1236
1238
|
variant?: ButtonVariant;
|
@@ -1254,6 +1256,7 @@ declare type BaseButtonProps = PropsWithChildren<{
|
|
1254
1256
|
styles?: StylesType;
|
1255
1257
|
colorTheme?: 'light' | 'dark';
|
1256
1258
|
href?: string;
|
1259
|
+
type?: ButtonType;
|
1257
1260
|
}>;
|
1258
1261
|
declare type ButtonProps = BaseButtonProps & {
|
1259
1262
|
fullWidth?: boolean;
|
@@ -1265,7 +1268,7 @@ declare type ButtonProps = BaseButtonProps & {
|
|
1265
1268
|
containerStyle?: StylesType;
|
1266
1269
|
buttonStyle?: StylesType;
|
1267
1270
|
};
|
1268
|
-
declare const Button: ({ text: textProp, onClick, loading, disabled, variant, isRichText, fullWidth, elementId, link, containerStyle, children, buttonStyle, size, textColor, inactiveTextColor, state, ...props }: ButtonProps) => JSX.Element | null;
|
1271
|
+
declare const Button: ({ text: textProp, onClick, loading, disabled, variant, isRichText, fullWidth, elementId, link, containerStyle, children, buttonStyle, size, textColor, inactiveTextColor, state, href, ...props }: ButtonProps) => JSX.Element | null;
|
1269
1272
|
|
1270
1273
|
declare const Container: ({ children, wide, compact, type, props }: ContainerProps$1) => JSX.Element;
|
1271
1274
|
declare const ContainerComponent: ({ type, items, config, tabsProps }: ContainerComponentProps$1) => JSX.Element | null;
|
@@ -1338,9 +1341,7 @@ interface ButtonMolecule extends BaseMolecule {
|
|
1338
1341
|
buttonLink: LinkAttributes;
|
1339
1342
|
};
|
1340
1343
|
config: {
|
1341
|
-
props: Partial<Omit<ButtonProps$1, 'disabled' | 'children' | 'link' | 'text' | 'onClick' | 'elementId'
|
1342
|
-
type?: 'button' | 'submit' | 'reset';
|
1343
|
-
};
|
1344
|
+
props: Partial<Omit<ButtonProps$1, 'disabled' | 'children' | 'link' | 'text' | 'onClick' | 'elementId'>>;
|
1344
1345
|
};
|
1345
1346
|
}
|
1346
1347
|
interface VideoMolecule extends BaseMolecule {
|
@@ -1468,4 +1469,4 @@ declare const OrganismItem: ({ item, tabsProps, }: {
|
|
1468
1469
|
tabsProps?: Pick<TabGroupProps$1<string, string>, "tabs" | "activeTabKey" | "onTabChange"> | undefined;
|
1469
1470
|
}) => JSX.Element | null;
|
1470
1471
|
|
1471
|
-
export { AcquisitionForm, AcquisitionFormProps, AdditionalContainerProps, Alert, AlertProps, AnnotationsList, ArrowIconWrapper, AuthMethod, Avatar, AvatarDropdown, AvatarDropdownProps, AvatarProps, BackgroundImage, BaseButtonProps, BaseMolecule, Body, BodyProps, BooleanAttributes, BottomNaVBarItemProps, BottomNavBarItem, BottomNavBarNavigation, BottomNavBarNavigationProps, BreakpointSizesTypes, Button, ButtonMolecule, ButtonProps, ButtonVariant, ButtonsWrapper, COMMUNICATION_LINK_DATA_TEXT, COMMUNICATION_LINK_DATA_URL, COMMUNICATION_LINK_ELEMENT_ID, CaretIconWrapper, Carousel, CarouselProps, CheckBoxProps, Checkbox, CheckboxField, CheckboxFieldProps, Circle, CircleBoxProps, CircularIndicator, CircularIndicatorProps, CircularIndicatorStyledComponent, ColumnItem, Columns, ColumnsProps, Consent, ConsentProps, Container, ContainerComponent, ContainerComponentProps, ContainerPositionType, ContainerProps, ContainerPropsType, ContainerScrollBehaviourType, ContainerType, ContainerWrapper, 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, FontWeight, 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, 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, Molecule, MoleculeTypes, NavigationDotsWrapper, OrganismItem, OrientationType, PdfDocument, PdfDocumentProps, ProcessTracker, ProcessTrackerProps, ProcessTrackerStatus, ProfileInformation, ProfileInformationProps, RadioButtonField, RadioButtonFieldMolecule, RadioButtonFieldProps, RadioButtonInternalConfigProps, RadioButtonType, RadioButtons, RadioButtonsProps, RegularImage, RegularImageProps, RichTextEditorProps, RichTextViewer, RuleLabelInternalConfig, 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, acquisitionFormMockFields, defaultTheme, getFieldPlaceholder, getFieldsFromFieldSections, getInitialValuesFromFields, isFormValid, loginMockFields, profileInformationMockForm, sectionMockFields, setPasswordMockFields, showAcceptToastMessage, toast, toastStyles, useMediaQuery, useMlrRichTextViewerContext, useRequiredConsentsAcceptedValues, useStep };
|
1472
|
+
export { AcquisitionForm, AcquisitionFormProps, AdditionalContainerProps, Alert, AlertProps, AnnotationsList, ArrowIconWrapper, AuthMethod, Avatar, AvatarDropdown, AvatarDropdownProps, AvatarProps, BackgroundImage, BaseButtonProps, BaseMolecule, Body, BodyProps, BooleanAttributes, BottomNaVBarItemProps, BottomNavBarItem, BottomNavBarNavigation, BottomNavBarNavigationProps, BreakpointSizesTypes, Button, ButtonMolecule, ButtonProps, ButtonType, ButtonVariant, ButtonsWrapper, COMMUNICATION_LINK_DATA_TEXT, COMMUNICATION_LINK_DATA_URL, COMMUNICATION_LINK_ELEMENT_ID, CaretIconWrapper, Carousel, CarouselProps, CheckBoxProps, Checkbox, CheckboxField, CheckboxFieldProps, Circle, CircleBoxProps, CircularIndicator, CircularIndicatorProps, CircularIndicatorStyledComponent, ColumnItem, Columns, ColumnsProps, Consent, ConsentProps, Container, ContainerComponent, ContainerComponentProps, ContainerPositionType, ContainerProps, ContainerPropsType, ContainerScrollBehaviourType, ContainerType, ContainerWrapper, 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, FontWeight, 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, 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, Molecule, MoleculeTypes, NavigationDotsWrapper, OrganismItem, OrientationType, PdfDocument, PdfDocumentProps, ProcessTracker, ProcessTrackerProps, ProcessTrackerStatus, ProfileInformation, ProfileInformationProps, RadioButtonField, RadioButtonFieldMolecule, RadioButtonFieldProps, RadioButtonInternalConfigProps, RadioButtonType, RadioButtons, RadioButtonsProps, RegularImage, RegularImageProps, RichTextEditorProps, RichTextViewer, RuleLabelInternalConfig, 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, acquisitionFormMockFields, defaultTheme, getFieldPlaceholder, getFieldsFromFieldSections, getInitialValuesFromFields, isFormValid, loginMockFields, profileInformationMockForm, sectionMockFields, setPasswordMockFields, showAcceptToastMessage, toast, toastStyles, useMediaQuery, useMlrRichTextViewerContext, useRequiredConsentsAcceptedValues, useStep };
|