@cgi-learning-hub/ui 1.13.0-dev.1775748095 → 1.13.0-dev.1777458343

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/index.d.ts CHANGED
@@ -12,7 +12,6 @@ import { BackdropProps } from '@mui/material/Backdrop';
12
12
  import { default as Badge } from '@mui/material/Badge';
13
13
  import { default as Box } from '@mui/material/Box';
14
14
  import { BoxProps } from '@mui/material/Box';
15
- import { BoxProps as BoxProps_2 } from '@mui/material';
16
15
  import { default as Breadcrumbs } from '@mui/material/Breadcrumbs';
17
16
  import { default as Button } from '@mui/material/Button';
18
17
  import { default as ButtonGroup } from '@mui/material/ButtonGroup';
@@ -119,7 +118,6 @@ import { default as Toolbar } from '@mui/material/Toolbar';
119
118
  import { default as Tooltip } from '@mui/material/Tooltip';
120
119
  import { TooltipProps } from '@mui/material/Tooltip';
121
120
  import { TreeItemProps } from '@mui/x-tree-view/TreeItem';
122
- import { TreeViewBaseItem } from '@mui/x-tree-view/models/items';
123
121
  import { default as Typography } from '@mui/material/Typography';
124
122
  import { TypographyProps } from '@mui/material/Typography';
125
123
  import { default as useMediaQuery } from '@mui/material/useMediaQuery';
@@ -235,15 +233,13 @@ export declare interface CustomFile {
235
233
 
236
234
  export declare type CustomSVGProps = SVGAttributes<SVGSVGElement>;
237
235
 
238
- export declare type CustomTreeViewItem = TreeViewBaseItem<CustomTreeViewItemProps>;
239
-
240
- export declare interface CustomTreeViewItemProps {
236
+ export declare type CustomTreeViewItem = {
241
237
  internalId: string;
242
238
  label: string;
243
239
  iconType?: IconType;
244
240
  customIcon?: SvgIconComponent;
245
241
  children?: CustomTreeViewItem[];
246
- }
242
+ };
247
243
 
248
244
  export declare const DatePicker: FC<DatePickerProps>;
249
245
 
@@ -641,7 +637,7 @@ declare interface ZoomControlProps {
641
637
  label?: string;
642
638
  opacity?: number;
643
639
  slotProps?: {
644
- root?: BoxProps_2;
640
+ root?: BoxProps;
645
641
  };
646
642
  }
647
643
 
@@ -753,39 +749,3 @@ declare module "@mui/x-tree-view/TreeItem" {
753
749
  itemData?: CustomTreeViewItem;
754
750
  }
755
751
  }
756
-
757
-
758
- declare module "@mui/material/styles" {
759
- interface SimplePaletteColorOptions {
760
- lighter?: string;
761
- light?: string;
762
- main: string;
763
- dark?: string;
764
- darker?: string;
765
- contrastText?: string;
766
- }
767
- interface PaletteColor {
768
- lighter?: string;
769
- light: string;
770
- main: string;
771
- dark: string;
772
- darker?: string;
773
- contrastText: string;
774
- }
775
- interface Color extends Partial<PaletteColor> {
776
- 50: string;
777
- 100: string;
778
- 200: string;
779
- 300: string;
780
- 400: string;
781
- 500: string;
782
- 600: string;
783
- 700: string;
784
- 800: string;
785
- 900: string;
786
- A100: string;
787
- A200: string;
788
- A400: string;
789
- A700: string;
790
- }
791
- }