@cgi-learning-hub/ui 1.12.0 → 1.13.0-dev.1775747511
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 +9406 -3202
- package/dist/index.d.ts +33 -6
- package/dist/index.es.js +9406 -3202
- package/package.json +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,9 @@ 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';
|
|
17
|
+
import { default as Button } from '@mui/material/Button';
|
|
16
18
|
import { default as ButtonGroup } from '@mui/material/ButtonGroup';
|
|
17
19
|
import { ButtonProps } from '@mui/material/Button';
|
|
18
20
|
import { default as Card } from '@mui/material/Card';
|
|
@@ -80,6 +82,7 @@ import { default as Select } from '@mui/material/Select';
|
|
|
80
82
|
import { SerializedError } from '@reduxjs/toolkit';
|
|
81
83
|
import { default as Skeleton } from '@mui/material/Skeleton';
|
|
82
84
|
import { default as Slide } from '@mui/material/Slide';
|
|
85
|
+
import { default as Slider } from '@mui/material/Slider';
|
|
83
86
|
import { default as Snackbar } from '@mui/material/Snackbar';
|
|
84
87
|
import { default as Stack } from '@mui/material/Stack';
|
|
85
88
|
import { StackProps } from '@mui/material/Stack';
|
|
@@ -109,6 +112,7 @@ import { default as TabPanel } from '@mui/lab/TabPanel';
|
|
|
109
112
|
import { default as Tabs } from '@mui/material/Tabs';
|
|
110
113
|
import { default as TextField } from '@mui/material/TextField';
|
|
111
114
|
import { TextFieldProps } from '@mui/material/TextField';
|
|
115
|
+
import { TimePickerProps as TimePickerProps_2 } from '@mui/x-date-pickers/TimePicker';
|
|
112
116
|
import { default as ToggleButton } from '@mui/material/ToggleButton';
|
|
113
117
|
import { default as ToggleButtonGroup } from '@mui/material/ToggleButtonGroup';
|
|
114
118
|
import { default as Toolbar } from '@mui/material/Toolbar';
|
|
@@ -170,12 +174,10 @@ export { Box }
|
|
|
170
174
|
|
|
171
175
|
export { Breadcrumbs }
|
|
172
176
|
|
|
173
|
-
export
|
|
177
|
+
export { Button }
|
|
174
178
|
|
|
175
179
|
export { ButtonGroup }
|
|
176
180
|
|
|
177
|
-
export { ButtonProps }
|
|
178
|
-
|
|
179
181
|
export { Card }
|
|
180
182
|
|
|
181
183
|
export { CardActionArea }
|
|
@@ -324,8 +326,8 @@ export declare type EmptyStateProps = ({
|
|
|
324
326
|
imageSrc: string;
|
|
325
327
|
}) & {
|
|
326
328
|
imageHeight?: string | number;
|
|
327
|
-
title:
|
|
328
|
-
description?:
|
|
329
|
+
title: ReactNode;
|
|
330
|
+
description?: ReactNode;
|
|
329
331
|
footer?: ReactNode;
|
|
330
332
|
slotProps?: {
|
|
331
333
|
root?: StackProps;
|
|
@@ -505,7 +507,7 @@ export { Paper }
|
|
|
505
507
|
|
|
506
508
|
export declare const PasswordInput: FC<PasswordInputProps>;
|
|
507
509
|
|
|
508
|
-
export declare type PasswordInputProps = Omit<TextFieldProps, "
|
|
510
|
+
export declare type PasswordInputProps = Omit<TextFieldProps, "type">;
|
|
509
511
|
|
|
510
512
|
export declare type PickerBackGroundBoxProps = {
|
|
511
513
|
disabled?: boolean;
|
|
@@ -560,6 +562,8 @@ export { Skeleton }
|
|
|
560
562
|
|
|
561
563
|
export { Slide }
|
|
562
564
|
|
|
565
|
+
export { Slider }
|
|
566
|
+
|
|
563
567
|
export { Snackbar }
|
|
564
568
|
|
|
565
569
|
export { Stack }
|
|
@@ -618,6 +622,12 @@ export { Tabs }
|
|
|
618
622
|
|
|
619
623
|
export { TextField }
|
|
620
624
|
|
|
625
|
+
export declare const TimePicker: FC<TimePickerProps>;
|
|
626
|
+
|
|
627
|
+
export declare type TimePickerProps = {
|
|
628
|
+
adapterLocale?: string;
|
|
629
|
+
} & TimePickerProps_2;
|
|
630
|
+
|
|
621
631
|
export { ToggleButton }
|
|
622
632
|
|
|
623
633
|
export { ToggleButtonGroup }
|
|
@@ -652,6 +662,21 @@ export { useMediaQuery }
|
|
|
652
662
|
|
|
653
663
|
export { Zoom }
|
|
654
664
|
|
|
665
|
+
export declare const ZoomControl: FC<ZoomControlProps>;
|
|
666
|
+
|
|
667
|
+
declare interface ZoomControlProps {
|
|
668
|
+
step?: number;
|
|
669
|
+
value: number;
|
|
670
|
+
onChange: (value: number) => void;
|
|
671
|
+
max?: number;
|
|
672
|
+
min?: number;
|
|
673
|
+
label?: string;
|
|
674
|
+
opacity?: number;
|
|
675
|
+
slotProps?: {
|
|
676
|
+
root?: BoxProps_2;
|
|
677
|
+
};
|
|
678
|
+
}
|
|
679
|
+
|
|
655
680
|
|
|
656
681
|
export * from "@mui/lab/TabContext";
|
|
657
682
|
export * from "@mui/lab/TabList";
|
|
@@ -668,6 +693,7 @@ export * from "@mui/material/Backdrop";
|
|
|
668
693
|
export * from "@mui/material/Badge";
|
|
669
694
|
export * from "@mui/material/Box";
|
|
670
695
|
export * from "@mui/material/Breadcrumbs";
|
|
696
|
+
export * from "@mui/material/Button";
|
|
671
697
|
export * from "@mui/material/ButtonGroup";
|
|
672
698
|
export * from "@mui/material/Card";
|
|
673
699
|
export * from "@mui/material/CardActionArea";
|
|
@@ -720,6 +746,7 @@ export * from "@mui/material/RadioGroup";
|
|
|
720
746
|
export * from "@mui/material/Select";
|
|
721
747
|
export * from "@mui/material/Skeleton";
|
|
722
748
|
export * from "@mui/material/Slide";
|
|
749
|
+
export * from "@mui/material/Slider";
|
|
723
750
|
export * from "@mui/material/Snackbar";
|
|
724
751
|
export * from "@mui/material/Stack";
|
|
725
752
|
export * from "@mui/material/Step";
|