@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.
@@ -17,13 +17,7 @@ declare const dialog: {
17
17
  };
18
18
  styleOverrides: {
19
19
  root: {
20
- display: string;
21
- alignItems: string;
22
- justifyContent: string;
23
20
  fontWeight: number;
24
- '& .MuiIconButton-root': {
25
- paddingRight: number;
26
- };
27
21
  };
28
22
  };
29
23
  };
@@ -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.20.1",
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
  }