@selfcommunity/react-theme-default 0.4.2-courses.181 → 0.4.2-courses.183
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/SCCourseContentMenu.d.ts +3 -1
- package/lib/cjs/components/SCCourseContentMenu.js +3 -1
- package/lib/cjs/components/SCLessonCommentObjects.d.ts +2 -1
- package/lib/cjs/components/SCLessonCommentObjects.js +2 -1
- package/lib/cjs/components/SCLessonDrawer.d.ts +3 -1
- package/lib/cjs/components/SCLessonDrawer.js +3 -1
- package/lib/cjs/index.d.ts +8 -3
- package/lib/esm/components/SCCourseContentMenu.d.ts +3 -1
- package/lib/esm/components/SCCourseContentMenu.js +3 -1
- package/lib/esm/components/SCLessonCommentObjects.d.ts +2 -1
- package/lib/esm/components/SCLessonCommentObjects.js +2 -1
- package/lib/esm/components/SCLessonDrawer.d.ts +3 -1
- package/lib/esm/components/SCLessonDrawer.js +3 -1
- package/lib/esm/index.d.ts +8 -3
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -8,6 +8,9 @@ declare const Component: {
|
|
|
8
8
|
backgroundColor: any;
|
|
9
9
|
};
|
|
10
10
|
};
|
|
11
|
+
'& .MuiButtonBase-root': {
|
|
12
|
+
paddingLeft: any;
|
|
13
|
+
};
|
|
11
14
|
};
|
|
12
15
|
'& .SCCourseContentMenu-list-item': {
|
|
13
16
|
'&:hover, &:focus, &:active': {
|
|
@@ -19,7 +22,6 @@ declare const Component: {
|
|
|
19
22
|
color: any;
|
|
20
23
|
};
|
|
21
24
|
'& .SCCourseContentMenu-item': {
|
|
22
|
-
padding: any;
|
|
23
25
|
'& .MuiListItemText-primary': {
|
|
24
26
|
fontWeight: any;
|
|
25
27
|
};
|
|
@@ -9,6 +9,9 @@ const Component = {
|
|
|
9
9
|
'&:hover, &:focus, &:active': {
|
|
10
10
|
backgroundColor: theme.palette.grey[300]
|
|
11
11
|
}
|
|
12
|
+
},
|
|
13
|
+
'& .MuiButtonBase-root': {
|
|
14
|
+
paddingLeft: theme.spacing(5)
|
|
12
15
|
}
|
|
13
16
|
},
|
|
14
17
|
'& .SCCourseContentMenu-list-item': {
|
|
@@ -21,7 +24,6 @@ const Component = {
|
|
|
21
24
|
color: theme.palette.text.secondary
|
|
22
25
|
},
|
|
23
26
|
'& .SCCourseContentMenu-item': {
|
|
24
|
-
padding: theme.spacing(0.5, 0, 0.5, 3),
|
|
25
27
|
'& .MuiListItemText-primary': {
|
|
26
28
|
fontWeight: theme.typography.fontWeightMedium
|
|
27
29
|
},
|
|
@@ -24,11 +24,12 @@ declare const Component: {
|
|
|
24
24
|
marginLeft: string;
|
|
25
25
|
};
|
|
26
26
|
};
|
|
27
|
-
marginTop:
|
|
27
|
+
marginTop: string;
|
|
28
28
|
marginBottom: number;
|
|
29
29
|
};
|
|
30
30
|
'& .infinite-scroll-component__outerdiv': {
|
|
31
31
|
overflowY: string;
|
|
32
|
+
marginBottom: any;
|
|
32
33
|
'& .infinite-scroll-component': {
|
|
33
34
|
'& .MuiList-root ': {
|
|
34
35
|
padding: number;
|
|
@@ -26,11 +26,12 @@ const Component = {
|
|
|
26
26
|
marginLeft: 'auto'
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
|
-
marginTop:
|
|
29
|
+
marginTop: 'auto',
|
|
30
30
|
marginBottom: 0
|
|
31
31
|
},
|
|
32
32
|
'& .infinite-scroll-component__outerdiv': {
|
|
33
33
|
overflowY: 'auto',
|
|
34
|
+
marginBottom: theme.spacing(2),
|
|
34
35
|
'& .infinite-scroll-component': {
|
|
35
36
|
'& .MuiList-root ': {
|
|
36
37
|
padding: 0,
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -2014,6 +2014,9 @@ declare const theme: {
|
|
|
2014
2014
|
backgroundColor: any;
|
|
2015
2015
|
};
|
|
2016
2016
|
};
|
|
2017
|
+
'& .MuiButtonBase-root': {
|
|
2018
|
+
paddingLeft: any;
|
|
2019
|
+
};
|
|
2017
2020
|
};
|
|
2018
2021
|
'& .SCCourseContentMenu-list-item': {
|
|
2019
2022
|
'&:hover, &:focus, &:active': {
|
|
@@ -2025,7 +2028,6 @@ declare const theme: {
|
|
|
2025
2028
|
color: any;
|
|
2026
2029
|
};
|
|
2027
2030
|
'& .SCCourseContentMenu-item': {
|
|
2028
|
-
padding: any;
|
|
2029
2031
|
'& .MuiListItemText-primary': {
|
|
2030
2032
|
fontWeight: any;
|
|
2031
2033
|
};
|
|
@@ -5340,7 +5342,9 @@ declare const theme: {
|
|
|
5340
5342
|
backgroundColor: any;
|
|
5341
5343
|
};
|
|
5342
5344
|
'& .SCLessonDrawer-header': {
|
|
5343
|
-
|
|
5345
|
+
[x: number]: {
|
|
5346
|
+
minHeight: string;
|
|
5347
|
+
};
|
|
5344
5348
|
display: string;
|
|
5345
5349
|
padding: any;
|
|
5346
5350
|
};
|
|
@@ -5536,11 +5540,12 @@ declare const theme: {
|
|
|
5536
5540
|
marginLeft: string;
|
|
5537
5541
|
};
|
|
5538
5542
|
};
|
|
5539
|
-
marginTop:
|
|
5543
|
+
marginTop: string;
|
|
5540
5544
|
marginBottom: number;
|
|
5541
5545
|
};
|
|
5542
5546
|
'& .infinite-scroll-component__outerdiv': {
|
|
5543
5547
|
overflowY: string;
|
|
5548
|
+
marginBottom: any;
|
|
5544
5549
|
'& .infinite-scroll-component': {
|
|
5545
5550
|
'& .MuiList-root ': {
|
|
5546
5551
|
padding: number;
|
|
@@ -8,6 +8,9 @@ declare const Component: {
|
|
|
8
8
|
backgroundColor: any;
|
|
9
9
|
};
|
|
10
10
|
};
|
|
11
|
+
'& .MuiButtonBase-root': {
|
|
12
|
+
paddingLeft: any;
|
|
13
|
+
};
|
|
11
14
|
};
|
|
12
15
|
'& .SCCourseContentMenu-list-item': {
|
|
13
16
|
'&:hover, &:focus, &:active': {
|
|
@@ -19,7 +22,6 @@ declare const Component: {
|
|
|
19
22
|
color: any;
|
|
20
23
|
};
|
|
21
24
|
'& .SCCourseContentMenu-item': {
|
|
22
|
-
padding: any;
|
|
23
25
|
'& .MuiListItemText-primary': {
|
|
24
26
|
fontWeight: any;
|
|
25
27
|
};
|
|
@@ -7,6 +7,9 @@ const Component = {
|
|
|
7
7
|
'&:hover, &:focus, &:active': {
|
|
8
8
|
backgroundColor: theme.palette.grey[300]
|
|
9
9
|
}
|
|
10
|
+
},
|
|
11
|
+
'& .MuiButtonBase-root': {
|
|
12
|
+
paddingLeft: theme.spacing(5)
|
|
10
13
|
}
|
|
11
14
|
},
|
|
12
15
|
'& .SCCourseContentMenu-list-item': {
|
|
@@ -19,7 +22,6 @@ const Component = {
|
|
|
19
22
|
color: theme.palette.text.secondary
|
|
20
23
|
},
|
|
21
24
|
'& .SCCourseContentMenu-item': {
|
|
22
|
-
padding: theme.spacing(0.5, 0, 0.5, 3),
|
|
23
25
|
'& .MuiListItemText-primary': {
|
|
24
26
|
fontWeight: theme.typography.fontWeightMedium
|
|
25
27
|
},
|
|
@@ -24,11 +24,12 @@ declare const Component: {
|
|
|
24
24
|
marginLeft: string;
|
|
25
25
|
};
|
|
26
26
|
};
|
|
27
|
-
marginTop:
|
|
27
|
+
marginTop: string;
|
|
28
28
|
marginBottom: number;
|
|
29
29
|
};
|
|
30
30
|
'& .infinite-scroll-component__outerdiv': {
|
|
31
31
|
overflowY: string;
|
|
32
|
+
marginBottom: any;
|
|
32
33
|
'& .infinite-scroll-component': {
|
|
33
34
|
'& .MuiList-root ': {
|
|
34
35
|
padding: number;
|
|
@@ -24,11 +24,12 @@ const Component = {
|
|
|
24
24
|
marginLeft: 'auto'
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
|
-
marginTop:
|
|
27
|
+
marginTop: 'auto',
|
|
28
28
|
marginBottom: 0
|
|
29
29
|
},
|
|
30
30
|
'& .infinite-scroll-component__outerdiv': {
|
|
31
31
|
overflowY: 'auto',
|
|
32
|
+
marginBottom: theme.spacing(2),
|
|
32
33
|
'& .infinite-scroll-component': {
|
|
33
34
|
'& .MuiList-root ': {
|
|
34
35
|
padding: 0,
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -2014,6 +2014,9 @@ declare const theme: {
|
|
|
2014
2014
|
backgroundColor: any;
|
|
2015
2015
|
};
|
|
2016
2016
|
};
|
|
2017
|
+
'& .MuiButtonBase-root': {
|
|
2018
|
+
paddingLeft: any;
|
|
2019
|
+
};
|
|
2017
2020
|
};
|
|
2018
2021
|
'& .SCCourseContentMenu-list-item': {
|
|
2019
2022
|
'&:hover, &:focus, &:active': {
|
|
@@ -2025,7 +2028,6 @@ declare const theme: {
|
|
|
2025
2028
|
color: any;
|
|
2026
2029
|
};
|
|
2027
2030
|
'& .SCCourseContentMenu-item': {
|
|
2028
|
-
padding: any;
|
|
2029
2031
|
'& .MuiListItemText-primary': {
|
|
2030
2032
|
fontWeight: any;
|
|
2031
2033
|
};
|
|
@@ -5340,7 +5342,9 @@ declare const theme: {
|
|
|
5340
5342
|
backgroundColor: any;
|
|
5341
5343
|
};
|
|
5342
5344
|
'& .SCLessonDrawer-header': {
|
|
5343
|
-
|
|
5345
|
+
[x: number]: {
|
|
5346
|
+
minHeight: string;
|
|
5347
|
+
};
|
|
5344
5348
|
display: string;
|
|
5345
5349
|
padding: any;
|
|
5346
5350
|
};
|
|
@@ -5536,11 +5540,12 @@ declare const theme: {
|
|
|
5536
5540
|
marginLeft: string;
|
|
5537
5541
|
};
|
|
5538
5542
|
};
|
|
5539
|
-
marginTop:
|
|
5543
|
+
marginTop: string;
|
|
5540
5544
|
marginBottom: number;
|
|
5541
5545
|
};
|
|
5542
5546
|
'& .infinite-scroll-component__outerdiv': {
|
|
5543
5547
|
overflowY: string;
|
|
5548
|
+
marginBottom: any;
|
|
5544
5549
|
'& .infinite-scroll-component': {
|
|
5545
5550
|
'& .MuiList-root ': {
|
|
5546
5551
|
padding: number;
|