@cgi-learning-hub/ui 1.12.0-dev.1771430232 → 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.cjs.js +10320 -4317
- package/dist/index.d.ts +11 -0
- package/dist/index.es.js +10320 -4317
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -81,6 +81,7 @@ import { default as Select } from '@mui/material/Select';
|
|
|
81
81
|
import { SerializedError } from '@reduxjs/toolkit';
|
|
82
82
|
import { default as Skeleton } from '@mui/material/Skeleton';
|
|
83
83
|
import { default as Slide } from '@mui/material/Slide';
|
|
84
|
+
import { default as Slider } from '@mui/material/Slider';
|
|
84
85
|
import { default as Snackbar } from '@mui/material/Snackbar';
|
|
85
86
|
import { default as Stack } from '@mui/material/Stack';
|
|
86
87
|
import { StackProps } from '@mui/material/Stack';
|
|
@@ -110,6 +111,7 @@ import { default as TabPanel } from '@mui/lab/TabPanel';
|
|
|
110
111
|
import { default as Tabs } from '@mui/material/Tabs';
|
|
111
112
|
import { default as TextField } from '@mui/material/TextField';
|
|
112
113
|
import { TextFieldProps } from '@mui/material/TextField';
|
|
114
|
+
import { TimePickerProps as TimePickerProps_2 } from '@mui/x-date-pickers/TimePicker';
|
|
113
115
|
import { default as ToggleButton } from '@mui/material/ToggleButton';
|
|
114
116
|
import { default as ToggleButtonGroup } from '@mui/material/ToggleButtonGroup';
|
|
115
117
|
import { default as Toolbar } from '@mui/material/Toolbar';
|
|
@@ -561,6 +563,8 @@ export { Skeleton }
|
|
|
561
563
|
|
|
562
564
|
export { Slide }
|
|
563
565
|
|
|
566
|
+
export { Slider }
|
|
567
|
+
|
|
564
568
|
export { Snackbar }
|
|
565
569
|
|
|
566
570
|
export { Stack }
|
|
@@ -619,6 +623,12 @@ export { Tabs }
|
|
|
619
623
|
|
|
620
624
|
export { TextField }
|
|
621
625
|
|
|
626
|
+
export declare const TimePicker: FC<TimePickerProps>;
|
|
627
|
+
|
|
628
|
+
export declare type TimePickerProps = {
|
|
629
|
+
adapterLocale?: string;
|
|
630
|
+
} & TimePickerProps_2;
|
|
631
|
+
|
|
622
632
|
export { ToggleButton }
|
|
623
633
|
|
|
624
634
|
export { ToggleButtonGroup }
|
|
@@ -736,6 +746,7 @@ export * from "@mui/material/RadioGroup";
|
|
|
736
746
|
export * from "@mui/material/Select";
|
|
737
747
|
export * from "@mui/material/Skeleton";
|
|
738
748
|
export * from "@mui/material/Slide";
|
|
749
|
+
export * from "@mui/material/Slider";
|
|
739
750
|
export * from "@mui/material/Snackbar";
|
|
740
751
|
export * from "@mui/material/Stack";
|
|
741
752
|
export * from "@mui/material/Step";
|