@zealicsolutions/web-ui 0.1.52 → 0.1.54

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 (54) hide show
  1. package/dist/cjs/index.js +51 -30
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/src/atoms/Icon/Icon.d.ts +4 -0
  4. package/dist/cjs/src/atoms/RichTextViewer/types.d.ts +1 -0
  5. package/dist/cjs/src/atoms/Video/Video.d.ts +10 -0
  6. package/dist/cjs/src/atoms/Video/Video.stories.d.ts +9 -0
  7. package/dist/cjs/src/atoms/index.d.ts +1 -0
  8. package/dist/cjs/src/helpers/slate.d.ts +2 -0
  9. package/dist/cjs/src/icons/Bookmark.d.ts +3 -0
  10. package/dist/cjs/src/icons/CaretLeft.d.ts +3 -0
  11. package/dist/cjs/src/icons/CaretRight.d.ts +3 -0
  12. package/dist/cjs/src/icons/Play.d.ts +3 -0
  13. package/dist/cjs/src/icons/index.d.ts +4 -0
  14. package/dist/cjs/src/molecules/PdfDocument/PdfDocument.d.ts +5 -0
  15. package/dist/cjs/src/molecules/PdfDocument/PdfDocument.stories.d.ts +9 -0
  16. package/dist/cjs/src/molecules/index.d.ts +1 -0
  17. package/dist/cjs/src/organisms/FeedContent/FeedContent.d.ts +3 -0
  18. package/dist/cjs/src/organisms/FeedContent/FeedContent.stories.d.ts +9 -0
  19. package/dist/cjs/src/organisms/FeedContent/components/BackToFeedButton.d.ts +3 -0
  20. package/dist/cjs/src/organisms/FeedContent/components/ExpandedContent.d.ts +3 -0
  21. package/dist/cjs/src/organisms/FeedContent/components/FullWidthContentTemplate.d.ts +3 -0
  22. package/dist/cjs/src/organisms/FeedContent/components/StandardContentTemplate.d.ts +3 -0
  23. package/dist/cjs/src/organisms/FeedContent/styles.d.ts +9 -0
  24. package/dist/cjs/src/organisms/FeedContent/types.d.ts +17 -0
  25. package/dist/cjs/src/organisms/index.d.ts +1 -0
  26. package/dist/cjs/src/typescript.d.ts +1 -0
  27. package/dist/esm/index.js +51 -30
  28. package/dist/esm/index.js.map +1 -1
  29. package/dist/esm/src/atoms/Icon/Icon.d.ts +4 -0
  30. package/dist/esm/src/atoms/RichTextViewer/types.d.ts +1 -0
  31. package/dist/esm/src/atoms/Video/Video.d.ts +10 -0
  32. package/dist/esm/src/atoms/Video/Video.stories.d.ts +9 -0
  33. package/dist/esm/src/atoms/index.d.ts +1 -0
  34. package/dist/esm/src/helpers/slate.d.ts +2 -0
  35. package/dist/esm/src/icons/Bookmark.d.ts +3 -0
  36. package/dist/esm/src/icons/CaretLeft.d.ts +3 -0
  37. package/dist/esm/src/icons/CaretRight.d.ts +3 -0
  38. package/dist/esm/src/icons/Play.d.ts +3 -0
  39. package/dist/esm/src/icons/index.d.ts +4 -0
  40. package/dist/esm/src/molecules/PdfDocument/PdfDocument.d.ts +5 -0
  41. package/dist/esm/src/molecules/PdfDocument/PdfDocument.stories.d.ts +9 -0
  42. package/dist/esm/src/molecules/index.d.ts +1 -0
  43. package/dist/esm/src/organisms/FeedContent/FeedContent.d.ts +3 -0
  44. package/dist/esm/src/organisms/FeedContent/FeedContent.stories.d.ts +9 -0
  45. package/dist/esm/src/organisms/FeedContent/components/BackToFeedButton.d.ts +3 -0
  46. package/dist/esm/src/organisms/FeedContent/components/ExpandedContent.d.ts +3 -0
  47. package/dist/esm/src/organisms/FeedContent/components/FullWidthContentTemplate.d.ts +3 -0
  48. package/dist/esm/src/organisms/FeedContent/components/StandardContentTemplate.d.ts +3 -0
  49. package/dist/esm/src/organisms/FeedContent/styles.d.ts +9 -0
  50. package/dist/esm/src/organisms/FeedContent/types.d.ts +17 -0
  51. package/dist/esm/src/organisms/index.d.ts +1 -0
  52. package/dist/esm/src/typescript.d.ts +1 -0
  53. package/dist/index.d.ts +39 -2
  54. 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;
