@cgi-learning-hub/ui 1.12.0-dev.1771407294 → 1.12.0-dev.1773135444

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,6 +12,7 @@ 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';
15
16
  import { default as Breadcrumbs } from '@mui/material/Breadcrumbs';
16
17
  import { default as ButtonGroup } from '@mui/material/ButtonGroup';
17
18
  import { ButtonProps } from '@mui/material/Button';
@@ -80,6 +81,7 @@ import { default as Select } from '@mui/material/Select';
80
81
  import { SerializedError } from '@reduxjs/toolkit';
81
82
  import { default as Skeleton } from '@mui/material/Skeleton';
82
83
  import { default as Slide } from '@mui/material/Slide';
84
+ import { default as Slider } from '@mui/material/Slider';
83
85
  import { default as Snackbar } from '@mui/material/Snackbar';
84
86
  import { default as Stack } from '@mui/material/Stack';
85
87
  import { StackProps } from '@mui/material/Stack';
@@ -109,6 +111,7 @@ import { default as TabPanel } from '@mui/lab/TabPanel';
109
111
  import { default as Tabs } from '@mui/material/Tabs';
110
112
  import { default as TextField } from '@mui/material/TextField';
111
113
  import { TextFieldProps } from '@mui/material/TextField';
114
+ import { TimePickerProps as TimePickerProps_2 } from '@mui/x-date-pickers/TimePicker';
112
115
  import { default as ToggleButton } from '@mui/material/ToggleButton';
113
116
  import { default as ToggleButtonGroup } from '@mui/material/ToggleButtonGroup';
114
117
  import { default as Toolbar } from '@mui/material/Toolbar';
@@ -560,6 +563,8 @@ export { Skeleton }
560
563
 
561
564
  export { Slide }
562
565
 
566
+ export { Slider }
567
+
563
568
  export { Snackbar }
564
569
 
565
570
  export { Stack }
@@ -618,6 +623,12 @@ export { Tabs }
618
623
 
619
624
  export { TextField }
620
625
 
626
+ export declare const TimePicker: FC<TimePickerProps>;
627
+
628
+ export declare type TimePickerProps = {
629
+ adapterLocale?: string;
630
+ } & TimePickerProps_2;
631
+
621
632
  export { ToggleButton }
622
633
 
623
634
  export { ToggleButtonGroup }
@@ -652,18 +663,18 @@ export { useMediaQuery }
652
663
 
653
664
  export { Zoom }
654
665
 
655
- export declare const ZoomComponent: FC<ZoomComponentProps>;
666
+ export declare const ZoomControl: FC<ZoomControlProps>;
656
667
 
657
- declare interface ZoomComponentProps {
658
- opacity?: number;
659
- zoomLevel: number;
660
- zoomMaxLevel: number;
661
- zoomIn: () => void;
662
- zoomOut: () => void;
663
- resetZoom: () => void;
668
+ declare interface ZoomControlProps {
669
+ step?: number;
670
+ value: number;
671
+ onChange: (value: number) => void;
672
+ max?: number;
673
+ min?: number;
664
674
  label?: string;
675
+ opacity?: number;
665
676
  slotProps?: {
666
- boxStyle?: BoxProps;
677
+ root?: BoxProps_2;
667
678
  };
668
679
  }
669
680
 
@@ -735,6 +746,7 @@ export * from "@mui/material/RadioGroup";
735
746
  export * from "@mui/material/Select";
736
747
  export * from "@mui/material/Skeleton";
737
748
  export * from "@mui/material/Slide";
749
+ export * from "@mui/material/Slider";
738
750
  export * from "@mui/material/Snackbar";
739
751
  export * from "@mui/material/Stack";
740
752
  export * from "@mui/material/Step";