@selfcommunity/react-theme-default 0.4.5-alpha.13 → 0.4.5-alpha.14
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/cjs/components/SCComposer.d.ts +3 -2
- package/lib/cjs/components/SCComposer.js +4 -3
- package/lib/cjs/index.d.ts +3 -2
- package/lib/esm/components/SCComposer.d.ts +3 -2
- package/lib/esm/components/SCComposer.js +4 -3
- package/lib/esm/index.d.ts +3 -2
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -9,7 +9,6 @@ declare const Component: {
|
|
|
9
9
|
'& .MuiDialogContent-root': {
|
|
10
10
|
minHeight: number;
|
|
11
11
|
height: string;
|
|
12
|
-
maxHeight: number;
|
|
13
12
|
};
|
|
14
13
|
'& .MuiDialogActions-root': {
|
|
15
14
|
justifyContent: string;
|
|
@@ -46,10 +45,12 @@ declare const Component: {
|
|
|
46
45
|
};
|
|
47
46
|
};
|
|
48
47
|
'& .MuiDialogContent-root': {
|
|
48
|
+
[x: number]: {
|
|
49
|
+
overflowY: string;
|
|
50
|
+
};
|
|
49
51
|
margin: string;
|
|
50
52
|
padding: any;
|
|
51
53
|
height: string;
|
|
52
|
-
overflowY: string;
|
|
53
54
|
'& .SCEditor-root': {
|
|
54
55
|
padding: any;
|
|
55
56
|
marginBottom: any;
|
|
@@ -37,7 +37,9 @@ const Component = {
|
|
|
37
37
|
margin: '45px 0',
|
|
38
38
|
padding: theme.spacing(1, 2),
|
|
39
39
|
height: `calc(100% - 45px - 45px - ${theme.spacing(2)})`,
|
|
40
|
-
|
|
40
|
+
[theme.breakpoints.up('md')]: {
|
|
41
|
+
overflowY: 'hidden'
|
|
42
|
+
},
|
|
41
43
|
'& .SCEditor-root': {
|
|
42
44
|
padding: theme.spacing(1, 0),
|
|
43
45
|
marginBottom: theme.spacing(3),
|
|
@@ -93,8 +95,7 @@ const Component = {
|
|
|
93
95
|
},
|
|
94
96
|
'& .MuiDialogContent-root': {
|
|
95
97
|
minHeight: 300,
|
|
96
|
-
height: 'auto'
|
|
97
|
-
maxHeight: 600
|
|
98
|
+
height: 'auto'
|
|
98
99
|
},
|
|
99
100
|
'& .MuiDialogActions-root': {
|
|
100
101
|
justifyContent: 'center'
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1212,7 +1212,6 @@ declare const theme: {
|
|
|
1212
1212
|
'& .MuiDialogContent-root': {
|
|
1213
1213
|
minHeight: number;
|
|
1214
1214
|
height: string;
|
|
1215
|
-
maxHeight: number;
|
|
1216
1215
|
};
|
|
1217
1216
|
'& .MuiDialogActions-root': {
|
|
1218
1217
|
justifyContent: string;
|
|
@@ -1249,10 +1248,12 @@ declare const theme: {
|
|
|
1249
1248
|
};
|
|
1250
1249
|
};
|
|
1251
1250
|
'& .MuiDialogContent-root': {
|
|
1251
|
+
[x: number]: {
|
|
1252
|
+
overflowY: string;
|
|
1253
|
+
};
|
|
1252
1254
|
margin: string;
|
|
1253
1255
|
padding: any;
|
|
1254
1256
|
height: string;
|
|
1255
|
-
overflowY: string;
|
|
1256
1257
|
'& .SCEditor-root': {
|
|
1257
1258
|
padding: any;
|
|
1258
1259
|
marginBottom: any;
|
|
@@ -9,7 +9,6 @@ declare const Component: {
|
|
|
9
9
|
'& .MuiDialogContent-root': {
|
|
10
10
|
minHeight: number;
|
|
11
11
|
height: string;
|
|
12
|
-
maxHeight: number;
|
|
13
12
|
};
|
|
14
13
|
'& .MuiDialogActions-root': {
|
|
15
14
|
justifyContent: string;
|
|
@@ -46,10 +45,12 @@ declare const Component: {
|
|
|
46
45
|
};
|
|
47
46
|
};
|
|
48
47
|
'& .MuiDialogContent-root': {
|
|
48
|
+
[x: number]: {
|
|
49
|
+
overflowY: string;
|
|
50
|
+
};
|
|
49
51
|
margin: string;
|
|
50
52
|
padding: any;
|
|
51
53
|
height: string;
|
|
52
|
-
overflowY: string;
|
|
53
54
|
'& .SCEditor-root': {
|
|
54
55
|
padding: any;
|
|
55
56
|
marginBottom: any;
|
|
@@ -35,7 +35,9 @@ const Component = {
|
|
|
35
35
|
margin: '45px 0',
|
|
36
36
|
padding: theme.spacing(1, 2),
|
|
37
37
|
height: `calc(100% - 45px - 45px - ${theme.spacing(2)})`,
|
|
38
|
-
|
|
38
|
+
[theme.breakpoints.up('md')]: {
|
|
39
|
+
overflowY: 'hidden'
|
|
40
|
+
},
|
|
39
41
|
'& .SCEditor-root': {
|
|
40
42
|
padding: theme.spacing(1, 0),
|
|
41
43
|
marginBottom: theme.spacing(3),
|
|
@@ -91,8 +93,7 @@ const Component = {
|
|
|
91
93
|
},
|
|
92
94
|
'& .MuiDialogContent-root': {
|
|
93
95
|
minHeight: 300,
|
|
94
|
-
height: 'auto'
|
|
95
|
-
maxHeight: 600
|
|
96
|
+
height: 'auto'
|
|
96
97
|
},
|
|
97
98
|
'& .MuiDialogActions-root': {
|
|
98
99
|
justifyContent: 'center'
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -1212,7 +1212,6 @@ declare const theme: {
|
|
|
1212
1212
|
'& .MuiDialogContent-root': {
|
|
1213
1213
|
minHeight: number;
|
|
1214
1214
|
height: string;
|
|
1215
|
-
maxHeight: number;
|
|
1216
1215
|
};
|
|
1217
1216
|
'& .MuiDialogActions-root': {
|
|
1218
1217
|
justifyContent: string;
|
|
@@ -1249,10 +1248,12 @@ declare const theme: {
|
|
|
1249
1248
|
};
|
|
1250
1249
|
};
|
|
1251
1250
|
'& .MuiDialogContent-root': {
|
|
1251
|
+
[x: number]: {
|
|
1252
|
+
overflowY: string;
|
|
1253
|
+
};
|
|
1252
1254
|
margin: string;
|
|
1253
1255
|
padding: any;
|
|
1254
1256
|
height: string;
|
|
1255
|
-
overflowY: string;
|
|
1256
1257
|
'& .SCEditor-root': {
|
|
1257
1258
|
padding: any;
|
|
1258
1259
|
marginBottom: any;
|