@selfcommunity/react-theme-default 0.4.2-courses.183 → 0.4.2-courses.185
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/SCAccordionLessons.d.ts +5 -0
- package/lib/cjs/components/SCAccordionLessons.js +6 -1
- package/lib/cjs/components/SCCourseDashboard.d.ts +8 -0
- package/lib/cjs/components/SCCourseDashboard.js +9 -1
- package/lib/cjs/index.d.ts +13 -0
- package/lib/esm/components/SCAccordionLessons.d.ts +5 -0
- package/lib/esm/components/SCAccordionLessons.js +6 -1
- package/lib/esm/components/SCCourseDashboard.d.ts +8 -0
- package/lib/esm/components/SCCourseDashboard.js +9 -1
- package/lib/esm/index.d.ts +13 -0
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -18,6 +18,11 @@ declare const Component: {
|
|
|
18
18
|
'& .MuiAccordionSummary-content': {
|
|
19
19
|
justifyContent: string;
|
|
20
20
|
margin: number;
|
|
21
|
+
'& .SCAccordionLessons-name-wrapper': {
|
|
22
|
+
flexDirection: string;
|
|
23
|
+
alignItems: string;
|
|
24
|
+
gap: string;
|
|
25
|
+
};
|
|
21
26
|
};
|
|
22
27
|
};
|
|
23
28
|
'& .SCAccordionLessons-details': {
|
|
@@ -17,7 +17,12 @@ const Component = {
|
|
|
17
17
|
backgroundColor: theme.palette.grey['200'],
|
|
18
18
|
'& .MuiAccordionSummary-content': {
|
|
19
19
|
justifyContent: 'space-between',
|
|
20
|
-
margin: 0
|
|
20
|
+
margin: 0,
|
|
21
|
+
'& .SCAccordionLessons-name-wrapper': {
|
|
22
|
+
flexDirection: 'row',
|
|
23
|
+
alignItems: 'center',
|
|
24
|
+
gap: '5px'
|
|
25
|
+
}
|
|
21
26
|
}
|
|
22
27
|
},
|
|
23
28
|
'& .SCAccordionLessons-details': {
|
|
@@ -54,6 +54,14 @@ declare const Component: {
|
|
|
54
54
|
flexDirection: string;
|
|
55
55
|
alignItems: string;
|
|
56
56
|
gap: any;
|
|
57
|
+
'& .SCCourseDashboard-header-button-popover': {
|
|
58
|
+
padding: number;
|
|
59
|
+
textDecoration: string;
|
|
60
|
+
'&:hover': {
|
|
61
|
+
backgroundColor: string;
|
|
62
|
+
textDecoration: string;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
57
65
|
};
|
|
58
66
|
};
|
|
59
67
|
};
|
|
@@ -54,7 +54,15 @@ const Component = {
|
|
|
54
54
|
'& .SCCourseDashboard-header-icon-wrapper': {
|
|
55
55
|
flexDirection: 'row',
|
|
56
56
|
alignItems: 'center',
|
|
57
|
-
gap: theme.spacing(1)
|
|
57
|
+
gap: theme.spacing(1),
|
|
58
|
+
'& .SCCourseDashboard-header-button-popover': {
|
|
59
|
+
padding: 0,
|
|
60
|
+
textDecoration: 'underline',
|
|
61
|
+
'&:hover': {
|
|
62
|
+
backgroundColor: 'unset',
|
|
63
|
+
textDecoration: 'underline'
|
|
64
|
+
}
|
|
65
|
+
}
|
|
58
66
|
}
|
|
59
67
|
}
|
|
60
68
|
}
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -253,6 +253,11 @@ declare const theme: {
|
|
|
253
253
|
'& .MuiAccordionSummary-content': {
|
|
254
254
|
justifyContent: string;
|
|
255
255
|
margin: number;
|
|
256
|
+
'& .SCAccordionLessons-name-wrapper': {
|
|
257
|
+
flexDirection: string;
|
|
258
|
+
alignItems: string;
|
|
259
|
+
gap: string;
|
|
260
|
+
};
|
|
256
261
|
};
|
|
257
262
|
};
|
|
258
263
|
'& .SCAccordionLessons-details': {
|
|
@@ -2103,6 +2108,14 @@ declare const theme: {
|
|
|
2103
2108
|
flexDirection: string;
|
|
2104
2109
|
alignItems: string;
|
|
2105
2110
|
gap: any;
|
|
2111
|
+
'& .SCCourseDashboard-header-button-popover': {
|
|
2112
|
+
padding: number;
|
|
2113
|
+
textDecoration: string;
|
|
2114
|
+
'&:hover': {
|
|
2115
|
+
backgroundColor: string;
|
|
2116
|
+
textDecoration: string;
|
|
2117
|
+
};
|
|
2118
|
+
};
|
|
2106
2119
|
};
|
|
2107
2120
|
};
|
|
2108
2121
|
};
|
|
@@ -18,6 +18,11 @@ declare const Component: {
|
|
|
18
18
|
'& .MuiAccordionSummary-content': {
|
|
19
19
|
justifyContent: string;
|
|
20
20
|
margin: number;
|
|
21
|
+
'& .SCAccordionLessons-name-wrapper': {
|
|
22
|
+
flexDirection: string;
|
|
23
|
+
alignItems: string;
|
|
24
|
+
gap: string;
|
|
25
|
+
};
|
|
21
26
|
};
|
|
22
27
|
};
|
|
23
28
|
'& .SCAccordionLessons-details': {
|
|
@@ -15,7 +15,12 @@ const Component = {
|
|
|
15
15
|
backgroundColor: theme.palette.grey['200'],
|
|
16
16
|
'& .MuiAccordionSummary-content': {
|
|
17
17
|
justifyContent: 'space-between',
|
|
18
|
-
margin: 0
|
|
18
|
+
margin: 0,
|
|
19
|
+
'& .SCAccordionLessons-name-wrapper': {
|
|
20
|
+
flexDirection: 'row',
|
|
21
|
+
alignItems: 'center',
|
|
22
|
+
gap: '5px'
|
|
23
|
+
}
|
|
19
24
|
}
|
|
20
25
|
},
|
|
21
26
|
'& .SCAccordionLessons-details': {
|
|
@@ -54,6 +54,14 @@ declare const Component: {
|
|
|
54
54
|
flexDirection: string;
|
|
55
55
|
alignItems: string;
|
|
56
56
|
gap: any;
|
|
57
|
+
'& .SCCourseDashboard-header-button-popover': {
|
|
58
|
+
padding: number;
|
|
59
|
+
textDecoration: string;
|
|
60
|
+
'&:hover': {
|
|
61
|
+
backgroundColor: string;
|
|
62
|
+
textDecoration: string;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
57
65
|
};
|
|
58
66
|
};
|
|
59
67
|
};
|
|
@@ -52,7 +52,15 @@ const Component = {
|
|
|
52
52
|
'& .SCCourseDashboard-header-icon-wrapper': {
|
|
53
53
|
flexDirection: 'row',
|
|
54
54
|
alignItems: 'center',
|
|
55
|
-
gap: theme.spacing(1)
|
|
55
|
+
gap: theme.spacing(1),
|
|
56
|
+
'& .SCCourseDashboard-header-button-popover': {
|
|
57
|
+
padding: 0,
|
|
58
|
+
textDecoration: 'underline',
|
|
59
|
+
'&:hover': {
|
|
60
|
+
backgroundColor: 'unset',
|
|
61
|
+
textDecoration: 'underline'
|
|
62
|
+
}
|
|
63
|
+
}
|
|
56
64
|
}
|
|
57
65
|
}
|
|
58
66
|
}
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -253,6 +253,11 @@ declare const theme: {
|
|
|
253
253
|
'& .MuiAccordionSummary-content': {
|
|
254
254
|
justifyContent: string;
|
|
255
255
|
margin: number;
|
|
256
|
+
'& .SCAccordionLessons-name-wrapper': {
|
|
257
|
+
flexDirection: string;
|
|
258
|
+
alignItems: string;
|
|
259
|
+
gap: string;
|
|
260
|
+
};
|
|
256
261
|
};
|
|
257
262
|
};
|
|
258
263
|
'& .SCAccordionLessons-details': {
|
|
@@ -2103,6 +2108,14 @@ declare const theme: {
|
|
|
2103
2108
|
flexDirection: string;
|
|
2104
2109
|
alignItems: string;
|
|
2105
2110
|
gap: any;
|
|
2111
|
+
'& .SCCourseDashboard-header-button-popover': {
|
|
2112
|
+
padding: number;
|
|
2113
|
+
textDecoration: string;
|
|
2114
|
+
'&:hover': {
|
|
2115
|
+
backgroundColor: string;
|
|
2116
|
+
textDecoration: string;
|
|
2117
|
+
};
|
|
2118
|
+
};
|
|
2106
2119
|
};
|
|
2107
2120
|
};
|
|
2108
2121
|
};
|