@zealicsolutions/web-ui 0.1.51 → 0.1.53
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 +51 -30
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/atoms/Icon/Icon.d.ts +4 -0
- package/dist/cjs/src/atoms/RichTextViewer/types.d.ts +1 -0
- package/dist/cjs/src/atoms/Video/Video.d.ts +10 -0
- package/dist/cjs/src/atoms/Video/Video.stories.d.ts +9 -0
- package/dist/cjs/src/atoms/index.d.ts +1 -0
- package/dist/cjs/src/helpers/slate.d.ts +2 -0
- package/dist/cjs/src/icons/Bookmark.d.ts +3 -0
- package/dist/cjs/src/icons/CaretLeft.d.ts +3 -0
- package/dist/cjs/src/icons/CaretRight.d.ts +3 -0
- package/dist/cjs/src/icons/Play.d.ts +3 -0
- package/dist/cjs/src/icons/index.d.ts +4 -0
- package/dist/cjs/src/molecules/PdfDocument/PdfDocument.d.ts +5 -0
- package/dist/cjs/src/molecules/PdfDocument/PdfDocument.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/index.d.ts +1 -0
- package/dist/cjs/src/organisms/FeedContent/FeedContent.d.ts +3 -0
- package/dist/cjs/src/organisms/FeedContent/FeedContent.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/FeedContent/components/BackToFeedButton.d.ts +3 -0
- package/dist/cjs/src/organisms/FeedContent/components/ExpandedContent.d.ts +3 -0
- package/dist/cjs/src/organisms/FeedContent/components/FullWidthContentTemplate.d.ts +3 -0
- package/dist/cjs/src/organisms/FeedContent/components/StandardContentTemplate.d.ts +3 -0
- package/dist/cjs/src/organisms/FeedContent/styles.d.ts +9 -0
- package/dist/cjs/src/organisms/FeedContent/types.d.ts +16 -0
- package/dist/cjs/src/organisms/LoginForm/LoginForm.d.ts +2 -1
- package/dist/cjs/src/organisms/LoginForm/LoginForm.stories.d.ts +1 -1
- package/dist/cjs/src/organisms/index.d.ts +1 -0
- package/dist/esm/index.js +51 -30
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/atoms/Icon/Icon.d.ts +4 -0
- package/dist/esm/src/atoms/RichTextViewer/types.d.ts +1 -0
- package/dist/esm/src/atoms/Video/Video.d.ts +10 -0
- package/dist/esm/src/atoms/Video/Video.stories.d.ts +9 -0
- package/dist/esm/src/atoms/index.d.ts +1 -0
- package/dist/esm/src/helpers/slate.d.ts +2 -0
- package/dist/esm/src/icons/Bookmark.d.ts +3 -0
- package/dist/esm/src/icons/CaretLeft.d.ts +3 -0
- package/dist/esm/src/icons/CaretRight.d.ts +3 -0
- package/dist/esm/src/icons/Play.d.ts +3 -0
- package/dist/esm/src/icons/index.d.ts +4 -0
- package/dist/esm/src/molecules/PdfDocument/PdfDocument.d.ts +5 -0
- package/dist/esm/src/molecules/PdfDocument/PdfDocument.stories.d.ts +9 -0
- package/dist/esm/src/molecules/index.d.ts +1 -0
- package/dist/esm/src/organisms/FeedContent/FeedContent.d.ts +3 -0
- package/dist/esm/src/organisms/FeedContent/FeedContent.stories.d.ts +9 -0
- package/dist/esm/src/organisms/FeedContent/components/BackToFeedButton.d.ts +3 -0
- package/dist/esm/src/organisms/FeedContent/components/ExpandedContent.d.ts +3 -0
- package/dist/esm/src/organisms/FeedContent/components/FullWidthContentTemplate.d.ts +3 -0
- package/dist/esm/src/organisms/FeedContent/components/StandardContentTemplate.d.ts +3 -0
- package/dist/esm/src/organisms/FeedContent/styles.d.ts +9 -0
- package/dist/esm/src/organisms/FeedContent/types.d.ts +16 -0
- package/dist/esm/src/organisms/LoginForm/LoginForm.d.ts +2 -1
- package/dist/esm/src/organisms/LoginForm/LoginForm.stories.d.ts +1 -1
- package/dist/esm/src/organisms/index.d.ts +1 -0
- package/dist/index.d.ts +40 -2
- package/package.json +3 -1
@@ -4,17 +4,21 @@ export declare type IconProps = {
|
|
4
4
|
name: IconNames;
|
5
5
|
size?: number;
|
6
6
|
color?: ThemeColors | string;
|
7
|
+
fill?: ThemeColors | string;
|
7
8
|
pointerEvents?: 'auto' | 'none';
|
8
9
|
};
|
9
10
|
declare const availableIcons: {
|
10
11
|
CaretDown: ({ color, size }: Omit<IconProps, "name">) => JSX.Element;
|
11
12
|
CaretUp: ({ color, ...props }: Omit<IconProps, "name">) => JSX.Element;
|
13
|
+
CaretLeft: ({ color, size, ...props }: Omit<IconProps, "name">) => JSX.Element;
|
14
|
+
CaretRight: ({ color, size, ...props }: Omit<IconProps, "name">) => JSX.Element;
|
12
15
|
Filter: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
13
16
|
Check: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
14
17
|
Info: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
15
18
|
View: ({ color, size }: Omit<IconProps, "name">) => JSX.Element;
|
16
19
|
Hide: ({ color, size }: Omit<IconProps, "name">) => JSX.Element;
|
17
20
|
Close: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
21
|
+
Play: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
18
22
|
Minus: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
19
23
|
InfoBoxIcon: ({ color, size }: Omit<IconProps, "name">) => JSX.Element;
|
20
24
|
Warning: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { FeedContentTemplateTypes } from 'organisms/FeedContent/types';
|
3
|
+
import { CSSProperties } from 'styled-components';
|
4
|
+
export declare type VideoProps = {
|
5
|
+
src: string;
|
6
|
+
style?: CSSProperties;
|
7
|
+
template?: FeedContentTemplateTypes;
|
8
|
+
autoplay?: boolean;
|
9
|
+
};
|
10
|
+
export declare const Video: ({ style, src, template, autoplay }: VideoProps) => JSX.Element;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { ComponentStory } from '@storybook/react';
|
3
|
+
import { Video as VideoComponent } from './Video';
|
4
|
+
declare const _default: {
|
5
|
+
title: string;
|
6
|
+
component: ({ style, src, template, autoplay }: import("./Video").VideoProps) => JSX.Element;
|
7
|
+
};
|
8
|
+
export default _default;
|
9
|
+
export declare const Video: ComponentStory<typeof VideoComponent>;
|
@@ -10,6 +10,7 @@ export * from './Spinner/Spinner';
|
|
10
10
|
export * from './Image/Image';
|
11
11
|
export * from './Buttons/LinkButton';
|
12
12
|
export * from './ValidationTag/ValidationTag';
|
13
|
+
export * from './Video/Video';
|
13
14
|
export * from './Tooltip/Tooltip';
|
14
15
|
export * from './Toast/toast';
|
15
16
|
export * from './Avatar/Avatar';
|
@@ -1,5 +1,8 @@
|
|
1
|
+
export { Bookmark } from './Bookmark';
|
1
2
|
export { CaretDown } from './CaretDown';
|
2
3
|
export { CaretUp } from './CaretUp';
|
4
|
+
export { CaretLeft } from './CaretLeft';
|
5
|
+
export { CaretRight } from './CaretRight';
|
3
6
|
export { Check } from './Check';
|
4
7
|
export { Info } from './Info';
|
5
8
|
export { Filter } from './Filter';
|
@@ -15,3 +18,4 @@ export { Mail } from './Mail';
|
|
15
18
|
export { Edit } from './Edit';
|
16
19
|
export { Save } from './Save';
|
17
20
|
export { Menu } from './Menu';
|
21
|
+
export { Play } from './Play';
|
@@ -0,0 +1,9 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { ComponentStory } from '@storybook/react';
|
3
|
+
import { PdfDocument as PdfDocumentComponent } from 'molecules';
|
4
|
+
declare const _default: {
|
5
|
+
title: string;
|
6
|
+
component: ({ source }: import("molecules").PdfDocumentProps) => JSX.Element;
|
7
|
+
};
|
8
|
+
export default _default;
|
9
|
+
export declare const PdfDocument: ComponentStory<typeof PdfDocumentComponent>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { ComponentStory } from '@storybook/react';
|
3
|
+
import { FeedContent as FeedContentComponent } from './FeedContent';
|
4
|
+
declare const _default: {
|
5
|
+
title: string;
|
6
|
+
component: ({ template, ...props }: import("./types").FeedContentProps) => JSX.Element;
|
7
|
+
};
|
8
|
+
export default _default;
|
9
|
+
export declare const FeedContent: ComponentStory<typeof FeedContentComponent>;
|
@@ -0,0 +1,3 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { FeedContentProps } from 'organisms/FeedContent/types';
|
3
|
+
export declare const ExpandedContent: ({ document, lastUpdated, description, title, image, video, isMobile, buttonConfig, template, }: Omit<FeedContentProps, 'type' | 'isExpanded'>) => JSX.Element;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
export declare const ExpandedWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
2
|
+
isMobile?: boolean | undefined;
|
3
|
+
}, never>;
|
4
|
+
export declare const TitleWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
5
|
+
export declare const CollapsedWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
6
|
+
src?: string | undefined;
|
7
|
+
isMobile?: boolean | undefined;
|
8
|
+
}, never>;
|
9
|
+
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>;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
export declare type FeedContentTemplateTypes = 'full_width' | 'standard' | 'autoplay';
|
2
|
+
export declare type FeedContentProps = {
|
3
|
+
template: FeedContentTemplateTypes;
|
4
|
+
image?: string;
|
5
|
+
video?: string;
|
6
|
+
document?: string;
|
7
|
+
title?: string;
|
8
|
+
description: string;
|
9
|
+
lastUpdated: string;
|
10
|
+
buttonConfig: {
|
11
|
+
disabled?: boolean;
|
12
|
+
onClick?: () => void;
|
13
|
+
};
|
14
|
+
isMobile?: boolean;
|
15
|
+
isExpanded: boolean;
|
16
|
+
};
|
@@ -11,9 +11,10 @@ export declare type LoginFormProps = {
|
|
11
11
|
twoFactorShow: boolean;
|
12
12
|
twoFactorAuthProps: TwoFactorAuthProps;
|
13
13
|
};
|
14
|
+
optionsPresentation?: boolean;
|
14
15
|
onSubmit: (values: LoginFields) => void;
|
15
16
|
onSignUpButtonClick?: Callback;
|
16
17
|
onForgotPasswordButtonClick?: Callback;
|
17
18
|
isTooltipVisible?: boolean;
|
18
19
|
};
|
19
|
-
export declare const LoginForm: ({ logoUrl, fields, isTooltipVisible, onSubmit, onSignUpButtonClick, isLoading, twoFactorAuthConfig, onForgotPasswordButtonClick, }: LoginFormProps) => JSX.Element;
|
20
|
+
export declare const LoginForm: ({ logoUrl, fields, isTooltipVisible, onSubmit, optionsPresentation, onSignUpButtonClick, isLoading, twoFactorAuthConfig, onForgotPasswordButtonClick, }: LoginFormProps) => JSX.Element;
|
@@ -3,7 +3,7 @@ import { ComponentStory } from '@storybook/react';
|
|
3
3
|
import { LoginForm as LoginFormComponent } from './LoginForm';
|
4
4
|
declare const _default: {
|
5
5
|
title: string;
|
6
|
-
component: ({ logoUrl, fields, isTooltipVisible, onSubmit, onSignUpButtonClick, isLoading, twoFactorAuthConfig, onForgotPasswordButtonClick, }: import("./LoginForm").LoginFormProps) => JSX.Element;
|
6
|
+
component: ({ logoUrl, fields, isTooltipVisible, onSubmit, optionsPresentation, onSignUpButtonClick, isLoading, twoFactorAuthConfig, onForgotPasswordButtonClick, }: import("./LoginForm").LoginFormProps) => JSX.Element;
|
7
7
|
};
|
8
8
|
export default _default;
|
9
9
|
export declare const LoginForm: ComponentStory<typeof LoginFormComponent>;
|
@@ -3,6 +3,7 @@ export * from './AcquisitionForm/AcquisitionForm';
|
|
3
3
|
export * from './LoginForm/LoginForm';
|
4
4
|
export * from './TwoFactorAuth/TwoFactorAuth';
|
5
5
|
export * from './Footer/Footer';
|
6
|
+
export * from './FeedContent/FeedContent';
|
6
7
|
export * from './Footer/types';
|
7
8
|
export * from './ProfileInformation/ProfileInformation';
|
8
9
|
export * from './ForgotPasswordForm/ForgotPasswordForm';
|
package/dist/index.d.ts
CHANGED
@@ -11,6 +11,7 @@ import * as _mui_material from '@mui/material';
|
|
11
11
|
import { DrawerProps as DrawerProps$1 } from '@mui/material';
|
12
12
|
import { FontSizesTypes as FontSizesTypes$1, ThemeColors as ThemeColors$1, SizesTypes as SizesTypes$2, BreakpointSizesTypes as BreakpointSizesTypes$1 } from 'theme/types';
|
13
13
|
import { ThemeColors as ThemeColors$2, SizesTypes as SizesTypes$1, FontSizesTypes as FontSizesTypes$2 } from 'theme';
|
14
|
+
import { FeedContentTemplateTypes as FeedContentTemplateTypes$1 } from 'organisms/FeedContent/types';
|
14
15
|
import { TooltipProps as TooltipProps$1 } from 'rc-tooltip/lib/Tooltip';
|
15
16
|
import { WithGoogleMapProps } from 'react-google-maps/lib/withGoogleMap';
|
16
17
|
import { WithScriptjsProps } from 'react-google-maps/lib/withScriptjs';
|
@@ -120,17 +121,21 @@ declare type IconProps = {
|
|
120
121
|
name: IconNames;
|
121
122
|
size?: number;
|
122
123
|
color?: ThemeColors$2 | string;
|
124
|
+
fill?: ThemeColors$2 | string;
|
123
125
|
pointerEvents?: 'auto' | 'none';
|
124
126
|
};
|
125
127
|
declare const availableIcons: {
|
126
128
|
CaretDown: ({ color, size }: Omit<IconProps, "name">) => JSX.Element;
|
127
129
|
CaretUp: ({ color, ...props }: Omit<IconProps, "name">) => JSX.Element;
|
130
|
+
CaretLeft: ({ color, size, ...props }: Omit<IconProps, "name">) => JSX.Element;
|
131
|
+
CaretRight: ({ color, size, ...props }: Omit<IconProps, "name">) => JSX.Element;
|
128
132
|
Filter: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
129
133
|
Check: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
130
134
|
Info: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
131
135
|
View: ({ color, size }: Omit<IconProps, "name">) => JSX.Element;
|
132
136
|
Hide: ({ color, size }: Omit<IconProps, "name">) => JSX.Element;
|
133
137
|
Close: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
138
|
+
Play: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
134
139
|
Minus: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
135
140
|
InfoBoxIcon: ({ color, size }: Omit<IconProps, "name">) => JSX.Element;
|
136
141
|
Warning: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
@@ -191,6 +196,14 @@ declare type ValidationTagProps = {
|
|
191
196
|
};
|
192
197
|
declare const ValidationTag: ({ text, status }: ValidationTagProps) => JSX.Element;
|
193
198
|
|
199
|
+
declare type VideoProps = {
|
200
|
+
src: string;
|
201
|
+
style?: CSSProperties;
|
202
|
+
template?: FeedContentTemplateTypes$1;
|
203
|
+
autoplay?: boolean;
|
204
|
+
};
|
205
|
+
declare const Video: ({ style, src, template, autoplay }: VideoProps) => JSX.Element;
|
206
|
+
|
194
207
|
declare type TooltipProps = Pick<TooltipProps$1, 'overlay' | 'placement' | 'trigger' | 'visible' | 'children'>;
|
195
208
|
declare const StyleWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {}, never>;
|
196
209
|
declare const Tooltip: ({ trigger, placement, ...props }: TooltipProps) => JSX.Element;
|
@@ -568,6 +581,11 @@ declare type StepperProps = {
|
|
568
581
|
};
|
569
582
|
declare const Stepper: ({ active, steps, orientation }: StepperProps) => JSX.Element;
|
570
583
|
|
584
|
+
declare type PdfDocumentProps = {
|
585
|
+
source: string;
|
586
|
+
};
|
587
|
+
declare const PdfDocument: ({ source }: PdfDocumentProps) => JSX.Element;
|
588
|
+
|
571
589
|
declare type SetPasswordRuleValidation = {
|
572
590
|
label: string;
|
573
591
|
rule: MaxRuleValidation | MinRuleValidation;
|
@@ -626,16 +644,36 @@ declare type LoginFormProps = {
|
|
626
644
|
twoFactorShow: boolean;
|
627
645
|
twoFactorAuthProps: TwoFactorAuthProps;
|
628
646
|
};
|
647
|
+
optionsPresentation?: boolean;
|
629
648
|
onSubmit: (values: LoginFields) => void;
|
630
649
|
onSignUpButtonClick?: Callback;
|
631
650
|
onForgotPasswordButtonClick?: Callback;
|
632
651
|
isTooltipVisible?: boolean;
|
633
652
|
};
|
634
|
-
declare const LoginForm: ({ logoUrl, fields, isTooltipVisible, onSubmit, onSignUpButtonClick, isLoading, twoFactorAuthConfig, onForgotPasswordButtonClick, }: LoginFormProps) => JSX.Element;
|
653
|
+
declare const LoginForm: ({ logoUrl, fields, isTooltipVisible, onSubmit, optionsPresentation, onSignUpButtonClick, isLoading, twoFactorAuthConfig, onForgotPasswordButtonClick, }: LoginFormProps) => JSX.Element;
|
635
654
|
|
636
655
|
declare type FooterProps = FooterAProps | FooterBProps | FooterCProps;
|
637
656
|
declare const Footer: (props: FooterProps) => JSX.Element;
|
638
657
|
|
658
|
+
declare type FeedContentTemplateTypes = 'full_width' | 'standard' | 'autoplay';
|
659
|
+
declare type FeedContentProps = {
|
660
|
+
template: FeedContentTemplateTypes;
|
661
|
+
image?: string;
|
662
|
+
video?: string;
|
663
|
+
document?: string;
|
664
|
+
title?: string;
|
665
|
+
description: string;
|
666
|
+
lastUpdated: string;
|
667
|
+
buttonConfig: {
|
668
|
+
disabled?: boolean;
|
669
|
+
onClick?: () => void;
|
670
|
+
};
|
671
|
+
isMobile?: boolean;
|
672
|
+
isExpanded: boolean;
|
673
|
+
};
|
674
|
+
|
675
|
+
declare const FeedContent: ({ template, ...props }: FeedContentProps) => JSX.Element;
|
676
|
+
|
639
677
|
declare type FooterContentInfo = {
|
640
678
|
phoneNumber: string;
|
641
679
|
addressLine1: string;
|
@@ -807,4 +845,4 @@ declare type AnnotationsList = {
|
|
807
845
|
|
808
846
|
declare const useMlrRichTextViewerContext: () => contexts_MlrRichTextViewerContext_MlrRichTextViewerContext.MlrRichTextViewerContextType;
|
809
847
|
|
810
|
-
export { AcquisitionForm, AcquisitionFormProps, Alert, AlertProps, AnnotationsList, AuthMethod, Avatar, AvatarDropdown, AvatarDropdownProps, AvatarProps, BaseButtonProps, Body, BodyProps, BreakpointSizesTypes, Button, ButtonProps, CaretIconWrapper, CheckBoxProps, Checkbox, CheckboxField, CheckboxFieldProps, Circle, CircleBoxProps, ColumnItem, Columns, ColumnsProps, Consent, ConsentProps, CustomValidation, CustomValidationProps, CustomValidationRule, DefaultTemplate, DefaultTemplateProps, Divider, DividerProps, Drawer, EmphasizedText, EmphasizedTextProps, FieldLabels, FieldLabelsProps, FieldMapper, FieldMapperProps, FieldRuleLabelTypes, FieldSection, FieldSectionProps, FieldTypes, FontSizesTypes, Footer, FooterContentInfo, FooterLink, FooterProps, ForgotPasswordForm, ForgotPasswordFormProps, GoogleMap, GoogleMapProps, Header, HeaderProps, HeroImage, HeroImageAlignment, HeroImageProps, HorizontalPadding, HorizontalPaddingProps, ISI, ISIProps, Icon, IconNames, IconProps, Image, ImageProps, Input, InputField, InputFieldProps, InputFieldTypes, InputIconProps, InputProps, LinkButton, LinkButtonProps, LoginForm, LoginFormProps, MapPosition, MenuItem, MenuItems, MenuItemsProps, MenuNavigation, MenuNavigationProps, MlrRichTextViewerContext, MlrRichTextViewerContextType, MlrRichTextViewerProvider, MlrRichTextViewerProviderProps, OrientationType, ProcessTracker, ProcessTrackerProps, 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, ZealTheme, ZealThemeProvider, acquisitionFormMockFields, defaultTheme, getFieldPlaceholder, getFieldsFromFieldSections, getInitialValuesFromFields, isFormValid, loginMockFields, profileInformationMockForm, sectionMockFields, setPasswordMockFields, toast, toastStyles, useMediaQuery, useMlrRichTextViewerContext, useStep };
|
848
|
+
export { AcquisitionForm, AcquisitionFormProps, Alert, AlertProps, AnnotationsList, AuthMethod, Avatar, AvatarDropdown, AvatarDropdownProps, AvatarProps, BaseButtonProps, Body, BodyProps, BreakpointSizesTypes, Button, ButtonProps, CaretIconWrapper, CheckBoxProps, Checkbox, CheckboxField, CheckboxFieldProps, Circle, CircleBoxProps, ColumnItem, Columns, ColumnsProps, Consent, ConsentProps, CustomValidation, CustomValidationProps, CustomValidationRule, DefaultTemplate, DefaultTemplateProps, Divider, DividerProps, Drawer, EmphasizedText, EmphasizedTextProps, FeedContent, FieldLabels, FieldLabelsProps, FieldMapper, FieldMapperProps, FieldRuleLabelTypes, FieldSection, FieldSectionProps, FieldTypes, FontSizesTypes, Footer, FooterContentInfo, FooterLink, FooterProps, ForgotPasswordForm, ForgotPasswordFormProps, GoogleMap, GoogleMapProps, Header, HeaderProps, HeroImage, HeroImageAlignment, HeroImageProps, HorizontalPadding, HorizontalPaddingProps, ISI, ISIProps, Icon, IconNames, IconProps, Image, ImageProps, Input, InputField, InputFieldProps, InputFieldTypes, InputIconProps, InputProps, LinkButton, LinkButtonProps, LoginForm, LoginFormProps, MapPosition, MenuItem, MenuItems, MenuItemsProps, MenuNavigation, MenuNavigationProps, MlrRichTextViewerContext, MlrRichTextViewerContextType, MlrRichTextViewerProvider, MlrRichTextViewerProviderProps, OrientationType, PdfDocument, PdfDocumentProps, ProcessTracker, ProcessTrackerProps, 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, toast, toastStyles, useMediaQuery, useMlrRichTextViewerContext, useStep };
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zealicsolutions/web-ui",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.53",
|
4
4
|
"repository": {
|
5
5
|
"type": "git",
|
6
6
|
"url": "git+ssh://git@bitbucket.org/Zealic_Solutions/zeal-ui-web.git"
|
@@ -53,6 +53,7 @@
|
|
53
53
|
"@testing-library/user-event": "^14.4.3",
|
54
54
|
"@types/jest": "^29.0.0",
|
55
55
|
"@types/react": "^18.0.18",
|
56
|
+
"@types/react-pdf": "^6.2.0",
|
56
57
|
"@types/styled-components": "^5.1.26",
|
57
58
|
"@types/styled-system": "^5.1.15",
|
58
59
|
"@typescript-eslint/eslint-plugin": "^5.36.2",
|
@@ -94,6 +95,7 @@
|
|
94
95
|
"react-dom": "^18.2.0",
|
95
96
|
"react-google-maps": "^9.4.5",
|
96
97
|
"react-hook-form": "^7.34.2",
|
98
|
+
"react-pdf": "6.2.1",
|
97
99
|
"slate": "^0.85.0",
|
98
100
|
"slate-react": "^0.83.2",
|
99
101
|
"styled-components": "^5.3.5"
|