@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
|
@@ -10,6 +10,7 @@ declare const meta: {
|
|
|
10
10
|
title: string;
|
|
11
11
|
parameters: {
|
|
12
12
|
badges: BADGE[];
|
|
13
|
+
layout: string;
|
|
13
14
|
};
|
|
14
15
|
};
|
|
15
16
|
export default meta;
|
|
@@ -25,16 +26,16 @@ export declare const Default: {
|
|
|
25
26
|
};
|
|
26
27
|
};
|
|
27
28
|
render: (args: {
|
|
28
|
-
name?: ((props: import("@mui/material").SvgIconProps) =>
|
|
29
|
+
name?: ((props: import("@mui/material").SvgIconProps) => React.JSX.Element) | undefined;
|
|
29
30
|
string?: number | string | undefined;
|
|
30
|
-
children?:
|
|
31
|
+
children?: React.ReactNode;
|
|
31
32
|
classes?: (Partial<import("@mui/material").SvgIconClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
32
33
|
ref?: ((instance: SVGSVGElement | 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<SVGSVGElement> | null | undefined;
|
|
33
34
|
path?: string | undefined;
|
|
34
35
|
clipPath?: string | undefined;
|
|
35
36
|
mask?: string | undefined;
|
|
36
37
|
className?: string | undefined;
|
|
37
|
-
style?:
|
|
38
|
+
style?: React.CSSProperties | undefined;
|
|
38
39
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "action" | "disabled" | "primary" | "secondary" | "error" | "info" | "success" | "warning", import("@mui/material").SvgIconPropsColorOverrides> | undefined;
|
|
39
40
|
fontSize?: import("@mui/types").OverridableStringUnion<"inherit" | "large" | "medium" | "small", import("@mui/material").SvgIconPropsSizeOverrides> | undefined;
|
|
40
41
|
htmlColor?: string | undefined;
|
|
@@ -509,7 +510,7 @@ export declare const Default: {
|
|
|
509
510
|
onTransitionEnd?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
510
511
|
onTransitionEndCapture?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
511
512
|
key?: import("react").Key | null | undefined;
|
|
512
|
-
component?:
|
|
513
|
+
component?: React.ElementType | undefined;
|
|
513
514
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
514
515
|
};
|
|
515
516
|
/**
|
|
@@ -527,16 +528,16 @@ export declare const Color: {
|
|
|
527
528
|
};
|
|
528
529
|
};
|
|
529
530
|
render: (args: {
|
|
530
|
-
name?: ((props: import("@mui/material").SvgIconProps) =>
|
|
531
|
+
name?: ((props: import("@mui/material").SvgIconProps) => React.JSX.Element) | undefined;
|
|
531
532
|
string?: number | string | undefined;
|
|
532
|
-
children?:
|
|
533
|
+
children?: React.ReactNode;
|
|
533
534
|
classes?: (Partial<import("@mui/material").SvgIconClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
534
535
|
ref?: ((instance: SVGSVGElement | 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<SVGSVGElement> | null | undefined;
|
|
535
536
|
path?: string | undefined;
|
|
536
537
|
clipPath?: string | undefined;
|
|
537
538
|
mask?: string | undefined;
|
|
538
539
|
className?: string | undefined;
|
|
539
|
-
style?:
|
|
540
|
+
style?: React.CSSProperties | undefined;
|
|
540
541
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "action" | "disabled" | "primary" | "secondary" | "error" | "info" | "success" | "warning", import("@mui/material").SvgIconPropsColorOverrides> | undefined;
|
|
541
542
|
fontSize?: import("@mui/types").OverridableStringUnion<"inherit" | "large" | "medium" | "small", import("@mui/material").SvgIconPropsSizeOverrides> | undefined;
|
|
542
543
|
htmlColor?: string | undefined;
|
|
@@ -1011,7 +1012,7 @@ export declare const Color: {
|
|
|
1011
1012
|
onTransitionEnd?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
1012
1013
|
onTransitionEndCapture?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
1013
1014
|
key?: import("react").Key | null | undefined;
|
|
1014
|
-
component?:
|
|
1015
|
+
component?: React.ElementType | undefined;
|
|
1015
1016
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1016
1017
|
};
|
|
1017
1018
|
/**
|
|
@@ -1029,16 +1030,16 @@ export declare const Size: {
|
|
|
1029
1030
|
};
|
|
1030
1031
|
};
|
|
1031
1032
|
render: (args: {
|
|
1032
|
-
name?: ((props: import("@mui/material").SvgIconProps) =>
|
|
1033
|
+
name?: ((props: import("@mui/material").SvgIconProps) => React.JSX.Element) | undefined;
|
|
1033
1034
|
string?: number | string | undefined;
|
|
1034
|
-
children?:
|
|
1035
|
+
children?: React.ReactNode;
|
|
1035
1036
|
classes?: (Partial<import("@mui/material").SvgIconClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
1036
1037
|
ref?: ((instance: SVGSVGElement | 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<SVGSVGElement> | null | undefined;
|
|
1037
1038
|
path?: string | undefined;
|
|
1038
1039
|
clipPath?: string | undefined;
|
|
1039
1040
|
mask?: string | undefined;
|
|
1040
1041
|
className?: string | undefined;
|
|
1041
|
-
style?:
|
|
1042
|
+
style?: React.CSSProperties | undefined;
|
|
1042
1043
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "action" | "disabled" | "primary" | "secondary" | "error" | "info" | "success" | "warning", import("@mui/material").SvgIconPropsColorOverrides> | undefined;
|
|
1043
1044
|
fontSize?: import("@mui/types").OverridableStringUnion<"inherit" | "large" | "medium" | "small", import("@mui/material").SvgIconPropsSizeOverrides> | undefined;
|
|
1044
1045
|
htmlColor?: string | undefined;
|
|
@@ -1513,6 +1514,6 @@ export declare const Size: {
|
|
|
1513
1514
|
onTransitionEnd?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
1514
1515
|
onTransitionEndCapture?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
1515
1516
|
key?: import("react").Key | null | undefined;
|
|
1516
|
-
component?:
|
|
1517
|
+
component?: React.ElementType | undefined;
|
|
1517
1518
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1518
1519
|
};
|
|
@@ -9,6 +9,7 @@ declare const meta: {
|
|
|
9
9
|
title: string;
|
|
10
10
|
parameters: {
|
|
11
11
|
badges: BADGE[];
|
|
12
|
+
layout: string;
|
|
12
13
|
};
|
|
13
14
|
};
|
|
14
15
|
export default meta;
|
|
@@ -22,10 +23,10 @@ export declare const Default: {
|
|
|
22
23
|
};
|
|
23
24
|
};
|
|
24
25
|
render: (args: {
|
|
25
|
-
children?:
|
|
26
|
+
children?: React.ReactNode;
|
|
26
27
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
27
28
|
className?: string | undefined;
|
|
28
|
-
style?:
|
|
29
|
+
style?: React.CSSProperties | undefined;
|
|
29
30
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
30
31
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
31
32
|
form?: string | undefined;
|
|
@@ -37,7 +38,7 @@ export declare const Default: {
|
|
|
37
38
|
name?: string | undefined;
|
|
38
39
|
type?: "submit" | "reset" | "button" | undefined;
|
|
39
40
|
role?: import("react").AriaRole | undefined;
|
|
40
|
-
tabIndex?: NonNullable<
|
|
41
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
41
42
|
href?: string | undefined;
|
|
42
43
|
"aria-activedescendant"?: string | undefined;
|
|
43
44
|
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
@@ -296,16 +297,16 @@ export declare const Default: {
|
|
|
296
297
|
unselectable?: "on" | "off" | undefined;
|
|
297
298
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
298
299
|
is?: string | undefined;
|
|
299
|
-
action?:
|
|
300
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
300
301
|
centerRipple?: boolean | undefined;
|
|
301
302
|
disableRipple?: boolean | undefined;
|
|
302
303
|
disableTouchRipple?: boolean | undefined;
|
|
303
304
|
focusRipple?: boolean | undefined;
|
|
304
305
|
focusVisibleClassName?: string | undefined;
|
|
305
|
-
LinkComponent?:
|
|
306
|
-
onFocusVisible?:
|
|
306
|
+
LinkComponent?: React.ElementType | undefined;
|
|
307
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
307
308
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
308
|
-
touchRippleRef?:
|
|
309
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
309
310
|
fullWidth?: boolean | undefined;
|
|
310
311
|
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;
|
|
311
312
|
formEncType?: string | undefined;
|
|
@@ -313,12 +314,12 @@ export declare const Default: {
|
|
|
313
314
|
formNoValidate?: boolean | undefined;
|
|
314
315
|
formTarget?: string | undefined;
|
|
315
316
|
value?: string | readonly string[] | number | undefined;
|
|
316
|
-
component?:
|
|
317
|
+
component?: React.ElementType | undefined;
|
|
317
318
|
disableFocusRipple?: boolean | undefined;
|
|
318
319
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
319
320
|
disableElevation?: boolean | undefined;
|
|
320
|
-
endIcon?:
|
|
321
|
-
startIcon?:
|
|
321
|
+
endIcon?: React.ReactNode;
|
|
322
|
+
startIcon?: React.ReactNode;
|
|
322
323
|
ref?: import("react").LegacyRef<HTMLButtonElement> | undefined;
|
|
323
324
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
324
325
|
};
|
|
@@ -336,10 +337,10 @@ export declare const Sizes: {
|
|
|
336
337
|
};
|
|
337
338
|
};
|
|
338
339
|
render: (args: {
|
|
339
|
-
children?:
|
|
340
|
+
children?: React.ReactNode;
|
|
340
341
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
341
342
|
className?: string | undefined;
|
|
342
|
-
style?:
|
|
343
|
+
style?: React.CSSProperties | undefined;
|
|
343
344
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
344
345
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
345
346
|
form?: string | undefined;
|
|
@@ -351,7 +352,7 @@ export declare const Sizes: {
|
|
|
351
352
|
name?: string | undefined;
|
|
352
353
|
type?: "submit" | "reset" | "button" | undefined;
|
|
353
354
|
role?: import("react").AriaRole | undefined;
|
|
354
|
-
tabIndex?: NonNullable<
|
|
355
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
355
356
|
href?: string | undefined;
|
|
356
357
|
"aria-activedescendant"?: string | undefined;
|
|
357
358
|
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
@@ -610,16 +611,16 @@ export declare const Sizes: {
|
|
|
610
611
|
unselectable?: "on" | "off" | undefined;
|
|
611
612
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
612
613
|
is?: string | undefined;
|
|
613
|
-
action?:
|
|
614
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
614
615
|
centerRipple?: boolean | undefined;
|
|
615
616
|
disableRipple?: boolean | undefined;
|
|
616
617
|
disableTouchRipple?: boolean | undefined;
|
|
617
618
|
focusRipple?: boolean | undefined;
|
|
618
619
|
focusVisibleClassName?: string | undefined;
|
|
619
|
-
LinkComponent?:
|
|
620
|
-
onFocusVisible?:
|
|
620
|
+
LinkComponent?: React.ElementType | undefined;
|
|
621
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
621
622
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
622
|
-
touchRippleRef?:
|
|
623
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
623
624
|
fullWidth?: boolean | undefined;
|
|
624
625
|
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;
|
|
625
626
|
formEncType?: string | undefined;
|
|
@@ -627,12 +628,12 @@ export declare const Sizes: {
|
|
|
627
628
|
formNoValidate?: boolean | undefined;
|
|
628
629
|
formTarget?: string | undefined;
|
|
629
630
|
value?: string | readonly string[] | number | undefined;
|
|
630
|
-
component?:
|
|
631
|
+
component?: React.ElementType | undefined;
|
|
631
632
|
disableFocusRipple?: boolean | undefined;
|
|
632
633
|
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
633
634
|
disableElevation?: boolean | undefined;
|
|
634
|
-
endIcon?:
|
|
635
|
-
startIcon?:
|
|
635
|
+
endIcon?: React.ReactNode;
|
|
636
|
+
startIcon?: React.ReactNode;
|
|
636
637
|
ref?: import("react").LegacyRef<HTMLButtonElement> | undefined;
|
|
637
638
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
638
639
|
};
|
|
@@ -31,16 +31,16 @@ export declare const Default: {
|
|
|
31
31
|
};
|
|
32
32
|
};
|
|
33
33
|
render: (args: {
|
|
34
|
-
name?: ((props: SvgIconProps) =>
|
|
34
|
+
name?: ((props: SvgIconProps) => React.JSX.Element) | undefined;
|
|
35
35
|
string?: number | string | undefined;
|
|
36
|
-
children?:
|
|
36
|
+
children?: React.ReactNode;
|
|
37
37
|
classes?: (Partial<import("@mui/material").SvgIconClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
38
38
|
ref?: ((instance: SVGSVGElement | 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<SVGSVGElement> | null | undefined;
|
|
39
39
|
path?: string | undefined;
|
|
40
40
|
clipPath?: string | undefined;
|
|
41
41
|
mask?: string | undefined;
|
|
42
42
|
className?: string | undefined;
|
|
43
|
-
style?:
|
|
43
|
+
style?: React.CSSProperties | undefined;
|
|
44
44
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "action" | "disabled" | "primary" | "secondary" | "error" | "info" | "success" | "warning", import("@mui/material").SvgIconPropsColorOverrides> | undefined;
|
|
45
45
|
fontSize?: import("@mui/types").OverridableStringUnion<"inherit" | "large" | "medium" | "small", import("@mui/material").SvgIconPropsSizeOverrides> | undefined;
|
|
46
46
|
htmlColor?: string | undefined;
|
|
@@ -515,7 +515,7 @@ export declare const Default: {
|
|
|
515
515
|
onTransitionEnd?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
516
516
|
onTransitionEndCapture?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
517
517
|
key?: import("react").Key | null | undefined;
|
|
518
|
-
component?:
|
|
518
|
+
component?: React.ElementType | undefined;
|
|
519
519
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
520
520
|
};
|
|
521
521
|
export declare const DefaultCore: {
|
|
@@ -528,16 +528,16 @@ export declare const DefaultCore: {
|
|
|
528
528
|
};
|
|
529
529
|
};
|
|
530
530
|
render: (args: {
|
|
531
|
-
name?: ((props: SvgIconProps) =>
|
|
531
|
+
name?: ((props: SvgIconProps) => React.JSX.Element) | undefined;
|
|
532
532
|
string?: number | string | undefined;
|
|
533
|
-
children?:
|
|
533
|
+
children?: React.ReactNode;
|
|
534
534
|
classes?: (Partial<import("@mui/material").SvgIconClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
535
535
|
ref?: ((instance: SVGSVGElement | 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<SVGSVGElement> | null | undefined;
|
|
536
536
|
path?: string | undefined;
|
|
537
537
|
clipPath?: string | undefined;
|
|
538
538
|
mask?: string | undefined;
|
|
539
539
|
className?: string | undefined;
|
|
540
|
-
style?:
|
|
540
|
+
style?: React.CSSProperties | undefined;
|
|
541
541
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "action" | "disabled" | "primary" | "secondary" | "error" | "info" | "success" | "warning", import("@mui/material").SvgIconPropsColorOverrides> | undefined;
|
|
542
542
|
fontSize?: import("@mui/types").OverridableStringUnion<"inherit" | "large" | "medium" | "small", import("@mui/material").SvgIconPropsSizeOverrides> | undefined;
|
|
543
543
|
htmlColor?: string | undefined;
|
|
@@ -1012,7 +1012,7 @@ export declare const DefaultCore: {
|
|
|
1012
1012
|
onTransitionEnd?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
1013
1013
|
onTransitionEndCapture?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
1014
1014
|
key?: import("react").Key | null | undefined;
|
|
1015
|
-
component?:
|
|
1015
|
+
component?: React.ElementType | undefined;
|
|
1016
1016
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1017
1017
|
};
|
|
1018
1018
|
export declare const Small: {
|
|
@@ -1025,16 +1025,16 @@ export declare const Small: {
|
|
|
1025
1025
|
};
|
|
1026
1026
|
};
|
|
1027
1027
|
render: (args: {
|
|
1028
|
-
name?: ((props: SvgIconProps) =>
|
|
1028
|
+
name?: ((props: SvgIconProps) => React.JSX.Element) | undefined;
|
|
1029
1029
|
string?: number | string | undefined;
|
|
1030
|
-
children?:
|
|
1030
|
+
children?: React.ReactNode;
|
|
1031
1031
|
classes?: (Partial<import("@mui/material").SvgIconClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
1032
1032
|
ref?: ((instance: SVGSVGElement | 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<SVGSVGElement> | null | undefined;
|
|
1033
1033
|
path?: string | undefined;
|
|
1034
1034
|
clipPath?: string | undefined;
|
|
1035
1035
|
mask?: string | undefined;
|
|
1036
1036
|
className?: string | undefined;
|
|
1037
|
-
style?:
|
|
1037
|
+
style?: React.CSSProperties | undefined;
|
|
1038
1038
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "action" | "disabled" | "primary" | "secondary" | "error" | "info" | "success" | "warning", import("@mui/material").SvgIconPropsColorOverrides> | undefined;
|
|
1039
1039
|
fontSize?: import("@mui/types").OverridableStringUnion<"inherit" | "large" | "medium" | "small", import("@mui/material").SvgIconPropsSizeOverrides> | undefined;
|
|
1040
1040
|
htmlColor?: string | undefined;
|
|
@@ -1509,7 +1509,7 @@ export declare const Small: {
|
|
|
1509
1509
|
onTransitionEnd?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
1510
1510
|
onTransitionEndCapture?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
1511
1511
|
key?: import("react").Key | null | undefined;
|
|
1512
|
-
component?:
|
|
1512
|
+
component?: React.ElementType | undefined;
|
|
1513
1513
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1514
1514
|
};
|
|
1515
1515
|
export declare const SmallCore: {
|
|
@@ -1522,16 +1522,16 @@ export declare const SmallCore: {
|
|
|
1522
1522
|
};
|
|
1523
1523
|
};
|
|
1524
1524
|
render: (args: {
|
|
1525
|
-
name?: ((props: SvgIconProps) =>
|
|
1525
|
+
name?: ((props: SvgIconProps) => React.JSX.Element) | undefined;
|
|
1526
1526
|
string?: number | string | undefined;
|
|
1527
|
-
children?:
|
|
1527
|
+
children?: React.ReactNode;
|
|
1528
1528
|
classes?: (Partial<import("@mui/material").SvgIconClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
1529
1529
|
ref?: ((instance: SVGSVGElement | 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<SVGSVGElement> | null | undefined;
|
|
1530
1530
|
path?: string | undefined;
|
|
1531
1531
|
clipPath?: string | undefined;
|
|
1532
1532
|
mask?: string | undefined;
|
|
1533
1533
|
className?: string | undefined;
|
|
1534
|
-
style?:
|
|
1534
|
+
style?: React.CSSProperties | undefined;
|
|
1535
1535
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "action" | "disabled" | "primary" | "secondary" | "error" | "info" | "success" | "warning", import("@mui/material").SvgIconPropsColorOverrides> | undefined;
|
|
1536
1536
|
fontSize?: import("@mui/types").OverridableStringUnion<"inherit" | "large" | "medium" | "small", import("@mui/material").SvgIconPropsSizeOverrides> | undefined;
|
|
1537
1537
|
htmlColor?: string | undefined;
|
|
@@ -2006,6 +2006,6 @@ export declare const SmallCore: {
|
|
|
2006
2006
|
onTransitionEnd?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
2007
2007
|
onTransitionEndCapture?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
2008
2008
|
key?: import("react").Key | null | undefined;
|
|
2009
|
-
component?:
|
|
2009
|
+
component?: React.ElementType | undefined;
|
|
2010
2010
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2011
2011
|
};
|
|
@@ -13,16 +13,16 @@ export declare const Icons: {
|
|
|
13
13
|
};
|
|
14
14
|
};
|
|
15
15
|
render: (args: {
|
|
16
|
-
name?: ((props: import("@mui/material").SvgIconProps) =>
|
|
16
|
+
name?: ((props: import("@mui/material").SvgIconProps) => React.JSX.Element) | undefined;
|
|
17
17
|
string?: number | string | undefined;
|
|
18
|
-
children?:
|
|
18
|
+
children?: React.ReactNode;
|
|
19
19
|
classes?: (Partial<import("@mui/material").SvgIconClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
20
20
|
ref?: ((instance: SVGSVGElement | 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<SVGSVGElement> | null | undefined;
|
|
21
21
|
path?: string | undefined;
|
|
22
22
|
clipPath?: string | undefined;
|
|
23
23
|
mask?: string | undefined;
|
|
24
24
|
className?: string | undefined;
|
|
25
|
-
style?:
|
|
25
|
+
style?: React.CSSProperties | undefined;
|
|
26
26
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "action" | "disabled" | "primary" | "secondary" | "error" | "info" | "success" | "warning", import("@mui/material").SvgIconPropsColorOverrides> | undefined;
|
|
27
27
|
fontSize?: import("@mui/types").OverridableStringUnion<"inherit" | "large" | "medium" | "small", import("@mui/material").SvgIconPropsSizeOverrides> | undefined;
|
|
28
28
|
htmlColor?: string | undefined;
|
|
@@ -497,7 +497,7 @@ export declare const Icons: {
|
|
|
497
497
|
onTransitionEnd?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
498
498
|
onTransitionEndCapture?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
499
499
|
key?: import("react").Key | null | undefined;
|
|
500
|
-
component?:
|
|
500
|
+
component?: React.ElementType | undefined;
|
|
501
501
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
502
502
|
};
|
|
503
503
|
export declare const Ribbon: {
|
|
@@ -510,16 +510,16 @@ export declare const Ribbon: {
|
|
|
510
510
|
};
|
|
511
511
|
};
|
|
512
512
|
render: (args: {
|
|
513
|
-
name?: ((props: import("@mui/material").SvgIconProps) =>
|
|
513
|
+
name?: ((props: import("@mui/material").SvgIconProps) => React.JSX.Element) | undefined;
|
|
514
514
|
string?: number | string | undefined;
|
|
515
|
-
children?:
|
|
515
|
+
children?: React.ReactNode;
|
|
516
516
|
classes?: (Partial<import("@mui/material").SvgIconClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
517
517
|
ref?: ((instance: SVGSVGElement | 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<SVGSVGElement> | null | undefined;
|
|
518
518
|
path?: string | undefined;
|
|
519
519
|
clipPath?: string | undefined;
|
|
520
520
|
mask?: string | undefined;
|
|
521
521
|
className?: string | undefined;
|
|
522
|
-
style?:
|
|
522
|
+
style?: React.CSSProperties | undefined;
|
|
523
523
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "action" | "disabled" | "primary" | "secondary" | "error" | "info" | "success" | "warning", import("@mui/material").SvgIconPropsColorOverrides> | undefined;
|
|
524
524
|
fontSize?: import("@mui/types").OverridableStringUnion<"inherit" | "large" | "medium" | "small", import("@mui/material").SvgIconPropsSizeOverrides> | undefined;
|
|
525
525
|
htmlColor?: string | undefined;
|
|
@@ -994,7 +994,7 @@ export declare const Ribbon: {
|
|
|
994
994
|
onTransitionEnd?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
995
995
|
onTransitionEndCapture?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
996
996
|
key?: import("react").Key | null | undefined;
|
|
997
|
-
component?:
|
|
997
|
+
component?: React.ElementType | undefined;
|
|
998
998
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
999
999
|
};
|
|
1000
1000
|
/**
|
|
@@ -1010,16 +1010,16 @@ export declare const Small: {
|
|
|
1010
1010
|
};
|
|
1011
1011
|
};
|
|
1012
1012
|
render: (args: {
|
|
1013
|
-
name?: ((props: import("@mui/material").SvgIconProps) =>
|
|
1013
|
+
name?: ((props: import("@mui/material").SvgIconProps) => React.JSX.Element) | undefined;
|
|
1014
1014
|
string?: number | string | undefined;
|
|
1015
|
-
children?:
|
|
1015
|
+
children?: React.ReactNode;
|
|
1016
1016
|
classes?: (Partial<import("@mui/material").SvgIconClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
1017
1017
|
ref?: ((instance: SVGSVGElement | 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<SVGSVGElement> | null | undefined;
|
|
1018
1018
|
path?: string | undefined;
|
|
1019
1019
|
clipPath?: string | undefined;
|
|
1020
1020
|
mask?: string | undefined;
|
|
1021
1021
|
className?: string | undefined;
|
|
1022
|
-
style?:
|
|
1022
|
+
style?: React.CSSProperties | undefined;
|
|
1023
1023
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "action" | "disabled" | "primary" | "secondary" | "error" | "info" | "success" | "warning", import("@mui/material").SvgIconPropsColorOverrides> | undefined;
|
|
1024
1024
|
fontSize?: import("@mui/types").OverridableStringUnion<"inherit" | "large" | "medium" | "small", import("@mui/material").SvgIconPropsSizeOverrides> | undefined;
|
|
1025
1025
|
htmlColor?: string | undefined;
|
|
@@ -1494,7 +1494,7 @@ export declare const Small: {
|
|
|
1494
1494
|
onTransitionEnd?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
1495
1495
|
onTransitionEndCapture?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
1496
1496
|
key?: import("react").Key | null | undefined;
|
|
1497
|
-
component?:
|
|
1497
|
+
component?: React.ElementType | undefined;
|
|
1498
1498
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1499
1499
|
};
|
|
1500
1500
|
export declare const DarkTheme: {
|
|
@@ -1514,16 +1514,16 @@ export declare const DarkTheme: {
|
|
|
1514
1514
|
};
|
|
1515
1515
|
};
|
|
1516
1516
|
render: (args: {
|
|
1517
|
-
name?: ((props: import("@mui/material").SvgIconProps) =>
|
|
1517
|
+
name?: ((props: import("@mui/material").SvgIconProps) => React.JSX.Element) | undefined;
|
|
1518
1518
|
string?: number | string | undefined;
|
|
1519
|
-
children?:
|
|
1519
|
+
children?: React.ReactNode;
|
|
1520
1520
|
classes?: (Partial<import("@mui/material").SvgIconClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
1521
1521
|
ref?: ((instance: SVGSVGElement | 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<SVGSVGElement> | null | undefined;
|
|
1522
1522
|
path?: string | undefined;
|
|
1523
1523
|
clipPath?: string | undefined;
|
|
1524
1524
|
mask?: string | undefined;
|
|
1525
1525
|
className?: string | undefined;
|
|
1526
|
-
style?:
|
|
1526
|
+
style?: React.CSSProperties | undefined;
|
|
1527
1527
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "action" | "disabled" | "primary" | "secondary" | "error" | "info" | "success" | "warning", import("@mui/material").SvgIconPropsColorOverrides> | undefined;
|
|
1528
1528
|
fontSize?: import("@mui/types").OverridableStringUnion<"inherit" | "large" | "medium" | "small", import("@mui/material").SvgIconPropsSizeOverrides> | undefined;
|
|
1529
1529
|
htmlColor?: string | undefined;
|
|
@@ -1998,7 +1998,7 @@ export declare const DarkTheme: {
|
|
|
1998
1998
|
onTransitionEnd?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
1999
1999
|
onTransitionEndCapture?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
2000
2000
|
key?: import("react").Key | null | undefined;
|
|
2001
|
-
component?:
|
|
2001
|
+
component?: React.ElementType | undefined;
|
|
2002
2002
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2003
2003
|
};
|
|
2004
2004
|
export declare const LightTheme: {
|
|
@@ -2018,16 +2018,16 @@ export declare const LightTheme: {
|
|
|
2018
2018
|
};
|
|
2019
2019
|
};
|
|
2020
2020
|
render: (args: {
|
|
2021
|
-
name?: ((props: import("@mui/material").SvgIconProps) =>
|
|
2021
|
+
name?: ((props: import("@mui/material").SvgIconProps) => React.JSX.Element) | undefined;
|
|
2022
2022
|
string?: number | string | undefined;
|
|
2023
|
-
children?:
|
|
2023
|
+
children?: React.ReactNode;
|
|
2024
2024
|
classes?: (Partial<import("@mui/material").SvgIconClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
2025
2025
|
ref?: ((instance: SVGSVGElement | 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<SVGSVGElement> | null | undefined;
|
|
2026
2026
|
path?: string | undefined;
|
|
2027
2027
|
clipPath?: string | undefined;
|
|
2028
2028
|
mask?: string | undefined;
|
|
2029
2029
|
className?: string | undefined;
|
|
2030
|
-
style?:
|
|
2030
|
+
style?: React.CSSProperties | undefined;
|
|
2031
2031
|
color?: import("@mui/types").OverridableStringUnion<"inherit" | "action" | "disabled" | "primary" | "secondary" | "error" | "info" | "success" | "warning", import("@mui/material").SvgIconPropsColorOverrides> | undefined;
|
|
2032
2032
|
fontSize?: import("@mui/types").OverridableStringUnion<"inherit" | "large" | "medium" | "small", import("@mui/material").SvgIconPropsSizeOverrides> | undefined;
|
|
2033
2033
|
htmlColor?: string | undefined;
|
|
@@ -2502,6 +2502,6 @@ export declare const LightTheme: {
|
|
|
2502
2502
|
onTransitionEnd?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
2503
2503
|
onTransitionEndCapture?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
2504
2504
|
key?: import("react").Key | null | undefined;
|
|
2505
|
-
component?:
|
|
2505
|
+
component?: React.ElementType | undefined;
|
|
2506
2506
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2507
2507
|
};
|
|
@@ -10,6 +10,7 @@ declare const meta: {
|
|
|
10
10
|
title: string;
|
|
11
11
|
parameters: {
|
|
12
12
|
badges: BADGE[];
|
|
13
|
+
layout: string;
|
|
13
14
|
};
|
|
14
15
|
};
|
|
15
16
|
export default meta;
|
|
@@ -25,7 +26,7 @@ export declare const Default: {
|
|
|
25
26
|
};
|
|
26
27
|
};
|
|
27
28
|
render: (args: {
|
|
28
|
-
placeholderImage?:
|
|
29
|
+
placeholderImage?: React.ReactNode;
|
|
29
30
|
url?: string | undefined;
|
|
30
31
|
rounded?: boolean | undefined;
|
|
31
32
|
}) => import("react/jsx-runtime").JSX.Element;
|