@movable/ui 1.6.4 → 1.7.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 +3 -2
- package/lib/index.mjs +1118 -1081
- package/lib/index.mjs.map +1 -1
- package/lib/theme/components/autocomplete.d.ts +12 -0
- package/lib/theme/components/form.d.ts +37 -0
- package/package.json +1 -1
|
@@ -19,6 +19,18 @@ declare const autocomplete: {
|
|
|
19
19
|
cursor: string;
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
|
+
option: ({ theme }: {
|
|
23
|
+
theme: Theme;
|
|
24
|
+
}) => {
|
|
25
|
+
'&.MuiAutocomplete-option.MuiAutocomplete-option': {
|
|
26
|
+
'&.Mui-focused': {
|
|
27
|
+
backgroundColor: string | undefined;
|
|
28
|
+
};
|
|
29
|
+
'&[aria-selected="true"]': {
|
|
30
|
+
backgroundColor: string | undefined;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
};
|
|
22
34
|
inputRoot: ({ theme }: {
|
|
23
35
|
theme: Theme;
|
|
24
36
|
}) => {
|
|
@@ -37,6 +37,7 @@ declare const form: {
|
|
|
37
37
|
};
|
|
38
38
|
'&.Mui-disabled': {
|
|
39
39
|
color: string;
|
|
40
|
+
cursor: string;
|
|
40
41
|
};
|
|
41
42
|
'&.Mui-error': {
|
|
42
43
|
color: string;
|
|
@@ -65,6 +66,7 @@ declare const form: {
|
|
|
65
66
|
};
|
|
66
67
|
'&.Mui-disabled': {
|
|
67
68
|
color: string;
|
|
69
|
+
cursor: string;
|
|
68
70
|
};
|
|
69
71
|
'&.Mui-error': {
|
|
70
72
|
color: string;
|
|
@@ -96,6 +98,7 @@ declare const form: {
|
|
|
96
98
|
};
|
|
97
99
|
'&.Mui-disabled': {
|
|
98
100
|
color: string;
|
|
101
|
+
cursor: string;
|
|
99
102
|
};
|
|
100
103
|
'&.Mui-error': {
|
|
101
104
|
color: string;
|
|
@@ -209,5 +212,39 @@ declare const form: {
|
|
|
209
212
|
};
|
|
210
213
|
};
|
|
211
214
|
};
|
|
215
|
+
MuiCheckbox: {
|
|
216
|
+
defaultProps: {
|
|
217
|
+
disableRipple: boolean;
|
|
218
|
+
};
|
|
219
|
+
styleOverrides: {
|
|
220
|
+
root: ({ theme }: {
|
|
221
|
+
theme: Theme;
|
|
222
|
+
}) => {
|
|
223
|
+
'&.Mui-disabled': {
|
|
224
|
+
color: string;
|
|
225
|
+
};
|
|
226
|
+
'&.MuiCheckbox-root.MuiCheckbox-sizeSmall + .MuiFormControlLabel-label, &.MuiRadio-root.MuiRadio-sizeSmall + .MuiFormControlLabel-label': {
|
|
227
|
+
fontSize: import("csstype").Property.FontSize<string | number> | undefined;
|
|
228
|
+
};
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
};
|
|
232
|
+
MuiRadio: {
|
|
233
|
+
defaultProps: {
|
|
234
|
+
disableRipple: boolean;
|
|
235
|
+
};
|
|
236
|
+
styleOverrides: {
|
|
237
|
+
root: ({ theme }: {
|
|
238
|
+
theme: Theme;
|
|
239
|
+
}) => {
|
|
240
|
+
'&.Mui-disabled': {
|
|
241
|
+
color: string;
|
|
242
|
+
};
|
|
243
|
+
'&.MuiCheckbox-root.MuiCheckbox-sizeSmall + .MuiFormControlLabel-label, &.MuiRadio-root.MuiRadio-sizeSmall + .MuiFormControlLabel-label': {
|
|
244
|
+
fontSize: import("csstype").Property.FontSize<string | number> | undefined;
|
|
245
|
+
};
|
|
246
|
+
};
|
|
247
|
+
};
|
|
248
|
+
};
|
|
212
249
|
};
|
|
213
250
|
export default form;
|