@movable/ui 0.20.1 → 0.22.0
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/lib/components/Dialog/InkDialog.d.ts +2 -1
- package/lib/components/InkRadioTiles/InkRadioTiles.d.ts +22 -0
- package/lib/components/InkRadioTiles/index.d.ts +1 -0
- package/lib/components/Switch/InkSwitch.d.ts +8 -0
- package/lib/components/Switch/index.d.ts +1 -0
- package/lib/components/index.d.ts +2 -0
- package/lib/index.d.ts +1 -1
- package/lib/index.mjs +1592 -1560
- package/lib/index.mjs.map +1 -1
- package/lib/theme/components/dialog.d.ts +0 -6
- package/lib/theme/components/stepper.d.ts +13 -8
- package/package.json +4 -1
|
@@ -3,8 +3,11 @@ import { StepOwnProps, StepButtonOwnProps } from '@mui/material';
|
|
|
3
3
|
declare const stepper: {
|
|
4
4
|
MuiStepper: {
|
|
5
5
|
styleOverrides: {
|
|
6
|
-
root: {
|
|
6
|
+
root: ({ theme }: {
|
|
7
|
+
theme: Theme;
|
|
8
|
+
}) => {
|
|
7
9
|
justifyContent: string;
|
|
10
|
+
gap: string;
|
|
8
11
|
};
|
|
9
12
|
};
|
|
10
13
|
};
|
|
@@ -14,28 +17,27 @@ declare const stepper: {
|
|
|
14
17
|
theme: Theme;
|
|
15
18
|
ownerState: StepOwnProps;
|
|
16
19
|
}) => {
|
|
20
|
+
padding: number;
|
|
21
|
+
whiteSpace: string;
|
|
17
22
|
'> .MuiStepButton-root': {
|
|
18
23
|
padding: string;
|
|
19
|
-
'&:disabled': {
|
|
20
|
-
backgroundColor: string;
|
|
21
|
-
};
|
|
22
24
|
'&.MuiButtonBase-root': {
|
|
23
25
|
'&:disabled, &:hover': {
|
|
24
26
|
backgroundColor: string;
|
|
25
27
|
};
|
|
26
28
|
'& .MuiStepLabel-labelContainer': {
|
|
27
29
|
color: string;
|
|
28
|
-
|
|
29
|
-
'& .MuiSvgIcon-root': {
|
|
30
|
-
display: string;
|
|
30
|
+
textTransform: string;
|
|
31
31
|
};
|
|
32
32
|
border: string;
|
|
33
33
|
'& .MuiIcon-root:not(.MuiIcon-colorSuccess):not(.MuiIcon-colorWarning):not(.MuiIcon-colorError)'?: {
|
|
34
34
|
color: string;
|
|
35
35
|
} | undefined;
|
|
36
|
+
boxSizing: string;
|
|
37
|
+
width: string;
|
|
38
|
+
margin: number;
|
|
36
39
|
backgroundColor: string;
|
|
37
40
|
borderRadius: number;
|
|
38
|
-
outline: string;
|
|
39
41
|
};
|
|
40
42
|
'@font-face'?: import("@mui/material/styles/createTypography").Fontface | import("@mui/material/styles/createTypography").Fontface[] | undefined;
|
|
41
43
|
accentColor?: import("csstype").Property.AccentColor | undefined;
|
|
@@ -851,6 +853,9 @@ declare const stepper: {
|
|
|
851
853
|
};
|
|
852
854
|
MuiStepConnector: {
|
|
853
855
|
styleOverrides: {
|
|
856
|
+
root: {
|
|
857
|
+
flex: string;
|
|
858
|
+
};
|
|
854
859
|
line: {
|
|
855
860
|
borderColor: string;
|
|
856
861
|
borderWidth: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@movable/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.22.0",
|
|
4
4
|
"description": "Movable Ink's shared MUI components and MUI theme for our vite applications",
|
|
5
5
|
"module": "lib/index.mjs",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -96,5 +96,8 @@
|
|
|
96
96
|
},
|
|
97
97
|
"volta": {
|
|
98
98
|
"node": "18.17.0"
|
|
99
|
+
},
|
|
100
|
+
"dependencies": {
|
|
101
|
+
"@mui/icons-material": "^5.15.6"
|
|
99
102
|
}
|
|
100
103
|
}
|