@selfcommunity/react-theme-default 0.4.2-courses.151 → 0.4.2-courses.152
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/SCCourse.d.ts +6 -0
- package/lib/cjs/components/SCCourse.js +7 -1
- package/lib/cjs/components/SCCourseDashboard.d.ts +7 -0
- package/lib/cjs/components/SCCourseDashboard.js +7 -0
- package/lib/cjs/index.d.ts +13 -0
- package/lib/esm/components/SCCourse.d.ts +6 -0
- package/lib/esm/components/SCCourse.js +7 -1
- package/lib/esm/components/SCCourseDashboard.d.ts +7 -0
- package/lib/esm/components/SCCourseDashboard.js +7 -0
- package/lib/esm/index.d.ts +13 -0
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -88,12 +88,18 @@ declare const Component: {
|
|
|
88
88
|
height: any;
|
|
89
89
|
border: string;
|
|
90
90
|
};
|
|
91
|
+
'.MuiBadge-badge': {
|
|
92
|
+
left: any;
|
|
93
|
+
top: any;
|
|
94
|
+
};
|
|
91
95
|
};
|
|
92
96
|
'& .SCCourse-preview-content': {
|
|
93
97
|
padding: any;
|
|
94
98
|
'& .SCCourse-preview-creator': {
|
|
95
99
|
paddingTop: number;
|
|
96
100
|
marginBottom: any;
|
|
101
|
+
textDecoration: string;
|
|
102
|
+
color: string;
|
|
97
103
|
};
|
|
98
104
|
'& .SCCourse-preview-name-wrapper': {
|
|
99
105
|
textDecoration: string;
|
|
@@ -89,13 +89,19 @@ const Component = {
|
|
|
89
89
|
width: theme.selfcommunity.user.avatar.sizeMedium,
|
|
90
90
|
height: theme.selfcommunity.user.avatar.sizeMedium,
|
|
91
91
|
border: `#FFF solid ${theme.spacing(0.2)}`
|
|
92
|
+
},
|
|
93
|
+
'.MuiBadge-badge': {
|
|
94
|
+
left: theme.spacing(3),
|
|
95
|
+
top: theme.spacing(-0.5)
|
|
92
96
|
}
|
|
93
97
|
},
|
|
94
98
|
'& .SCCourse-preview-content': {
|
|
95
99
|
padding: theme.spacing(2),
|
|
96
100
|
'& .SCCourse-preview-creator': {
|
|
97
101
|
paddingTop: 0,
|
|
98
|
-
marginBottom: theme.spacing(1)
|
|
102
|
+
marginBottom: theme.spacing(1),
|
|
103
|
+
textDecoration: 'none',
|
|
104
|
+
color: 'inherit'
|
|
99
105
|
},
|
|
100
106
|
'& .SCCourse-preview-name-wrapper': {
|
|
101
107
|
textDecoration: 'none',
|
|
@@ -148,6 +148,13 @@ declare const Component: {
|
|
|
148
148
|
width: string;
|
|
149
149
|
height: string;
|
|
150
150
|
};
|
|
151
|
+
'& a': {
|
|
152
|
+
textDecoration: string;
|
|
153
|
+
color: string;
|
|
154
|
+
};
|
|
155
|
+
'& .MuiBadge-root': {
|
|
156
|
+
marginRight: any;
|
|
157
|
+
};
|
|
151
158
|
};
|
|
152
159
|
'& .SCCourseDashboard-actions-wrapper': {
|
|
153
160
|
flexDirection: string;
|
|
@@ -144,6 +144,13 @@ const Component = {
|
|
|
144
144
|
'& .SCCourseDashboard-avatar': {
|
|
145
145
|
width: '36px',
|
|
146
146
|
height: '36px'
|
|
147
|
+
},
|
|
148
|
+
'& a': {
|
|
149
|
+
textDecoration: 'none',
|
|
150
|
+
color: 'inherit'
|
|
151
|
+
},
|
|
152
|
+
'& .MuiBadge-root': {
|
|
153
|
+
marginRight: theme.spacing(0.5),
|
|
147
154
|
}
|
|
148
155
|
},
|
|
149
156
|
'& .SCCourseDashboard-actions-wrapper': {
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1797,12 +1797,18 @@ declare const theme: {
|
|
|
1797
1797
|
height: any;
|
|
1798
1798
|
border: string;
|
|
1799
1799
|
};
|
|
1800
|
+
'.MuiBadge-badge': {
|
|
1801
|
+
left: any;
|
|
1802
|
+
top: any;
|
|
1803
|
+
};
|
|
1800
1804
|
};
|
|
1801
1805
|
'& .SCCourse-preview-content': {
|
|
1802
1806
|
padding: any;
|
|
1803
1807
|
'& .SCCourse-preview-creator': {
|
|
1804
1808
|
paddingTop: number;
|
|
1805
1809
|
marginBottom: any;
|
|
1810
|
+
textDecoration: string;
|
|
1811
|
+
color: string;
|
|
1806
1812
|
};
|
|
1807
1813
|
'& .SCCourse-preview-name-wrapper': {
|
|
1808
1814
|
textDecoration: string;
|
|
@@ -2140,6 +2146,13 @@ declare const theme: {
|
|
|
2140
2146
|
width: string;
|
|
2141
2147
|
height: string;
|
|
2142
2148
|
};
|
|
2149
|
+
'& a': {
|
|
2150
|
+
textDecoration: string;
|
|
2151
|
+
color: string;
|
|
2152
|
+
};
|
|
2153
|
+
'& .MuiBadge-root': {
|
|
2154
|
+
marginRight: any;
|
|
2155
|
+
};
|
|
2143
2156
|
};
|
|
2144
2157
|
'& .SCCourseDashboard-actions-wrapper': {
|
|
2145
2158
|
flexDirection: string;
|
|
@@ -88,12 +88,18 @@ declare const Component: {
|
|
|
88
88
|
height: any;
|
|
89
89
|
border: string;
|
|
90
90
|
};
|
|
91
|
+
'.MuiBadge-badge': {
|
|
92
|
+
left: any;
|
|
93
|
+
top: any;
|
|
94
|
+
};
|
|
91
95
|
};
|
|
92
96
|
'& .SCCourse-preview-content': {
|
|
93
97
|
padding: any;
|
|
94
98
|
'& .SCCourse-preview-creator': {
|
|
95
99
|
paddingTop: number;
|
|
96
100
|
marginBottom: any;
|
|
101
|
+
textDecoration: string;
|
|
102
|
+
color: string;
|
|
97
103
|
};
|
|
98
104
|
'& .SCCourse-preview-name-wrapper': {
|
|
99
105
|
textDecoration: string;
|
|
@@ -87,13 +87,19 @@ const Component = {
|
|
|
87
87
|
width: theme.selfcommunity.user.avatar.sizeMedium,
|
|
88
88
|
height: theme.selfcommunity.user.avatar.sizeMedium,
|
|
89
89
|
border: `#FFF solid ${theme.spacing(0.2)}`
|
|
90
|
+
},
|
|
91
|
+
'.MuiBadge-badge': {
|
|
92
|
+
left: theme.spacing(3),
|
|
93
|
+
top: theme.spacing(-0.5)
|
|
90
94
|
}
|
|
91
95
|
},
|
|
92
96
|
'& .SCCourse-preview-content': {
|
|
93
97
|
padding: theme.spacing(2),
|
|
94
98
|
'& .SCCourse-preview-creator': {
|
|
95
99
|
paddingTop: 0,
|
|
96
|
-
marginBottom: theme.spacing(1)
|
|
100
|
+
marginBottom: theme.spacing(1),
|
|
101
|
+
textDecoration: 'none',
|
|
102
|
+
color: 'inherit'
|
|
97
103
|
},
|
|
98
104
|
'& .SCCourse-preview-name-wrapper': {
|
|
99
105
|
textDecoration: 'none',
|
|
@@ -148,6 +148,13 @@ declare const Component: {
|
|
|
148
148
|
width: string;
|
|
149
149
|
height: string;
|
|
150
150
|
};
|
|
151
|
+
'& a': {
|
|
152
|
+
textDecoration: string;
|
|
153
|
+
color: string;
|
|
154
|
+
};
|
|
155
|
+
'& .MuiBadge-root': {
|
|
156
|
+
marginRight: any;
|
|
157
|
+
};
|
|
151
158
|
};
|
|
152
159
|
'& .SCCourseDashboard-actions-wrapper': {
|
|
153
160
|
flexDirection: string;
|
|
@@ -142,6 +142,13 @@ const Component = {
|
|
|
142
142
|
'& .SCCourseDashboard-avatar': {
|
|
143
143
|
width: '36px',
|
|
144
144
|
height: '36px'
|
|
145
|
+
},
|
|
146
|
+
'& a': {
|
|
147
|
+
textDecoration: 'none',
|
|
148
|
+
color: 'inherit'
|
|
149
|
+
},
|
|
150
|
+
'& .MuiBadge-root': {
|
|
151
|
+
marginRight: theme.spacing(0.5),
|
|
145
152
|
}
|
|
146
153
|
},
|
|
147
154
|
'& .SCCourseDashboard-actions-wrapper': {
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -1797,12 +1797,18 @@ declare const theme: {
|
|
|
1797
1797
|
height: any;
|
|
1798
1798
|
border: string;
|
|
1799
1799
|
};
|
|
1800
|
+
'.MuiBadge-badge': {
|
|
1801
|
+
left: any;
|
|
1802
|
+
top: any;
|
|
1803
|
+
};
|
|
1800
1804
|
};
|
|
1801
1805
|
'& .SCCourse-preview-content': {
|
|
1802
1806
|
padding: any;
|
|
1803
1807
|
'& .SCCourse-preview-creator': {
|
|
1804
1808
|
paddingTop: number;
|
|
1805
1809
|
marginBottom: any;
|
|
1810
|
+
textDecoration: string;
|
|
1811
|
+
color: string;
|
|
1806
1812
|
};
|
|
1807
1813
|
'& .SCCourse-preview-name-wrapper': {
|
|
1808
1814
|
textDecoration: string;
|
|
@@ -2140,6 +2146,13 @@ declare const theme: {
|
|
|
2140
2146
|
width: string;
|
|
2141
2147
|
height: string;
|
|
2142
2148
|
};
|
|
2149
|
+
'& a': {
|
|
2150
|
+
textDecoration: string;
|
|
2151
|
+
color: string;
|
|
2152
|
+
};
|
|
2153
|
+
'& .MuiBadge-root': {
|
|
2154
|
+
marginRight: any;
|
|
2155
|
+
};
|
|
2143
2156
|
};
|
|
2144
2157
|
'& .SCCourseDashboard-actions-wrapper': {
|
|
2145
2158
|
flexDirection: string;
|