@selfcommunity/react-theme-default 0.4.5-alpha.12 → 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/SCCommentObject.d.ts +5 -0
- package/lib/cjs/components/SCCommentObject.js +5 -0
- package/lib/cjs/components/SCComposer.d.ts +3 -2
- package/lib/cjs/components/SCComposer.js +4 -3
- package/lib/cjs/index.d.ts +8 -2
- package/lib/esm/components/SCCommentObject.d.ts +5 -0
- package/lib/esm/components/SCCommentObject.js +5 -0
- package/lib/esm/components/SCComposer.d.ts +3 -2
- package/lib/esm/components/SCComposer.js +4 -3
- package/lib/esm/index.d.ts +8 -2
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -119,6 +119,11 @@ declare const Component: {
|
|
|
119
119
|
color: any;
|
|
120
120
|
marginTop: number;
|
|
121
121
|
position: string;
|
|
122
|
+
'& .SCCommentObject-reply': {
|
|
123
|
+
paddingLeft: number;
|
|
124
|
+
paddingRight: number;
|
|
125
|
+
lineHeight: number;
|
|
126
|
+
};
|
|
122
127
|
'& .SCCommentObject-activity-at': {
|
|
123
128
|
color: string;
|
|
124
129
|
textDecoration: string;
|
|
@@ -122,6 +122,11 @@ const Component = {
|
|
|
122
122
|
color: theme.palette.primary.main,
|
|
123
123
|
marginTop: 0,
|
|
124
124
|
position: 'relative',
|
|
125
|
+
'& .SCCommentObject-reply': {
|
|
126
|
+
paddingLeft: 0,
|
|
127
|
+
paddingRight: 0,
|
|
128
|
+
lineHeight: 1
|
|
129
|
+
},
|
|
125
130
|
'& .SCCommentObject-activity-at': {
|
|
126
131
|
color: 'inherit',
|
|
127
132
|
textDecoration: 'none',
|
|
@@ -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
|
@@ -1029,6 +1029,11 @@ declare const theme: {
|
|
|
1029
1029
|
color: any;
|
|
1030
1030
|
marginTop: number;
|
|
1031
1031
|
position: string;
|
|
1032
|
+
'& .SCCommentObject-reply': {
|
|
1033
|
+
paddingLeft: number;
|
|
1034
|
+
paddingRight: number;
|
|
1035
|
+
lineHeight: number;
|
|
1036
|
+
};
|
|
1032
1037
|
'& .SCCommentObject-activity-at': {
|
|
1033
1038
|
color: string;
|
|
1034
1039
|
textDecoration: string;
|
|
@@ -1207,7 +1212,6 @@ declare const theme: {
|
|
|
1207
1212
|
'& .MuiDialogContent-root': {
|
|
1208
1213
|
minHeight: number;
|
|
1209
1214
|
height: string;
|
|
1210
|
-
maxHeight: number;
|
|
1211
1215
|
};
|
|
1212
1216
|
'& .MuiDialogActions-root': {
|
|
1213
1217
|
justifyContent: string;
|
|
@@ -1244,10 +1248,12 @@ declare const theme: {
|
|
|
1244
1248
|
};
|
|
1245
1249
|
};
|
|
1246
1250
|
'& .MuiDialogContent-root': {
|
|
1251
|
+
[x: number]: {
|
|
1252
|
+
overflowY: string;
|
|
1253
|
+
};
|
|
1247
1254
|
margin: string;
|
|
1248
1255
|
padding: any;
|
|
1249
1256
|
height: string;
|
|
1250
|
-
overflowY: string;
|
|
1251
1257
|
'& .SCEditor-root': {
|
|
1252
1258
|
padding: any;
|
|
1253
1259
|
marginBottom: any;
|
|
@@ -119,6 +119,11 @@ declare const Component: {
|
|
|
119
119
|
color: any;
|
|
120
120
|
marginTop: number;
|
|
121
121
|
position: string;
|
|
122
|
+
'& .SCCommentObject-reply': {
|
|
123
|
+
paddingLeft: number;
|
|
124
|
+
paddingRight: number;
|
|
125
|
+
lineHeight: number;
|
|
126
|
+
};
|
|
122
127
|
'& .SCCommentObject-activity-at': {
|
|
123
128
|
color: string;
|
|
124
129
|
textDecoration: string;
|
|
@@ -120,6 +120,11 @@ const Component = {
|
|
|
120
120
|
color: theme.palette.primary.main,
|
|
121
121
|
marginTop: 0,
|
|
122
122
|
position: 'relative',
|
|
123
|
+
'& .SCCommentObject-reply': {
|
|
124
|
+
paddingLeft: 0,
|
|
125
|
+
paddingRight: 0,
|
|
126
|
+
lineHeight: 1
|
|
127
|
+
},
|
|
123
128
|
'& .SCCommentObject-activity-at': {
|
|
124
129
|
color: 'inherit',
|
|
125
130
|
textDecoration: 'none',
|
|
@@ -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
|
@@ -1029,6 +1029,11 @@ declare const theme: {
|
|
|
1029
1029
|
color: any;
|
|
1030
1030
|
marginTop: number;
|
|
1031
1031
|
position: string;
|
|
1032
|
+
'& .SCCommentObject-reply': {
|
|
1033
|
+
paddingLeft: number;
|
|
1034
|
+
paddingRight: number;
|
|
1035
|
+
lineHeight: number;
|
|
1036
|
+
};
|
|
1032
1037
|
'& .SCCommentObject-activity-at': {
|
|
1033
1038
|
color: string;
|
|
1034
1039
|
textDecoration: string;
|
|
@@ -1207,7 +1212,6 @@ declare const theme: {
|
|
|
1207
1212
|
'& .MuiDialogContent-root': {
|
|
1208
1213
|
minHeight: number;
|
|
1209
1214
|
height: string;
|
|
1210
|
-
maxHeight: number;
|
|
1211
1215
|
};
|
|
1212
1216
|
'& .MuiDialogActions-root': {
|
|
1213
1217
|
justifyContent: string;
|
|
@@ -1244,10 +1248,12 @@ declare const theme: {
|
|
|
1244
1248
|
};
|
|
1245
1249
|
};
|
|
1246
1250
|
'& .MuiDialogContent-root': {
|
|
1251
|
+
[x: number]: {
|
|
1252
|
+
overflowY: string;
|
|
1253
|
+
};
|
|
1247
1254
|
margin: string;
|
|
1248
1255
|
padding: any;
|
|
1249
1256
|
height: string;
|
|
1250
|
-
overflowY: string;
|
|
1251
1257
|
'& .SCEditor-root': {
|
|
1252
1258
|
padding: any;
|
|
1253
1259
|
marginBottom: any;
|