@galaxy-ds/core 2.0.26 → 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
|
@@ -11,6 +11,7 @@ declare const meta: {
|
|
|
11
11
|
component: (props: import("./Button.types").GDSButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
parameters: {
|
|
13
13
|
badges: BADGE[];
|
|
14
|
+
layout: string;
|
|
14
15
|
};
|
|
15
16
|
argTypes: {
|
|
16
17
|
onFocusVisible: {
|
|
@@ -39,32 +40,32 @@ export declare const Default: {
|
|
|
39
40
|
};
|
|
40
41
|
play: ({ canvasElement, args }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
41
42
|
isLoading?: boolean | undefined;
|
|
42
|
-
children:
|
|
43
|
+
children: React.ReactNode;
|
|
43
44
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
44
45
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
45
46
|
disabled?: boolean | undefined;
|
|
46
47
|
disableElevation?: boolean | undefined;
|
|
47
48
|
disableFocusRipple?: boolean | undefined;
|
|
48
|
-
endIcon?:
|
|
49
|
+
endIcon?: React.ReactNode;
|
|
49
50
|
fullWidth?: boolean | undefined;
|
|
50
51
|
href?: string | undefined;
|
|
51
52
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
52
|
-
startIcon?:
|
|
53
|
+
startIcon?: React.ReactNode;
|
|
53
54
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
54
55
|
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
55
|
-
tabIndex?: NonNullable<
|
|
56
|
-
action?:
|
|
56
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
57
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
57
58
|
centerRipple?: boolean | undefined;
|
|
58
59
|
disableRipple?: boolean | undefined;
|
|
59
60
|
disableTouchRipple?: boolean | undefined;
|
|
60
61
|
focusRipple?: boolean | undefined;
|
|
61
62
|
focusVisibleClassName?: string | undefined;
|
|
62
|
-
LinkComponent?:
|
|
63
|
-
onFocusVisible?:
|
|
63
|
+
LinkComponent?: React.ElementType | undefined;
|
|
64
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
64
65
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
65
|
-
touchRippleRef?:
|
|
66
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
66
67
|
className?: string | undefined;
|
|
67
|
-
style?:
|
|
68
|
+
style?: React.CSSProperties | undefined;
|
|
68
69
|
ref?: ((instance: HTMLButtonElement | 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<HTMLButtonElement> | null | undefined;
|
|
69
70
|
form?: string | undefined;
|
|
70
71
|
slot?: string | undefined;
|
|
@@ -336,36 +337,36 @@ export declare const Default: {
|
|
|
336
337
|
formNoValidate?: boolean | undefined;
|
|
337
338
|
formTarget?: string | undefined;
|
|
338
339
|
value?: string | readonly string[] | number | undefined;
|
|
339
|
-
component?:
|
|
340
|
+
component?: React.ElementType | undefined;
|
|
340
341
|
}>) => Promise<void>;
|
|
341
342
|
render: (args: {
|
|
342
343
|
isLoading?: boolean | undefined;
|
|
343
|
-
children:
|
|
344
|
+
children: React.ReactNode;
|
|
344
345
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
345
346
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
346
347
|
disabled?: boolean | undefined;
|
|
347
348
|
disableElevation?: boolean | undefined;
|
|
348
349
|
disableFocusRipple?: boolean | undefined;
|
|
349
|
-
endIcon?:
|
|
350
|
+
endIcon?: React.ReactNode;
|
|
350
351
|
fullWidth?: boolean | undefined;
|
|
351
352
|
href?: string | undefined;
|
|
352
353
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
353
|
-
startIcon?:
|
|
354
|
+
startIcon?: React.ReactNode;
|
|
354
355
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
355
356
|
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
356
|
-
tabIndex?: NonNullable<
|
|
357
|
-
action?:
|
|
357
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
358
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
358
359
|
centerRipple?: boolean | undefined;
|
|
359
360
|
disableRipple?: boolean | undefined;
|
|
360
361
|
disableTouchRipple?: boolean | undefined;
|
|
361
362
|
focusRipple?: boolean | undefined;
|
|
362
363
|
focusVisibleClassName?: string | undefined;
|
|
363
|
-
LinkComponent?:
|
|
364
|
-
onFocusVisible?:
|
|
364
|
+
LinkComponent?: React.ElementType | undefined;
|
|
365
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
365
366
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
366
|
-
touchRippleRef?:
|
|
367
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
367
368
|
className?: string | undefined;
|
|
368
|
-
style?:
|
|
369
|
+
style?: React.CSSProperties | undefined;
|
|
369
370
|
ref?: ((instance: HTMLButtonElement | 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<HTMLButtonElement> | null | undefined;
|
|
370
371
|
form?: string | undefined;
|
|
371
372
|
slot?: string | undefined;
|
|
@@ -637,7 +638,7 @@ export declare const Default: {
|
|
|
637
638
|
formNoValidate?: boolean | undefined;
|
|
638
639
|
formTarget?: string | undefined;
|
|
639
640
|
value?: string | readonly string[] | number | undefined;
|
|
640
|
-
component?:
|
|
641
|
+
component?: React.ElementType | undefined;
|
|
641
642
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
642
643
|
};
|
|
643
644
|
/**
|
|
@@ -656,32 +657,32 @@ export declare const Info: {
|
|
|
656
657
|
};
|
|
657
658
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
658
659
|
isLoading?: boolean | undefined;
|
|
659
|
-
children:
|
|
660
|
+
children: React.ReactNode;
|
|
660
661
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
661
662
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
662
663
|
disabled?: boolean | undefined;
|
|
663
664
|
disableElevation?: boolean | undefined;
|
|
664
665
|
disableFocusRipple?: boolean | undefined;
|
|
665
|
-
endIcon?:
|
|
666
|
+
endIcon?: React.ReactNode;
|
|
666
667
|
fullWidth?: boolean | undefined;
|
|
667
668
|
href?: string | undefined;
|
|
668
669
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
669
|
-
startIcon?:
|
|
670
|
+
startIcon?: React.ReactNode;
|
|
670
671
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
671
672
|
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
672
|
-
tabIndex?: NonNullable<
|
|
673
|
-
action?:
|
|
673
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
674
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
674
675
|
centerRipple?: boolean | undefined;
|
|
675
676
|
disableRipple?: boolean | undefined;
|
|
676
677
|
disableTouchRipple?: boolean | undefined;
|
|
677
678
|
focusRipple?: boolean | undefined;
|
|
678
679
|
focusVisibleClassName?: string | undefined;
|
|
679
|
-
LinkComponent?:
|
|
680
|
-
onFocusVisible?:
|
|
680
|
+
LinkComponent?: React.ElementType | undefined;
|
|
681
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
681
682
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
682
|
-
touchRippleRef?:
|
|
683
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
683
684
|
className?: string | undefined;
|
|
684
|
-
style?:
|
|
685
|
+
style?: React.CSSProperties | undefined;
|
|
685
686
|
ref?: ((instance: HTMLButtonElement | 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<HTMLButtonElement> | null | undefined;
|
|
686
687
|
form?: string | undefined;
|
|
687
688
|
slot?: string | undefined;
|
|
@@ -953,36 +954,36 @@ export declare const Info: {
|
|
|
953
954
|
formNoValidate?: boolean | undefined;
|
|
954
955
|
formTarget?: string | undefined;
|
|
955
956
|
value?: string | readonly string[] | number | undefined;
|
|
956
|
-
component?:
|
|
957
|
+
component?: React.ElementType | undefined;
|
|
957
958
|
}>) => Promise<void>;
|
|
958
959
|
render: (args: {
|
|
959
960
|
isLoading?: boolean | undefined;
|
|
960
|
-
children:
|
|
961
|
+
children: React.ReactNode;
|
|
961
962
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
962
963
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
963
964
|
disabled?: boolean | undefined;
|
|
964
965
|
disableElevation?: boolean | undefined;
|
|
965
966
|
disableFocusRipple?: boolean | undefined;
|
|
966
|
-
endIcon?:
|
|
967
|
+
endIcon?: React.ReactNode;
|
|
967
968
|
fullWidth?: boolean | undefined;
|
|
968
969
|
href?: string | undefined;
|
|
969
970
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
970
|
-
startIcon?:
|
|
971
|
+
startIcon?: React.ReactNode;
|
|
971
972
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
972
973
|
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
973
|
-
tabIndex?: NonNullable<
|
|
974
|
-
action?:
|
|
974
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
975
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
975
976
|
centerRipple?: boolean | undefined;
|
|
976
977
|
disableRipple?: boolean | undefined;
|
|
977
978
|
disableTouchRipple?: boolean | undefined;
|
|
978
979
|
focusRipple?: boolean | undefined;
|
|
979
980
|
focusVisibleClassName?: string | undefined;
|
|
980
|
-
LinkComponent?:
|
|
981
|
-
onFocusVisible?:
|
|
981
|
+
LinkComponent?: React.ElementType | undefined;
|
|
982
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
982
983
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
983
|
-
touchRippleRef?:
|
|
984
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
984
985
|
className?: string | undefined;
|
|
985
|
-
style?:
|
|
986
|
+
style?: React.CSSProperties | undefined;
|
|
986
987
|
ref?: ((instance: HTMLButtonElement | 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<HTMLButtonElement> | null | undefined;
|
|
987
988
|
form?: string | undefined;
|
|
988
989
|
slot?: string | undefined;
|
|
@@ -1254,7 +1255,7 @@ export declare const Info: {
|
|
|
1254
1255
|
formNoValidate?: boolean | undefined;
|
|
1255
1256
|
formTarget?: string | undefined;
|
|
1256
1257
|
value?: string | readonly string[] | number | undefined;
|
|
1257
|
-
component?:
|
|
1258
|
+
component?: React.ElementType | undefined;
|
|
1258
1259
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1259
1260
|
};
|
|
1260
1261
|
/**
|
|
@@ -1273,32 +1274,32 @@ export declare const Primary: {
|
|
|
1273
1274
|
};
|
|
1274
1275
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
1275
1276
|
isLoading?: boolean | undefined;
|
|
1276
|
-
children:
|
|
1277
|
+
children: React.ReactNode;
|
|
1277
1278
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
1278
1279
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
1279
1280
|
disabled?: boolean | undefined;
|
|
1280
1281
|
disableElevation?: boolean | undefined;
|
|
1281
1282
|
disableFocusRipple?: boolean | undefined;
|
|
1282
|
-
endIcon?:
|
|
1283
|
+
endIcon?: React.ReactNode;
|
|
1283
1284
|
fullWidth?: boolean | undefined;
|
|
1284
1285
|
href?: string | undefined;
|
|
1285
1286
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
1286
|
-
startIcon?:
|
|
1287
|
+
startIcon?: React.ReactNode;
|
|
1287
1288
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
1288
1289
|
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
1289
|
-
tabIndex?: NonNullable<
|
|
1290
|
-
action?:
|
|
1290
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
1291
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
1291
1292
|
centerRipple?: boolean | undefined;
|
|
1292
1293
|
disableRipple?: boolean | undefined;
|
|
1293
1294
|
disableTouchRipple?: boolean | undefined;
|
|
1294
1295
|
focusRipple?: boolean | undefined;
|
|
1295
1296
|
focusVisibleClassName?: string | undefined;
|
|
1296
|
-
LinkComponent?:
|
|
1297
|
-
onFocusVisible?:
|
|
1297
|
+
LinkComponent?: React.ElementType | undefined;
|
|
1298
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
1298
1299
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
1299
|
-
touchRippleRef?:
|
|
1300
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
1300
1301
|
className?: string | undefined;
|
|
1301
|
-
style?:
|
|
1302
|
+
style?: React.CSSProperties | undefined;
|
|
1302
1303
|
ref?: ((instance: HTMLButtonElement | 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<HTMLButtonElement> | null | undefined;
|
|
1303
1304
|
form?: string | undefined;
|
|
1304
1305
|
slot?: string | undefined;
|
|
@@ -1570,36 +1571,36 @@ export declare const Primary: {
|
|
|
1570
1571
|
formNoValidate?: boolean | undefined;
|
|
1571
1572
|
formTarget?: string | undefined;
|
|
1572
1573
|
value?: string | readonly string[] | number | undefined;
|
|
1573
|
-
component?:
|
|
1574
|
+
component?: React.ElementType | undefined;
|
|
1574
1575
|
}>) => Promise<void>;
|
|
1575
1576
|
render: (args: {
|
|
1576
1577
|
isLoading?: boolean | undefined;
|
|
1577
|
-
children:
|
|
1578
|
+
children: React.ReactNode;
|
|
1578
1579
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
1579
1580
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
1580
1581
|
disabled?: boolean | undefined;
|
|
1581
1582
|
disableElevation?: boolean | undefined;
|
|
1582
1583
|
disableFocusRipple?: boolean | undefined;
|
|
1583
|
-
endIcon?:
|
|
1584
|
+
endIcon?: React.ReactNode;
|
|
1584
1585
|
fullWidth?: boolean | undefined;
|
|
1585
1586
|
href?: string | undefined;
|
|
1586
1587
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
1587
|
-
startIcon?:
|
|
1588
|
+
startIcon?: React.ReactNode;
|
|
1588
1589
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
1589
1590
|
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
1590
|
-
tabIndex?: NonNullable<
|
|
1591
|
-
action?:
|
|
1591
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
1592
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
1592
1593
|
centerRipple?: boolean | undefined;
|
|
1593
1594
|
disableRipple?: boolean | undefined;
|
|
1594
1595
|
disableTouchRipple?: boolean | undefined;
|
|
1595
1596
|
focusRipple?: boolean | undefined;
|
|
1596
1597
|
focusVisibleClassName?: string | undefined;
|
|
1597
|
-
LinkComponent?:
|
|
1598
|
-
onFocusVisible?:
|
|
1598
|
+
LinkComponent?: React.ElementType | undefined;
|
|
1599
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
1599
1600
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
1600
|
-
touchRippleRef?:
|
|
1601
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
1601
1602
|
className?: string | undefined;
|
|
1602
|
-
style?:
|
|
1603
|
+
style?: React.CSSProperties | undefined;
|
|
1603
1604
|
ref?: ((instance: HTMLButtonElement | 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<HTMLButtonElement> | null | undefined;
|
|
1604
1605
|
form?: string | undefined;
|
|
1605
1606
|
slot?: string | undefined;
|
|
@@ -1871,7 +1872,7 @@ export declare const Primary: {
|
|
|
1871
1872
|
formNoValidate?: boolean | undefined;
|
|
1872
1873
|
formTarget?: string | undefined;
|
|
1873
1874
|
value?: string | readonly string[] | number | undefined;
|
|
1874
|
-
component?:
|
|
1875
|
+
component?: React.ElementType | undefined;
|
|
1875
1876
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1876
1877
|
};
|
|
1877
1878
|
/**
|
|
@@ -1890,32 +1891,32 @@ export declare const Text: {
|
|
|
1890
1891
|
};
|
|
1891
1892
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
1892
1893
|
isLoading?: boolean | undefined;
|
|
1893
|
-
children:
|
|
1894
|
+
children: React.ReactNode;
|
|
1894
1895
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
1895
1896
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
1896
1897
|
disabled?: boolean | undefined;
|
|
1897
1898
|
disableElevation?: boolean | undefined;
|
|
1898
1899
|
disableFocusRipple?: boolean | undefined;
|
|
1899
|
-
endIcon?:
|
|
1900
|
+
endIcon?: React.ReactNode;
|
|
1900
1901
|
fullWidth?: boolean | undefined;
|
|
1901
1902
|
href?: string | undefined;
|
|
1902
1903
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
1903
|
-
startIcon?:
|
|
1904
|
+
startIcon?: React.ReactNode;
|
|
1904
1905
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
1905
1906
|
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
1906
|
-
tabIndex?: NonNullable<
|
|
1907
|
-
action?:
|
|
1907
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
1908
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
1908
1909
|
centerRipple?: boolean | undefined;
|
|
1909
1910
|
disableRipple?: boolean | undefined;
|
|
1910
1911
|
disableTouchRipple?: boolean | undefined;
|
|
1911
1912
|
focusRipple?: boolean | undefined;
|
|
1912
1913
|
focusVisibleClassName?: string | undefined;
|
|
1913
|
-
LinkComponent?:
|
|
1914
|
-
onFocusVisible?:
|
|
1914
|
+
LinkComponent?: React.ElementType | undefined;
|
|
1915
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
1915
1916
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
1916
|
-
touchRippleRef?:
|
|
1917
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
1917
1918
|
className?: string | undefined;
|
|
1918
|
-
style?:
|
|
1919
|
+
style?: React.CSSProperties | undefined;
|
|
1919
1920
|
ref?: ((instance: HTMLButtonElement | 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<HTMLButtonElement> | null | undefined;
|
|
1920
1921
|
form?: string | undefined;
|
|
1921
1922
|
slot?: string | undefined;
|
|
@@ -2187,36 +2188,36 @@ export declare const Text: {
|
|
|
2187
2188
|
formNoValidate?: boolean | undefined;
|
|
2188
2189
|
formTarget?: string | undefined;
|
|
2189
2190
|
value?: string | readonly string[] | number | undefined;
|
|
2190
|
-
component?:
|
|
2191
|
+
component?: React.ElementType | undefined;
|
|
2191
2192
|
}>) => Promise<void>;
|
|
2192
2193
|
render: (args: {
|
|
2193
2194
|
isLoading?: boolean | undefined;
|
|
2194
|
-
children:
|
|
2195
|
+
children: React.ReactNode;
|
|
2195
2196
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
2196
2197
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
2197
2198
|
disabled?: boolean | undefined;
|
|
2198
2199
|
disableElevation?: boolean | undefined;
|
|
2199
2200
|
disableFocusRipple?: boolean | undefined;
|
|
2200
|
-
endIcon?:
|
|
2201
|
+
endIcon?: React.ReactNode;
|
|
2201
2202
|
fullWidth?: boolean | undefined;
|
|
2202
2203
|
href?: string | undefined;
|
|
2203
2204
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
2204
|
-
startIcon?:
|
|
2205
|
+
startIcon?: React.ReactNode;
|
|
2205
2206
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
2206
2207
|
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
2207
|
-
tabIndex?: NonNullable<
|
|
2208
|
-
action?:
|
|
2208
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
2209
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
2209
2210
|
centerRipple?: boolean | undefined;
|
|
2210
2211
|
disableRipple?: boolean | undefined;
|
|
2211
2212
|
disableTouchRipple?: boolean | undefined;
|
|
2212
2213
|
focusRipple?: boolean | undefined;
|
|
2213
2214
|
focusVisibleClassName?: string | undefined;
|
|
2214
|
-
LinkComponent?:
|
|
2215
|
-
onFocusVisible?:
|
|
2215
|
+
LinkComponent?: React.ElementType | undefined;
|
|
2216
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
2216
2217
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
2217
|
-
touchRippleRef?:
|
|
2218
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
2218
2219
|
className?: string | undefined;
|
|
2219
|
-
style?:
|
|
2220
|
+
style?: React.CSSProperties | undefined;
|
|
2220
2221
|
ref?: ((instance: HTMLButtonElement | 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<HTMLButtonElement> | null | undefined;
|
|
2221
2222
|
form?: string | undefined;
|
|
2222
2223
|
slot?: string | undefined;
|
|
@@ -2488,7 +2489,7 @@ export declare const Text: {
|
|
|
2488
2489
|
formNoValidate?: boolean | undefined;
|
|
2489
2490
|
formTarget?: string | undefined;
|
|
2490
2491
|
value?: string | readonly string[] | number | undefined;
|
|
2491
|
-
component?:
|
|
2492
|
+
component?: React.ElementType | undefined;
|
|
2492
2493
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2493
2494
|
};
|
|
2494
2495
|
/**
|
|
@@ -2507,32 +2508,32 @@ export declare const Colours: {
|
|
|
2507
2508
|
};
|
|
2508
2509
|
render: (args: {
|
|
2509
2510
|
isLoading?: boolean | undefined;
|
|
2510
|
-
children:
|
|
2511
|
+
children: React.ReactNode;
|
|
2511
2512
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
2512
2513
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
2513
2514
|
disabled?: boolean | undefined;
|
|
2514
2515
|
disableElevation?: boolean | undefined;
|
|
2515
2516
|
disableFocusRipple?: boolean | undefined;
|
|
2516
|
-
endIcon?:
|
|
2517
|
+
endIcon?: React.ReactNode;
|
|
2517
2518
|
fullWidth?: boolean | undefined;
|
|
2518
2519
|
href?: string | undefined;
|
|
2519
2520
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
2520
|
-
startIcon?:
|
|
2521
|
+
startIcon?: React.ReactNode;
|
|
2521
2522
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
2522
2523
|
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
2523
|
-
tabIndex?: NonNullable<
|
|
2524
|
-
action?:
|
|
2524
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
2525
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
2525
2526
|
centerRipple?: boolean | undefined;
|
|
2526
2527
|
disableRipple?: boolean | undefined;
|
|
2527
2528
|
disableTouchRipple?: boolean | undefined;
|
|
2528
2529
|
focusRipple?: boolean | undefined;
|
|
2529
2530
|
focusVisibleClassName?: string | undefined;
|
|
2530
|
-
LinkComponent?:
|
|
2531
|
-
onFocusVisible?:
|
|
2531
|
+
LinkComponent?: React.ElementType | undefined;
|
|
2532
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
2532
2533
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
2533
|
-
touchRippleRef?:
|
|
2534
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
2534
2535
|
className?: string | undefined;
|
|
2535
|
-
style?:
|
|
2536
|
+
style?: React.CSSProperties | undefined;
|
|
2536
2537
|
ref?: ((instance: HTMLButtonElement | 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<HTMLButtonElement> | null | undefined;
|
|
2537
2538
|
form?: string | undefined;
|
|
2538
2539
|
slot?: string | undefined;
|
|
@@ -2804,7 +2805,7 @@ export declare const Colours: {
|
|
|
2804
2805
|
formNoValidate?: boolean | undefined;
|
|
2805
2806
|
formTarget?: string | undefined;
|
|
2806
2807
|
value?: string | readonly string[] | number | undefined;
|
|
2807
|
-
component?:
|
|
2808
|
+
component?: React.ElementType | undefined;
|
|
2808
2809
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2809
2810
|
};
|
|
2810
2811
|
/**
|
|
@@ -2823,32 +2824,32 @@ export declare const FullWidth: {
|
|
|
2823
2824
|
};
|
|
2824
2825
|
render: (args: {
|
|
2825
2826
|
isLoading?: boolean | undefined;
|
|
2826
|
-
children:
|
|
2827
|
+
children: React.ReactNode;
|
|
2827
2828
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
2828
2829
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
2829
2830
|
disabled?: boolean | undefined;
|
|
2830
2831
|
disableElevation?: boolean | undefined;
|
|
2831
2832
|
disableFocusRipple?: boolean | undefined;
|
|
2832
|
-
endIcon?:
|
|
2833
|
+
endIcon?: React.ReactNode;
|
|
2833
2834
|
fullWidth?: boolean | undefined;
|
|
2834
2835
|
href?: string | undefined;
|
|
2835
2836
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
2836
|
-
startIcon?:
|
|
2837
|
+
startIcon?: React.ReactNode;
|
|
2837
2838
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
2838
2839
|
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
2839
|
-
tabIndex?: NonNullable<
|
|
2840
|
-
action?:
|
|
2840
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
2841
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
2841
2842
|
centerRipple?: boolean | undefined;
|
|
2842
2843
|
disableRipple?: boolean | undefined;
|
|
2843
2844
|
disableTouchRipple?: boolean | undefined;
|
|
2844
2845
|
focusRipple?: boolean | undefined;
|
|
2845
2846
|
focusVisibleClassName?: string | undefined;
|
|
2846
|
-
LinkComponent?:
|
|
2847
|
-
onFocusVisible?:
|
|
2847
|
+
LinkComponent?: React.ElementType | undefined;
|
|
2848
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
2848
2849
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
2849
|
-
touchRippleRef?:
|
|
2850
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
2850
2851
|
className?: string | undefined;
|
|
2851
|
-
style?:
|
|
2852
|
+
style?: React.CSSProperties | undefined;
|
|
2852
2853
|
ref?: ((instance: HTMLButtonElement | 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<HTMLButtonElement> | null | undefined;
|
|
2853
2854
|
form?: string | undefined;
|
|
2854
2855
|
slot?: string | undefined;
|
|
@@ -3120,7 +3121,7 @@ export declare const FullWidth: {
|
|
|
3120
3121
|
formNoValidate?: boolean | undefined;
|
|
3121
3122
|
formTarget?: string | undefined;
|
|
3122
3123
|
value?: string | readonly string[] | number | undefined;
|
|
3123
|
-
component?:
|
|
3124
|
+
component?: React.ElementType | undefined;
|
|
3124
3125
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
3125
3126
|
};
|
|
3126
3127
|
/**
|
|
@@ -3139,32 +3140,32 @@ export declare const Loading: {
|
|
|
3139
3140
|
};
|
|
3140
3141
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
3141
3142
|
isLoading?: boolean | undefined;
|
|
3142
|
-
children:
|
|
3143
|
+
children: React.ReactNode;
|
|
3143
3144
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
3144
3145
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
3145
3146
|
disabled?: boolean | undefined;
|
|
3146
3147
|
disableElevation?: boolean | undefined;
|
|
3147
3148
|
disableFocusRipple?: boolean | undefined;
|
|
3148
|
-
endIcon?:
|
|
3149
|
+
endIcon?: React.ReactNode;
|
|
3149
3150
|
fullWidth?: boolean | undefined;
|
|
3150
3151
|
href?: string | undefined;
|
|
3151
3152
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
3152
|
-
startIcon?:
|
|
3153
|
+
startIcon?: React.ReactNode;
|
|
3153
3154
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
3154
3155
|
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
3155
|
-
tabIndex?: NonNullable<
|
|
3156
|
-
action?:
|
|
3156
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
3157
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
3157
3158
|
centerRipple?: boolean | undefined;
|
|
3158
3159
|
disableRipple?: boolean | undefined;
|
|
3159
3160
|
disableTouchRipple?: boolean | undefined;
|
|
3160
3161
|
focusRipple?: boolean | undefined;
|
|
3161
3162
|
focusVisibleClassName?: string | undefined;
|
|
3162
|
-
LinkComponent?:
|
|
3163
|
-
onFocusVisible?:
|
|
3163
|
+
LinkComponent?: React.ElementType | undefined;
|
|
3164
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
3164
3165
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
3165
|
-
touchRippleRef?:
|
|
3166
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
3166
3167
|
className?: string | undefined;
|
|
3167
|
-
style?:
|
|
3168
|
+
style?: React.CSSProperties | undefined;
|
|
3168
3169
|
ref?: ((instance: HTMLButtonElement | 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<HTMLButtonElement> | null | undefined;
|
|
3169
3170
|
form?: string | undefined;
|
|
3170
3171
|
slot?: string | undefined;
|
|
@@ -3436,36 +3437,36 @@ export declare const Loading: {
|
|
|
3436
3437
|
formNoValidate?: boolean | undefined;
|
|
3437
3438
|
formTarget?: string | undefined;
|
|
3438
3439
|
value?: string | readonly string[] | number | undefined;
|
|
3439
|
-
component?:
|
|
3440
|
+
component?: React.ElementType | undefined;
|
|
3440
3441
|
}>) => Promise<void>;
|
|
3441
3442
|
render: (args: {
|
|
3442
3443
|
isLoading?: boolean | undefined;
|
|
3443
|
-
children:
|
|
3444
|
+
children: React.ReactNode;
|
|
3444
3445
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
3445
3446
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
3446
3447
|
disabled?: boolean | undefined;
|
|
3447
3448
|
disableElevation?: boolean | undefined;
|
|
3448
3449
|
disableFocusRipple?: boolean | undefined;
|
|
3449
|
-
endIcon?:
|
|
3450
|
+
endIcon?: React.ReactNode;
|
|
3450
3451
|
fullWidth?: boolean | undefined;
|
|
3451
3452
|
href?: string | undefined;
|
|
3452
3453
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
3453
|
-
startIcon?:
|
|
3454
|
+
startIcon?: React.ReactNode;
|
|
3454
3455
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
3455
3456
|
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
3456
|
-
tabIndex?: NonNullable<
|
|
3457
|
-
action?:
|
|
3457
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
3458
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
3458
3459
|
centerRipple?: boolean | undefined;
|
|
3459
3460
|
disableRipple?: boolean | undefined;
|
|
3460
3461
|
disableTouchRipple?: boolean | undefined;
|
|
3461
3462
|
focusRipple?: boolean | undefined;
|
|
3462
3463
|
focusVisibleClassName?: string | undefined;
|
|
3463
|
-
LinkComponent?:
|
|
3464
|
-
onFocusVisible?:
|
|
3464
|
+
LinkComponent?: React.ElementType | undefined;
|
|
3465
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
3465
3466
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
3466
|
-
touchRippleRef?:
|
|
3467
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
3467
3468
|
className?: string | undefined;
|
|
3468
|
-
style?:
|
|
3469
|
+
style?: React.CSSProperties | undefined;
|
|
3469
3470
|
ref?: ((instance: HTMLButtonElement | 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<HTMLButtonElement> | null | undefined;
|
|
3470
3471
|
form?: string | undefined;
|
|
3471
3472
|
slot?: string | undefined;
|
|
@@ -3737,7 +3738,7 @@ export declare const Loading: {
|
|
|
3737
3738
|
formNoValidate?: boolean | undefined;
|
|
3738
3739
|
formTarget?: string | undefined;
|
|
3739
3740
|
value?: string | readonly string[] | number | undefined;
|
|
3740
|
-
component?:
|
|
3741
|
+
component?: React.ElementType | undefined;
|
|
3741
3742
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
3742
3743
|
};
|
|
3743
3744
|
/**
|
|
@@ -3749,32 +3750,32 @@ export declare const StartIcon: {
|
|
|
3749
3750
|
};
|
|
3750
3751
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
3751
3752
|
isLoading?: boolean | undefined;
|
|
3752
|
-
children:
|
|
3753
|
+
children: React.ReactNode;
|
|
3753
3754
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
3754
3755
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
3755
3756
|
disabled?: boolean | undefined;
|
|
3756
3757
|
disableElevation?: boolean | undefined;
|
|
3757
3758
|
disableFocusRipple?: boolean | undefined;
|
|
3758
|
-
endIcon?:
|
|
3759
|
+
endIcon?: React.ReactNode;
|
|
3759
3760
|
fullWidth?: boolean | undefined;
|
|
3760
3761
|
href?: string | undefined;
|
|
3761
3762
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
3762
|
-
startIcon?:
|
|
3763
|
+
startIcon?: React.ReactNode;
|
|
3763
3764
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
3764
3765
|
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
3765
|
-
tabIndex?: NonNullable<
|
|
3766
|
-
action?:
|
|
3766
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
3767
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
3767
3768
|
centerRipple?: boolean | undefined;
|
|
3768
3769
|
disableRipple?: boolean | undefined;
|
|
3769
3770
|
disableTouchRipple?: boolean | undefined;
|
|
3770
3771
|
focusRipple?: boolean | undefined;
|
|
3771
3772
|
focusVisibleClassName?: string | undefined;
|
|
3772
|
-
LinkComponent?:
|
|
3773
|
-
onFocusVisible?:
|
|
3773
|
+
LinkComponent?: React.ElementType | undefined;
|
|
3774
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
3774
3775
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
3775
|
-
touchRippleRef?:
|
|
3776
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
3776
3777
|
className?: string | undefined;
|
|
3777
|
-
style?:
|
|
3778
|
+
style?: React.CSSProperties | undefined;
|
|
3778
3779
|
ref?: ((instance: HTMLButtonElement | 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<HTMLButtonElement> | null | undefined;
|
|
3779
3780
|
form?: string | undefined;
|
|
3780
3781
|
slot?: string | undefined;
|
|
@@ -4046,7 +4047,7 @@ export declare const StartIcon: {
|
|
|
4046
4047
|
formNoValidate?: boolean | undefined;
|
|
4047
4048
|
formTarget?: string | undefined;
|
|
4048
4049
|
value?: string | readonly string[] | number | undefined;
|
|
4049
|
-
component?:
|
|
4050
|
+
component?: React.ElementType | undefined;
|
|
4050
4051
|
}>) => Promise<void>;
|
|
4051
4052
|
parameters: {
|
|
4052
4053
|
docs: {
|
|
@@ -4057,32 +4058,32 @@ export declare const StartIcon: {
|
|
|
4057
4058
|
};
|
|
4058
4059
|
render: (args: {
|
|
4059
4060
|
isLoading?: boolean | undefined;
|
|
4060
|
-
children:
|
|
4061
|
+
children: React.ReactNode;
|
|
4061
4062
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
4062
4063
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
4063
4064
|
disabled?: boolean | undefined;
|
|
4064
4065
|
disableElevation?: boolean | undefined;
|
|
4065
4066
|
disableFocusRipple?: boolean | undefined;
|
|
4066
|
-
endIcon?:
|
|
4067
|
+
endIcon?: React.ReactNode;
|
|
4067
4068
|
fullWidth?: boolean | undefined;
|
|
4068
4069
|
href?: string | undefined;
|
|
4069
4070
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
4070
|
-
startIcon?:
|
|
4071
|
+
startIcon?: React.ReactNode;
|
|
4071
4072
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
4072
4073
|
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
4073
|
-
tabIndex?: NonNullable<
|
|
4074
|
-
action?:
|
|
4074
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
4075
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
4075
4076
|
centerRipple?: boolean | undefined;
|
|
4076
4077
|
disableRipple?: boolean | undefined;
|
|
4077
4078
|
disableTouchRipple?: boolean | undefined;
|
|
4078
4079
|
focusRipple?: boolean | undefined;
|
|
4079
4080
|
focusVisibleClassName?: string | undefined;
|
|
4080
|
-
LinkComponent?:
|
|
4081
|
-
onFocusVisible?:
|
|
4081
|
+
LinkComponent?: React.ElementType | undefined;
|
|
4082
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
4082
4083
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
4083
|
-
touchRippleRef?:
|
|
4084
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
4084
4085
|
className?: string | undefined;
|
|
4085
|
-
style?:
|
|
4086
|
+
style?: React.CSSProperties | undefined;
|
|
4086
4087
|
ref?: ((instance: HTMLButtonElement | 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<HTMLButtonElement> | null | undefined;
|
|
4087
4088
|
form?: string | undefined;
|
|
4088
4089
|
slot?: string | undefined;
|
|
@@ -4354,7 +4355,7 @@ export declare const StartIcon: {
|
|
|
4354
4355
|
formNoValidate?: boolean | undefined;
|
|
4355
4356
|
formTarget?: string | undefined;
|
|
4356
4357
|
value?: string | readonly string[] | number | undefined;
|
|
4357
|
-
component?:
|
|
4358
|
+
component?: React.ElementType | undefined;
|
|
4358
4359
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
4359
4360
|
};
|
|
4360
4361
|
/**
|
|
@@ -4366,32 +4367,32 @@ export declare const EndIcon: {
|
|
|
4366
4367
|
};
|
|
4367
4368
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
4368
4369
|
isLoading?: boolean | undefined;
|
|
4369
|
-
children:
|
|
4370
|
+
children: React.ReactNode;
|
|
4370
4371
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
4371
4372
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
4372
4373
|
disabled?: boolean | undefined;
|
|
4373
4374
|
disableElevation?: boolean | undefined;
|
|
4374
4375
|
disableFocusRipple?: boolean | undefined;
|
|
4375
|
-
endIcon?:
|
|
4376
|
+
endIcon?: React.ReactNode;
|
|
4376
4377
|
fullWidth?: boolean | undefined;
|
|
4377
4378
|
href?: string | undefined;
|
|
4378
4379
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
4379
|
-
startIcon?:
|
|
4380
|
+
startIcon?: React.ReactNode;
|
|
4380
4381
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
4381
4382
|
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
4382
|
-
tabIndex?: NonNullable<
|
|
4383
|
-
action?:
|
|
4383
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
4384
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
4384
4385
|
centerRipple?: boolean | undefined;
|
|
4385
4386
|
disableRipple?: boolean | undefined;
|
|
4386
4387
|
disableTouchRipple?: boolean | undefined;
|
|
4387
4388
|
focusRipple?: boolean | undefined;
|
|
4388
4389
|
focusVisibleClassName?: string | undefined;
|
|
4389
|
-
LinkComponent?:
|
|
4390
|
-
onFocusVisible?:
|
|
4390
|
+
LinkComponent?: React.ElementType | undefined;
|
|
4391
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
4391
4392
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
4392
|
-
touchRippleRef?:
|
|
4393
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
4393
4394
|
className?: string | undefined;
|
|
4394
|
-
style?:
|
|
4395
|
+
style?: React.CSSProperties | undefined;
|
|
4395
4396
|
ref?: ((instance: HTMLButtonElement | 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<HTMLButtonElement> | null | undefined;
|
|
4396
4397
|
form?: string | undefined;
|
|
4397
4398
|
slot?: string | undefined;
|
|
@@ -4663,7 +4664,7 @@ export declare const EndIcon: {
|
|
|
4663
4664
|
formNoValidate?: boolean | undefined;
|
|
4664
4665
|
formTarget?: string | undefined;
|
|
4665
4666
|
value?: string | readonly string[] | number | undefined;
|
|
4666
|
-
component?:
|
|
4667
|
+
component?: React.ElementType | undefined;
|
|
4667
4668
|
}>) => Promise<void>;
|
|
4668
4669
|
parameters: {
|
|
4669
4670
|
docs: {
|
|
@@ -4674,32 +4675,32 @@ export declare const EndIcon: {
|
|
|
4674
4675
|
};
|
|
4675
4676
|
render: (args: {
|
|
4676
4677
|
isLoading?: boolean | undefined;
|
|
4677
|
-
children:
|
|
4678
|
+
children: React.ReactNode;
|
|
4678
4679
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
4679
4680
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
4680
4681
|
disabled?: boolean | undefined;
|
|
4681
4682
|
disableElevation?: boolean | undefined;
|
|
4682
4683
|
disableFocusRipple?: boolean | undefined;
|
|
4683
|
-
endIcon?:
|
|
4684
|
+
endIcon?: React.ReactNode;
|
|
4684
4685
|
fullWidth?: boolean | undefined;
|
|
4685
4686
|
href?: string | undefined;
|
|
4686
4687
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
4687
|
-
startIcon?:
|
|
4688
|
+
startIcon?: React.ReactNode;
|
|
4688
4689
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
4689
4690
|
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
4690
|
-
tabIndex?: NonNullable<
|
|
4691
|
-
action?:
|
|
4691
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
4692
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
4692
4693
|
centerRipple?: boolean | undefined;
|
|
4693
4694
|
disableRipple?: boolean | undefined;
|
|
4694
4695
|
disableTouchRipple?: boolean | undefined;
|
|
4695
4696
|
focusRipple?: boolean | undefined;
|
|
4696
4697
|
focusVisibleClassName?: string | undefined;
|
|
4697
|
-
LinkComponent?:
|
|
4698
|
-
onFocusVisible?:
|
|
4698
|
+
LinkComponent?: React.ElementType | undefined;
|
|
4699
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
4699
4700
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
4700
|
-
touchRippleRef?:
|
|
4701
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
4701
4702
|
className?: string | undefined;
|
|
4702
|
-
style?:
|
|
4703
|
+
style?: React.CSSProperties | undefined;
|
|
4703
4704
|
ref?: ((instance: HTMLButtonElement | 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<HTMLButtonElement> | null | undefined;
|
|
4704
4705
|
form?: string | undefined;
|
|
4705
4706
|
slot?: string | undefined;
|
|
@@ -4971,6 +4972,6 @@ export declare const EndIcon: {
|
|
|
4971
4972
|
formNoValidate?: boolean | undefined;
|
|
4972
4973
|
formTarget?: string | undefined;
|
|
4973
4974
|
value?: string | readonly string[] | number | undefined;
|
|
4974
|
-
component?:
|
|
4975
|
+
component?: React.ElementType | undefined;
|
|
4975
4976
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
4976
4977
|
};
|