@galaxy-ds/core 2.1.0 → 2.1.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/Accordion/Accordion.stories.d.ts +313 -20
- package/dist/AccordionDetails/AccordionDetails.stories.d.ts +2 -2
- package/dist/AccordionPanel/AccordionPanel.stories.d.ts +5 -5
- package/dist/AccordionSummary/AccordionSummary.stories.d.ts +27 -27
- package/dist/ActivityLog/ActivityLog.stories.d.ts +19 -1
- package/dist/AppBar/AppBar.stories.d.ts +860 -19
- package/dist/Autocomplete/Autocomplete.stories.d.ts +480 -126
- package/dist/Avatar/Avatar.stories.d.ts +45 -45
- package/dist/AvatarGroup/AvatarGroup.stories.d.ts +49 -48
- package/dist/BottomListButton/BottomListButton.stories.d.ts +18 -18
- package/dist/Box/Box.stories.d.ts +17 -16
- package/dist/Breadcrumbs/Breadcrumbs.stories.d.ts +16 -15
- package/dist/Button/Button.stories.d.ts +161 -160
- package/dist/Card/Card.stories.d.ts +7 -6
- package/dist/Checkbox/Checkbox.stories.d.ts +71 -70
- package/dist/Chip/Chip.stories.d.ts +37 -36
- package/dist/CssBaseline/CssBaseline.stories.d.ts +2 -2
- package/dist/DatePicker/DatePicker.stories.d.ts +1 -0
- package/dist/DateRangePicker/DateRangePicker.stories.d.ts +16 -15
- package/dist/Dialog/Dialog.stories.d.ts +41 -40
- package/dist/Divider/Divider.stories.d.ts +285 -6
- package/dist/Drawer/Drawer.stories.d.ts +21 -21
- package/dist/DrawerMenu/DrawerMenu.stories.d.ts +325 -27
- package/dist/Dropdown/Dropdown.stories.d.ts +217 -216
- package/dist/EmptyState/EmptyState.stories.d.ts +1 -0
- package/dist/FooterActions/FooterActions.stories.d.ts +11 -5
- package/dist/FormBody/FormBody.stories.d.ts +10 -1
- package/dist/FormContainer/FormContainer.stories.d.ts +11 -1
- package/dist/FormGroup/FormGroup.stories.d.ts +5 -4
- package/dist/FormHeader/FormHeader.stories.d.ts +18 -2
- package/dist/Grid/Grid.stories.d.ts +389 -0
- package/dist/HeaderToolbar/HeaderToolbar.stories.d.ts +326 -40
- package/dist/Icon/Icon.stories.d.ts +13 -12
- package/dist/IconButton/IconButton.stories.d.ts +21 -20
- package/dist/Icons/doctype-icons.stories.d.ts +16 -16
- package/dist/Icons/leap-icons.stories.d.ts +20 -20
- package/dist/ImageUpload/ImageUpload.stories.d.ts +2 -1
- package/dist/Input/Input.stories.d.ts +409 -340
- package/dist/InputLabel/InputLabel.stories.d.ts +1 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/stories/resources/tokensColorsLeap.d.ts +2 -2
- package/dist/stories/resources/typographyLeapDesktop.d.ts +2 -2
- package/dist/stories/resources/typographyLeapWeb.d.ts +2 -2
- package/package.json +1 -3
|
@@ -29,12 +29,12 @@ export declare const Default: {
|
|
|
29
29
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
30
30
|
size?: ("xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge") | undefined;
|
|
31
31
|
color?: ("default" | "primary" | "secondary") | undefined;
|
|
32
|
-
tooltip?:
|
|
32
|
+
tooltip?: React.ReactNode;
|
|
33
33
|
tooltipPlacement?: ("bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top") | undefined;
|
|
34
34
|
alt?: string | undefined;
|
|
35
|
-
children?:
|
|
35
|
+
children?: React.ReactNode;
|
|
36
36
|
classes?: (Partial<import("@mui/material").AvatarClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
37
|
-
imgProps?: (
|
|
37
|
+
imgProps?: (React.ImgHTMLAttributes<HTMLImageElement> & {
|
|
38
38
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme>;
|
|
39
39
|
}) | undefined;
|
|
40
40
|
sizes?: string | undefined;
|
|
@@ -47,7 +47,7 @@ export declare const Default: {
|
|
|
47
47
|
img?: import("@mui/material").SlotProps<import("react").ElementType<import("react").ImgHTMLAttributes<HTMLImageElement>, keyof import("react").JSX.IntrinsicElements>, {}, import("@mui/material").AvatarOwnProps> | undefined;
|
|
48
48
|
} | undefined;
|
|
49
49
|
className?: string | undefined;
|
|
50
|
-
style?:
|
|
50
|
+
style?: React.CSSProperties | undefined;
|
|
51
51
|
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
52
52
|
slot?: string | undefined;
|
|
53
53
|
title?: string | undefined;
|
|
@@ -311,17 +311,17 @@ export declare const Default: {
|
|
|
311
311
|
unselectable?: "on" | "off" | undefined;
|
|
312
312
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
313
313
|
is?: string | undefined;
|
|
314
|
-
component?:
|
|
314
|
+
component?: React.ElementType | undefined;
|
|
315
315
|
}>) => Promise<void>;
|
|
316
316
|
render: (args: {
|
|
317
317
|
size?: ("xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge") | undefined;
|
|
318
318
|
color?: ("default" | "primary" | "secondary") | undefined;
|
|
319
|
-
tooltip?:
|
|
319
|
+
tooltip?: React.ReactNode;
|
|
320
320
|
tooltipPlacement?: ("bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top") | undefined;
|
|
321
321
|
alt?: string | undefined;
|
|
322
|
-
children?:
|
|
322
|
+
children?: React.ReactNode;
|
|
323
323
|
classes?: (Partial<import("@mui/material").AvatarClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
324
|
-
imgProps?: (
|
|
324
|
+
imgProps?: (React.ImgHTMLAttributes<HTMLImageElement> & {
|
|
325
325
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme>;
|
|
326
326
|
}) | undefined;
|
|
327
327
|
sizes?: string | undefined;
|
|
@@ -334,7 +334,7 @@ export declare const Default: {
|
|
|
334
334
|
img?: import("@mui/material").SlotProps<import("react").ElementType<import("react").ImgHTMLAttributes<HTMLImageElement>, keyof import("react").JSX.IntrinsicElements>, {}, import("@mui/material").AvatarOwnProps> | undefined;
|
|
335
335
|
} | undefined;
|
|
336
336
|
className?: string | undefined;
|
|
337
|
-
style?:
|
|
337
|
+
style?: React.CSSProperties | undefined;
|
|
338
338
|
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
339
339
|
slot?: string | undefined;
|
|
340
340
|
title?: string | undefined;
|
|
@@ -598,7 +598,7 @@ export declare const Default: {
|
|
|
598
598
|
unselectable?: "on" | "off" | undefined;
|
|
599
599
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
600
600
|
is?: string | undefined;
|
|
601
|
-
component?:
|
|
601
|
+
component?: React.ElementType | undefined;
|
|
602
602
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
603
603
|
};
|
|
604
604
|
/**
|
|
@@ -609,12 +609,12 @@ export declare const Size: {
|
|
|
609
609
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
610
610
|
size?: ("xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge") | undefined;
|
|
611
611
|
color?: ("default" | "primary" | "secondary") | undefined;
|
|
612
|
-
tooltip?:
|
|
612
|
+
tooltip?: React.ReactNode;
|
|
613
613
|
tooltipPlacement?: ("bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top") | undefined;
|
|
614
614
|
alt?: string | undefined;
|
|
615
|
-
children?:
|
|
615
|
+
children?: React.ReactNode;
|
|
616
616
|
classes?: (Partial<import("@mui/material").AvatarClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
617
|
-
imgProps?: (
|
|
617
|
+
imgProps?: (React.ImgHTMLAttributes<HTMLImageElement> & {
|
|
618
618
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme>;
|
|
619
619
|
}) | undefined;
|
|
620
620
|
sizes?: string | undefined;
|
|
@@ -627,7 +627,7 @@ export declare const Size: {
|
|
|
627
627
|
img?: import("@mui/material").SlotProps<import("react").ElementType<import("react").ImgHTMLAttributes<HTMLImageElement>, keyof import("react").JSX.IntrinsicElements>, {}, import("@mui/material").AvatarOwnProps> | undefined;
|
|
628
628
|
} | undefined;
|
|
629
629
|
className?: string | undefined;
|
|
630
|
-
style?:
|
|
630
|
+
style?: React.CSSProperties | undefined;
|
|
631
631
|
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
632
632
|
slot?: string | undefined;
|
|
633
633
|
title?: string | undefined;
|
|
@@ -891,17 +891,17 @@ export declare const Size: {
|
|
|
891
891
|
unselectable?: "on" | "off" | undefined;
|
|
892
892
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
893
893
|
is?: string | undefined;
|
|
894
|
-
component?:
|
|
894
|
+
component?: React.ElementType | undefined;
|
|
895
895
|
}>) => Promise<void>;
|
|
896
896
|
render: (args: {
|
|
897
897
|
size?: ("xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge") | undefined;
|
|
898
898
|
color?: ("default" | "primary" | "secondary") | undefined;
|
|
899
|
-
tooltip?:
|
|
899
|
+
tooltip?: React.ReactNode;
|
|
900
900
|
tooltipPlacement?: ("bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top") | undefined;
|
|
901
901
|
alt?: string | undefined;
|
|
902
|
-
children?:
|
|
902
|
+
children?: React.ReactNode;
|
|
903
903
|
classes?: (Partial<import("@mui/material").AvatarClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
904
|
-
imgProps?: (
|
|
904
|
+
imgProps?: (React.ImgHTMLAttributes<HTMLImageElement> & {
|
|
905
905
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme>;
|
|
906
906
|
}) | undefined;
|
|
907
907
|
sizes?: string | undefined;
|
|
@@ -914,7 +914,7 @@ export declare const Size: {
|
|
|
914
914
|
img?: import("@mui/material").SlotProps<import("react").ElementType<import("react").ImgHTMLAttributes<HTMLImageElement>, keyof import("react").JSX.IntrinsicElements>, {}, import("@mui/material").AvatarOwnProps> | undefined;
|
|
915
915
|
} | undefined;
|
|
916
916
|
className?: string | undefined;
|
|
917
|
-
style?:
|
|
917
|
+
style?: React.CSSProperties | undefined;
|
|
918
918
|
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
919
919
|
slot?: string | undefined;
|
|
920
920
|
title?: string | undefined;
|
|
@@ -1178,7 +1178,7 @@ export declare const Size: {
|
|
|
1178
1178
|
unselectable?: "on" | "off" | undefined;
|
|
1179
1179
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
1180
1180
|
is?: string | undefined;
|
|
1181
|
-
component?:
|
|
1181
|
+
component?: React.ElementType | undefined;
|
|
1182
1182
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1183
1183
|
};
|
|
1184
1184
|
/**
|
|
@@ -1189,12 +1189,12 @@ export declare const Images: {
|
|
|
1189
1189
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
1190
1190
|
size?: ("xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge") | undefined;
|
|
1191
1191
|
color?: ("default" | "primary" | "secondary") | undefined;
|
|
1192
|
-
tooltip?:
|
|
1192
|
+
tooltip?: React.ReactNode;
|
|
1193
1193
|
tooltipPlacement?: ("bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top") | undefined;
|
|
1194
1194
|
alt?: string | undefined;
|
|
1195
|
-
children?:
|
|
1195
|
+
children?: React.ReactNode;
|
|
1196
1196
|
classes?: (Partial<import("@mui/material").AvatarClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
1197
|
-
imgProps?: (
|
|
1197
|
+
imgProps?: (React.ImgHTMLAttributes<HTMLImageElement> & {
|
|
1198
1198
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme>;
|
|
1199
1199
|
}) | undefined;
|
|
1200
1200
|
sizes?: string | undefined;
|
|
@@ -1207,7 +1207,7 @@ export declare const Images: {
|
|
|
1207
1207
|
img?: import("@mui/material").SlotProps<import("react").ElementType<import("react").ImgHTMLAttributes<HTMLImageElement>, keyof import("react").JSX.IntrinsicElements>, {}, import("@mui/material").AvatarOwnProps> | undefined;
|
|
1208
1208
|
} | undefined;
|
|
1209
1209
|
className?: string | undefined;
|
|
1210
|
-
style?:
|
|
1210
|
+
style?: React.CSSProperties | undefined;
|
|
1211
1211
|
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
1212
1212
|
slot?: string | undefined;
|
|
1213
1213
|
title?: string | undefined;
|
|
@@ -1471,17 +1471,17 @@ export declare const Images: {
|
|
|
1471
1471
|
unselectable?: "on" | "off" | undefined;
|
|
1472
1472
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
1473
1473
|
is?: string | undefined;
|
|
1474
|
-
component?:
|
|
1474
|
+
component?: React.ElementType | undefined;
|
|
1475
1475
|
}>) => Promise<void>;
|
|
1476
1476
|
render: (args: {
|
|
1477
1477
|
size?: ("xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge") | undefined;
|
|
1478
1478
|
color?: ("default" | "primary" | "secondary") | undefined;
|
|
1479
|
-
tooltip?:
|
|
1479
|
+
tooltip?: React.ReactNode;
|
|
1480
1480
|
tooltipPlacement?: ("bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top") | undefined;
|
|
1481
1481
|
alt?: string | undefined;
|
|
1482
|
-
children?:
|
|
1482
|
+
children?: React.ReactNode;
|
|
1483
1483
|
classes?: (Partial<import("@mui/material").AvatarClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
1484
|
-
imgProps?: (
|
|
1484
|
+
imgProps?: (React.ImgHTMLAttributes<HTMLImageElement> & {
|
|
1485
1485
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme>;
|
|
1486
1486
|
}) | undefined;
|
|
1487
1487
|
sizes?: string | undefined;
|
|
@@ -1494,7 +1494,7 @@ export declare const Images: {
|
|
|
1494
1494
|
img?: import("@mui/material").SlotProps<import("react").ElementType<import("react").ImgHTMLAttributes<HTMLImageElement>, keyof import("react").JSX.IntrinsicElements>, {}, import("@mui/material").AvatarOwnProps> | undefined;
|
|
1495
1495
|
} | undefined;
|
|
1496
1496
|
className?: string | undefined;
|
|
1497
|
-
style?:
|
|
1497
|
+
style?: React.CSSProperties | undefined;
|
|
1498
1498
|
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
1499
1499
|
slot?: string | undefined;
|
|
1500
1500
|
title?: string | undefined;
|
|
@@ -1758,7 +1758,7 @@ export declare const Images: {
|
|
|
1758
1758
|
unselectable?: "on" | "off" | undefined;
|
|
1759
1759
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
1760
1760
|
is?: string | undefined;
|
|
1761
|
-
component?:
|
|
1761
|
+
component?: React.ElementType | undefined;
|
|
1762
1762
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1763
1763
|
};
|
|
1764
1764
|
/**
|
|
@@ -1772,12 +1772,12 @@ export declare const Icons: {
|
|
|
1772
1772
|
render: (args: {
|
|
1773
1773
|
size?: ("xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge") | undefined;
|
|
1774
1774
|
color?: ("default" | "primary" | "secondary") | undefined;
|
|
1775
|
-
tooltip?:
|
|
1775
|
+
tooltip?: React.ReactNode;
|
|
1776
1776
|
tooltipPlacement?: ("bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top") | undefined;
|
|
1777
1777
|
alt?: string | undefined;
|
|
1778
|
-
children?:
|
|
1778
|
+
children?: React.ReactNode;
|
|
1779
1779
|
classes?: (Partial<import("@mui/material").AvatarClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
1780
|
-
imgProps?: (
|
|
1780
|
+
imgProps?: (React.ImgHTMLAttributes<HTMLImageElement> & {
|
|
1781
1781
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme>;
|
|
1782
1782
|
}) | undefined;
|
|
1783
1783
|
sizes?: string | undefined;
|
|
@@ -1790,7 +1790,7 @@ export declare const Icons: {
|
|
|
1790
1790
|
img?: import("@mui/material").SlotProps<import("react").ElementType<import("react").ImgHTMLAttributes<HTMLImageElement>, keyof import("react").JSX.IntrinsicElements>, {}, import("@mui/material").AvatarOwnProps> | undefined;
|
|
1791
1791
|
} | undefined;
|
|
1792
1792
|
className?: string | undefined;
|
|
1793
|
-
style?:
|
|
1793
|
+
style?: React.CSSProperties | undefined;
|
|
1794
1794
|
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
1795
1795
|
slot?: string | undefined;
|
|
1796
1796
|
title?: string | undefined;
|
|
@@ -2054,7 +2054,7 @@ export declare const Icons: {
|
|
|
2054
2054
|
unselectable?: "on" | "off" | undefined;
|
|
2055
2055
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
2056
2056
|
is?: string | undefined;
|
|
2057
|
-
component?:
|
|
2057
|
+
component?: React.ElementType | undefined;
|
|
2058
2058
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2059
2059
|
};
|
|
2060
2060
|
/**
|
|
@@ -2067,12 +2067,12 @@ export declare const Tooltip: {
|
|
|
2067
2067
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
2068
2068
|
size?: ("xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge") | undefined;
|
|
2069
2069
|
color?: ("default" | "primary" | "secondary") | undefined;
|
|
2070
|
-
tooltip?:
|
|
2070
|
+
tooltip?: React.ReactNode;
|
|
2071
2071
|
tooltipPlacement?: ("bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top") | undefined;
|
|
2072
2072
|
alt?: string | undefined;
|
|
2073
|
-
children?:
|
|
2073
|
+
children?: React.ReactNode;
|
|
2074
2074
|
classes?: (Partial<import("@mui/material").AvatarClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
2075
|
-
imgProps?: (
|
|
2075
|
+
imgProps?: (React.ImgHTMLAttributes<HTMLImageElement> & {
|
|
2076
2076
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme>;
|
|
2077
2077
|
}) | undefined;
|
|
2078
2078
|
sizes?: string | undefined;
|
|
@@ -2085,7 +2085,7 @@ export declare const Tooltip: {
|
|
|
2085
2085
|
img?: import("@mui/material").SlotProps<import("react").ElementType<import("react").ImgHTMLAttributes<HTMLImageElement>, keyof import("react").JSX.IntrinsicElements>, {}, import("@mui/material").AvatarOwnProps> | undefined;
|
|
2086
2086
|
} | undefined;
|
|
2087
2087
|
className?: string | undefined;
|
|
2088
|
-
style?:
|
|
2088
|
+
style?: React.CSSProperties | undefined;
|
|
2089
2089
|
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
2090
2090
|
slot?: string | undefined;
|
|
2091
2091
|
title?: string | undefined;
|
|
@@ -2349,17 +2349,17 @@ export declare const Tooltip: {
|
|
|
2349
2349
|
unselectable?: "on" | "off" | undefined;
|
|
2350
2350
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
2351
2351
|
is?: string | undefined;
|
|
2352
|
-
component?:
|
|
2352
|
+
component?: React.ElementType | undefined;
|
|
2353
2353
|
}>) => Promise<void>;
|
|
2354
2354
|
render: (args: {
|
|
2355
2355
|
size?: ("xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge") | undefined;
|
|
2356
2356
|
color?: ("default" | "primary" | "secondary") | undefined;
|
|
2357
|
-
tooltip?:
|
|
2357
|
+
tooltip?: React.ReactNode;
|
|
2358
2358
|
tooltipPlacement?: ("bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top") | undefined;
|
|
2359
2359
|
alt?: string | undefined;
|
|
2360
|
-
children?:
|
|
2360
|
+
children?: React.ReactNode;
|
|
2361
2361
|
classes?: (Partial<import("@mui/material").AvatarClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
2362
|
-
imgProps?: (
|
|
2362
|
+
imgProps?: (React.ImgHTMLAttributes<HTMLImageElement> & {
|
|
2363
2363
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme>;
|
|
2364
2364
|
}) | undefined;
|
|
2365
2365
|
sizes?: string | undefined;
|
|
@@ -2372,7 +2372,7 @@ export declare const Tooltip: {
|
|
|
2372
2372
|
img?: import("@mui/material").SlotProps<import("react").ElementType<import("react").ImgHTMLAttributes<HTMLImageElement>, keyof import("react").JSX.IntrinsicElements>, {}, import("@mui/material").AvatarOwnProps> | undefined;
|
|
2373
2373
|
} | undefined;
|
|
2374
2374
|
className?: string | undefined;
|
|
2375
|
-
style?:
|
|
2375
|
+
style?: React.CSSProperties | undefined;
|
|
2376
2376
|
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
2377
2377
|
slot?: string | undefined;
|
|
2378
2378
|
title?: string | undefined;
|
|
@@ -2636,6 +2636,6 @@ export declare const Tooltip: {
|
|
|
2636
2636
|
unselectable?: "on" | "off" | undefined;
|
|
2637
2637
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
2638
2638
|
is?: string | undefined;
|
|
2639
|
-
component?:
|
|
2639
|
+
component?: React.ElementType | undefined;
|
|
2640
2640
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2641
2641
|
};
|
|
@@ -11,6 +11,7 @@ declare const meta: {
|
|
|
11
11
|
component: (props: import("./AvatarGroup.types").AvatarGroupProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
parameters: {
|
|
13
13
|
badges: BADGE[];
|
|
14
|
+
layout: string;
|
|
14
15
|
};
|
|
15
16
|
};
|
|
16
17
|
export default meta;
|
|
@@ -19,18 +20,18 @@ export declare const Default: {
|
|
|
19
20
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
20
21
|
size?: ("xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge") | undefined;
|
|
21
22
|
color?: ("default" | "primary" | "secondary") | undefined;
|
|
22
|
-
tooltip?:
|
|
23
|
+
tooltip?: React.ReactNode;
|
|
23
24
|
max?: number | undefined;
|
|
24
25
|
tooltipPlacement?: ("bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top") | undefined;
|
|
25
|
-
children?:
|
|
26
|
+
children?: React.ReactNode;
|
|
26
27
|
classes?: Partial<import("@mui/material").AvatarGroupClasses> | undefined;
|
|
27
|
-
component?:
|
|
28
|
+
component?: React.ElementType | undefined;
|
|
28
29
|
componentsProps?: {
|
|
29
|
-
additionalAvatar?:
|
|
30
|
+
additionalAvatar?: React.ComponentPropsWithRef<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").AvatarTypeMap<{}, "div">>> & import("@mui/material").AvatarGroupComponentsPropsOverrides;
|
|
30
31
|
} | undefined;
|
|
31
|
-
renderSurplus?: ((surplus: number) =>
|
|
32
|
+
renderSurplus?: ((surplus: number) => React.ReactNode) | undefined;
|
|
32
33
|
slotProps?: {
|
|
33
|
-
additionalAvatar?:
|
|
34
|
+
additionalAvatar?: React.ComponentPropsWithRef<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").AvatarTypeMap<{}, "div">>> & import("@mui/material").AvatarGroupComponentsPropsOverrides;
|
|
34
35
|
} | undefined;
|
|
35
36
|
spacing?: ("small" | "medium" | number) | undefined;
|
|
36
37
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
@@ -304,18 +305,18 @@ export declare const Default: {
|
|
|
304
305
|
render: (args: {
|
|
305
306
|
size?: ("xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge") | undefined;
|
|
306
307
|
color?: ("default" | "primary" | "secondary") | undefined;
|
|
307
|
-
tooltip?:
|
|
308
|
+
tooltip?: React.ReactNode;
|
|
308
309
|
max?: number | undefined;
|
|
309
310
|
tooltipPlacement?: ("bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top") | undefined;
|
|
310
|
-
children?:
|
|
311
|
+
children?: React.ReactNode;
|
|
311
312
|
classes?: Partial<import("@mui/material").AvatarGroupClasses> | undefined;
|
|
312
|
-
component?:
|
|
313
|
+
component?: React.ElementType | undefined;
|
|
313
314
|
componentsProps?: {
|
|
314
|
-
additionalAvatar?:
|
|
315
|
+
additionalAvatar?: React.ComponentPropsWithRef<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").AvatarTypeMap<{}, "div">>> & import("@mui/material").AvatarGroupComponentsPropsOverrides;
|
|
315
316
|
} | undefined;
|
|
316
|
-
renderSurplus?: ((surplus: number) =>
|
|
317
|
+
renderSurplus?: ((surplus: number) => React.ReactNode) | undefined;
|
|
317
318
|
slotProps?: {
|
|
318
|
-
additionalAvatar?:
|
|
319
|
+
additionalAvatar?: React.ComponentPropsWithRef<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").AvatarTypeMap<{}, "div">>> & import("@mui/material").AvatarGroupComponentsPropsOverrides;
|
|
319
320
|
} | undefined;
|
|
320
321
|
spacing?: ("small" | "medium" | number) | undefined;
|
|
321
322
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
@@ -595,18 +596,18 @@ export declare const Size: {
|
|
|
595
596
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
596
597
|
size?: ("xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge") | undefined;
|
|
597
598
|
color?: ("default" | "primary" | "secondary") | undefined;
|
|
598
|
-
tooltip?:
|
|
599
|
+
tooltip?: React.ReactNode;
|
|
599
600
|
max?: number | undefined;
|
|
600
601
|
tooltipPlacement?: ("bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top") | undefined;
|
|
601
|
-
children?:
|
|
602
|
+
children?: React.ReactNode;
|
|
602
603
|
classes?: Partial<import("@mui/material").AvatarGroupClasses> | undefined;
|
|
603
|
-
component?:
|
|
604
|
+
component?: React.ElementType | undefined;
|
|
604
605
|
componentsProps?: {
|
|
605
|
-
additionalAvatar?:
|
|
606
|
+
additionalAvatar?: React.ComponentPropsWithRef<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").AvatarTypeMap<{}, "div">>> & import("@mui/material").AvatarGroupComponentsPropsOverrides;
|
|
606
607
|
} | undefined;
|
|
607
|
-
renderSurplus?: ((surplus: number) =>
|
|
608
|
+
renderSurplus?: ((surplus: number) => React.ReactNode) | undefined;
|
|
608
609
|
slotProps?: {
|
|
609
|
-
additionalAvatar?:
|
|
610
|
+
additionalAvatar?: React.ComponentPropsWithRef<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").AvatarTypeMap<{}, "div">>> & import("@mui/material").AvatarGroupComponentsPropsOverrides;
|
|
610
611
|
} | undefined;
|
|
611
612
|
spacing?: ("small" | "medium" | number) | undefined;
|
|
612
613
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
@@ -880,18 +881,18 @@ export declare const Size: {
|
|
|
880
881
|
render: (args: {
|
|
881
882
|
size?: ("xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge") | undefined;
|
|
882
883
|
color?: ("default" | "primary" | "secondary") | undefined;
|
|
883
|
-
tooltip?:
|
|
884
|
+
tooltip?: React.ReactNode;
|
|
884
885
|
max?: number | undefined;
|
|
885
886
|
tooltipPlacement?: ("bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top") | undefined;
|
|
886
|
-
children?:
|
|
887
|
+
children?: React.ReactNode;
|
|
887
888
|
classes?: Partial<import("@mui/material").AvatarGroupClasses> | undefined;
|
|
888
|
-
component?:
|
|
889
|
+
component?: React.ElementType | undefined;
|
|
889
890
|
componentsProps?: {
|
|
890
|
-
additionalAvatar?:
|
|
891
|
+
additionalAvatar?: React.ComponentPropsWithRef<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").AvatarTypeMap<{}, "div">>> & import("@mui/material").AvatarGroupComponentsPropsOverrides;
|
|
891
892
|
} | undefined;
|
|
892
|
-
renderSurplus?: ((surplus: number) =>
|
|
893
|
+
renderSurplus?: ((surplus: number) => React.ReactNode) | undefined;
|
|
893
894
|
slotProps?: {
|
|
894
|
-
additionalAvatar?:
|
|
895
|
+
additionalAvatar?: React.ComponentPropsWithRef<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").AvatarTypeMap<{}, "div">>> & import("@mui/material").AvatarGroupComponentsPropsOverrides;
|
|
895
896
|
} | undefined;
|
|
896
897
|
spacing?: ("small" | "medium" | number) | undefined;
|
|
897
898
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
@@ -1179,18 +1180,18 @@ export declare const Color: {
|
|
|
1179
1180
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
1180
1181
|
size?: ("xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge") | undefined;
|
|
1181
1182
|
color?: ("default" | "primary" | "secondary") | undefined;
|
|
1182
|
-
tooltip?:
|
|
1183
|
+
tooltip?: React.ReactNode;
|
|
1183
1184
|
max?: number | undefined;
|
|
1184
1185
|
tooltipPlacement?: ("bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top") | undefined;
|
|
1185
|
-
children?:
|
|
1186
|
+
children?: React.ReactNode;
|
|
1186
1187
|
classes?: Partial<import("@mui/material").AvatarGroupClasses> | undefined;
|
|
1187
|
-
component?:
|
|
1188
|
+
component?: React.ElementType | undefined;
|
|
1188
1189
|
componentsProps?: {
|
|
1189
|
-
additionalAvatar?:
|
|
1190
|
+
additionalAvatar?: React.ComponentPropsWithRef<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").AvatarTypeMap<{}, "div">>> & import("@mui/material").AvatarGroupComponentsPropsOverrides;
|
|
1190
1191
|
} | undefined;
|
|
1191
|
-
renderSurplus?: ((surplus: number) =>
|
|
1192
|
+
renderSurplus?: ((surplus: number) => React.ReactNode) | undefined;
|
|
1192
1193
|
slotProps?: {
|
|
1193
|
-
additionalAvatar?:
|
|
1194
|
+
additionalAvatar?: React.ComponentPropsWithRef<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").AvatarTypeMap<{}, "div">>> & import("@mui/material").AvatarGroupComponentsPropsOverrides;
|
|
1194
1195
|
} | undefined;
|
|
1195
1196
|
spacing?: ("small" | "medium" | number) | undefined;
|
|
1196
1197
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
@@ -1464,18 +1465,18 @@ export declare const Color: {
|
|
|
1464
1465
|
render: (args: {
|
|
1465
1466
|
size?: ("xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge") | undefined;
|
|
1466
1467
|
color?: ("default" | "primary" | "secondary") | undefined;
|
|
1467
|
-
tooltip?:
|
|
1468
|
+
tooltip?: React.ReactNode;
|
|
1468
1469
|
max?: number | undefined;
|
|
1469
1470
|
tooltipPlacement?: ("bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top") | undefined;
|
|
1470
|
-
children?:
|
|
1471
|
+
children?: React.ReactNode;
|
|
1471
1472
|
classes?: Partial<import("@mui/material").AvatarGroupClasses> | undefined;
|
|
1472
|
-
component?:
|
|
1473
|
+
component?: React.ElementType | undefined;
|
|
1473
1474
|
componentsProps?: {
|
|
1474
|
-
additionalAvatar?:
|
|
1475
|
+
additionalAvatar?: React.ComponentPropsWithRef<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").AvatarTypeMap<{}, "div">>> & import("@mui/material").AvatarGroupComponentsPropsOverrides;
|
|
1475
1476
|
} | undefined;
|
|
1476
|
-
renderSurplus?: ((surplus: number) =>
|
|
1477
|
+
renderSurplus?: ((surplus: number) => React.ReactNode) | undefined;
|
|
1477
1478
|
slotProps?: {
|
|
1478
|
-
additionalAvatar?:
|
|
1479
|
+
additionalAvatar?: React.ComponentPropsWithRef<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").AvatarTypeMap<{}, "div">>> & import("@mui/material").AvatarGroupComponentsPropsOverrides;
|
|
1479
1480
|
} | undefined;
|
|
1480
1481
|
spacing?: ("small" | "medium" | number) | undefined;
|
|
1481
1482
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
@@ -1755,18 +1756,18 @@ export declare const Tooltip: {
|
|
|
1755
1756
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
1756
1757
|
size?: ("xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge") | undefined;
|
|
1757
1758
|
color?: ("default" | "primary" | "secondary") | undefined;
|
|
1758
|
-
tooltip?:
|
|
1759
|
+
tooltip?: React.ReactNode;
|
|
1759
1760
|
max?: number | undefined;
|
|
1760
1761
|
tooltipPlacement?: ("bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top") | undefined;
|
|
1761
|
-
children?:
|
|
1762
|
+
children?: React.ReactNode;
|
|
1762
1763
|
classes?: Partial<import("@mui/material").AvatarGroupClasses> | undefined;
|
|
1763
|
-
component?:
|
|
1764
|
+
component?: React.ElementType | undefined;
|
|
1764
1765
|
componentsProps?: {
|
|
1765
|
-
additionalAvatar?:
|
|
1766
|
+
additionalAvatar?: React.ComponentPropsWithRef<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").AvatarTypeMap<{}, "div">>> & import("@mui/material").AvatarGroupComponentsPropsOverrides;
|
|
1766
1767
|
} | undefined;
|
|
1767
|
-
renderSurplus?: ((surplus: number) =>
|
|
1768
|
+
renderSurplus?: ((surplus: number) => React.ReactNode) | undefined;
|
|
1768
1769
|
slotProps?: {
|
|
1769
|
-
additionalAvatar?:
|
|
1770
|
+
additionalAvatar?: React.ComponentPropsWithRef<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").AvatarTypeMap<{}, "div">>> & import("@mui/material").AvatarGroupComponentsPropsOverrides;
|
|
1770
1771
|
} | undefined;
|
|
1771
1772
|
spacing?: ("small" | "medium" | number) | undefined;
|
|
1772
1773
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
@@ -2040,18 +2041,18 @@ export declare const Tooltip: {
|
|
|
2040
2041
|
render: (args: {
|
|
2041
2042
|
size?: ("xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge") | undefined;
|
|
2042
2043
|
color?: ("default" | "primary" | "secondary") | undefined;
|
|
2043
|
-
tooltip?:
|
|
2044
|
+
tooltip?: React.ReactNode;
|
|
2044
2045
|
max?: number | undefined;
|
|
2045
2046
|
tooltipPlacement?: ("bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top") | undefined;
|
|
2046
|
-
children?:
|
|
2047
|
+
children?: React.ReactNode;
|
|
2047
2048
|
classes?: Partial<import("@mui/material").AvatarGroupClasses> | undefined;
|
|
2048
|
-
component?:
|
|
2049
|
+
component?: React.ElementType | undefined;
|
|
2049
2050
|
componentsProps?: {
|
|
2050
|
-
additionalAvatar?:
|
|
2051
|
+
additionalAvatar?: React.ComponentPropsWithRef<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").AvatarTypeMap<{}, "div">>> & import("@mui/material").AvatarGroupComponentsPropsOverrides;
|
|
2051
2052
|
} | undefined;
|
|
2052
|
-
renderSurplus?: ((surplus: number) =>
|
|
2053
|
+
renderSurplus?: ((surplus: number) => React.ReactNode) | undefined;
|
|
2053
2054
|
slotProps?: {
|
|
2054
|
-
additionalAvatar?:
|
|
2055
|
+
additionalAvatar?: React.ComponentPropsWithRef<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").AvatarTypeMap<{}, "div">>> & import("@mui/material").AvatarGroupComponentsPropsOverrides;
|
|
2055
2056
|
} | undefined;
|
|
2056
2057
|
spacing?: ("small" | "medium" | number) | undefined;
|
|
2057
2058
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
@@ -30,10 +30,10 @@ export declare const Default: {
|
|
|
30
30
|
};
|
|
31
31
|
play: ({ canvasElement, args }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
32
32
|
label?: string | undefined;
|
|
33
|
-
onClick?: ((e:
|
|
33
|
+
onClick?: ((e: React.MouseEvent) => void) | undefined;
|
|
34
34
|
alignItems?: ("flex-start" | "center") | undefined;
|
|
35
35
|
autoFocus?: boolean | undefined;
|
|
36
|
-
children?:
|
|
36
|
+
children?: React.ReactNode;
|
|
37
37
|
classes?: (Partial<import("@mui/material").ListItemButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
38
38
|
dense?: boolean | undefined;
|
|
39
39
|
disabled?: boolean | undefined;
|
|
@@ -41,19 +41,19 @@ export declare const Default: {
|
|
|
41
41
|
divider?: boolean | undefined;
|
|
42
42
|
selected?: boolean | undefined;
|
|
43
43
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
44
|
-
tabIndex?: NonNullable<
|
|
45
|
-
action?:
|
|
44
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
45
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
46
46
|
centerRipple?: boolean | undefined;
|
|
47
47
|
disableRipple?: boolean | undefined;
|
|
48
48
|
disableTouchRipple?: boolean | undefined;
|
|
49
49
|
focusRipple?: boolean | undefined;
|
|
50
50
|
focusVisibleClassName?: string | undefined;
|
|
51
|
-
LinkComponent?:
|
|
52
|
-
onFocusVisible?:
|
|
51
|
+
LinkComponent?: React.ElementType | undefined;
|
|
52
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
53
53
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
54
|
-
touchRippleRef?:
|
|
54
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
55
55
|
className?: string | undefined;
|
|
56
|
-
style?:
|
|
56
|
+
style?: React.CSSProperties | undefined;
|
|
57
57
|
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
58
58
|
color?: string | undefined;
|
|
59
59
|
slot?: string | undefined;
|
|
@@ -315,14 +315,14 @@ export declare const Default: {
|
|
|
315
315
|
unselectable?: "on" | "off" | undefined;
|
|
316
316
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
317
317
|
is?: string | undefined;
|
|
318
|
-
component?:
|
|
318
|
+
component?: React.ElementType | undefined;
|
|
319
319
|
}>) => Promise<void>;
|
|
320
320
|
render: (args: {
|
|
321
321
|
label?: string | undefined;
|
|
322
|
-
onClick?: ((e:
|
|
322
|
+
onClick?: ((e: React.MouseEvent) => void) | undefined;
|
|
323
323
|
alignItems?: ("flex-start" | "center") | undefined;
|
|
324
324
|
autoFocus?: boolean | undefined;
|
|
325
|
-
children?:
|
|
325
|
+
children?: React.ReactNode;
|
|
326
326
|
classes?: (Partial<import("@mui/material").ListItemButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
327
327
|
dense?: boolean | undefined;
|
|
328
328
|
disabled?: boolean | undefined;
|
|
@@ -330,19 +330,19 @@ export declare const Default: {
|
|
|
330
330
|
divider?: boolean | undefined;
|
|
331
331
|
selected?: boolean | undefined;
|
|
332
332
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
333
|
-
tabIndex?: NonNullable<
|
|
334
|
-
action?:
|
|
333
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
334
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
335
335
|
centerRipple?: boolean | undefined;
|
|
336
336
|
disableRipple?: boolean | undefined;
|
|
337
337
|
disableTouchRipple?: boolean | undefined;
|
|
338
338
|
focusRipple?: boolean | undefined;
|
|
339
339
|
focusVisibleClassName?: string | undefined;
|
|
340
|
-
LinkComponent?:
|
|
341
|
-
onFocusVisible?:
|
|
340
|
+
LinkComponent?: React.ElementType | undefined;
|
|
341
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
342
342
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
343
|
-
touchRippleRef?:
|
|
343
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
344
344
|
className?: string | undefined;
|
|
345
|
-
style?:
|
|
345
|
+
style?: React.CSSProperties | undefined;
|
|
346
346
|
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
347
347
|
color?: string | undefined;
|
|
348
348
|
slot?: string | undefined;
|
|
@@ -604,6 +604,6 @@ export declare const Default: {
|
|
|
604
604
|
unselectable?: "on" | "off" | undefined;
|
|
605
605
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
606
606
|
is?: string | undefined;
|
|
607
|
-
component?:
|
|
607
|
+
component?: React.ElementType | undefined;
|
|
608
608
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
609
609
|
};
|