@selfcommunity/react-theme-default 0.4.2-courses.119 → 0.4.2-courses.120
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/SCLessonCommentObjects.d.ts +6 -0
- package/lib/cjs/components/SCLessonCommentObjects.js +7 -1
- package/lib/cjs/index.d.ts +6 -0
- package/lib/esm/components/SCLessonCommentObjects.d.ts +6 -0
- package/lib/esm/components/SCLessonCommentObjects.js +7 -1
- package/lib/esm/index.d.ts +6 -0
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -12,6 +12,12 @@ declare const Component: {
|
|
|
12
12
|
justifyContent: string;
|
|
13
13
|
'& .SCCommentObjectReply-root': {
|
|
14
14
|
backgroundColor: string;
|
|
15
|
+
'& .SCEditor-root': {
|
|
16
|
+
paddingTop: any;
|
|
17
|
+
};
|
|
18
|
+
'& .SCEditor-content': {
|
|
19
|
+
minHeight: string;
|
|
20
|
+
};
|
|
15
21
|
'& .SCEditor-actions': {
|
|
16
22
|
left: any;
|
|
17
23
|
'& .SCCommentObjectReply-icon-reply': {
|
|
@@ -10,10 +10,16 @@ const Component = {
|
|
|
10
10
|
height: '90%'
|
|
11
11
|
},
|
|
12
12
|
overflowY: 'auto',
|
|
13
|
-
padding: theme.spacing(2),
|
|
13
|
+
padding: theme.spacing(2, 2, 3, 2),
|
|
14
14
|
justifyContent: 'space-between',
|
|
15
15
|
'& .SCCommentObjectReply-root': {
|
|
16
16
|
backgroundColor: 'transparent',
|
|
17
|
+
'& .SCEditor-root': {
|
|
18
|
+
paddingTop: theme.spacing(2)
|
|
19
|
+
},
|
|
20
|
+
'& .SCEditor-content': {
|
|
21
|
+
minHeight: '50px'
|
|
22
|
+
},
|
|
17
23
|
'& .SCEditor-actions': {
|
|
18
24
|
left: theme.spacing(1),
|
|
19
25
|
'& .SCCommentObjectReply-icon-reply': {
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -5217,6 +5217,12 @@ declare const theme: {
|
|
|
5217
5217
|
justifyContent: string;
|
|
5218
5218
|
'& .SCCommentObjectReply-root': {
|
|
5219
5219
|
backgroundColor: string;
|
|
5220
|
+
'& .SCEditor-root': {
|
|
5221
|
+
paddingTop: any;
|
|
5222
|
+
};
|
|
5223
|
+
'& .SCEditor-content': {
|
|
5224
|
+
minHeight: string;
|
|
5225
|
+
};
|
|
5220
5226
|
'& .SCEditor-actions': {
|
|
5221
5227
|
left: any;
|
|
5222
5228
|
'& .SCCommentObjectReply-icon-reply': {
|
|
@@ -12,6 +12,12 @@ declare const Component: {
|
|
|
12
12
|
justifyContent: string;
|
|
13
13
|
'& .SCCommentObjectReply-root': {
|
|
14
14
|
backgroundColor: string;
|
|
15
|
+
'& .SCEditor-root': {
|
|
16
|
+
paddingTop: any;
|
|
17
|
+
};
|
|
18
|
+
'& .SCEditor-content': {
|
|
19
|
+
minHeight: string;
|
|
20
|
+
};
|
|
15
21
|
'& .SCEditor-actions': {
|
|
16
22
|
left: any;
|
|
17
23
|
'& .SCCommentObjectReply-icon-reply': {
|
|
@@ -8,10 +8,16 @@ const Component = {
|
|
|
8
8
|
height: '90%'
|
|
9
9
|
},
|
|
10
10
|
overflowY: 'auto',
|
|
11
|
-
padding: theme.spacing(2),
|
|
11
|
+
padding: theme.spacing(2, 2, 3, 2),
|
|
12
12
|
justifyContent: 'space-between',
|
|
13
13
|
'& .SCCommentObjectReply-root': {
|
|
14
14
|
backgroundColor: 'transparent',
|
|
15
|
+
'& .SCEditor-root': {
|
|
16
|
+
paddingTop: theme.spacing(2)
|
|
17
|
+
},
|
|
18
|
+
'& .SCEditor-content': {
|
|
19
|
+
minHeight: '50px'
|
|
20
|
+
},
|
|
15
21
|
'& .SCEditor-actions': {
|
|
16
22
|
left: theme.spacing(1),
|
|
17
23
|
'& .SCCommentObjectReply-icon-reply': {
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -5217,6 +5217,12 @@ declare const theme: {
|
|
|
5217
5217
|
justifyContent: string;
|
|
5218
5218
|
'& .SCCommentObjectReply-root': {
|
|
5219
5219
|
backgroundColor: string;
|
|
5220
|
+
'& .SCEditor-root': {
|
|
5221
|
+
paddingTop: any;
|
|
5222
|
+
};
|
|
5223
|
+
'& .SCEditor-content': {
|
|
5224
|
+
minHeight: string;
|
|
5225
|
+
};
|
|
5220
5226
|
'& .SCEditor-actions': {
|
|
5221
5227
|
left: any;
|
|
5222
5228
|
'& .SCCommentObjectReply-icon-reply': {
|