@luscii-healthtech/web-ui 42.10.4 → 42.11.1
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/index.development.js +6 -1
- package/dist/index.development.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/src/components/Icons/WorkflowIcon.d.ts +3 -0
- package/dist/src/components/Icons/index.d.ts +1 -0
- package/dist/src/components/Input/LabeledInput.d.ts +1 -1
- package/dist/stories/AccordionList.stories.d.ts +5 -5
- package/dist/stories/Button.stories.d.ts +1 -1
- package/dist/stories/DatePicker.stories.d.ts +1 -1
- package/dist/stories/DetailsDisclosure.stories.d.ts +14 -14
- package/dist/stories/DraggableList.stories.d.ts +1 -1
- package/dist/stories/Dropzone.stories.d.ts +1 -1
- package/dist/stories/FilePreview.stories.d.ts +1 -1
- package/dist/stories/FileUpload.stories.d.ts +1 -1
- package/dist/stories/FullPageModal.stories.d.ts +4 -4
- package/dist/stories/Modal.stories.d.ts +8 -8
- package/dist/stories/ModalDialog.stories.d.ts +84 -84
- package/dist/stories/NavLayout.stories.d.ts +4 -4
- package/dist/stories/NotificationBanner.stories.d.ts +2 -2
- package/dist/stories/PreviewPhone.stories.d.ts +1 -1
- package/dist/stories/PrimaryButton.stories.d.ts +1 -1
- package/dist/stories/PrimaryIconButton.stories.d.ts +1 -1
- package/dist/stories/RadioGroupV2.stories.d.ts +1 -1
- package/dist/stories/RadioV2.stories.d.ts +1 -1
- package/dist/stories/SearchInput.stories.d.ts +1 -1
- package/dist/stories/SecondaryButton.stories.d.ts +1 -1
- package/dist/stories/SecondaryIconButton.stories.d.ts +1 -1
- package/dist/stories/SectionItem.stories.d.ts +1 -1
- package/dist/stories/Select.stories.d.ts +1 -1
- package/dist/stories/SettingsMenuButton.stories.d.ts +4 -4
- package/dist/stories/SortableList.stories.d.ts +1 -1
- package/dist/stories/Table.stories.d.ts +1 -1
- package/dist/stories/TableNew.stories.d.ts +1 -1
- package/dist/stories/TertiaryButton.stories.d.ts +1 -1
- package/dist/stories/TertiaryIconButton.stories.d.ts +1 -1
- package/dist/stories/TextLink.stories.d.ts +1 -1
- package/dist/stories/Textarea.stories.d.ts +1 -1
- package/dist/web-ui.esm.js +1 -1
- package/dist/web-ui.esm.js.map +1 -1
- package/package.json +12 -13
|
@@ -113,6 +113,7 @@ export { default as UnlinkIcon } from "./UnlinkIcon";
|
|
|
113
113
|
export { default as UnpinIcon } from "./UnpinIcon";
|
|
114
114
|
export { default as UploadIcon } from "./UploadIcon";
|
|
115
115
|
export { default as VideoIcon } from "./VideoIcon";
|
|
116
|
+
export { default as WorkflowIcon } from "./WorkflowIcon";
|
|
116
117
|
/**
|
|
117
118
|
* These exports are to ensure backwards compatibility with the
|
|
118
119
|
* old icon names, until we are ready to make the breaking change
|
|
@@ -3,7 +3,7 @@ import type { IconProps } from "../Icons/types/IconProps.type";
|
|
|
3
3
|
export declare const LabeledInput: React.ForwardRefExoticComponent<Omit<Omit<Omit<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "width"> & {
|
|
4
4
|
suffix?: string;
|
|
5
5
|
prefix?: string;
|
|
6
|
-
icon?: React.FC<IconProps> | import("
|
|
6
|
+
icon?: React.FC<IconProps> | import("../..").IconKey;
|
|
7
7
|
width?: import("../../types/general.types").FormFieldSize | [import("../../types/general.types").FormFieldSize, import("../../types/general.types").FormFieldSize?, import("../../types/general.types").FormFieldSize?, import("../../types/general.types").FormFieldSize?, import("../../types/general.types").FormFieldSize?];
|
|
8
8
|
height?: import("../../system/Sizes").FormHeightNames;
|
|
9
9
|
isError?: boolean;
|
|
@@ -9,7 +9,7 @@ declare const _default: {
|
|
|
9
9
|
export default _default;
|
|
10
10
|
type Story = StoryObj<typeof AccordionList>;
|
|
11
11
|
export declare const SimpleAccordionList: {
|
|
12
|
-
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react
|
|
12
|
+
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, AccordionListProps>;
|
|
13
13
|
args: {
|
|
14
14
|
id: string;
|
|
15
15
|
localisations: {
|
|
@@ -38,7 +38,7 @@ export declare const SearchableAccordionList: Story;
|
|
|
38
38
|
export declare const SearchableAccordionListByItemId: Story;
|
|
39
39
|
export declare const SearchableAccordionListByMatchTerm: Story;
|
|
40
40
|
export declare const LoadingAccordionList: {
|
|
41
|
-
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react
|
|
41
|
+
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, AccordionListProps>;
|
|
42
42
|
args: {
|
|
43
43
|
id: string;
|
|
44
44
|
localisations: {
|
|
@@ -58,7 +58,7 @@ export declare const LoadingAccordionList: {
|
|
|
58
58
|
};
|
|
59
59
|
};
|
|
60
60
|
export declare const WithActions: {
|
|
61
|
-
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react
|
|
61
|
+
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, AccordionListProps>;
|
|
62
62
|
args: {
|
|
63
63
|
id: string;
|
|
64
64
|
localisations: {
|
|
@@ -74,7 +74,7 @@ export declare const WithActions: {
|
|
|
74
74
|
};
|
|
75
75
|
};
|
|
76
76
|
export declare const WithActionsInHeader: {
|
|
77
|
-
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react
|
|
77
|
+
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, AccordionListProps>;
|
|
78
78
|
args: {
|
|
79
79
|
id: string;
|
|
80
80
|
localisations: {
|
|
@@ -92,7 +92,7 @@ export declare const WithActionsInHeader: {
|
|
|
92
92
|
};
|
|
93
93
|
};
|
|
94
94
|
export declare const WithErrorState: {
|
|
95
|
-
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react
|
|
95
|
+
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, AccordionListProps>;
|
|
96
96
|
args: {
|
|
97
97
|
id: string;
|
|
98
98
|
localisations: {
|
|
@@ -2,7 +2,7 @@ import { type StoryObj } from "@storybook/react-webpack5";
|
|
|
2
2
|
declare const meta: {
|
|
3
3
|
title: string;
|
|
4
4
|
component: import("react").ForwardRefExoticComponent<Omit<import("../src/components/ButtonV2/ButtonProps.type").ButtonProps, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
|
|
5
|
-
decorators: import("@storybook/react
|
|
5
|
+
decorators: import("@storybook/react").Decorator;
|
|
6
6
|
};
|
|
7
7
|
export default meta;
|
|
8
8
|
type Story = StoryObj<typeof meta>;
|
|
@@ -22,7 +22,7 @@ declare const meta: {
|
|
|
22
22
|
};
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
|
-
decorators: ((Story: import("storybook/internal/csf").PartialStoryFn<import("@storybook/react
|
|
25
|
+
decorators: ((Story: import("storybook/internal/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
|
|
26
26
|
locale?: keyof typeof import("../src/system/Locale").LOCALE_MAP | undefined;
|
|
27
27
|
className?: string | undefined;
|
|
28
28
|
selected?: Date | undefined;
|
|
@@ -1220,7 +1220,7 @@ export declare const OpenByDefault: {
|
|
|
1220
1220
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor;
|
|
1221
1221
|
onToggleDetails?: (isOpen: boolean) => void;
|
|
1222
1222
|
};
|
|
1223
|
-
decorators?: import("storybook/internal/csf").DecoratorFunction<import("@storybook/react
|
|
1223
|
+
decorators?: import("storybook/internal/csf").DecoratorFunction<import("@storybook/react").ReactRenderer, {
|
|
1224
1224
|
backgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
1225
1225
|
children?: import("react").ReactNode;
|
|
1226
1226
|
className?: string | undefined | undefined;
|
|
@@ -1810,7 +1810,7 @@ export declare const OpenByDefault: {
|
|
|
1810
1810
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
1811
1811
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
1812
1812
|
openByDefault?: never | undefined;
|
|
1813
|
-
}> | import("storybook/internal/csf").DecoratorFunction<import("@storybook/react
|
|
1813
|
+
}> | import("storybook/internal/csf").DecoratorFunction<import("@storybook/react").ReactRenderer, {
|
|
1814
1814
|
backgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
1815
1815
|
children?: import("react").ReactNode;
|
|
1816
1816
|
className?: string | undefined | undefined;
|
|
@@ -2401,8 +2401,8 @@ export declare const OpenByDefault: {
|
|
|
2401
2401
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
2402
2402
|
openByDefault?: never | undefined;
|
|
2403
2403
|
}>[] | undefined;
|
|
2404
|
-
parameters?: import("@storybook/react
|
|
2405
|
-
argTypes?: Partial<import("@storybook/react
|
|
2404
|
+
parameters?: import("@storybook/react").Parameters | undefined;
|
|
2405
|
+
argTypes?: Partial<import("@storybook/react").ArgTypes<{
|
|
2406
2406
|
backgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
2407
2407
|
children?: import("react").ReactNode;
|
|
2408
2408
|
className?: string | undefined | undefined;
|
|
@@ -2993,7 +2993,7 @@ export declare const OpenByDefault: {
|
|
|
2993
2993
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
2994
2994
|
openByDefault?: never | undefined;
|
|
2995
2995
|
}>> | undefined;
|
|
2996
|
-
loaders?: import("storybook/internal/csf").LoaderFunction<import("@storybook/react
|
|
2996
|
+
loaders?: import("storybook/internal/csf").LoaderFunction<import("@storybook/react").ReactRenderer, {
|
|
2997
2997
|
backgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
2998
2998
|
children?: import("react").ReactNode;
|
|
2999
2999
|
className?: string | undefined | undefined;
|
|
@@ -3583,7 +3583,7 @@ export declare const OpenByDefault: {
|
|
|
3583
3583
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
3584
3584
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
3585
3585
|
openByDefault?: never | undefined;
|
|
3586
|
-
}> | import("storybook/internal/csf").LoaderFunction<import("@storybook/react
|
|
3586
|
+
}> | import("storybook/internal/csf").LoaderFunction<import("@storybook/react").ReactRenderer, {
|
|
3587
3587
|
backgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
3588
3588
|
children?: import("react").ReactNode;
|
|
3589
3589
|
className?: string | undefined | undefined;
|
|
@@ -4174,7 +4174,7 @@ export declare const OpenByDefault: {
|
|
|
4174
4174
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
4175
4175
|
openByDefault?: never | undefined;
|
|
4176
4176
|
}>[] | undefined;
|
|
4177
|
-
beforeEach?: import("storybook/internal/csf").BeforeEach<import("@storybook/react
|
|
4177
|
+
beforeEach?: import("storybook/internal/csf").BeforeEach<import("@storybook/react").ReactRenderer, {
|
|
4178
4178
|
backgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
4179
4179
|
children?: import("react").ReactNode;
|
|
4180
4180
|
className?: string | undefined | undefined;
|
|
@@ -4764,7 +4764,7 @@ export declare const OpenByDefault: {
|
|
|
4764
4764
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
4765
4765
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
4766
4766
|
openByDefault?: never | undefined;
|
|
4767
|
-
}> | import("storybook/internal/csf").BeforeEach<import("@storybook/react
|
|
4767
|
+
}> | import("storybook/internal/csf").BeforeEach<import("@storybook/react").ReactRenderer, {
|
|
4768
4768
|
backgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
4769
4769
|
children?: import("react").ReactNode;
|
|
4770
4770
|
className?: string | undefined | undefined;
|
|
@@ -5355,7 +5355,7 @@ export declare const OpenByDefault: {
|
|
|
5355
5355
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
5356
5356
|
openByDefault?: never | undefined;
|
|
5357
5357
|
}>[] | undefined;
|
|
5358
|
-
afterEach?: import("storybook/internal/csf").AfterEach<import("@storybook/react
|
|
5358
|
+
afterEach?: import("storybook/internal/csf").AfterEach<import("@storybook/react").ReactRenderer, {
|
|
5359
5359
|
backgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
5360
5360
|
children?: import("react").ReactNode;
|
|
5361
5361
|
className?: string | undefined | undefined;
|
|
@@ -5945,7 +5945,7 @@ export declare const OpenByDefault: {
|
|
|
5945
5945
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
5946
5946
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
5947
5947
|
openByDefault?: never | undefined;
|
|
5948
|
-
}> | import("storybook/internal/csf").AfterEach<import("@storybook/react
|
|
5948
|
+
}> | import("storybook/internal/csf").AfterEach<import("@storybook/react").ReactRenderer, {
|
|
5949
5949
|
backgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
5950
5950
|
children?: import("react").ReactNode;
|
|
5951
5951
|
className?: string | undefined | undefined;
|
|
@@ -6536,7 +6536,7 @@ export declare const OpenByDefault: {
|
|
|
6536
6536
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
6537
6537
|
openByDefault?: never | undefined;
|
|
6538
6538
|
}>[] | undefined;
|
|
6539
|
-
render?: import("storybook/internal/csf").ArgsStoryFn<import("@storybook/react
|
|
6539
|
+
render?: import("storybook/internal/csf").ArgsStoryFn<import("@storybook/react").ReactRenderer, {
|
|
6540
6540
|
backgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
6541
6541
|
children?: import("react").ReactNode;
|
|
6542
6542
|
className?: string | undefined | undefined;
|
|
@@ -7128,7 +7128,7 @@ export declare const OpenByDefault: {
|
|
|
7128
7128
|
openByDefault?: never | undefined;
|
|
7129
7129
|
}> | undefined;
|
|
7130
7130
|
tags?: import("storybook/internal/csf").Tag[];
|
|
7131
|
-
mount?: ((context: import("storybook/internal/csf").StoryContext<import("@storybook/react
|
|
7131
|
+
mount?: ((context: import("storybook/internal/csf").StoryContext<import("@storybook/react").ReactRenderer, {
|
|
7132
7132
|
backgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
7133
7133
|
children?: import("react").ReactNode;
|
|
7134
7134
|
className?: string | undefined | undefined;
|
|
@@ -7721,7 +7721,7 @@ export declare const OpenByDefault: {
|
|
|
7721
7721
|
}>) => (ui?: import("react").JSX.Element) => Promise<import("storybook/internal/csf").Canvas>) | undefined;
|
|
7722
7722
|
name?: import("storybook/internal/csf").StoryName;
|
|
7723
7723
|
storyName?: import("storybook/internal/csf").StoryName;
|
|
7724
|
-
play?: import("storybook/internal/csf").PlayFunction<import("@storybook/react
|
|
7724
|
+
play?: import("storybook/internal/csf").PlayFunction<import("@storybook/react").ReactRenderer, {
|
|
7725
7725
|
backgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
7726
7726
|
children?: import("react").ReactNode;
|
|
7727
7727
|
className?: string | undefined | undefined;
|
|
@@ -8313,7 +8313,7 @@ export declare const OpenByDefault: {
|
|
|
8313
8313
|
openByDefault?: never | undefined;
|
|
8314
8314
|
}> | undefined;
|
|
8315
8315
|
globals?: import("storybook/internal/csf").Globals | undefined;
|
|
8316
|
-
story?: Omit<import("storybook/internal/csf").StoryAnnotations<import("@storybook/react
|
|
8316
|
+
story?: Omit<import("storybook/internal/csf").StoryAnnotations<import("@storybook/react").ReactRenderer, {
|
|
8317
8317
|
backgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
8318
8318
|
children?: import("react").ReactNode;
|
|
8319
8319
|
className?: string | undefined | undefined;
|
|
@@ -2,7 +2,7 @@ import { type StoryObj } from "@storybook/react-webpack5";
|
|
|
2
2
|
import { type DraggableListProps } from "../src/components/List";
|
|
3
3
|
declare const _default: {
|
|
4
4
|
title: string;
|
|
5
|
-
component: import("react").FC<import("../src
|
|
5
|
+
component: import("react").FC<import("../src").ListProps>;
|
|
6
6
|
argTypes: {};
|
|
7
7
|
};
|
|
8
8
|
export default _default;
|
|
@@ -2,7 +2,7 @@ import { type StoryObj } from "@storybook/react-webpack5";
|
|
|
2
2
|
import { Dropzone, DropzonePresentation } from "../src/components/Dropzone";
|
|
3
3
|
declare const _default: {
|
|
4
4
|
title: string;
|
|
5
|
-
component: import("react").FC<import("../src
|
|
5
|
+
component: import("react").FC<import("../src").DropzoneProps>;
|
|
6
6
|
};
|
|
7
7
|
export default _default;
|
|
8
8
|
export declare const Simple: StoryObj<typeof Dropzone>;
|
|
@@ -12,7 +12,7 @@ declare const _default: {
|
|
|
12
12
|
onDownload?: import("react").MouseEventHandler<HTMLAnchorElement>;
|
|
13
13
|
}>;
|
|
14
14
|
title: string;
|
|
15
|
-
decorators: import("@storybook/react
|
|
15
|
+
decorators: import("@storybook/react").Decorator[];
|
|
16
16
|
parameters: {
|
|
17
17
|
chromatic: {
|
|
18
18
|
/**
|
|
@@ -2,7 +2,7 @@ import { type StoryObj } from "@storybook/react-webpack5";
|
|
|
2
2
|
import { FileUpload } from "../src/components/FileUpload/FileUpload";
|
|
3
3
|
declare const _default: {
|
|
4
4
|
title: string;
|
|
5
|
-
component: import("react").FC<import("../src
|
|
5
|
+
component: import("react").FC<import("../src").FileProps>;
|
|
6
6
|
};
|
|
7
7
|
export default _default;
|
|
8
8
|
type FileStory = StoryObj<typeof FileUpload>;
|
|
@@ -10,19 +10,19 @@ declare function openModalInteraction({ canvasElement }: {
|
|
|
10
10
|
canvasElement: any;
|
|
11
11
|
}): Promise<void>;
|
|
12
12
|
export declare const FullSizeModalWithTwoColumns: {
|
|
13
|
-
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react
|
|
13
|
+
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, import("../src/components/Modal/FullPageModal").FullPageModalProps>;
|
|
14
14
|
args: {
|
|
15
15
|
isOpen: boolean;
|
|
16
16
|
};
|
|
17
17
|
};
|
|
18
18
|
export declare const FullSizeModalWithOneColumn: {
|
|
19
|
-
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react
|
|
19
|
+
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, import("../src/components/Modal/FullPageModal").FullPageModalProps>;
|
|
20
20
|
args: {
|
|
21
21
|
isOpen: boolean;
|
|
22
22
|
};
|
|
23
23
|
};
|
|
24
24
|
export declare const DeprecatedWithPrimaryButtonProps: {
|
|
25
|
-
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react
|
|
25
|
+
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, import("../src/components/Modal/FullPageModal").FullPageModalProps>;
|
|
26
26
|
play: typeof openModalInteraction;
|
|
27
27
|
args: {
|
|
28
28
|
isOpen: boolean;
|
|
@@ -33,7 +33,7 @@ export declare const DeprecatedWithPrimaryButtonProps: {
|
|
|
33
33
|
};
|
|
34
34
|
};
|
|
35
35
|
export declare const WithActions: {
|
|
36
|
-
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react
|
|
36
|
+
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, import("../src/components/Modal/FullPageModal").FullPageModalProps>;
|
|
37
37
|
play: typeof openModalInteraction;
|
|
38
38
|
args: {
|
|
39
39
|
isOpen: boolean;
|
|
@@ -6,7 +6,7 @@ declare const _default: {
|
|
|
6
6
|
};
|
|
7
7
|
export default _default;
|
|
8
8
|
export declare const SmallSizeModal: {
|
|
9
|
-
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react
|
|
9
|
+
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, Omit<import("../src").ModalBaseProps, "title" | "withExtraMarginTop"> & {
|
|
10
10
|
title: string;
|
|
11
11
|
}>;
|
|
12
12
|
args: {
|
|
@@ -20,7 +20,7 @@ export declare const SmallSizeModal: {
|
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
22
|
export declare const MediumSizeModal: {
|
|
23
|
-
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react
|
|
23
|
+
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, Omit<import("../src").ModalBaseProps, "title" | "withExtraMarginTop"> & {
|
|
24
24
|
title: string;
|
|
25
25
|
}>;
|
|
26
26
|
args: {
|
|
@@ -34,7 +34,7 @@ export declare const MediumSizeModal: {
|
|
|
34
34
|
};
|
|
35
35
|
};
|
|
36
36
|
export declare const WideSizeModal: {
|
|
37
|
-
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react
|
|
37
|
+
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, Omit<import("../src").ModalBaseProps, "title" | "withExtraMarginTop"> & {
|
|
38
38
|
title: string;
|
|
39
39
|
}>;
|
|
40
40
|
args: {
|
|
@@ -48,7 +48,7 @@ export declare const WideSizeModal: {
|
|
|
48
48
|
};
|
|
49
49
|
};
|
|
50
50
|
export declare const MediumSizeModalWith2FooterTrailingButtons: {
|
|
51
|
-
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react
|
|
51
|
+
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, Omit<import("../src").ModalBaseProps, "title" | "withExtraMarginTop"> & {
|
|
52
52
|
title: string;
|
|
53
53
|
}>;
|
|
54
54
|
args: {
|
|
@@ -62,7 +62,7 @@ export declare const MediumSizeModalWith2FooterTrailingButtons: {
|
|
|
62
62
|
};
|
|
63
63
|
};
|
|
64
64
|
export declare const MediumSizeModalWith3FooterButtons: {
|
|
65
|
-
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react
|
|
65
|
+
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, Omit<import("../src").ModalBaseProps, "title" | "withExtraMarginTop"> & {
|
|
66
66
|
title: string;
|
|
67
67
|
}>;
|
|
68
68
|
args: {
|
|
@@ -76,7 +76,7 @@ export declare const MediumSizeModalWith3FooterButtons: {
|
|
|
76
76
|
};
|
|
77
77
|
};
|
|
78
78
|
export declare const MediumModalWithFooterLeadingText: {
|
|
79
|
-
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react
|
|
79
|
+
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, Omit<import("../src").ModalBaseProps, "title" | "withExtraMarginTop"> & {
|
|
80
80
|
title: string;
|
|
81
81
|
}>;
|
|
82
82
|
args: {
|
|
@@ -90,7 +90,7 @@ export declare const MediumModalWithFooterLeadingText: {
|
|
|
90
90
|
};
|
|
91
91
|
};
|
|
92
92
|
export declare const MediumModalWithFooterLeadingTextAnd2TrailingButtons: {
|
|
93
|
-
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react
|
|
93
|
+
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, Omit<import("../src").ModalBaseProps, "title" | "withExtraMarginTop"> & {
|
|
94
94
|
title: string;
|
|
95
95
|
}>;
|
|
96
96
|
args: {
|
|
@@ -104,7 +104,7 @@ export declare const MediumModalWithFooterLeadingTextAnd2TrailingButtons: {
|
|
|
104
104
|
};
|
|
105
105
|
};
|
|
106
106
|
export declare const MediumSizeModalWithLongContent: {
|
|
107
|
-
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react
|
|
107
|
+
render: import("storybook/internal/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, Omit<import("../src").ModalBaseProps, "title" | "withExtraMarginTop"> & {
|
|
108
108
|
title: string;
|
|
109
109
|
}>;
|
|
110
110
|
args: {
|