@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("./Box.types").BoxProps) => 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;
|
|
@@ -25,9 +26,9 @@ export declare const Default: {
|
|
|
25
26
|
};
|
|
26
27
|
};
|
|
27
28
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
28
|
-
children?:
|
|
29
|
-
component?:
|
|
30
|
-
ref?:
|
|
29
|
+
children?: React.ReactNode;
|
|
30
|
+
component?: React.ElementType | undefined;
|
|
31
|
+
ref?: React.Ref<unknown> | undefined;
|
|
31
32
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
32
33
|
color?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Color | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Color | undefined>);
|
|
33
34
|
fontSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined>);
|
|
@@ -133,7 +134,7 @@ export declare const Default: {
|
|
|
133
134
|
typography?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | undefined>);
|
|
134
135
|
displayPrint?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined>);
|
|
135
136
|
className?: string | undefined;
|
|
136
|
-
style?:
|
|
137
|
+
style?: React.CSSProperties | undefined;
|
|
137
138
|
classes?: Partial<import("@mui/material").ClassNameMap<never>> | undefined;
|
|
138
139
|
slot?: string | undefined;
|
|
139
140
|
title?: string | undefined;
|
|
@@ -399,9 +400,9 @@ export declare const Default: {
|
|
|
399
400
|
is?: string | undefined;
|
|
400
401
|
}>) => Promise<void>;
|
|
401
402
|
render: (args: {
|
|
402
|
-
children?:
|
|
403
|
-
component?:
|
|
404
|
-
ref?:
|
|
403
|
+
children?: React.ReactNode;
|
|
404
|
+
component?: React.ElementType | undefined;
|
|
405
|
+
ref?: React.Ref<unknown> | undefined;
|
|
405
406
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
406
407
|
color?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Color | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Color | undefined>);
|
|
407
408
|
fontSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined>);
|
|
@@ -507,7 +508,7 @@ export declare const Default: {
|
|
|
507
508
|
typography?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | undefined>);
|
|
508
509
|
displayPrint?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined>);
|
|
509
510
|
className?: string | undefined;
|
|
510
|
-
style?:
|
|
511
|
+
style?: React.CSSProperties | undefined;
|
|
511
512
|
classes?: Partial<import("@mui/material").ClassNameMap<never>> | undefined;
|
|
512
513
|
slot?: string | undefined;
|
|
513
514
|
title?: string | undefined;
|
|
@@ -783,9 +784,9 @@ export declare const Padding: {
|
|
|
783
784
|
};
|
|
784
785
|
};
|
|
785
786
|
render: (args: {
|
|
786
|
-
children?:
|
|
787
|
-
component?:
|
|
788
|
-
ref?:
|
|
787
|
+
children?: React.ReactNode;
|
|
788
|
+
component?: React.ElementType | undefined;
|
|
789
|
+
ref?: React.Ref<unknown> | undefined;
|
|
789
790
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
790
791
|
color?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Color | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Color | undefined>);
|
|
791
792
|
fontSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined>);
|
|
@@ -891,7 +892,7 @@ export declare const Padding: {
|
|
|
891
892
|
typography?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | undefined>);
|
|
892
893
|
displayPrint?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined>);
|
|
893
894
|
className?: string | undefined;
|
|
894
|
-
style?:
|
|
895
|
+
style?: React.CSSProperties | undefined;
|
|
895
896
|
classes?: Partial<import("@mui/material").ClassNameMap<never>> | undefined;
|
|
896
897
|
slot?: string | undefined;
|
|
897
898
|
title?: string | undefined;
|
|
@@ -1164,9 +1165,9 @@ export declare const Flexbox: {
|
|
|
1164
1165
|
alignItems: "center";
|
|
1165
1166
|
};
|
|
1166
1167
|
render: (args: {
|
|
1167
|
-
children?:
|
|
1168
|
-
component?:
|
|
1169
|
-
ref?:
|
|
1168
|
+
children?: React.ReactNode;
|
|
1169
|
+
component?: React.ElementType | undefined;
|
|
1170
|
+
ref?: React.Ref<unknown> | undefined;
|
|
1170
1171
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
1171
1172
|
color?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Color | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Color | undefined>);
|
|
1172
1173
|
fontSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined>);
|
|
@@ -1272,7 +1273,7 @@ export declare const Flexbox: {
|
|
|
1272
1273
|
typography?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | undefined>);
|
|
1273
1274
|
displayPrint?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined>);
|
|
1274
1275
|
className?: string | undefined;
|
|
1275
|
-
style?:
|
|
1276
|
+
style?: React.CSSProperties | undefined;
|
|
1276
1277
|
classes?: Partial<import("@mui/material").ClassNameMap<never>> | undefined;
|
|
1277
1278
|
slot?: string | undefined;
|
|
1278
1279
|
title?: string | undefined;
|
|
@@ -10,16 +10,17 @@ declare const meta: {
|
|
|
10
10
|
component: (props: import("./Breadcrumbs.types").BreadcrumbsProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
parameters: {
|
|
12
12
|
badges: BADGE[];
|
|
13
|
+
layout: string;
|
|
13
14
|
};
|
|
14
15
|
};
|
|
15
16
|
export default meta;
|
|
16
17
|
export declare const Default: {
|
|
17
18
|
args: {};
|
|
18
19
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
19
|
-
children?:
|
|
20
|
+
children?: React.ReactNode;
|
|
20
21
|
classes?: (Partial<import("@mui/material").BreadcrumbsClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
21
22
|
slots?: {
|
|
22
|
-
CollapsedIcon?:
|
|
23
|
+
CollapsedIcon?: React.ElementType;
|
|
23
24
|
} | undefined;
|
|
24
25
|
slotProps?: {
|
|
25
26
|
collapsedIcon?: import("@mui/utils").SlotComponentProps<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
|
|
@@ -30,10 +31,10 @@ export declare const Default: {
|
|
|
30
31
|
itemsAfterCollapse?: number | undefined;
|
|
31
32
|
itemsBeforeCollapse?: number | undefined;
|
|
32
33
|
maxItems?: number | undefined;
|
|
33
|
-
separator?:
|
|
34
|
+
separator?: React.ReactNode;
|
|
34
35
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
35
36
|
className?: string | undefined;
|
|
36
|
-
style?:
|
|
37
|
+
style?: React.CSSProperties | undefined;
|
|
37
38
|
ref?: ((instance: HTMLElement | 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<HTMLElement> | null | undefined;
|
|
38
39
|
color?: string | undefined;
|
|
39
40
|
slot?: string | undefined;
|
|
@@ -298,13 +299,13 @@ export declare const Default: {
|
|
|
298
299
|
unselectable?: "on" | "off" | undefined;
|
|
299
300
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
300
301
|
is?: string | undefined;
|
|
301
|
-
component?:
|
|
302
|
+
component?: React.ElementType | undefined;
|
|
302
303
|
}>) => Promise<void>;
|
|
303
304
|
render: (args: {
|
|
304
|
-
children?:
|
|
305
|
+
children?: React.ReactNode;
|
|
305
306
|
classes?: (Partial<import("@mui/material").BreadcrumbsClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
306
307
|
slots?: {
|
|
307
|
-
CollapsedIcon?:
|
|
308
|
+
CollapsedIcon?: React.ElementType;
|
|
308
309
|
} | undefined;
|
|
309
310
|
slotProps?: {
|
|
310
311
|
collapsedIcon?: import("@mui/utils").SlotComponentProps<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
|
|
@@ -315,10 +316,10 @@ export declare const Default: {
|
|
|
315
316
|
itemsAfterCollapse?: number | undefined;
|
|
316
317
|
itemsBeforeCollapse?: number | undefined;
|
|
317
318
|
maxItems?: number | undefined;
|
|
318
|
-
separator?:
|
|
319
|
+
separator?: React.ReactNode;
|
|
319
320
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
320
321
|
className?: string | undefined;
|
|
321
|
-
style?:
|
|
322
|
+
style?: React.CSSProperties | undefined;
|
|
322
323
|
ref?: ((instance: HTMLElement | 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<HTMLElement> | null | undefined;
|
|
323
324
|
color?: string | undefined;
|
|
324
325
|
slot?: string | undefined;
|
|
@@ -583,7 +584,7 @@ export declare const Default: {
|
|
|
583
584
|
unselectable?: "on" | "off" | undefined;
|
|
584
585
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
585
586
|
is?: string | undefined;
|
|
586
|
-
component?:
|
|
587
|
+
component?: React.ElementType | undefined;
|
|
587
588
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
588
589
|
};
|
|
589
590
|
export declare const Collapsed: {
|
|
@@ -591,10 +592,10 @@ export declare const Collapsed: {
|
|
|
591
592
|
maxItems: number;
|
|
592
593
|
};
|
|
593
594
|
render: (args: {
|
|
594
|
-
children?:
|
|
595
|
+
children?: React.ReactNode;
|
|
595
596
|
classes?: (Partial<import("@mui/material").BreadcrumbsClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
596
597
|
slots?: {
|
|
597
|
-
CollapsedIcon?:
|
|
598
|
+
CollapsedIcon?: React.ElementType;
|
|
598
599
|
} | undefined;
|
|
599
600
|
slotProps?: {
|
|
600
601
|
collapsedIcon?: import("@mui/utils").SlotComponentProps<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
|
|
@@ -605,10 +606,10 @@ export declare const Collapsed: {
|
|
|
605
606
|
itemsAfterCollapse?: number | undefined;
|
|
606
607
|
itemsBeforeCollapse?: number | undefined;
|
|
607
608
|
maxItems?: number | undefined;
|
|
608
|
-
separator?:
|
|
609
|
+
separator?: React.ReactNode;
|
|
609
610
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
610
611
|
className?: string | undefined;
|
|
611
|
-
style?:
|
|
612
|
+
style?: React.CSSProperties | undefined;
|
|
612
613
|
ref?: ((instance: HTMLElement | 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<HTMLElement> | null | undefined;
|
|
613
614
|
color?: string | undefined;
|
|
614
615
|
slot?: string | undefined;
|
|
@@ -873,6 +874,6 @@ export declare const Collapsed: {
|
|
|
873
874
|
unselectable?: "on" | "off" | undefined;
|
|
874
875
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
875
876
|
is?: string | undefined;
|
|
876
|
-
component?:
|
|
877
|
+
component?: React.ElementType | undefined;
|
|
877
878
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
878
879
|
};
|