@selfcommunity/react-theme-default 0.4.2-courses.185 → 0.4.2-courses.187
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/SCAddUsersButton.d.ts +7 -1
- package/lib/cjs/components/SCAddUsersButton.js +6 -1
- package/lib/cjs/components/SCCourseDashboard.d.ts +8 -11
- package/lib/cjs/components/SCCourseDashboard.js +13 -16
- package/lib/cjs/components/SCCourseForm.d.ts +20 -8
- package/lib/cjs/components/SCCourseForm.js +17 -7
- package/lib/cjs/components/SCCourseTypePopover.d.ts +23 -0
- package/lib/cjs/components/SCCourseTypePopover.js +24 -0
- package/lib/cjs/components/SCCourseUsersTable.d.ts +5 -3
- package/lib/cjs/components/SCCourseUsersTable.js +5 -4
- package/lib/cjs/components/SCCourses.d.ts +1 -1
- package/lib/cjs/components/SCCourses.js +2 -2
- package/lib/cjs/components/SCEditCourse.d.ts +50 -29
- package/lib/cjs/components/SCEditCourse.js +52 -31
- package/lib/cjs/components/SCEmptyStatus.d.ts +1 -0
- package/lib/cjs/components/SCEmptyStatus.js +1 -0
- package/lib/cjs/components/SCEvent.d.ts +22 -0
- package/lib/cjs/components/SCEvent.js +22 -0
- package/lib/cjs/components/SCEvents.d.ts +11 -1
- package/lib/cjs/components/SCEvents.js +12 -2
- package/lib/cjs/components/SCLessonObject.d.ts +0 -1
- package/lib/cjs/components/SCLessonObject.js +0 -1
- package/lib/cjs/index.d.ts +147 -55
- package/lib/cjs/index.js +2 -0
- package/lib/esm/components/SCAddUsersButton.d.ts +7 -1
- package/lib/esm/components/SCAddUsersButton.js +6 -1
- package/lib/esm/components/SCCourseDashboard.d.ts +8 -11
- package/lib/esm/components/SCCourseDashboard.js +13 -16
- package/lib/esm/components/SCCourseForm.d.ts +20 -8
- package/lib/esm/components/SCCourseForm.js +17 -7
- package/lib/esm/components/SCCourseTypePopover.d.ts +23 -0
- package/lib/esm/components/SCCourseTypePopover.js +22 -0
- package/lib/esm/components/SCCourseUsersTable.d.ts +5 -3
- package/lib/esm/components/SCCourseUsersTable.js +5 -4
- package/lib/esm/components/SCCourses.d.ts +1 -1
- package/lib/esm/components/SCCourses.js +2 -2
- package/lib/esm/components/SCEditCourse.d.ts +50 -29
- package/lib/esm/components/SCEditCourse.js +52 -31
- package/lib/esm/components/SCEmptyStatus.d.ts +1 -0
- package/lib/esm/components/SCEmptyStatus.js +1 -0
- package/lib/esm/components/SCEvent.d.ts +22 -0
- package/lib/esm/components/SCEvent.js +22 -0
- package/lib/esm/components/SCEvents.d.ts +11 -1
- package/lib/esm/components/SCEvents.js +12 -2
- package/lib/esm/components/SCLessonObject.d.ts +0 -1
- package/lib/esm/components/SCLessonObject.js +0 -1
- package/lib/esm/index.d.ts +147 -55
- package/lib/esm/index.js +2 -0
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -5,9 +5,6 @@ const Component = {
|
|
|
5
5
|
'& .SCCourseForm-contrast-color': {
|
|
6
6
|
color: getContrastRatio(theme.palette.background.default, theme.palette.common.white) > 4.5 ? theme.palette.common.white : undefined
|
|
7
7
|
},
|
|
8
|
-
'& .SCCourseForm-contrast-bg-color': {
|
|
9
|
-
backgroundColor: getContrastRatio(theme.palette.background.default, theme.palette.common.white) > 4.5 ? theme.palette.common.white : undefined
|
|
10
|
-
},
|
|
11
8
|
'& .SCCourseForm-cover': {
|
|
12
9
|
position: 'relative',
|
|
13
10
|
height: 103,
|
|
@@ -25,10 +22,16 @@ const Component = {
|
|
|
25
22
|
marginTop: theme.spacing(4.5),
|
|
26
23
|
color: theme.palette.text.secondary
|
|
27
24
|
},
|
|
25
|
+
'& h5': {
|
|
26
|
+
padding: theme.spacing(1)
|
|
27
|
+
},
|
|
28
28
|
'& .SCCourseForm-form': {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
border: `1px solid ${theme.palette.grey['300']}`,
|
|
30
|
+
borderBottom: 'unset',
|
|
31
|
+
borderRadius: '5px',
|
|
32
|
+
borderBottomLeftRadius: 'unset',
|
|
33
|
+
borderBottomRightRadius: 'unset',
|
|
34
|
+
backgroundColor: theme.palette.common.white,
|
|
32
35
|
'& .SCCourseForm-name': {
|
|
33
36
|
marginTop: theme.spacing(3)
|
|
34
37
|
},
|
|
@@ -36,6 +39,7 @@ const Component = {
|
|
|
36
39
|
marginTop: theme.spacing(1)
|
|
37
40
|
},
|
|
38
41
|
'& .SCCourseForm-edit-root': {
|
|
42
|
+
backgroundColor: theme.palette.common.white,
|
|
39
43
|
marginTop: theme.spacing(1),
|
|
40
44
|
'& .SCCourseForm-edit-card': {
|
|
41
45
|
display: 'flex',
|
|
@@ -128,7 +132,13 @@ const Component = {
|
|
|
128
132
|
color: theme.palette.error.main
|
|
129
133
|
},
|
|
130
134
|
'& .SCCourseForm-actions': {
|
|
131
|
-
|
|
135
|
+
border: `1px solid ${theme.palette.grey['300']}`,
|
|
136
|
+
borderTop: 'unset',
|
|
137
|
+
borderRadius: '5px',
|
|
138
|
+
borderTopLeftRadius: 'unset',
|
|
139
|
+
borderTopRightRadius: 'unset',
|
|
140
|
+
backgroundColor: theme.palette.common.white,
|
|
141
|
+
padding: theme.spacing(2, 0),
|
|
132
142
|
display: 'flex',
|
|
133
143
|
justifyContent: 'flex-end',
|
|
134
144
|
gap: theme.spacing(2),
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
declare const Component: {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }: {
|
|
4
|
+
theme: any;
|
|
5
|
+
}) => {
|
|
6
|
+
flexDirection: string;
|
|
7
|
+
alignItems: string;
|
|
8
|
+
gap: any;
|
|
9
|
+
'&.SCCourseTypePopover-contrast-color': {
|
|
10
|
+
color: any;
|
|
11
|
+
};
|
|
12
|
+
'& .SCCourseTypePopover-button': {
|
|
13
|
+
padding: number;
|
|
14
|
+
textDecoration: string;
|
|
15
|
+
'&:hover': {
|
|
16
|
+
backgroundColor: string;
|
|
17
|
+
textDecoration: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getContrastRatio } from '@mui/material';
|
|
2
|
+
const Component = {
|
|
3
|
+
styleOverrides: {
|
|
4
|
+
root: ({ theme }) => ({
|
|
5
|
+
flexDirection: 'row',
|
|
6
|
+
alignItems: 'center',
|
|
7
|
+
gap: theme.spacing(1),
|
|
8
|
+
'&.SCCourseTypePopover-contrast-color': {
|
|
9
|
+
color: getContrastRatio(theme.palette.background.default, theme.palette.common.white) > 4.5 ? theme.palette.common.white : undefined
|
|
10
|
+
},
|
|
11
|
+
'& .SCCourseTypePopover-button': {
|
|
12
|
+
padding: 0,
|
|
13
|
+
textDecoration: 'underline',
|
|
14
|
+
'&:hover': {
|
|
15
|
+
backgroundColor: 'unset',
|
|
16
|
+
textDecoration: 'underline'
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
})
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
export default Component;
|
|
@@ -3,9 +3,11 @@ declare const Component: {
|
|
|
3
3
|
root: ({ theme }: {
|
|
4
4
|
theme: any;
|
|
5
5
|
}) => {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
border: string;
|
|
7
|
+
borderTop: string;
|
|
8
|
+
borderRadius: string;
|
|
9
|
+
paddingBottom: string;
|
|
10
|
+
backgroundColor: any;
|
|
9
11
|
'& .SCCourseUsersTable-search': {
|
|
10
12
|
'& > .MuiInputBase-root': {
|
|
11
13
|
borderBottomLeftRadius: string;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { getContrastRatio } from '@mui/material';
|
|
2
1
|
const Component = {
|
|
3
2
|
styleOverrides: {
|
|
4
3
|
root: ({ theme }) => ({
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
border: `1px solid ${theme.palette.grey['300']}`,
|
|
5
|
+
borderTop: 'unset',
|
|
6
|
+
borderRadius: '5px',
|
|
7
|
+
paddingBottom: '5px',
|
|
8
|
+
backgroundColor: theme.palette.common.white,
|
|
8
9
|
'& .SCCourseUsersTable-search': {
|
|
9
10
|
'& > .MuiInputBase-root': {
|
|
10
11
|
borderBottomLeftRadius: 'unset',
|
|
@@ -123,10 +123,10 @@ const Component = {
|
|
|
123
123
|
}
|
|
124
124
|
}
|
|
125
125
|
}),
|
|
126
|
-
coursesChipRoot: ({ theme,
|
|
126
|
+
coursesChipRoot: ({ theme, showMine, showManagedCourses }) => ({
|
|
127
127
|
height: theme.spacing(5.25),
|
|
128
128
|
borderRadius: theme.spacing(0.5),
|
|
129
|
-
color:
|
|
129
|
+
color: showMine || showManagedCourses ? theme.palette.common.white : theme.palette.text.primary,
|
|
130
130
|
'& .MuiIcon-root': {
|
|
131
131
|
fontSize: '1rem',
|
|
132
132
|
color: theme.palette.common.white
|
|
@@ -9,9 +9,6 @@ declare const Component: {
|
|
|
9
9
|
'& .SCEditCourse-contrast-color': {
|
|
10
10
|
color: any;
|
|
11
11
|
};
|
|
12
|
-
'& .SCEditCourse-contrast-bg-color': {
|
|
13
|
-
backgroundColor: any;
|
|
14
|
-
};
|
|
15
12
|
'& .SCEditCourse-header': {
|
|
16
13
|
[x: number]: {
|
|
17
14
|
paddingLeft: any;
|
|
@@ -57,6 +54,14 @@ declare const Component: {
|
|
|
57
54
|
};
|
|
58
55
|
'& .SCEditCourse-status': {
|
|
59
56
|
borderRadius: any;
|
|
57
|
+
'& .MuiButtonBase-root': {
|
|
58
|
+
padding: number;
|
|
59
|
+
textDecoration: string;
|
|
60
|
+
'&:hover': {
|
|
61
|
+
backgroundColor: string;
|
|
62
|
+
textDecoration: string;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
60
65
|
};
|
|
61
66
|
'& .SCEditCourse-lesson-empty-status': {
|
|
62
67
|
border: string;
|
|
@@ -75,6 +80,7 @@ declare const Component: {
|
|
|
75
80
|
borderBottom: string;
|
|
76
81
|
borderTopLeftRadius: string;
|
|
77
82
|
borderTopRightRadius: string;
|
|
83
|
+
backgroundColor: any;
|
|
78
84
|
'& .SCEditCourse-lessons-sections': {
|
|
79
85
|
flexDirection: string;
|
|
80
86
|
alignItems: string;
|
|
@@ -98,6 +104,7 @@ declare const Component: {
|
|
|
98
104
|
border: string;
|
|
99
105
|
borderBottomLeftRadius: string;
|
|
100
106
|
borderBottomRightRadius: string;
|
|
107
|
+
backgroundColor: any;
|
|
101
108
|
'& .SCEditCourse-table': {
|
|
102
109
|
'& .SCEditCourse-cell-width': {
|
|
103
110
|
width: string;
|
|
@@ -180,19 +187,25 @@ declare const Component: {
|
|
|
180
187
|
marginTop: string;
|
|
181
188
|
marginBottom: any;
|
|
182
189
|
};
|
|
183
|
-
'& .SCEditCourse-options-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
190
|
+
'& .SCEditCourse-options-container': {
|
|
191
|
+
border: string;
|
|
192
|
+
borderRadius: string;
|
|
193
|
+
padding: string;
|
|
194
|
+
backgroundColor: any;
|
|
195
|
+
'& .SCEditCourse-options-wrapper': {
|
|
196
|
+
gap: any;
|
|
197
|
+
maxWidth: string;
|
|
198
|
+
margin: string;
|
|
199
|
+
};
|
|
200
|
+
'& .SCEditCourse-options-divider': {
|
|
201
|
+
marginTop: string;
|
|
202
|
+
marginBottom: any;
|
|
203
|
+
};
|
|
204
|
+
'& .SCEditCourse-options-button-wrapper': {
|
|
205
|
+
alignItems: string;
|
|
206
|
+
maxWidth: string;
|
|
207
|
+
margin: string;
|
|
208
|
+
};
|
|
196
209
|
};
|
|
197
210
|
};
|
|
198
211
|
};
|
|
@@ -241,12 +254,14 @@ declare const Component: {
|
|
|
241
254
|
padding: any;
|
|
242
255
|
border: string;
|
|
243
256
|
borderRadius: string;
|
|
257
|
+
backgroundColor: any;
|
|
244
258
|
};
|
|
245
259
|
'& .SCEditCourse-table-container': {
|
|
246
260
|
width: string;
|
|
247
261
|
border: string;
|
|
248
262
|
borderBottomLeftRadius: string;
|
|
249
263
|
borderBottomRightRadius: string;
|
|
264
|
+
backgroundColor: any;
|
|
250
265
|
'& .SCEditCourse-margin': {
|
|
251
266
|
margin: string;
|
|
252
267
|
};
|
|
@@ -265,19 +280,25 @@ declare const Component: {
|
|
|
265
280
|
marginTop: string;
|
|
266
281
|
marginBottom: any;
|
|
267
282
|
};
|
|
268
|
-
'& .SCEditCourse-options-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
283
|
+
'& .SCEditCourse-options-container': {
|
|
284
|
+
border: string;
|
|
285
|
+
borderRadius: string;
|
|
286
|
+
paddingBottom: string;
|
|
287
|
+
backgroundColor: any;
|
|
288
|
+
'& .SCEditCourse-options-wrapper': {
|
|
289
|
+
gap: any;
|
|
290
|
+
maxWidth: string;
|
|
291
|
+
margin: string;
|
|
292
|
+
};
|
|
293
|
+
'& .SCEditCourse-options-divider': {
|
|
294
|
+
marginTop: string;
|
|
295
|
+
marginBottom: any;
|
|
296
|
+
};
|
|
297
|
+
'& .SCEditCourse-options-button-wrapper': {
|
|
298
|
+
alignItems: string;
|
|
299
|
+
maxWidth: string;
|
|
300
|
+
margin: string;
|
|
301
|
+
};
|
|
281
302
|
};
|
|
282
303
|
};
|
|
283
304
|
};
|
|
@@ -8,9 +8,6 @@ const Component = {
|
|
|
8
8
|
'& .SCEditCourse-contrast-color': {
|
|
9
9
|
color: getContrastRatio(theme.palette.background.default, theme.palette.common.white) > 4.5 ? theme.palette.common.white : undefined
|
|
10
10
|
},
|
|
11
|
-
'& .SCEditCourse-contrast-bg-color': {
|
|
12
|
-
backgroundColor: getContrastRatio(theme.palette.background.default, theme.palette.common.white) > 4.5 ? theme.palette.common.white : undefined
|
|
13
|
-
},
|
|
14
11
|
'& .SCEditCourse-header': {
|
|
15
12
|
flexDirection: 'row',
|
|
16
13
|
alignItems: 'center',
|
|
@@ -55,7 +52,15 @@ const Component = {
|
|
|
55
52
|
}
|
|
56
53
|
},
|
|
57
54
|
'& .SCEditCourse-status': {
|
|
58
|
-
borderRadius: theme.spacing(1)
|
|
55
|
+
borderRadius: theme.spacing(1),
|
|
56
|
+
'& .MuiButtonBase-root': {
|
|
57
|
+
padding: 0,
|
|
58
|
+
textDecoration: 'underline',
|
|
59
|
+
'&:hover': {
|
|
60
|
+
backgroundColor: 'unset',
|
|
61
|
+
textDecoration: 'underline'
|
|
62
|
+
}
|
|
63
|
+
}
|
|
59
64
|
},
|
|
60
65
|
'& .SCEditCourse-lesson-empty-status': {
|
|
61
66
|
border: `1px solid ${theme.palette.grey[300]}`,
|
|
@@ -74,6 +79,7 @@ const Component = {
|
|
|
74
79
|
borderBottom: 'unset',
|
|
75
80
|
borderTopLeftRadius: '5px',
|
|
76
81
|
borderTopRightRadius: '5px',
|
|
82
|
+
backgroundColor: theme.palette.common.white,
|
|
77
83
|
'& .SCEditCourse-lessons-sections': {
|
|
78
84
|
flexDirection: 'row',
|
|
79
85
|
alignItems: 'center',
|
|
@@ -97,6 +103,7 @@ const Component = {
|
|
|
97
103
|
border: `1px solid ${theme.palette.grey[300]}`,
|
|
98
104
|
borderBottomLeftRadius: '5px',
|
|
99
105
|
borderBottomRightRadius: '5px',
|
|
106
|
+
backgroundColor: theme.palette.common.white,
|
|
100
107
|
'& .SCEditCourse-table': {
|
|
101
108
|
'& .SCEditCourse-cell-width': {
|
|
102
109
|
width: '3%'
|
|
@@ -179,19 +186,25 @@ const Component = {
|
|
|
179
186
|
marginTop: '7px',
|
|
180
187
|
marginBottom: theme.spacing(2)
|
|
181
188
|
},
|
|
182
|
-
'& .SCEditCourse-options-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
189
|
+
'& .SCEditCourse-options-container': {
|
|
190
|
+
border: `1px solid ${theme.palette.grey['300']}`,
|
|
191
|
+
borderRadius: '5px',
|
|
192
|
+
padding: '10px 0',
|
|
193
|
+
backgroundColor: theme.palette.common.white,
|
|
194
|
+
'& .SCEditCourse-options-wrapper': {
|
|
195
|
+
gap: theme.spacing(5),
|
|
196
|
+
maxWidth: '600px',
|
|
197
|
+
margin: 'auto'
|
|
198
|
+
},
|
|
199
|
+
'& .SCEditCourse-options-divider': {
|
|
200
|
+
marginTop: '21px',
|
|
201
|
+
marginBottom: theme.spacing(3)
|
|
202
|
+
},
|
|
203
|
+
'& .SCEditCourse-options-button-wrapper': {
|
|
204
|
+
alignItems: 'flex-end',
|
|
205
|
+
maxWidth: '600px',
|
|
206
|
+
margin: 'auto'
|
|
207
|
+
}
|
|
195
208
|
}
|
|
196
209
|
}
|
|
197
210
|
}),
|
|
@@ -237,13 +250,15 @@ const Component = {
|
|
|
237
250
|
marginTop: '9px',
|
|
238
251
|
padding: theme.spacing(2),
|
|
239
252
|
border: `1px solid ${theme.palette.grey[300]}`,
|
|
240
|
-
borderRadius: '5px'
|
|
253
|
+
borderRadius: '5px',
|
|
254
|
+
backgroundColor: theme.palette.common.white
|
|
241
255
|
},
|
|
242
256
|
'& .SCEditCourse-table-container': {
|
|
243
257
|
width: 'auto',
|
|
244
258
|
border: `1px solid ${theme.palette.grey[300]}`,
|
|
245
259
|
borderBottomLeftRadius: '5px',
|
|
246
260
|
borderBottomRightRadius: '5px',
|
|
261
|
+
backgroundColor: theme.palette.common.white,
|
|
247
262
|
'& .SCEditCourse-margin': {
|
|
248
263
|
margin: 'auto'
|
|
249
264
|
},
|
|
@@ -262,19 +277,25 @@ const Component = {
|
|
|
262
277
|
marginTop: '7px',
|
|
263
278
|
marginBottom: theme.spacing(2)
|
|
264
279
|
},
|
|
265
|
-
'& .SCEditCourse-options-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
280
|
+
'& .SCEditCourse-options-container': {
|
|
281
|
+
border: `1px solid ${theme.palette.grey['300']}`,
|
|
282
|
+
borderRadius: '5px',
|
|
283
|
+
paddingBottom: '10px',
|
|
284
|
+
backgroundColor: theme.palette.common.white,
|
|
285
|
+
'& .SCEditCourse-options-wrapper': {
|
|
286
|
+
gap: theme.spacing(5),
|
|
287
|
+
maxWidth: '600px',
|
|
288
|
+
margin: 'auto'
|
|
289
|
+
},
|
|
290
|
+
'& .SCEditCourse-options-divider': {
|
|
291
|
+
marginTop: '21px',
|
|
292
|
+
marginBottom: theme.spacing(3)
|
|
293
|
+
},
|
|
294
|
+
'& .SCEditCourse-options-button-wrapper': {
|
|
295
|
+
alignItems: 'flex-end',
|
|
296
|
+
maxWidth: '600px',
|
|
297
|
+
margin: 'auto'
|
|
298
|
+
}
|
|
278
299
|
}
|
|
279
300
|
})
|
|
280
301
|
}
|
|
@@ -61,6 +61,14 @@ declare const Component: {
|
|
|
61
61
|
paddingRight: any;
|
|
62
62
|
};
|
|
63
63
|
};
|
|
64
|
+
'& .SCEvent-finished-chip': {
|
|
65
|
+
backgroundColor: any;
|
|
66
|
+
position: string;
|
|
67
|
+
top: number;
|
|
68
|
+
right: number;
|
|
69
|
+
color: any;
|
|
70
|
+
boxShadow: string;
|
|
71
|
+
};
|
|
64
72
|
};
|
|
65
73
|
'& .SCEvent-preview-content': {
|
|
66
74
|
padding: string;
|
|
@@ -117,6 +125,20 @@ declare const Component: {
|
|
|
117
125
|
paddingRight: any;
|
|
118
126
|
};
|
|
119
127
|
};
|
|
128
|
+
'& .SCEvent-finished-chip': {
|
|
129
|
+
height: number;
|
|
130
|
+
backgroundColor: any;
|
|
131
|
+
position: string;
|
|
132
|
+
top: number;
|
|
133
|
+
right: number;
|
|
134
|
+
color: any;
|
|
135
|
+
boxShadow: string;
|
|
136
|
+
'& span': {
|
|
137
|
+
fontSize: string;
|
|
138
|
+
paddingLeft: any;
|
|
139
|
+
paddingRight: any;
|
|
140
|
+
};
|
|
141
|
+
};
|
|
120
142
|
};
|
|
121
143
|
'& .SCBaseItem-text': {
|
|
122
144
|
fontSize: any;
|
|
@@ -60,6 +60,14 @@ const Component = {
|
|
|
60
60
|
paddingLeft: theme.spacing(0.5),
|
|
61
61
|
paddingRight: theme.spacing(0.5)
|
|
62
62
|
}
|
|
63
|
+
},
|
|
64
|
+
'& .SCEvent-finished-chip': {
|
|
65
|
+
backgroundColor: theme.palette.common.black,
|
|
66
|
+
position: 'absolute',
|
|
67
|
+
top: 10,
|
|
68
|
+
right: 10,
|
|
69
|
+
color: theme.palette.common.white,
|
|
70
|
+
boxShadow: 'rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px'
|
|
63
71
|
}
|
|
64
72
|
},
|
|
65
73
|
'& .SCEvent-preview-content': {
|
|
@@ -116,6 +124,20 @@ const Component = {
|
|
|
116
124
|
paddingLeft: theme.spacing(0.5),
|
|
117
125
|
paddingRight: theme.spacing(0.5)
|
|
118
126
|
}
|
|
127
|
+
},
|
|
128
|
+
'& .SCEvent-finished-chip': {
|
|
129
|
+
height: 18,
|
|
130
|
+
backgroundColor: theme.palette.common.black,
|
|
131
|
+
position: 'absolute',
|
|
132
|
+
top: 5,
|
|
133
|
+
right: 3,
|
|
134
|
+
color: theme.palette.common.white,
|
|
135
|
+
boxShadow: 'rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px',
|
|
136
|
+
'& span': {
|
|
137
|
+
fontSize: '0.8rem',
|
|
138
|
+
paddingLeft: theme.spacing(0.5),
|
|
139
|
+
paddingRight: theme.spacing(0.5)
|
|
140
|
+
}
|
|
119
141
|
}
|
|
120
142
|
},
|
|
121
143
|
'& .SCBaseItem-text': {
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
+
'& .SCEvents-section-title': {
|
|
5
|
+
marginTop: any;
|
|
6
|
+
marginBottom: any;
|
|
7
|
+
color: any;
|
|
8
|
+
fontWeight: number;
|
|
9
|
+
fontSize: number;
|
|
10
|
+
};
|
|
11
|
+
'& .SCEvents-divider': {
|
|
12
|
+
marginBottom: any;
|
|
13
|
+
};
|
|
4
14
|
'& .SCEvents-filters': {
|
|
5
15
|
alignItems: string;
|
|
6
16
|
marginTop: any;
|
|
@@ -78,7 +88,7 @@ declare const Component: {
|
|
|
78
88
|
};
|
|
79
89
|
};
|
|
80
90
|
};
|
|
81
|
-
eventsChipRoot: ({ theme, showFollowed, showPastEvents }: any) => {
|
|
91
|
+
eventsChipRoot: ({ theme, showFollowed, showPastEvents, showOngoingEvents }: any) => {
|
|
82
92
|
height: any;
|
|
83
93
|
borderRadius: any;
|
|
84
94
|
color: any;
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
const Component = {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }) => ({
|
|
4
|
+
'& .SCEvents-section-title': {
|
|
5
|
+
marginTop: theme.spacing(4),
|
|
6
|
+
marginBottom: theme.spacing(1),
|
|
7
|
+
color: theme.palette.primary.main,
|
|
8
|
+
fontWeight: 500,
|
|
9
|
+
fontSize: 18
|
|
10
|
+
},
|
|
11
|
+
'& .SCEvents-divider': {
|
|
12
|
+
marginBottom: theme.spacing(2)
|
|
13
|
+
},
|
|
4
14
|
'& .SCEvents-filters': {
|
|
5
15
|
alignItems: 'center',
|
|
6
16
|
marginTop: theme.spacing(),
|
|
@@ -78,10 +88,10 @@ const Component = {
|
|
|
78
88
|
}
|
|
79
89
|
}
|
|
80
90
|
}),
|
|
81
|
-
eventsChipRoot: ({ theme, showFollowed, showPastEvents }) => ({
|
|
91
|
+
eventsChipRoot: ({ theme, showFollowed, showPastEvents, showOngoingEvents }) => ({
|
|
82
92
|
height: theme.spacing(4.75),
|
|
83
93
|
borderRadius: theme.spacing(0.5),
|
|
84
|
-
color: showFollowed || showPastEvents ? theme.palette.common.white : theme.palette.text.primary,
|
|
94
|
+
color: showFollowed || showPastEvents || showOngoingEvents ? theme.palette.common.white : theme.palette.text.primary,
|
|
85
95
|
'& .MuiIcon-root': {
|
|
86
96
|
fontSize: '1rem',
|
|
87
97
|
color: theme.palette.common.white
|