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