@galaxy-ds/core 2.1.2 → 2.1.4
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/Accordion/Accordion.stories.d.ts +14 -12
- package/dist/AccordionDetails/AccordionDetails.stories.d.ts +3 -2
- package/dist/AccordionPanel/AccordionPanel.stories.d.ts +7 -7
- package/dist/AccordionSummary/AccordionSummary.stories.d.ts +7 -7
- package/dist/ActivityLog/ActivityLog.stories.d.ts +5 -5
- package/dist/AppBar/AppBar.stories.d.ts +9 -9
- package/dist/AttachmentIcon/AttachmentIcon.stories.d.ts +5 -3
- package/dist/Autocomplete/Autocomplete.stories.d.ts +44 -87
- package/dist/Avatar/Avatar.stories.d.ts +21 -11
- package/dist/AvatarGroup/AvatarGroup.stories.d.ts +30 -11
- package/dist/BottomListButton/BottomListButton.stories.d.ts +7 -7
- package/dist/Box/Box.stories.d.ts +2 -2
- package/dist/Breadcrumbs/Breadcrumbs.stories.d.ts +5 -5
- package/dist/Button/Button.stories.d.ts +17 -17
- package/dist/Card/Card.stories.d.ts +4 -4
- package/dist/Checkbox/Checkbox.stories.d.ts +25 -20
- package/dist/Chip/Chip.stories.d.ts +9 -9
- package/dist/CssBaseline/CssBaseline.stories.d.ts +8 -0
- package/dist/Dialog/Dialog.stories.d.ts +15 -15
- package/dist/Divider/Divider.stories.d.ts +22 -5
- package/dist/Drawer/Drawer.stories.d.ts +9 -9
- package/dist/DrawerMenu/DrawerMenu.stories.d.ts +5 -5
- package/dist/Dropdown/Dropdown.stories.d.ts +23 -23
- package/dist/FooterActions/FooterActions.stories.d.ts +6 -1
- package/dist/FormBody/FormBody.stories.d.ts +1 -1
- package/dist/FormContainer/FormContainer.stories.d.ts +1 -1
- package/dist/FormGroup/FormGroup.stories.d.ts +2 -2
- package/dist/FormHeader/FormHeader.stories.d.ts +2 -2
- package/dist/Grid/Grid.stories.d.ts +47 -549
- package/dist/HeaderToolbar/HeaderToolbar.stories.d.ts +16 -6
- package/dist/Icon/Icon.stories.d.ts +12 -2
- package/dist/IconButton/IconButton.stories.d.ts +7 -7
- package/dist/Icons/doctype-icons.stories.d.ts +17 -0
- package/dist/Icons/lawconnect-icons.stories.d.ts +1 -1
- package/dist/Icons/leap-icons.stories.d.ts +20 -3
- package/dist/ImageUpload/ImageUpload.stories.d.ts +1 -1
- package/dist/Input/Input.stories.d.ts +66 -32
- package/dist/index.esm.js +9 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/package.json +23 -16
|
@@ -17,7 +17,7 @@ declare const meta: {
|
|
|
17
17
|
badges: BADGE[];
|
|
18
18
|
layout: string;
|
|
19
19
|
};
|
|
20
|
-
decorators: ((Story: import("@storybook/
|
|
20
|
+
decorators: ((Story: import("@storybook/csf").PartialStoryFn<import("@storybook/react/dist/types-a5624094").R, {
|
|
21
21
|
children?: import("react").ReactNode;
|
|
22
22
|
title?: string | undefined;
|
|
23
23
|
time?: string | undefined;
|
|
@@ -323,22 +323,22 @@ declare const meta: {
|
|
|
323
323
|
argTypes: {
|
|
324
324
|
children: {
|
|
325
325
|
control: {
|
|
326
|
-
|
|
326
|
+
disable: true;
|
|
327
327
|
};
|
|
328
328
|
};
|
|
329
329
|
component: {
|
|
330
330
|
table: {
|
|
331
|
-
disable:
|
|
331
|
+
disable: true;
|
|
332
332
|
};
|
|
333
333
|
};
|
|
334
334
|
ref: {
|
|
335
335
|
control: {
|
|
336
|
-
|
|
336
|
+
disable: true;
|
|
337
337
|
};
|
|
338
338
|
};
|
|
339
339
|
onClick: {
|
|
340
340
|
control: {
|
|
341
|
-
|
|
341
|
+
disable: true;
|
|
342
342
|
};
|
|
343
343
|
};
|
|
344
344
|
};
|
|
@@ -349,7 +349,7 @@ export declare const Default: {
|
|
|
349
349
|
bgColor: string;
|
|
350
350
|
title: string;
|
|
351
351
|
time: string;
|
|
352
|
-
onClick: import("@vitest/spy").Mock<
|
|
352
|
+
onClick: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
353
353
|
color: "textPrimary";
|
|
354
354
|
chevronPosition: "start";
|
|
355
355
|
orientation: "vertical";
|
|
@@ -357,7 +357,7 @@ export declare const Default: {
|
|
|
357
357
|
argTypes: {
|
|
358
358
|
children: {
|
|
359
359
|
control: {
|
|
360
|
-
|
|
360
|
+
disable: true;
|
|
361
361
|
};
|
|
362
362
|
};
|
|
363
363
|
};
|
|
@@ -368,7 +368,7 @@ export declare const Default: {
|
|
|
368
368
|
};
|
|
369
369
|
};
|
|
370
370
|
};
|
|
371
|
-
play: ({ canvasElement, args }: import("@storybook/
|
|
371
|
+
play: ({ canvasElement, args }: import("@storybook/csf").PlayFunctionContext<import("@storybook/react/dist/types-a5624094").R, {
|
|
372
372
|
children?: import("react").ReactNode;
|
|
373
373
|
title?: string | undefined;
|
|
374
374
|
time?: string | undefined;
|
|
@@ -983,6 +983,7 @@ export declare const AttachmentList: {
|
|
|
983
983
|
args: {
|
|
984
984
|
title: string;
|
|
985
985
|
time: string;
|
|
986
|
+
onClick: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
986
987
|
};
|
|
987
988
|
parameters: {
|
|
988
989
|
docs: {
|
|
@@ -991,7 +992,7 @@ export declare const AttachmentList: {
|
|
|
991
992
|
};
|
|
992
993
|
};
|
|
993
994
|
};
|
|
994
|
-
play: ({ canvasElement }: import("@storybook/
|
|
995
|
+
play: ({ canvasElement }: import("@storybook/csf").PlayFunctionContext<import("@storybook/react/dist/types-a5624094").R, {
|
|
995
996
|
children?: import("react").ReactNode;
|
|
996
997
|
title?: string | undefined;
|
|
997
998
|
time?: string | undefined;
|
|
@@ -1602,6 +1603,7 @@ export declare const DetailedList: {
|
|
|
1602
1603
|
args: {
|
|
1603
1604
|
title: string;
|
|
1604
1605
|
time: string;
|
|
1606
|
+
onClick: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
1605
1607
|
};
|
|
1606
1608
|
parameters: {
|
|
1607
1609
|
docs: {
|
|
@@ -1610,7 +1612,7 @@ export declare const DetailedList: {
|
|
|
1610
1612
|
};
|
|
1611
1613
|
};
|
|
1612
1614
|
};
|
|
1613
|
-
play: ({ canvasElement }: import("@storybook/
|
|
1615
|
+
play: ({ canvasElement }: import("@storybook/csf").PlayFunctionContext<import("@storybook/react/dist/types-a5624094").R, {
|
|
1614
1616
|
children?: import("react").ReactNode;
|
|
1615
1617
|
title?: string | undefined;
|
|
1616
1618
|
time?: string | undefined;
|
|
@@ -2230,7 +2232,7 @@ export declare const Colors: {
|
|
|
2230
2232
|
};
|
|
2231
2233
|
};
|
|
2232
2234
|
};
|
|
2233
|
-
play: ({ canvasElement }: import("@storybook/
|
|
2235
|
+
play: ({ canvasElement }: import("@storybook/csf").PlayFunctionContext<import("@storybook/react/dist/types-a5624094").R, {
|
|
2234
2236
|
children?: import("react").ReactNode;
|
|
2235
2237
|
title?: string | undefined;
|
|
2236
2238
|
time?: string | undefined;
|
|
@@ -2855,7 +2857,7 @@ export declare const ChevronPosition: {
|
|
|
2855
2857
|
};
|
|
2856
2858
|
};
|
|
2857
2859
|
};
|
|
2858
|
-
play: ({ canvasElement }: import("@storybook/
|
|
2860
|
+
play: ({ canvasElement }: import("@storybook/csf").PlayFunctionContext<import("@storybook/react/dist/types-a5624094").R, {
|
|
2859
2861
|
children?: import("react").ReactNode;
|
|
2860
2862
|
title?: string | undefined;
|
|
2861
2863
|
time?: string | undefined;
|
|
@@ -12,6 +12,7 @@ declare const meta: {
|
|
|
12
12
|
component: (props: import("./AccordionDetails.types").AccordionDetailsProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
parameters: {
|
|
14
14
|
badges: BADGE[];
|
|
15
|
+
layout: string;
|
|
15
16
|
};
|
|
16
17
|
};
|
|
17
18
|
export default meta;
|
|
@@ -22,11 +23,11 @@ export declare const Default: {
|
|
|
22
23
|
argTypes: {
|
|
23
24
|
children: {
|
|
24
25
|
control: {
|
|
25
|
-
|
|
26
|
+
disable: true;
|
|
26
27
|
};
|
|
27
28
|
};
|
|
28
29
|
};
|
|
29
|
-
play: ({ canvasElement }: import("@storybook/
|
|
30
|
+
play: ({ canvasElement }: import("@storybook/csf").PlayFunctionContext<import("@storybook/react/dist/types-a5624094").R, {
|
|
30
31
|
children?: import("react").ReactNode;
|
|
31
32
|
classes?: Partial<import("@mui/material").AccordionDetailsClasses> | undefined;
|
|
32
33
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
@@ -16,27 +16,27 @@ declare const meta: {
|
|
|
16
16
|
argTypes: {
|
|
17
17
|
children: {
|
|
18
18
|
control: {
|
|
19
|
-
|
|
19
|
+
disable: true;
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
22
|
TransitionComponent: {
|
|
23
23
|
table: {
|
|
24
|
-
disable:
|
|
24
|
+
disable: true;
|
|
25
25
|
};
|
|
26
26
|
};
|
|
27
27
|
TransitionProps: {
|
|
28
28
|
table: {
|
|
29
|
-
disable:
|
|
29
|
+
disable: true;
|
|
30
30
|
};
|
|
31
31
|
};
|
|
32
32
|
component: {
|
|
33
33
|
table: {
|
|
34
|
-
disable:
|
|
34
|
+
disable: true;
|
|
35
35
|
};
|
|
36
36
|
};
|
|
37
37
|
ref: {
|
|
38
38
|
control: {
|
|
39
|
-
|
|
39
|
+
disable: true;
|
|
40
40
|
};
|
|
41
41
|
};
|
|
42
42
|
};
|
|
@@ -45,11 +45,11 @@ export default meta;
|
|
|
45
45
|
export declare const Default: {
|
|
46
46
|
args: {
|
|
47
47
|
elevation: number;
|
|
48
|
-
onClick: import("@vitest/spy").Mock<
|
|
48
|
+
onClick: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
49
49
|
variant: "elevation";
|
|
50
50
|
children: import("react/jsx-runtime").JSX.Element;
|
|
51
51
|
};
|
|
52
|
-
play: ({ canvasElement, args }: import("@storybook/
|
|
52
|
+
play: ({ canvasElement, args }: import("@storybook/csf").PlayFunctionContext<import("@storybook/react/dist/types-a5624094").R, {
|
|
53
53
|
children: NonNullable<import("react").ReactNode> & import("react").ReactNode;
|
|
54
54
|
classes?: (Partial<import("@mui/material").AccordionClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
55
55
|
defaultExpanded?: boolean | undefined;
|
|
@@ -16,32 +16,32 @@ declare const meta: {
|
|
|
16
16
|
argTypes: {
|
|
17
17
|
onFocusVisible: {
|
|
18
18
|
control: {
|
|
19
|
-
|
|
19
|
+
disable: true;
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
22
|
children: {
|
|
23
23
|
control: {
|
|
24
|
-
|
|
24
|
+
disable: true;
|
|
25
25
|
};
|
|
26
26
|
};
|
|
27
27
|
expandIcon: {
|
|
28
28
|
control: {
|
|
29
|
-
|
|
29
|
+
disable: true;
|
|
30
30
|
};
|
|
31
31
|
};
|
|
32
32
|
component: {
|
|
33
33
|
table: {
|
|
34
|
-
disable:
|
|
34
|
+
disable: true;
|
|
35
35
|
};
|
|
36
36
|
};
|
|
37
37
|
LinkComponent: {
|
|
38
38
|
control: {
|
|
39
|
-
|
|
39
|
+
disable: true;
|
|
40
40
|
};
|
|
41
41
|
};
|
|
42
42
|
ref: {
|
|
43
43
|
control: {
|
|
44
|
-
|
|
44
|
+
disable: true;
|
|
45
45
|
};
|
|
46
46
|
};
|
|
47
47
|
};
|
|
@@ -51,7 +51,7 @@ export declare const Default: {
|
|
|
51
51
|
args: {
|
|
52
52
|
bgColor: string;
|
|
53
53
|
};
|
|
54
|
-
play: ({ canvasElement }: import("@storybook/
|
|
54
|
+
play: ({ canvasElement }: import("@storybook/csf").PlayFunctionContext<import("@storybook/react/dist/types-a5624094").R, {
|
|
55
55
|
bgColor?: string | undefined;
|
|
56
56
|
children?: import("react").ReactNode;
|
|
57
57
|
classes?: (Partial<import("@mui/material").AccordionSummaryClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
@@ -16,7 +16,7 @@ declare const meta: {
|
|
|
16
16
|
badges: BADGE[];
|
|
17
17
|
layout: string;
|
|
18
18
|
};
|
|
19
|
-
decorators: ((Story: import("@storybook/
|
|
19
|
+
decorators: ((Story: import("@storybook/csf").PartialStoryFn<import("@storybook/react/dist/types-a5624094").R, {
|
|
20
20
|
name?: string | undefined;
|
|
21
21
|
nameRef?: import("react").MutableRefObject<HTMLSpanElement> | undefined;
|
|
22
22
|
time?: string | undefined;
|
|
@@ -36,17 +36,17 @@ declare const meta: {
|
|
|
36
36
|
argTypes: {
|
|
37
37
|
nameRef: {
|
|
38
38
|
control: {
|
|
39
|
-
|
|
39
|
+
disable: true;
|
|
40
40
|
};
|
|
41
41
|
};
|
|
42
42
|
onAttach: {
|
|
43
43
|
control: {
|
|
44
|
-
|
|
44
|
+
disable: true;
|
|
45
45
|
};
|
|
46
46
|
};
|
|
47
47
|
onClick: {
|
|
48
48
|
control: {
|
|
49
|
-
|
|
49
|
+
disable: true;
|
|
50
50
|
};
|
|
51
51
|
};
|
|
52
52
|
};
|
|
@@ -68,7 +68,7 @@ export declare const Default: {
|
|
|
68
68
|
initials: string;
|
|
69
69
|
}[];
|
|
70
70
|
};
|
|
71
|
-
play: ({ canvasElement }: import("@storybook/
|
|
71
|
+
play: ({ canvasElement }: import("@storybook/csf").PlayFunctionContext<import("@storybook/react/dist/types-a5624094").R, {
|
|
72
72
|
name?: string | undefined;
|
|
73
73
|
nameRef?: import("react").MutableRefObject<HTMLSpanElement> | undefined;
|
|
74
74
|
time?: string | undefined;
|
|
@@ -21,17 +21,17 @@ declare const meta: {
|
|
|
21
21
|
argTypes: {
|
|
22
22
|
children: {
|
|
23
23
|
control: {
|
|
24
|
-
|
|
24
|
+
disable: true;
|
|
25
25
|
};
|
|
26
26
|
};
|
|
27
27
|
ref: {
|
|
28
28
|
control: {
|
|
29
|
-
|
|
29
|
+
disable: true;
|
|
30
30
|
};
|
|
31
31
|
};
|
|
32
32
|
component: {
|
|
33
33
|
table: {
|
|
34
|
-
disable:
|
|
34
|
+
disable: true;
|
|
35
35
|
};
|
|
36
36
|
};
|
|
37
37
|
};
|
|
@@ -45,9 +45,9 @@ export declare const Default: {
|
|
|
45
45
|
lastName: string;
|
|
46
46
|
email: string;
|
|
47
47
|
};
|
|
48
|
-
onClick: import("@vitest/spy").Mock<
|
|
48
|
+
onClick: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
49
49
|
};
|
|
50
|
-
decorators: ((Story: import("@storybook/
|
|
50
|
+
decorators: ((Story: import("@storybook/csf").PartialStoryFn<import("@storybook/react/dist/types-a5624094").R, {
|
|
51
51
|
title?: string | undefined;
|
|
52
52
|
children?: import("react").ReactNode;
|
|
53
53
|
user?: import("./AppBar.types").UserAppBarType | undefined;
|
|
@@ -327,7 +327,7 @@ export declare const Default: {
|
|
|
327
327
|
is?: string | undefined;
|
|
328
328
|
component?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
329
329
|
}>) => import("react/jsx-runtime").JSX.Element)[];
|
|
330
|
-
play: ({ canvasElement, args }: import("@storybook/
|
|
330
|
+
play: ({ canvasElement, args }: import("@storybook/csf").PlayFunctionContext<import("@storybook/react/dist/types-a5624094").R, {
|
|
331
331
|
title?: string | undefined;
|
|
332
332
|
children?: import("react").ReactNode;
|
|
333
333
|
user?: import("./AppBar.types").UserAppBarType | undefined;
|
|
@@ -613,7 +613,7 @@ export declare const MobileDrawer: {
|
|
|
613
613
|
args: {
|
|
614
614
|
title: string;
|
|
615
615
|
};
|
|
616
|
-
decorators: ((Story: import("@storybook/
|
|
616
|
+
decorators: ((Story: import("@storybook/csf").PartialStoryFn<import("@storybook/react/dist/types-a5624094").R, {
|
|
617
617
|
title?: string | undefined;
|
|
618
618
|
children?: import("react").ReactNode;
|
|
619
619
|
user?: import("./AppBar.types").UserAppBarType | undefined;
|
|
@@ -899,7 +899,7 @@ export declare const NoDrawer: {
|
|
|
899
899
|
args: {
|
|
900
900
|
title: string;
|
|
901
901
|
};
|
|
902
|
-
decorators: ((Story: import("@storybook/
|
|
902
|
+
decorators: ((Story: import("@storybook/csf").PartialStoryFn<import("@storybook/react/dist/types-a5624094").R, {
|
|
903
903
|
title?: string | undefined;
|
|
904
904
|
children?: import("react").ReactNode;
|
|
905
905
|
user?: import("./AppBar.types").UserAppBarType | undefined;
|
|
@@ -1179,7 +1179,7 @@ export declare const NoDrawer: {
|
|
|
1179
1179
|
is?: string | undefined;
|
|
1180
1180
|
component?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
1181
1181
|
}>) => import("react/jsx-runtime").JSX.Element)[];
|
|
1182
|
-
play: ({ canvasElement }: import("@storybook/
|
|
1182
|
+
play: ({ canvasElement }: import("@storybook/csf").PlayFunctionContext<import("@storybook/react/dist/types-a5624094").R, {
|
|
1183
1183
|
title?: string | undefined;
|
|
1184
1184
|
children?: import("react").ReactNode;
|
|
1185
1185
|
user?: import("./AppBar.types").UserAppBarType | undefined;
|
|
@@ -23,12 +23,12 @@ declare const meta: {
|
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
25
|
control: {
|
|
26
|
-
|
|
26
|
+
disable: true;
|
|
27
27
|
};
|
|
28
28
|
};
|
|
29
29
|
ext: {
|
|
30
30
|
control: {
|
|
31
|
-
|
|
31
|
+
disable: true;
|
|
32
32
|
};
|
|
33
33
|
};
|
|
34
34
|
};
|
|
@@ -46,7 +46,9 @@ export declare const Default: {
|
|
|
46
46
|
render: () => import("react/jsx-runtime").JSX.Element;
|
|
47
47
|
};
|
|
48
48
|
export declare const Small: {
|
|
49
|
-
args: {
|
|
49
|
+
args: {
|
|
50
|
+
size: "medium";
|
|
51
|
+
};
|
|
50
52
|
parameters: {
|
|
51
53
|
docs: {
|
|
52
54
|
source: {
|
|
@@ -17,116 +17,116 @@ declare const meta: {
|
|
|
17
17
|
argTypes: {
|
|
18
18
|
onKeyDown: {
|
|
19
19
|
control: {
|
|
20
|
-
|
|
20
|
+
disable: true;
|
|
21
21
|
};
|
|
22
22
|
};
|
|
23
23
|
onInputChange: {
|
|
24
24
|
control: {
|
|
25
|
-
|
|
25
|
+
disable: true;
|
|
26
26
|
};
|
|
27
27
|
};
|
|
28
28
|
onOpen: {
|
|
29
29
|
control: {
|
|
30
|
-
|
|
30
|
+
disable: true;
|
|
31
31
|
};
|
|
32
32
|
};
|
|
33
33
|
onHighlightChange: {
|
|
34
34
|
control: {
|
|
35
|
-
|
|
35
|
+
disable: true;
|
|
36
36
|
};
|
|
37
37
|
};
|
|
38
38
|
onClose: {
|
|
39
39
|
control: {
|
|
40
|
-
|
|
40
|
+
disable: true;
|
|
41
41
|
};
|
|
42
42
|
};
|
|
43
43
|
onChange: {
|
|
44
44
|
control: {
|
|
45
|
-
|
|
45
|
+
disable: true;
|
|
46
46
|
};
|
|
47
47
|
};
|
|
48
48
|
actionClick: {
|
|
49
49
|
control: {
|
|
50
|
-
|
|
50
|
+
disable: true;
|
|
51
51
|
};
|
|
52
52
|
};
|
|
53
53
|
renderInput: {
|
|
54
54
|
control: {
|
|
55
|
-
|
|
55
|
+
disable: true;
|
|
56
56
|
};
|
|
57
57
|
};
|
|
58
58
|
isOptionEqualToValue: {
|
|
59
59
|
control: {
|
|
60
|
-
|
|
60
|
+
disable: true;
|
|
61
61
|
};
|
|
62
62
|
};
|
|
63
63
|
groupBy: {
|
|
64
64
|
control: {
|
|
65
|
-
|
|
65
|
+
disable: true;
|
|
66
66
|
};
|
|
67
67
|
};
|
|
68
68
|
getLimitTagsText: {
|
|
69
69
|
control: {
|
|
70
|
-
|
|
70
|
+
disable: true;
|
|
71
71
|
};
|
|
72
72
|
};
|
|
73
73
|
clearIcon: {
|
|
74
74
|
control: {
|
|
75
|
-
|
|
75
|
+
disable: true;
|
|
76
76
|
};
|
|
77
77
|
};
|
|
78
78
|
renderGroup: {
|
|
79
79
|
control: {
|
|
80
|
-
|
|
80
|
+
disable: true;
|
|
81
81
|
};
|
|
82
82
|
};
|
|
83
83
|
renderOption: {
|
|
84
84
|
control: {
|
|
85
|
-
|
|
85
|
+
disable: true;
|
|
86
86
|
};
|
|
87
87
|
};
|
|
88
88
|
renderTags: {
|
|
89
89
|
control: {
|
|
90
|
-
|
|
90
|
+
disable: true;
|
|
91
91
|
};
|
|
92
92
|
};
|
|
93
93
|
unstable_isActiveElementInListbox: {
|
|
94
94
|
control: {
|
|
95
|
-
|
|
95
|
+
disable: true;
|
|
96
96
|
};
|
|
97
97
|
};
|
|
98
98
|
popupIcon: {
|
|
99
99
|
control: {
|
|
100
|
-
|
|
100
|
+
disable: true;
|
|
101
101
|
};
|
|
102
102
|
};
|
|
103
103
|
PopperComponent: {
|
|
104
104
|
control: {
|
|
105
|
-
|
|
105
|
+
disable: true;
|
|
106
106
|
};
|
|
107
107
|
};
|
|
108
108
|
filterOptions: {
|
|
109
109
|
control: {
|
|
110
|
-
|
|
110
|
+
disable: true;
|
|
111
111
|
};
|
|
112
112
|
};
|
|
113
113
|
getOptionDisabled: {
|
|
114
114
|
control: {
|
|
115
|
-
|
|
115
|
+
disable: true;
|
|
116
116
|
};
|
|
117
117
|
};
|
|
118
118
|
getOptionKey: {
|
|
119
119
|
control: {
|
|
120
|
-
|
|
120
|
+
disable: true;
|
|
121
121
|
};
|
|
122
122
|
};
|
|
123
123
|
getOptionLabel: {
|
|
124
124
|
control: {
|
|
125
|
-
|
|
125
|
+
disable: true;
|
|
126
126
|
};
|
|
127
127
|
};
|
|
128
128
|
};
|
|
129
|
-
decorators: ((Story: import("@storybook/
|
|
129
|
+
decorators: ((Story: import("@storybook/csf").PartialStoryFn<import("@storybook/react/dist/types-a5624094").R, {
|
|
130
130
|
actionLabel?: string | undefined;
|
|
131
131
|
bottomButtonHeight?: number | undefined;
|
|
132
132
|
actionClick?: ((e: import("react").MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
@@ -484,53 +484,14 @@ export default meta;
|
|
|
484
484
|
export declare const Default: {
|
|
485
485
|
args: {
|
|
486
486
|
options: string[];
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
disablePortal: false;
|
|
494
|
-
loading: false;
|
|
495
|
-
multiple: false;
|
|
496
|
-
autoHighlight: false;
|
|
497
|
-
autoSelect: false;
|
|
498
|
-
blurOnSelect: false;
|
|
499
|
-
clearOnBlur: false;
|
|
500
|
-
clearOnEscape: false;
|
|
501
|
-
disableClearable: false;
|
|
502
|
-
disableCloseOnSelect: false;
|
|
503
|
-
disableListWrap: false;
|
|
504
|
-
disabledItemsFocusable: false;
|
|
505
|
-
filterSelectedOptions: false;
|
|
506
|
-
freeSolo: false;
|
|
507
|
-
handleHomeEndKeys: false;
|
|
508
|
-
includeInputInList: false;
|
|
509
|
-
openOnFocus: false;
|
|
510
|
-
selectOnFocus: false;
|
|
511
|
-
componentName: string;
|
|
512
|
-
actionLabel: string;
|
|
513
|
-
label: string;
|
|
514
|
-
inputValue: string;
|
|
515
|
-
unstable_classNamePrefix: string;
|
|
516
|
-
closeText: string;
|
|
517
|
-
clearText: string;
|
|
518
|
-
openText: string;
|
|
519
|
-
limitTags: number;
|
|
520
|
-
bottomButtonHeight: number;
|
|
521
|
-
autoComplete: true;
|
|
522
|
-
noOptionsText: string;
|
|
523
|
-
placeholder: string;
|
|
524
|
-
onKeyDown: import("@vitest/spy").Mock<[event: import("react").KeyboardEvent<HTMLDivElement> & {
|
|
525
|
-
defaultMuiPrevented?: boolean | undefined;
|
|
526
|
-
}], void>;
|
|
527
|
-
onInputChange: import("@vitest/spy").Mock<[event: import("react").SyntheticEvent<Element, Event>, value: string, reason: import("@mui/material").AutocompleteInputChangeReason], void>;
|
|
528
|
-
onOpen: import("@vitest/spy").Mock<[event: import("react").SyntheticEvent<Element, Event>], void>;
|
|
529
|
-
onHighlightChange: import("@vitest/spy").Mock<[event: import("react").SyntheticEvent<Element, Event>, option: any, reason: import("@mui/material").AutocompleteHighlightChangeReason], void>;
|
|
530
|
-
onClose: import("@vitest/spy").Mock<[event: import("react").SyntheticEvent<Element, Event>, reason: import("@mui/material").AutocompleteCloseReason], void>;
|
|
531
|
-
onChange: import("@vitest/spy").Mock<[event: import("react").SyntheticEvent<Element, Event>, value: any, reason: import("@mui/material").AutocompleteChangeReason, details?: import("@mui/material").AutocompleteChangeDetails<any> | undefined], void>;
|
|
487
|
+
onKeyDown: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
488
|
+
onInputChange: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
489
|
+
onOpen: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
490
|
+
onHighlightChange: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
491
|
+
onClose: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
492
|
+
onChange: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
532
493
|
};
|
|
533
|
-
play: ({ canvasElement }: import("@storybook/
|
|
494
|
+
play: ({ canvasElement }: import("@storybook/csf").PlayFunctionContext<import("@storybook/react/dist/types-a5624094").R, {
|
|
534
495
|
actionLabel?: string | undefined;
|
|
535
496
|
bottomButtonHeight?: number | undefined;
|
|
536
497
|
actionClick?: ((e: import("react").MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
@@ -1248,16 +1209,14 @@ export declare const Multiple: {
|
|
|
1248
1209
|
label: string;
|
|
1249
1210
|
platform: "desktop";
|
|
1250
1211
|
placeholder: string;
|
|
1251
|
-
onKeyDown: import("@vitest/spy").Mock<
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
onClose: import("@vitest/spy").Mock<[event: import("react").SyntheticEvent<Element, Event>, reason: import("@mui/material").AutocompleteCloseReason], void>;
|
|
1258
|
-
onChange: import("@vitest/spy").Mock<[event: import("react").SyntheticEvent<Element, Event>, value: any, reason: import("@mui/material").AutocompleteChangeReason, details?: import("@mui/material").AutocompleteChangeDetails<any> | undefined], void>;
|
|
1212
|
+
onKeyDown: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
1213
|
+
onInputChange: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
1214
|
+
onOpen: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
1215
|
+
onHighlightChange: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
1216
|
+
onClose: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
1217
|
+
onChange: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
1259
1218
|
};
|
|
1260
|
-
play: ({ canvasElement }: import("@storybook/
|
|
1219
|
+
play: ({ canvasElement }: import("@storybook/csf").PlayFunctionContext<import("@storybook/react/dist/types-a5624094").R, {
|
|
1261
1220
|
actionLabel?: string | undefined;
|
|
1262
1221
|
bottomButtonHeight?: number | undefined;
|
|
1263
1222
|
actionClick?: ((e: import("react").MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
@@ -1985,16 +1944,14 @@ export declare const CustomAction: {
|
|
|
1985
1944
|
filterSelectedOptions: true;
|
|
1986
1945
|
freeSolo: true;
|
|
1987
1946
|
label: string;
|
|
1988
|
-
onKeyDown: import("@vitest/spy").Mock<
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
onClose: import("@vitest/spy").Mock<[event: import("react").SyntheticEvent<Element, Event>, reason: import("@mui/material").AutocompleteCloseReason], void>;
|
|
1995
|
-
onChange: import("@vitest/spy").Mock<[event: import("react").SyntheticEvent<Element, Event>, value: any, reason: import("@mui/material").AutocompleteChangeReason, details?: import("@mui/material").AutocompleteChangeDetails<any> | undefined], void>;
|
|
1947
|
+
onKeyDown: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
1948
|
+
onInputChange: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
1949
|
+
onOpen: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
1950
|
+
onHighlightChange: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
1951
|
+
onClose: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
1952
|
+
onChange: import("@vitest/spy").Mock<(...args: any[]) => any>;
|
|
1996
1953
|
};
|
|
1997
|
-
play: ({ canvasElement }: import("@storybook/
|
|
1954
|
+
play: ({ canvasElement }: import("@storybook/csf").PlayFunctionContext<import("@storybook/react/dist/types-a5624094").R, {
|
|
1998
1955
|
actionLabel?: string | undefined;
|
|
1999
1956
|
bottomButtonHeight?: number | undefined;
|
|
2000
1957
|
actionClick?: ((e: import("react").MouseEvent<Element, MouseEvent>) => void) | undefined;
|