@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("./Card.types").CardProps) => 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;
|
|
@@ -24,7 +25,7 @@ export declare const Default: {
|
|
|
24
25
|
};
|
|
25
26
|
};
|
|
26
27
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
27
|
-
children?:
|
|
28
|
+
children?: React.ReactNode;
|
|
28
29
|
classes?: (Partial<import("@mui/material").CardClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
29
30
|
raised?: boolean | undefined;
|
|
30
31
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
@@ -32,7 +33,7 @@ export declare const Default: {
|
|
|
32
33
|
square?: boolean | undefined;
|
|
33
34
|
variant?: import("@mui/types").OverridableStringUnion<"elevation" | "outlined", import("@mui/material").PaperPropsVariantOverrides> | undefined;
|
|
34
35
|
className?: string | undefined;
|
|
35
|
-
style?:
|
|
36
|
+
style?: React.CSSProperties | undefined;
|
|
36
37
|
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;
|
|
37
38
|
color?: string | undefined;
|
|
38
39
|
slot?: string | undefined;
|
|
@@ -297,10 +298,10 @@ export declare const Default: {
|
|
|
297
298
|
unselectable?: "on" | "off" | undefined;
|
|
298
299
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
299
300
|
is?: string | undefined;
|
|
300
|
-
component?:
|
|
301
|
+
component?: React.ElementType | undefined;
|
|
301
302
|
}>) => Promise<void>;
|
|
302
303
|
render: (args: {
|
|
303
|
-
children?:
|
|
304
|
+
children?: React.ReactNode;
|
|
304
305
|
classes?: (Partial<import("@mui/material").CardClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
305
306
|
raised?: boolean | undefined;
|
|
306
307
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
@@ -308,7 +309,7 @@ export declare const Default: {
|
|
|
308
309
|
square?: boolean | undefined;
|
|
309
310
|
variant?: import("@mui/types").OverridableStringUnion<"elevation" | "outlined", import("@mui/material").PaperPropsVariantOverrides> | undefined;
|
|
310
311
|
className?: string | undefined;
|
|
311
|
-
style?:
|
|
312
|
+
style?: React.CSSProperties | undefined;
|
|
312
313
|
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;
|
|
313
314
|
color?: string | undefined;
|
|
314
315
|
slot?: string | undefined;
|
|
@@ -573,6 +574,6 @@ export declare const Default: {
|
|
|
573
574
|
unselectable?: "on" | "off" | undefined;
|
|
574
575
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
575
576
|
is?: string | undefined;
|
|
576
|
-
component?:
|
|
577
|
+
component?: React.ElementType | undefined;
|
|
577
578
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
578
579
|
};
|
|
@@ -9,6 +9,7 @@ declare const meta: {
|
|
|
9
9
|
component: (props: import("./Checkbox.types").CheckboxProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
10
|
parameters: {
|
|
11
11
|
badges: BADGE[];
|
|
12
|
+
layout: string;
|
|
12
13
|
};
|
|
13
14
|
argTypes: {
|
|
14
15
|
onFocusVisible: {
|
|
@@ -32,17 +33,17 @@ export declare const Default: {
|
|
|
32
33
|
label?: string | undefined;
|
|
33
34
|
isAuth?: boolean | undefined;
|
|
34
35
|
checked?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["checked"];
|
|
35
|
-
checkedIcon?:
|
|
36
|
+
checkedIcon?: React.ReactNode;
|
|
36
37
|
classes?: Partial<import("@mui/material").CheckboxClasses> | undefined;
|
|
37
38
|
color?: import("@mui/types").OverridableStringUnion<"primary" | "secondary" | "error" | "info" | "success" | "warning" | "default", import("@mui/material").CheckboxPropsColorOverrides> | undefined;
|
|
38
39
|
disabled?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["disabled"];
|
|
39
40
|
disableRipple?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["disableRipple"];
|
|
40
|
-
icon?:
|
|
41
|
+
icon?: React.ReactNode;
|
|
41
42
|
id?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["id"];
|
|
42
43
|
indeterminate?: boolean | undefined;
|
|
43
|
-
indeterminateIcon?:
|
|
44
|
+
indeterminateIcon?: React.ReactNode;
|
|
44
45
|
inputProps?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["inputProps"];
|
|
45
|
-
inputRef?:
|
|
46
|
+
inputRef?: React.Ref<HTMLInputElement> | undefined;
|
|
46
47
|
onChange?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["onChange"];
|
|
47
48
|
required?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["required"];
|
|
48
49
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").CheckboxPropsSizeOverrides> | undefined;
|
|
@@ -50,7 +51,7 @@ export declare const Default: {
|
|
|
50
51
|
value?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["value"];
|
|
51
52
|
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;
|
|
52
53
|
className?: string | undefined;
|
|
53
|
-
style?:
|
|
54
|
+
style?: React.CSSProperties | undefined;
|
|
54
55
|
form?: string | undefined;
|
|
55
56
|
slot?: string | undefined;
|
|
56
57
|
title?: string | undefined;
|
|
@@ -313,21 +314,21 @@ export declare const Default: {
|
|
|
313
314
|
unselectable?: "on" | "off" | undefined;
|
|
314
315
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
315
316
|
is?: string | undefined;
|
|
316
|
-
action?:
|
|
317
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
317
318
|
centerRipple?: boolean | undefined;
|
|
318
319
|
disableTouchRipple?: boolean | undefined;
|
|
319
320
|
focusRipple?: boolean | undefined;
|
|
320
321
|
focusVisibleClassName?: string | undefined;
|
|
321
|
-
LinkComponent?:
|
|
322
|
-
onFocusVisible?:
|
|
322
|
+
LinkComponent?: React.ElementType | undefined;
|
|
323
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
323
324
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
324
|
-
touchRippleRef?:
|
|
325
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
325
326
|
formAction?: string | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS] | undefined;
|
|
326
327
|
formEncType?: string | undefined;
|
|
327
328
|
formMethod?: string | undefined;
|
|
328
329
|
formNoValidate?: boolean | undefined;
|
|
329
330
|
formTarget?: string | undefined;
|
|
330
|
-
component?:
|
|
331
|
+
component?: React.ElementType | undefined;
|
|
331
332
|
disableFocusRipple?: boolean | undefined;
|
|
332
333
|
edge?: ("start" | "end" | false) | undefined;
|
|
333
334
|
readOnly?: boolean | undefined;
|
|
@@ -348,17 +349,17 @@ export declare const Checked: {
|
|
|
348
349
|
label?: string | undefined;
|
|
349
350
|
isAuth?: boolean | undefined;
|
|
350
351
|
checked?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["checked"];
|
|
351
|
-
checkedIcon?:
|
|
352
|
+
checkedIcon?: React.ReactNode;
|
|
352
353
|
classes?: Partial<import("@mui/material").CheckboxClasses> | undefined;
|
|
353
354
|
color?: import("@mui/types").OverridableStringUnion<"primary" | "secondary" | "error" | "info" | "success" | "warning" | "default", import("@mui/material").CheckboxPropsColorOverrides> | undefined;
|
|
354
355
|
disabled?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["disabled"];
|
|
355
356
|
disableRipple?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["disableRipple"];
|
|
356
|
-
icon?:
|
|
357
|
+
icon?: React.ReactNode;
|
|
357
358
|
id?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["id"];
|
|
358
359
|
indeterminate?: boolean | undefined;
|
|
359
|
-
indeterminateIcon?:
|
|
360
|
+
indeterminateIcon?: React.ReactNode;
|
|
360
361
|
inputProps?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["inputProps"];
|
|
361
|
-
inputRef?:
|
|
362
|
+
inputRef?: React.Ref<HTMLInputElement> | undefined;
|
|
362
363
|
onChange?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["onChange"];
|
|
363
364
|
required?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["required"];
|
|
364
365
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").CheckboxPropsSizeOverrides> | undefined;
|
|
@@ -366,7 +367,7 @@ export declare const Checked: {
|
|
|
366
367
|
value?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["value"];
|
|
367
368
|
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;
|
|
368
369
|
className?: string | undefined;
|
|
369
|
-
style?:
|
|
370
|
+
style?: React.CSSProperties | undefined;
|
|
370
371
|
form?: string | undefined;
|
|
371
372
|
slot?: string | undefined;
|
|
372
373
|
title?: string | undefined;
|
|
@@ -629,21 +630,21 @@ export declare const Checked: {
|
|
|
629
630
|
unselectable?: "on" | "off" | undefined;
|
|
630
631
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
631
632
|
is?: string | undefined;
|
|
632
|
-
action?:
|
|
633
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
633
634
|
centerRipple?: boolean | undefined;
|
|
634
635
|
disableTouchRipple?: boolean | undefined;
|
|
635
636
|
focusRipple?: boolean | undefined;
|
|
636
637
|
focusVisibleClassName?: string | undefined;
|
|
637
|
-
LinkComponent?:
|
|
638
|
-
onFocusVisible?:
|
|
638
|
+
LinkComponent?: React.ElementType | undefined;
|
|
639
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
639
640
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
640
|
-
touchRippleRef?:
|
|
641
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
641
642
|
formAction?: string | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS] | undefined;
|
|
642
643
|
formEncType?: string | undefined;
|
|
643
644
|
formMethod?: string | undefined;
|
|
644
645
|
formNoValidate?: boolean | undefined;
|
|
645
646
|
formTarget?: string | undefined;
|
|
646
|
-
component?:
|
|
647
|
+
component?: React.ElementType | undefined;
|
|
647
648
|
disableFocusRipple?: boolean | undefined;
|
|
648
649
|
edge?: ("start" | "end" | false) | undefined;
|
|
649
650
|
readOnly?: boolean | undefined;
|
|
@@ -652,17 +653,17 @@ export declare const Checked: {
|
|
|
652
653
|
label?: string | undefined;
|
|
653
654
|
isAuth?: boolean | undefined;
|
|
654
655
|
checked?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["checked"];
|
|
655
|
-
checkedIcon?:
|
|
656
|
+
checkedIcon?: React.ReactNode;
|
|
656
657
|
classes?: Partial<import("@mui/material").CheckboxClasses> | undefined;
|
|
657
658
|
color?: import("@mui/types").OverridableStringUnion<"primary" | "secondary" | "error" | "info" | "success" | "warning" | "default", import("@mui/material").CheckboxPropsColorOverrides> | undefined;
|
|
658
659
|
disabled?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["disabled"];
|
|
659
660
|
disableRipple?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["disableRipple"];
|
|
660
|
-
icon?:
|
|
661
|
+
icon?: React.ReactNode;
|
|
661
662
|
id?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["id"];
|
|
662
663
|
indeterminate?: boolean | undefined;
|
|
663
|
-
indeterminateIcon?:
|
|
664
|
+
indeterminateIcon?: React.ReactNode;
|
|
664
665
|
inputProps?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["inputProps"];
|
|
665
|
-
inputRef?:
|
|
666
|
+
inputRef?: React.Ref<HTMLInputElement> | undefined;
|
|
666
667
|
onChange?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["onChange"];
|
|
667
668
|
required?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["required"];
|
|
668
669
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").CheckboxPropsSizeOverrides> | undefined;
|
|
@@ -670,7 +671,7 @@ export declare const Checked: {
|
|
|
670
671
|
value?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["value"];
|
|
671
672
|
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;
|
|
672
673
|
className?: string | undefined;
|
|
673
|
-
style?:
|
|
674
|
+
style?: React.CSSProperties | undefined;
|
|
674
675
|
form?: string | undefined;
|
|
675
676
|
slot?: string | undefined;
|
|
676
677
|
title?: string | undefined;
|
|
@@ -933,21 +934,21 @@ export declare const Checked: {
|
|
|
933
934
|
unselectable?: "on" | "off" | undefined;
|
|
934
935
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
935
936
|
is?: string | undefined;
|
|
936
|
-
action?:
|
|
937
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
937
938
|
centerRipple?: boolean | undefined;
|
|
938
939
|
disableTouchRipple?: boolean | undefined;
|
|
939
940
|
focusRipple?: boolean | undefined;
|
|
940
941
|
focusVisibleClassName?: string | undefined;
|
|
941
|
-
LinkComponent?:
|
|
942
|
-
onFocusVisible?:
|
|
942
|
+
LinkComponent?: React.ElementType | undefined;
|
|
943
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
943
944
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
944
|
-
touchRippleRef?:
|
|
945
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
945
946
|
formAction?: string | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS] | undefined;
|
|
946
947
|
formEncType?: string | undefined;
|
|
947
948
|
formMethod?: string | undefined;
|
|
948
949
|
formNoValidate?: boolean | undefined;
|
|
949
950
|
formTarget?: string | undefined;
|
|
950
|
-
component?:
|
|
951
|
+
component?: React.ElementType | undefined;
|
|
951
952
|
disableFocusRipple?: boolean | undefined;
|
|
952
953
|
edge?: ("start" | "end" | false) | undefined;
|
|
953
954
|
readOnly?: boolean | undefined;
|
|
@@ -968,17 +969,17 @@ export declare const Indeterminate: {
|
|
|
968
969
|
label?: string | undefined;
|
|
969
970
|
isAuth?: boolean | undefined;
|
|
970
971
|
checked?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["checked"];
|
|
971
|
-
checkedIcon?:
|
|
972
|
+
checkedIcon?: React.ReactNode;
|
|
972
973
|
classes?: Partial<import("@mui/material").CheckboxClasses> | undefined;
|
|
973
974
|
color?: import("@mui/types").OverridableStringUnion<"primary" | "secondary" | "error" | "info" | "success" | "warning" | "default", import("@mui/material").CheckboxPropsColorOverrides> | undefined;
|
|
974
975
|
disabled?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["disabled"];
|
|
975
976
|
disableRipple?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["disableRipple"];
|
|
976
|
-
icon?:
|
|
977
|
+
icon?: React.ReactNode;
|
|
977
978
|
id?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["id"];
|
|
978
979
|
indeterminate?: boolean | undefined;
|
|
979
|
-
indeterminateIcon?:
|
|
980
|
+
indeterminateIcon?: React.ReactNode;
|
|
980
981
|
inputProps?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["inputProps"];
|
|
981
|
-
inputRef?:
|
|
982
|
+
inputRef?: React.Ref<HTMLInputElement> | undefined;
|
|
982
983
|
onChange?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["onChange"];
|
|
983
984
|
required?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["required"];
|
|
984
985
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").CheckboxPropsSizeOverrides> | undefined;
|
|
@@ -986,7 +987,7 @@ export declare const Indeterminate: {
|
|
|
986
987
|
value?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["value"];
|
|
987
988
|
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;
|
|
988
989
|
className?: string | undefined;
|
|
989
|
-
style?:
|
|
990
|
+
style?: React.CSSProperties | undefined;
|
|
990
991
|
form?: string | undefined;
|
|
991
992
|
slot?: string | undefined;
|
|
992
993
|
title?: string | undefined;
|
|
@@ -1249,21 +1250,21 @@ export declare const Indeterminate: {
|
|
|
1249
1250
|
unselectable?: "on" | "off" | undefined;
|
|
1250
1251
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
1251
1252
|
is?: string | undefined;
|
|
1252
|
-
action?:
|
|
1253
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
1253
1254
|
centerRipple?: boolean | undefined;
|
|
1254
1255
|
disableTouchRipple?: boolean | undefined;
|
|
1255
1256
|
focusRipple?: boolean | undefined;
|
|
1256
1257
|
focusVisibleClassName?: string | undefined;
|
|
1257
|
-
LinkComponent?:
|
|
1258
|
-
onFocusVisible?:
|
|
1258
|
+
LinkComponent?: React.ElementType | undefined;
|
|
1259
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
1259
1260
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
1260
|
-
touchRippleRef?:
|
|
1261
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
1261
1262
|
formAction?: string | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS] | undefined;
|
|
1262
1263
|
formEncType?: string | undefined;
|
|
1263
1264
|
formMethod?: string | undefined;
|
|
1264
1265
|
formNoValidate?: boolean | undefined;
|
|
1265
1266
|
formTarget?: string | undefined;
|
|
1266
|
-
component?:
|
|
1267
|
+
component?: React.ElementType | undefined;
|
|
1267
1268
|
disableFocusRipple?: boolean | undefined;
|
|
1268
1269
|
edge?: ("start" | "end" | false) | undefined;
|
|
1269
1270
|
readOnly?: boolean | undefined;
|
|
@@ -1272,17 +1273,17 @@ export declare const Indeterminate: {
|
|
|
1272
1273
|
label?: string | undefined;
|
|
1273
1274
|
isAuth?: boolean | undefined;
|
|
1274
1275
|
checked?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["checked"];
|
|
1275
|
-
checkedIcon?:
|
|
1276
|
+
checkedIcon?: React.ReactNode;
|
|
1276
1277
|
classes?: Partial<import("@mui/material").CheckboxClasses> | undefined;
|
|
1277
1278
|
color?: import("@mui/types").OverridableStringUnion<"primary" | "secondary" | "error" | "info" | "success" | "warning" | "default", import("@mui/material").CheckboxPropsColorOverrides> | undefined;
|
|
1278
1279
|
disabled?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["disabled"];
|
|
1279
1280
|
disableRipple?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["disableRipple"];
|
|
1280
|
-
icon?:
|
|
1281
|
+
icon?: React.ReactNode;
|
|
1281
1282
|
id?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["id"];
|
|
1282
1283
|
indeterminate?: boolean | undefined;
|
|
1283
|
-
indeterminateIcon?:
|
|
1284
|
+
indeterminateIcon?: React.ReactNode;
|
|
1284
1285
|
inputProps?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["inputProps"];
|
|
1285
|
-
inputRef?:
|
|
1286
|
+
inputRef?: React.Ref<HTMLInputElement> | undefined;
|
|
1286
1287
|
onChange?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["onChange"];
|
|
1287
1288
|
required?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["required"];
|
|
1288
1289
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").CheckboxPropsSizeOverrides> | undefined;
|
|
@@ -1290,7 +1291,7 @@ export declare const Indeterminate: {
|
|
|
1290
1291
|
value?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["value"];
|
|
1291
1292
|
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;
|
|
1292
1293
|
className?: string | undefined;
|
|
1293
|
-
style?:
|
|
1294
|
+
style?: React.CSSProperties | undefined;
|
|
1294
1295
|
form?: string | undefined;
|
|
1295
1296
|
slot?: string | undefined;
|
|
1296
1297
|
title?: string | undefined;
|
|
@@ -1553,21 +1554,21 @@ export declare const Indeterminate: {
|
|
|
1553
1554
|
unselectable?: "on" | "off" | undefined;
|
|
1554
1555
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
1555
1556
|
is?: string | undefined;
|
|
1556
|
-
action?:
|
|
1557
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
1557
1558
|
centerRipple?: boolean | undefined;
|
|
1558
1559
|
disableTouchRipple?: boolean | undefined;
|
|
1559
1560
|
focusRipple?: boolean | undefined;
|
|
1560
1561
|
focusVisibleClassName?: string | undefined;
|
|
1561
|
-
LinkComponent?:
|
|
1562
|
-
onFocusVisible?:
|
|
1562
|
+
LinkComponent?: React.ElementType | undefined;
|
|
1563
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
1563
1564
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
1564
|
-
touchRippleRef?:
|
|
1565
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
1565
1566
|
formAction?: string | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS] | undefined;
|
|
1566
1567
|
formEncType?: string | undefined;
|
|
1567
1568
|
formMethod?: string | undefined;
|
|
1568
1569
|
formNoValidate?: boolean | undefined;
|
|
1569
1570
|
formTarget?: string | undefined;
|
|
1570
|
-
component?:
|
|
1571
|
+
component?: React.ElementType | undefined;
|
|
1571
1572
|
disableFocusRipple?: boolean | undefined;
|
|
1572
1573
|
edge?: ("start" | "end" | false) | undefined;
|
|
1573
1574
|
readOnly?: boolean | undefined;
|
|
@@ -1591,17 +1592,17 @@ export declare const Disabled: {
|
|
|
1591
1592
|
label?: string | undefined;
|
|
1592
1593
|
isAuth?: boolean | undefined;
|
|
1593
1594
|
checked?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["checked"];
|
|
1594
|
-
checkedIcon?:
|
|
1595
|
+
checkedIcon?: React.ReactNode;
|
|
1595
1596
|
classes?: Partial<import("@mui/material").CheckboxClasses> | undefined;
|
|
1596
1597
|
color?: import("@mui/types").OverridableStringUnion<"primary" | "secondary" | "error" | "info" | "success" | "warning" | "default", import("@mui/material").CheckboxPropsColorOverrides> | undefined;
|
|
1597
1598
|
disabled?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["disabled"];
|
|
1598
1599
|
disableRipple?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["disableRipple"];
|
|
1599
|
-
icon?:
|
|
1600
|
+
icon?: React.ReactNode;
|
|
1600
1601
|
id?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["id"];
|
|
1601
1602
|
indeterminate?: boolean | undefined;
|
|
1602
|
-
indeterminateIcon?:
|
|
1603
|
+
indeterminateIcon?: React.ReactNode;
|
|
1603
1604
|
inputProps?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["inputProps"];
|
|
1604
|
-
inputRef?:
|
|
1605
|
+
inputRef?: React.Ref<HTMLInputElement> | undefined;
|
|
1605
1606
|
onChange?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["onChange"];
|
|
1606
1607
|
required?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["required"];
|
|
1607
1608
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").CheckboxPropsSizeOverrides> | undefined;
|
|
@@ -1609,7 +1610,7 @@ export declare const Disabled: {
|
|
|
1609
1610
|
value?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["value"];
|
|
1610
1611
|
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;
|
|
1611
1612
|
className?: string | undefined;
|
|
1612
|
-
style?:
|
|
1613
|
+
style?: React.CSSProperties | undefined;
|
|
1613
1614
|
form?: string | undefined;
|
|
1614
1615
|
slot?: string | undefined;
|
|
1615
1616
|
title?: string | undefined;
|
|
@@ -1872,21 +1873,21 @@ export declare const Disabled: {
|
|
|
1872
1873
|
unselectable?: "on" | "off" | undefined;
|
|
1873
1874
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
1874
1875
|
is?: string | undefined;
|
|
1875
|
-
action?:
|
|
1876
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
1876
1877
|
centerRipple?: boolean | undefined;
|
|
1877
1878
|
disableTouchRipple?: boolean | undefined;
|
|
1878
1879
|
focusRipple?: boolean | undefined;
|
|
1879
1880
|
focusVisibleClassName?: string | undefined;
|
|
1880
|
-
LinkComponent?:
|
|
1881
|
-
onFocusVisible?:
|
|
1881
|
+
LinkComponent?: React.ElementType | undefined;
|
|
1882
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
1882
1883
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
1883
|
-
touchRippleRef?:
|
|
1884
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
1884
1885
|
formAction?: string | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS] | undefined;
|
|
1885
1886
|
formEncType?: string | undefined;
|
|
1886
1887
|
formMethod?: string | undefined;
|
|
1887
1888
|
formNoValidate?: boolean | undefined;
|
|
1888
1889
|
formTarget?: string | undefined;
|
|
1889
|
-
component?:
|
|
1890
|
+
component?: React.ElementType | undefined;
|
|
1890
1891
|
disableFocusRipple?: boolean | undefined;
|
|
1891
1892
|
edge?: ("start" | "end" | false) | undefined;
|
|
1892
1893
|
readOnly?: boolean | undefined;
|
|
@@ -1895,17 +1896,17 @@ export declare const Disabled: {
|
|
|
1895
1896
|
label?: string | undefined;
|
|
1896
1897
|
isAuth?: boolean | undefined;
|
|
1897
1898
|
checked?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["checked"];
|
|
1898
|
-
checkedIcon?:
|
|
1899
|
+
checkedIcon?: React.ReactNode;
|
|
1899
1900
|
classes?: Partial<import("@mui/material").CheckboxClasses> | undefined;
|
|
1900
1901
|
color?: import("@mui/types").OverridableStringUnion<"primary" | "secondary" | "error" | "info" | "success" | "warning" | "default", import("@mui/material").CheckboxPropsColorOverrides> | undefined;
|
|
1901
1902
|
disabled?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["disabled"];
|
|
1902
1903
|
disableRipple?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["disableRipple"];
|
|
1903
|
-
icon?:
|
|
1904
|
+
icon?: React.ReactNode;
|
|
1904
1905
|
id?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["id"];
|
|
1905
1906
|
indeterminate?: boolean | undefined;
|
|
1906
|
-
indeterminateIcon?:
|
|
1907
|
+
indeterminateIcon?: React.ReactNode;
|
|
1907
1908
|
inputProps?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["inputProps"];
|
|
1908
|
-
inputRef?:
|
|
1909
|
+
inputRef?: React.Ref<HTMLInputElement> | undefined;
|
|
1909
1910
|
onChange?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["onChange"];
|
|
1910
1911
|
required?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["required"];
|
|
1911
1912
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").CheckboxPropsSizeOverrides> | undefined;
|
|
@@ -1913,7 +1914,7 @@ export declare const Disabled: {
|
|
|
1913
1914
|
value?: import("@mui/material/internal/SwitchBase").SwitchBaseProps["value"];
|
|
1914
1915
|
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;
|
|
1915
1916
|
className?: string | undefined;
|
|
1916
|
-
style?:
|
|
1917
|
+
style?: React.CSSProperties | undefined;
|
|
1917
1918
|
form?: string | undefined;
|
|
1918
1919
|
slot?: string | undefined;
|
|
1919
1920
|
title?: string | undefined;
|
|
@@ -2176,21 +2177,21 @@ export declare const Disabled: {
|
|
|
2176
2177
|
unselectable?: "on" | "off" | undefined;
|
|
2177
2178
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
2178
2179
|
is?: string | undefined;
|
|
2179
|
-
action?:
|
|
2180
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
2180
2181
|
centerRipple?: boolean | undefined;
|
|
2181
2182
|
disableTouchRipple?: boolean | undefined;
|
|
2182
2183
|
focusRipple?: boolean | undefined;
|
|
2183
2184
|
focusVisibleClassName?: string | undefined;
|
|
2184
|
-
LinkComponent?:
|
|
2185
|
-
onFocusVisible?:
|
|
2185
|
+
LinkComponent?: React.ElementType | undefined;
|
|
2186
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
2186
2187
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
2187
|
-
touchRippleRef?:
|
|
2188
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
2188
2189
|
formAction?: string | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS] | undefined;
|
|
2189
2190
|
formEncType?: string | undefined;
|
|
2190
2191
|
formMethod?: string | undefined;
|
|
2191
2192
|
formNoValidate?: boolean | undefined;
|
|
2192
2193
|
formTarget?: string | undefined;
|
|
2193
|
-
component?:
|
|
2194
|
+
component?: React.ElementType | undefined;
|
|
2194
2195
|
disableFocusRipple?: boolean | undefined;
|
|
2195
2196
|
edge?: ("start" | "end" | false) | undefined;
|
|
2196
2197
|
readOnly?: boolean | undefined;
|