@selfcommunity/react-theme-default 0.4.2-courses.117 → 0.4.2-courses.118
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 -1
- package/lib/cjs/components/SCLessonCommentObjects.js +6 -1
- package/lib/cjs/components/SCLessonDrawer.js +1 -1
- package/lib/cjs/index.d.ts +6 -1
- package/lib/esm/components/SCLessonCommentObjects.d.ts +6 -1
- package/lib/esm/components/SCLessonCommentObjects.js +6 -1
- package/lib/esm/components/SCLessonDrawer.js +1 -1
- package/lib/esm/index.d.ts +6 -1
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -8,6 +8,9 @@ declare const Component: {
|
|
|
8
8
|
padding: any;
|
|
9
9
|
justifyContent: string;
|
|
10
10
|
'& .SCCommentObjectReply-root': {
|
|
11
|
+
[x: number]: {
|
|
12
|
+
marginTop: any;
|
|
13
|
+
};
|
|
11
14
|
backgroundColor: string;
|
|
12
15
|
'& .SCEditor-actions': {
|
|
13
16
|
left: any;
|
|
@@ -15,12 +18,14 @@ declare const Component: {
|
|
|
15
18
|
marginLeft: string;
|
|
16
19
|
};
|
|
17
20
|
};
|
|
18
|
-
marginTop: any;
|
|
19
21
|
marginBottom: number;
|
|
20
22
|
};
|
|
21
23
|
'& .infinite-scroll-component__outerdiv': {
|
|
22
24
|
overflowY: string;
|
|
23
25
|
'& .infinite-scroll-component': {
|
|
26
|
+
[x: number]: {
|
|
27
|
+
height: string;
|
|
28
|
+
};
|
|
24
29
|
'& .MuiList-root ': {
|
|
25
30
|
padding: number;
|
|
26
31
|
'& .MuiListItem-root': {
|
|
@@ -17,7 +17,9 @@ const Component = {
|
|
|
17
17
|
marginLeft: 'auto'
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
|
-
|
|
20
|
+
[theme.breakpoints.down('sm')]: {
|
|
21
|
+
marginTop: theme.spacing(2)
|
|
22
|
+
},
|
|
21
23
|
marginBottom: 0
|
|
22
24
|
},
|
|
23
25
|
'& .infinite-scroll-component__outerdiv': {
|
|
@@ -28,6 +30,9 @@ const Component = {
|
|
|
28
30
|
'& .MuiListItem-root': {
|
|
29
31
|
padding: 0
|
|
30
32
|
}
|
|
33
|
+
},
|
|
34
|
+
[theme.breakpoints.up('sm')]: {
|
|
35
|
+
height: '90% !important'
|
|
31
36
|
}
|
|
32
37
|
}
|
|
33
38
|
}
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -5213,6 +5213,9 @@ declare const theme: {
|
|
|
5213
5213
|
padding: any;
|
|
5214
5214
|
justifyContent: string;
|
|
5215
5215
|
'& .SCCommentObjectReply-root': {
|
|
5216
|
+
[x: number]: {
|
|
5217
|
+
marginTop: any;
|
|
5218
|
+
};
|
|
5216
5219
|
backgroundColor: string;
|
|
5217
5220
|
'& .SCEditor-actions': {
|
|
5218
5221
|
left: any;
|
|
@@ -5220,12 +5223,14 @@ declare const theme: {
|
|
|
5220
5223
|
marginLeft: string;
|
|
5221
5224
|
};
|
|
5222
5225
|
};
|
|
5223
|
-
marginTop: any;
|
|
5224
5226
|
marginBottom: number;
|
|
5225
5227
|
};
|
|
5226
5228
|
'& .infinite-scroll-component__outerdiv': {
|
|
5227
5229
|
overflowY: string;
|
|
5228
5230
|
'& .infinite-scroll-component': {
|
|
5231
|
+
[x: number]: {
|
|
5232
|
+
height: string;
|
|
5233
|
+
};
|
|
5229
5234
|
'& .MuiList-root ': {
|
|
5230
5235
|
padding: number;
|
|
5231
5236
|
'& .MuiListItem-root': {
|
|
@@ -8,6 +8,9 @@ declare const Component: {
|
|
|
8
8
|
padding: any;
|
|
9
9
|
justifyContent: string;
|
|
10
10
|
'& .SCCommentObjectReply-root': {
|
|
11
|
+
[x: number]: {
|
|
12
|
+
marginTop: any;
|
|
13
|
+
};
|
|
11
14
|
backgroundColor: string;
|
|
12
15
|
'& .SCEditor-actions': {
|
|
13
16
|
left: any;
|
|
@@ -15,12 +18,14 @@ declare const Component: {
|
|
|
15
18
|
marginLeft: string;
|
|
16
19
|
};
|
|
17
20
|
};
|
|
18
|
-
marginTop: any;
|
|
19
21
|
marginBottom: number;
|
|
20
22
|
};
|
|
21
23
|
'& .infinite-scroll-component__outerdiv': {
|
|
22
24
|
overflowY: string;
|
|
23
25
|
'& .infinite-scroll-component': {
|
|
26
|
+
[x: number]: {
|
|
27
|
+
height: string;
|
|
28
|
+
};
|
|
24
29
|
'& .MuiList-root ': {
|
|
25
30
|
padding: number;
|
|
26
31
|
'& .MuiListItem-root': {
|
|
@@ -15,7 +15,9 @@ const Component = {
|
|
|
15
15
|
marginLeft: 'auto'
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
|
-
|
|
18
|
+
[theme.breakpoints.down('sm')]: {
|
|
19
|
+
marginTop: theme.spacing(2)
|
|
20
|
+
},
|
|
19
21
|
marginBottom: 0
|
|
20
22
|
},
|
|
21
23
|
'& .infinite-scroll-component__outerdiv': {
|
|
@@ -26,6 +28,9 @@ const Component = {
|
|
|
26
28
|
'& .MuiListItem-root': {
|
|
27
29
|
padding: 0
|
|
28
30
|
}
|
|
31
|
+
},
|
|
32
|
+
[theme.breakpoints.up('sm')]: {
|
|
33
|
+
height: '90% !important'
|
|
29
34
|
}
|
|
30
35
|
}
|
|
31
36
|
}
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -5213,6 +5213,9 @@ declare const theme: {
|
|
|
5213
5213
|
padding: any;
|
|
5214
5214
|
justifyContent: string;
|
|
5215
5215
|
'& .SCCommentObjectReply-root': {
|
|
5216
|
+
[x: number]: {
|
|
5217
|
+
marginTop: any;
|
|
5218
|
+
};
|
|
5216
5219
|
backgroundColor: string;
|
|
5217
5220
|
'& .SCEditor-actions': {
|
|
5218
5221
|
left: any;
|
|
@@ -5220,12 +5223,14 @@ declare const theme: {
|
|
|
5220
5223
|
marginLeft: string;
|
|
5221
5224
|
};
|
|
5222
5225
|
};
|
|
5223
|
-
marginTop: any;
|
|
5224
5226
|
marginBottom: number;
|
|
5225
5227
|
};
|
|
5226
5228
|
'& .infinite-scroll-component__outerdiv': {
|
|
5227
5229
|
overflowY: string;
|
|
5228
5230
|
'& .infinite-scroll-component': {
|
|
5231
|
+
[x: number]: {
|
|
5232
|
+
height: string;
|
|
5233
|
+
};
|
|
5229
5234
|
'& .MuiList-root ': {
|
|
5230
5235
|
padding: number;
|
|
5231
5236
|
'& .MuiListItem-root': {
|