@@ -27,3 +27,4 @@ export declare type CommunicationLinkPayload = {
27
27
  type: LinkType;
28
28
  url: string;
29
29
  };
30
+ export declare type CustomDescendant = CustomText | CustomElement;
@@ -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';
@@ -0,0 +1,2 @@
1
+ import { CustomDescendant } from 'atoms/RichTextViewer/types';
2
+ export declare const descendantToPlainText: (nodes: CustomDescendant[]) => string;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import type { IconProps } from 'atoms/Icon/Icon';
3
+ export declare const Bookmark: ({ fill, color, ...props }: Omit<IconProps, 'name'>) => JSX.Element;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import type { IconProps } from 'atoms/Icon/Icon';
3
+ export declare const CaretLeft: ({ color, size, ...props }: Omit<IconProps, 'name'>) => JSX.Element;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'atoms';
3
+ export declare const CaretRight: ({ color, size, ...props }: Omit<IconProps, 'name'>) => JSX.Element;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from '../atoms';
3
+ export declare const Play: ({ size, color }: Omit<IconProps, 'name'>) => JSX.Element;
@@ -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,5 @@
1
+ /// <reference types="react" />
2
+ export declare type PdfDocumentProps = {
3
+ source: string;
4
+ };
5
+ export declare const PdfDocument: ({ source }: PdfDocumentProps) => JSX.Element;
@@ -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>;
@@ -17,3 +17,4 @@ export * from './EmphasizedText/EmphasizedText';
17
17
  export * from './RadioButtonField/RadioButtonField';
18
18
  export * from './Alert/Alert';
19
19
  export * from './Stepper/Stepper';
20
+ export * from './PdfDocument/PdfDocument';
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { FeedContentProps } from './types';
3
+ export declare const FeedContent: ({ template, ...props }: FeedContentProps) => JSX.Element;
@@ -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 BackToFeedButton: ({ buttonConfig }: Pick<FeedContentProps, 'buttonConfig'>) => JSX.Element;
@@ -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,3 @@
1
+ /// <reference types="react" />
2
+ import { FeedContentProps } from 'organisms/FeedContent/types';
3
+ export declare const FullWidthContentTemplate: (props: Omit<FeedContentProps, 'type'>) => JSX.Element;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { FeedContentProps } from 'organisms/FeedContent/types';
3
+ export declare const StandardContentTemplate: (props: Omit<FeedContentProps, 'type'>) => 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,17 @@
1
+ import { Nullable } from 'typescript';
2
+ export declare type FeedContentTemplateTypes = 'full_width' | 'standard' | 'autoplay' | '';
3
+ export declare type FeedContentProps = {
4
+ template: FeedContentTemplateTypes;
5
+ image?: string;
6
+ video?: string;
7
+ document?: string;
8
+ title?: Nullable<string>;
9
+ description: Nullable<string>;
10
+ lastUpdated: string;
11
+ buttonConfig: {
12
+ disabled?: boolean;
13
+ onClick?: () => void;
14
+ };
15
+ isMobile?: boolean;
16
+ isExpanded: boolean;
17
+ };
@@ -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';
@@ -1,3 +1,4 @@
1
1
  import { DefaultTheme, ThemedCssFunction } from 'styled-components';
2
2
  export declare type StylesType = ReturnType<ThemedCssFunction<DefaultTheme>>;
3
3
  export declare type Callback = () => void;
4
+ export declare type Nullable<T> = T | null;
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { Callback, StylesType } from 'typescript';
2
+ import { Callback, StylesType, Nullable } from 'typescript';
3
3
  import * as react from 'react';
4
4
  import react__default, { PropsWithChildren, ReactNode, Dispatch, SetStateAction } from 'react';
5
5
  import * as styled_components from 'styled-components';
@@ -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;
@@ -637,6 +655,25 @@ declare const LoginForm: ({ logoUrl, fields, isTooltipVisible, onSubmit, options
637
655
  declare type FooterProps = FooterAProps | FooterBProps | FooterCProps;
638
656
  declare const Footer: (props: FooterProps) => JSX.Element;
639
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?: Nullable<string>;
665
+ description: Nullable<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
+
640
677
  declare type FooterContentInfo = {
641
678
  phoneNumber: string;
642
679
  addressLine1: string;
@@ -808,4 +845,4 @@ declare type AnnotationsList = {
808
845
 
809
846
  declare const useMlrRichTextViewerContext: () => contexts_MlrRichTextViewerContext_MlrRichTextViewerContext.MlrRichTextViewerContextType;
810
847
 
811
- 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.52",
3
+ "version": "0.1.54",
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"