@selfcommunity/react-theme-default 0.4.2-courses.118 → 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 +10 -6
- package/lib/cjs/components/SCLessonCommentObjects.js +11 -7
- package/lib/cjs/index.d.ts +10 -6
- package/lib/esm/components/SCLessonCommentObjects.d.ts +10 -6
- package/lib/esm/components/SCLessonCommentObjects.js +11 -7
- package/lib/esm/index.d.ts +10 -6
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
+
[x: number]: {
|
|
5
|
+
height: string;
|
|
6
|
+
};
|
|
4
7
|
display: string;
|
|
5
8
|
flexDirection: string;
|
|
6
9
|
height: string;
|
|
@@ -8,24 +11,25 @@ declare const Component: {
|
|
|
8
11
|
padding: any;
|
|
9
12
|
justifyContent: string;
|
|
10
13
|
'& .SCCommentObjectReply-root': {
|
|
11
|
-
[x: number]: {
|
|
12
|
-
marginTop: any;
|
|
13
|
-
};
|
|
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': {
|
|
18
24
|
marginLeft: string;
|
|
19
25
|
};
|
|
20
26
|
};
|
|
27
|
+
marginTop: any;
|
|
21
28
|
marginBottom: number;
|
|
22
29
|
};
|
|
23
30
|
'& .infinite-scroll-component__outerdiv': {
|
|
24
31
|
overflowY: string;
|
|
25
32
|
'& .infinite-scroll-component': {
|
|
26
|
-
[x: number]: {
|
|
27
|
-
height: string;
|
|
28
|
-
};
|
|
29
33
|
'& .MuiList-root ': {
|
|
30
34
|
padding: number;
|
|
31
35
|
'& .MuiListItem-root': {
|
|
@@ -6,20 +6,27 @@ const Component = {
|
|
|
6
6
|
display: 'flex',
|
|
7
7
|
flexDirection: 'column',
|
|
8
8
|
height: '100%',
|
|
9
|
+
[theme.breakpoints.up('sm')]: {
|
|
10
|
+
height: '90%'
|
|
11
|
+
},
|
|
9
12
|
overflowY: 'auto',
|
|
10
|
-
padding: theme.spacing(2),
|
|
13
|
+
padding: theme.spacing(2, 2, 3, 2),
|
|
11
14
|
justifyContent: 'space-between',
|
|
12
15
|
'& .SCCommentObjectReply-root': {
|
|
13
16
|
backgroundColor: 'transparent',
|
|
17
|
+
'& .SCEditor-root': {
|
|
18
|
+
paddingTop: theme.spacing(2)
|
|
19
|
+
},
|
|
20
|
+
'& .SCEditor-content': {
|
|
21
|
+
minHeight: '50px'
|
|
22
|
+
},
|
|
14
23
|
'& .SCEditor-actions': {
|
|
15
24
|
left: theme.spacing(1),
|
|
16
25
|
'& .SCCommentObjectReply-icon-reply': {
|
|
17
26
|
marginLeft: 'auto'
|
|
18
27
|
}
|
|
19
28
|
},
|
|
20
|
-
|
|
21
|
-
marginTop: theme.spacing(2)
|
|
22
|
-
},
|
|
29
|
+
marginTop: theme.spacing(2),
|
|
23
30
|
marginBottom: 0
|
|
24
31
|
},
|
|
25
32
|
'& .infinite-scroll-component__outerdiv': {
|
|
@@ -30,9 +37,6 @@ const Component = {
|
|
|
30
37
|
'& .MuiListItem-root': {
|
|
31
38
|
padding: 0
|
|
32
39
|
}
|
|
33
|
-
},
|
|
34
|
-
[theme.breakpoints.up('sm')]: {
|
|
35
|
-
height: '90% !important'
|
|
36
40
|
}
|
|
37
41
|
}
|
|
38
42
|
}
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -5206,6 +5206,9 @@ declare const theme: {
|
|
|
5206
5206
|
SCLessonCommentObjects: {
|
|
5207
5207
|
styleOverrides: {
|
|
5208
5208
|
root: ({ theme }: any) => {
|
|
5209
|
+
[x: number]: {
|
|
5210
|
+
height: string;
|
|
5211
|
+
};
|
|
5209
5212
|
display: string;
|
|
5210
5213
|
flexDirection: string;
|
|
5211
5214
|
height: string;
|
|
@@ -5213,24 +5216,25 @@ declare const theme: {
|
|
|
5213
5216
|
padding: any;
|
|
5214
5217
|
justifyContent: string;
|
|
5215
5218
|
'& .SCCommentObjectReply-root': {
|
|
5216
|
-
[x: number]: {
|
|
5217
|
-
marginTop: any;
|
|
5218
|
-
};
|
|
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': {
|
|
5223
5229
|
marginLeft: string;
|
|
5224
5230
|
};
|
|
5225
5231
|
};
|
|
5232
|
+
marginTop: any;
|
|
5226
5233
|
marginBottom: number;
|
|
5227
5234
|
};
|
|
5228
5235
|
'& .infinite-scroll-component__outerdiv': {
|
|
5229
5236
|
overflowY: string;
|
|
5230
5237
|
'& .infinite-scroll-component': {
|
|
5231
|
-
[x: number]: {
|
|
5232
|
-
height: string;
|
|
5233
|
-
};
|
|
5234
5238
|
'& .MuiList-root ': {
|
|
5235
5239
|
padding: number;
|
|
5236
5240
|
'& .MuiListItem-root': {
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
+
[x: number]: {
|
|
5
|
+
height: string;
|
|
6
|
+
};
|
|
4
7
|
display: string;
|
|
5
8
|
flexDirection: string;
|
|
6
9
|
height: string;
|
|
@@ -8,24 +11,25 @@ declare const Component: {
|
|
|
8
11
|
padding: any;
|
|
9
12
|
justifyContent: string;
|
|
10
13
|
'& .SCCommentObjectReply-root': {
|
|
11
|
-
[x: number]: {
|
|
12
|
-
marginTop: any;
|
|
13
|
-
};
|
|
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': {
|
|
18
24
|
marginLeft: string;
|
|
19
25
|
};
|
|
20
26
|
};
|
|
27
|
+
marginTop: any;
|
|
21
28
|
marginBottom: number;
|
|
22
29
|
};
|
|
23
30
|
'& .infinite-scroll-component__outerdiv': {
|
|
24
31
|
overflowY: string;
|
|
25
32
|
'& .infinite-scroll-component': {
|
|
26
|
-
[x: number]: {
|
|
27
|
-
height: string;
|
|
28
|
-
};
|
|
29
33
|
'& .MuiList-root ': {
|
|
30
34
|
padding: number;
|
|
31
35
|
'& .MuiListItem-root': {
|
|
@@ -4,20 +4,27 @@ const Component = {
|
|
|
4
4
|
display: 'flex',
|
|
5
5
|
flexDirection: 'column',
|
|
6
6
|
height: '100%',
|
|
7
|
+
[theme.breakpoints.up('sm')]: {
|
|
8
|
+
height: '90%'
|
|
9
|
+
},
|
|
7
10
|
overflowY: 'auto',
|
|
8
|
-
padding: theme.spacing(2),
|
|
11
|
+
padding: theme.spacing(2, 2, 3, 2),
|
|
9
12
|
justifyContent: 'space-between',
|
|
10
13
|
'& .SCCommentObjectReply-root': {
|
|
11
14
|
backgroundColor: 'transparent',
|
|
15
|
+
'& .SCEditor-root': {
|
|
16
|
+
paddingTop: theme.spacing(2)
|
|
17
|
+
},
|
|
18
|
+
'& .SCEditor-content': {
|
|
19
|
+
minHeight: '50px'
|
|
20
|
+
},
|
|
12
21
|
'& .SCEditor-actions': {
|
|
13
22
|
left: theme.spacing(1),
|
|
14
23
|
'& .SCCommentObjectReply-icon-reply': {
|
|
15
24
|
marginLeft: 'auto'
|
|
16
25
|
}
|
|
17
26
|
},
|
|
18
|
-
|
|
19
|
-
marginTop: theme.spacing(2)
|
|
20
|
-
},
|
|
27
|
+
marginTop: theme.spacing(2),
|
|
21
28
|
marginBottom: 0
|
|
22
29
|
},
|
|
23
30
|
'& .infinite-scroll-component__outerdiv': {
|
|
@@ -28,9 +35,6 @@ const Component = {
|
|
|
28
35
|
'& .MuiListItem-root': {
|
|
29
36
|
padding: 0
|
|
30
37
|
}
|
|
31
|
-
},
|
|
32
|
-
[theme.breakpoints.up('sm')]: {
|
|
33
|
-
height: '90% !important'
|
|
34
38
|
}
|
|
35
39
|
}
|
|
36
40
|
}
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -5206,6 +5206,9 @@ declare const theme: {
|
|
|
5206
5206
|
SCLessonCommentObjects: {
|
|
5207
5207
|
styleOverrides: {
|
|
5208
5208
|
root: ({ theme }: any) => {
|
|
5209
|
+
[x: number]: {
|
|
5210
|
+
height: string;
|
|
5211
|
+
};
|
|
5209
5212
|
display: string;
|
|
5210
5213
|
flexDirection: string;
|
|
5211
5214
|
height: string;
|
|
@@ -5213,24 +5216,25 @@ declare const theme: {
|
|
|
5213
5216
|
padding: any;
|
|
5214
5217
|
justifyContent: string;
|
|
5215
5218
|
'& .SCCommentObjectReply-root': {
|
|
5216
|
-
[x: number]: {
|
|
5217
|
-
marginTop: any;
|
|
5218
|
-
};
|
|
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': {
|
|
5223
5229
|
marginLeft: string;
|
|
5224
5230
|
};
|
|
5225
5231
|
};
|
|
5232
|
+
marginTop: any;
|
|
5226
5233
|
marginBottom: number;
|
|
5227
5234
|
};
|
|
5228
5235
|
'& .infinite-scroll-component__outerdiv': {
|
|
5229
5236
|
overflowY: string;
|
|
5230
5237
|
'& .infinite-scroll-component': {
|
|
5231
|
-
[x: number]: {
|
|
5232
|
-
height: string;
|
|
5233
|
-
};
|
|
5234
5238
|
'& .MuiList-root ': {
|
|
5235
5239
|
padding: number;
|
|
5236
5240
|
'& .MuiListItem-root': {
|