@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.
Files changed (47) hide show
  1. package/dist/Accordion/Accordion.stories.d.ts +313 -20
  2. package/dist/AccordionDetails/AccordionDetails.stories.d.ts +2 -2
  3. package/dist/AccordionPanel/AccordionPanel.stories.d.ts +5 -5
  4. package/dist/AccordionSummary/AccordionSummary.stories.d.ts +27 -27
  5. package/dist/ActivityLog/ActivityLog.stories.d.ts +19 -1
  6. package/dist/AppBar/AppBar.stories.d.ts +860 -19
  7. package/dist/Autocomplete/Autocomplete.stories.d.ts +480 -126
  8. package/dist/Avatar/Avatar.stories.d.ts +45 -45
  9. package/dist/AvatarGroup/AvatarGroup.stories.d.ts +49 -48
  10. package/dist/BottomListButton/BottomListButton.stories.d.ts +18 -18
  11. package/dist/Box/Box.stories.d.ts +17 -16
  12. package/dist/Breadcrumbs/Breadcrumbs.stories.d.ts +16 -15
  13. package/dist/Button/Button.stories.d.ts +161 -160
  14. package/dist/Card/Card.stories.d.ts +7 -6
  15. package/dist/Checkbox/Checkbox.stories.d.ts +71 -70
  16. package/dist/Chip/Chip.stories.d.ts +37 -36
  17. package/dist/CssBaseline/CssBaseline.stories.d.ts +2 -2
  18. package/dist/DatePicker/DatePicker.stories.d.ts +1 -0
  19. package/dist/DateRangePicker/DateRangePicker.stories.d.ts +16 -15
  20. package/dist/Dialog/Dialog.stories.d.ts +41 -40
  21. package/dist/Divider/Divider.stories.d.ts +285 -6
  22. package/dist/Drawer/Drawer.stories.d.ts +21 -21
  23. package/dist/DrawerMenu/DrawerMenu.stories.d.ts +325 -27
  24. package/dist/Dropdown/Dropdown.stories.d.ts +217 -216
  25. package/dist/EmptyState/EmptyState.stories.d.ts +1 -0
  26. package/dist/FooterActions/FooterActions.stories.d.ts +11 -5
  27. package/dist/FormBody/FormBody.stories.d.ts +10 -1
  28. package/dist/FormContainer/FormContainer.stories.d.ts +11 -1
  29. package/dist/FormGroup/FormGroup.stories.d.ts +5 -4
  30. package/dist/FormHeader/FormHeader.stories.d.ts +18 -2
  31. package/dist/Grid/Grid.stories.d.ts +389 -0
  32. package/dist/HeaderToolbar/HeaderToolbar.stories.d.ts +326 -40
  33. package/dist/Icon/Icon.stories.d.ts +13 -12
  34. package/dist/IconButton/IconButton.stories.d.ts +21 -20
  35. package/dist/Icons/doctype-icons.stories.d.ts +16 -16
  36. package/dist/Icons/leap-icons.stories.d.ts +20 -20
  37. package/dist/ImageUpload/ImageUpload.stories.d.ts +2 -1
  38. package/dist/Input/Input.stories.d.ts +409 -340
  39. package/dist/InputLabel/InputLabel.stories.d.ts +1 -0
  40. package/dist/index.esm.js +1 -1
  41. package/dist/index.esm.js.map +1 -1
  42. package/dist/index.js +1 -1
  43. package/dist/index.js.map +1 -1
  44. package/dist/stories/resources/tokensColorsLeap.d.ts +2 -2
  45. package/dist/stories/resources/typographyLeapDesktop.d.ts +2 -2
  46. package/dist/stories/resources/typographyLeapWeb.d.ts +2 -2
  47. 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?: import("react").ReactNode;
29
- component?: import("react").ElementType | undefined;
30
- ref?: import("react").Ref<unknown> | undefined;
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?: import("react").CSSProperties | undefined;
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?: import("react").ReactNode;
403
- component?: import("react").ElementType | undefined;
404
- ref?: import("react").Ref<unknown> | undefined;
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?: import("react").CSSProperties | undefined;
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?: import("react").ReactNode;
787
- component?: import("react").ElementType | undefined;
788
- ref?: import("react").Ref<unknown> | undefined;
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?: import("react").CSSProperties | undefined;
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?: import("react").ReactNode;
1168
- component?: import("react").ElementType | undefined;
1169
- ref?: import("react").Ref<unknown> | undefined;
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?: import("react").CSSProperties | undefined;
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?: import("react").ReactNode;
20
+ children?: React.ReactNode;
20
21
  classes?: (Partial<import("@mui/material").BreadcrumbsClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
21
22
  slots?: {
22
- CollapsedIcon?: import("react").ElementType;
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?: import("react").ReactNode;
34
+ separator?: React.ReactNode;
34
35
  sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
35
36
  className?: string | undefined;
36
- style?: import("react").CSSProperties | undefined;
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?: import("react").ElementType | undefined;
302
+ component?: React.ElementType | undefined;
302
303
  }>) => Promise<void>;
303
304
  render: (args: {
304
- children?: import("react").ReactNode;
305
+ children?: React.ReactNode;
305
306
  classes?: (Partial<import("@mui/material").BreadcrumbsClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
306
307
  slots?: {
307
- CollapsedIcon?: import("react").ElementType;
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?: import("react").ReactNode;
319
+ separator?: React.ReactNode;
319
320
  sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
320
321
  className?: string | undefined;
321
- style?: import("react").CSSProperties | undefined;
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?: import("react").ElementType | undefined;
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?: import("react").ReactNode;
595
+ children?: React.ReactNode;
595
596
  classes?: (Partial<import("@mui/material").BreadcrumbsClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
596
597
  slots?: {
597
- CollapsedIcon?: import("react").ElementType;
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?: import("react").ReactNode;
609
+ separator?: React.ReactNode;
609
610
  sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
610
611
  className?: string | undefined;
611
- style?: import("react").CSSProperties | undefined;
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?: import("react").ElementType | undefined;
877
+ component?: React.ElementType | undefined;
877
878
  }) => import("react/jsx-runtime").JSX.Element;
878
879
  };