@selfcommunity/react-theme-default 0.4.5-alpha.1 → 0.4.5-alpha.11

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.
Files changed (78) hide show
  1. package/lib/cjs/components/SCComposer.d.ts +36 -8
  2. package/lib/cjs/components/SCComposer.js +37 -9
  3. package/lib/cjs/components/SCCreateLiveStreamButton.d.ts +12 -0
  4. package/lib/cjs/components/SCCreateLiveStreamButton.js +14 -0
  5. package/lib/cjs/components/SCEventInfoDetails.d.ts +3 -0
  6. package/lib/cjs/components/SCEventInfoDetails.js +3 -0
  7. package/lib/cjs/components/SCFeedObject.d.ts +21 -15
  8. package/lib/cjs/components/SCFeedObject.js +22 -16
  9. package/lib/cjs/components/SCFeedObjectDetailTemplate.d.ts +11 -0
  10. package/lib/cjs/components/SCFeedObjectDetailTemplate.js +12 -1
  11. package/lib/cjs/components/SCLiveStream.d.ts +218 -0
  12. package/lib/cjs/components/SCLiveStream.js +220 -0
  13. package/lib/cjs/components/SCLiveStreamDialog.d.ts +16 -0
  14. package/lib/cjs/components/SCLiveStreamDialog.js +18 -0
  15. package/lib/cjs/components/SCLiveStreamForm.d.ts +27 -0
  16. package/lib/cjs/components/SCLiveStreamForm.js +29 -0
  17. package/lib/cjs/components/SCLiveStreamFormSettings.d.ts +15 -0
  18. package/lib/cjs/components/SCLiveStreamFormSettings.js +17 -0
  19. package/lib/cjs/components/SCLiveStreamInfoDetails.d.ts +43 -0
  20. package/lib/cjs/components/SCLiveStreamInfoDetails.js +43 -0
  21. package/lib/cjs/components/SCLiveStreamRoom.d.ts +113 -0
  22. package/lib/cjs/components/SCLiveStreamRoom.js +115 -0
  23. package/lib/cjs/components/SCLiveStreamSelector.d.ts +71 -0
  24. package/lib/cjs/components/SCLiveStreamSelector.js +75 -0
  25. package/lib/cjs/components/SCLiveStreamVideoConference.d.ts +29 -0
  26. package/lib/cjs/components/SCLiveStreamVideoConference.js +31 -0
  27. package/lib/cjs/components/SCNavigationMenuDrawer.d.ts +4 -0
  28. package/lib/cjs/components/SCNavigationMenuDrawer.js +4 -0
  29. package/lib/cjs/components/SCNotification.d.ts +27 -0
  30. package/lib/cjs/components/SCNotification.js +27 -0
  31. package/lib/cjs/components/SCPrivateMessageThreadItem.d.ts +2 -0
  32. package/lib/cjs/components/SCPrivateMessageThreadItem.js +2 -1
  33. package/lib/cjs/components/SCUpScalingTierBadge.d.ts +13 -0
  34. package/lib/cjs/components/SCUpScalingTierBadge.js +15 -0
  35. package/lib/cjs/components/SCUserLiveStreamWidget.d.ts +101 -0
  36. package/lib/cjs/components/SCUserLiveStreamWidget.js +97 -0
  37. package/lib/cjs/index.d.ts +842 -114
  38. package/lib/cjs/index.js +23 -1
  39. package/lib/esm/components/SCComposer.d.ts +36 -8
  40. package/lib/esm/components/SCComposer.js +37 -9
  41. package/lib/esm/components/SCCreateLiveStreamButton.d.ts +12 -0
  42. package/lib/esm/components/SCCreateLiveStreamButton.js +12 -0
  43. package/lib/esm/components/SCEventInfoDetails.d.ts +3 -0
  44. package/lib/esm/components/SCEventInfoDetails.js +3 -0
  45. package/lib/esm/components/SCFeedObject.d.ts +21 -15
  46. package/lib/esm/components/SCFeedObject.js +22 -16
  47. package/lib/esm/components/SCFeedObjectDetailTemplate.d.ts +11 -0
  48. package/lib/esm/components/SCFeedObjectDetailTemplate.js +12 -1
  49. package/lib/esm/components/SCLiveStream.d.ts +218 -0
  50. package/lib/esm/components/SCLiveStream.js +218 -0
  51. package/lib/esm/components/SCLiveStreamDialog.d.ts +16 -0
  52. package/lib/esm/components/SCLiveStreamDialog.js +16 -0
  53. package/lib/esm/components/SCLiveStreamForm.d.ts +27 -0
  54. package/lib/esm/components/SCLiveStreamForm.js +27 -0
  55. package/lib/esm/components/SCLiveStreamFormSettings.d.ts +15 -0
  56. package/lib/esm/components/SCLiveStreamFormSettings.js +15 -0
  57. package/lib/esm/components/SCLiveStreamInfoDetails.d.ts +43 -0
  58. package/lib/esm/components/SCLiveStreamInfoDetails.js +41 -0
  59. package/lib/esm/components/SCLiveStreamRoom.d.ts +113 -0
  60. package/lib/esm/components/SCLiveStreamRoom.js +113 -0
  61. package/lib/esm/components/SCLiveStreamSelector.d.ts +71 -0
  62. package/lib/esm/components/SCLiveStreamSelector.js +73 -0
  63. package/lib/esm/components/SCLiveStreamVideoConference.d.ts +29 -0
  64. package/lib/esm/components/SCLiveStreamVideoConference.js +29 -0
  65. package/lib/esm/components/SCNavigationMenuDrawer.d.ts +4 -0
  66. package/lib/esm/components/SCNavigationMenuDrawer.js +4 -0
  67. package/lib/esm/components/SCNotification.d.ts +27 -0
  68. package/lib/esm/components/SCNotification.js +27 -0
  69. package/lib/esm/components/SCPrivateMessageThreadItem.d.ts +2 -0
  70. package/lib/esm/components/SCPrivateMessageThreadItem.js +2 -1
  71. package/lib/esm/components/SCUpScalingTierBadge.d.ts +13 -0
  72. package/lib/esm/components/SCUpScalingTierBadge.js +13 -0
  73. package/lib/esm/components/SCUserLiveStreamWidget.d.ts +101 -0
  74. package/lib/esm/components/SCUserLiveStreamWidget.js +95 -0
  75. package/lib/esm/index.d.ts +842 -114
  76. package/lib/esm/index.js +23 -1
  77. package/lib/umd/react-theme-default.js +1 -19
  78. package/package.json +123 -117
package/lib/cjs/index.js CHANGED
@@ -144,6 +144,17 @@ const SCScrollContainer_1 = tslib_1.__importDefault(require("./components/SCScro
144
144
  const SCSearchAutocomplete_1 = tslib_1.__importDefault(require("./components/SCSearchAutocomplete"));
145
145
  const SCSnippetNotifications_1 = tslib_1.__importDefault(require("./components/SCSnippetNotifications"));
146
146
  const SCSuggestedEventsWidget_1 = tslib_1.__importDefault(require("./components/SCSuggestedEventsWidget"));
147
+ const SCLiveStream_1 = tslib_1.__importDefault(require("./components/SCLiveStream"));
148
+ const SCCreateLiveStreamButton_1 = tslib_1.__importDefault(require("./components/SCCreateLiveStreamButton"));
149
+ const SCLiveStreamDialog_1 = tslib_1.__importDefault(require("./components/SCLiveStreamDialog"));
150
+ const SCLiveStreamSelector_1 = tslib_1.__importDefault(require("./components/SCLiveStreamSelector"));
151
+ const SCLiveStreamForm_1 = tslib_1.__importDefault(require("./components/SCLiveStreamForm"));
152
+ const SCLiveStreamFormSettings_1 = tslib_1.__importDefault(require("./components/SCLiveStreamFormSettings"));
153
+ const SCLiveStreamRoom_1 = tslib_1.__importDefault(require("./components/SCLiveStreamRoom"));
154
+ const SCLiveStreamVideoConference_1 = tslib_1.__importDefault(require("./components/SCLiveStreamVideoConference"));
155
+ const SCLiveStreamInfoDetails_1 = tslib_1.__importDefault(require("./components/SCLiveStreamInfoDetails"));
156
+ const SCUpScalingTierBadge_1 = tslib_1.__importDefault(require("./components/SCUpScalingTierBadge"));
157
+ const SCUserLiveStreamWidget_1 = tslib_1.__importDefault(require("./components/SCUserLiveStreamWidget"));
147
158
  const SCToastNotifications_1 = tslib_1.__importDefault(require("./components/SCToastNotifications"));
148
159
  const SCUser_1 = tslib_1.__importDefault(require("./components/SCUser"));
149
160
  const SCUserActionIconButton_1 = tslib_1.__importDefault(require("./components/SCUserActionIconButton"));
@@ -408,6 +419,7 @@ const theme = {
408
419
  SCEventSubscribeButton: SCEventSubscribeButton_1.default,
409
420
  SCEventParticipantsButton: SCEventParticipantsButton_1.default,
410
421
  SCMyEventsWidget: SCMyEventsWidget_1.default,
422
+ SCEventMediaWidget: SCEventMediaWidget_1.default,
411
423
  SCCalendar: SCCalendar_1.default,
412
424
  SCCreateEventWidget: SCCreateEventWidget_1.default,
413
425
  SCSuggestedEventsWidget: SCSuggestedEventsWidget_1.default,
@@ -416,7 +428,17 @@ const theme = {
416
428
  SCVoteAudienceButton: SCVoteAudienceButton_1.default,
417
429
  SCVoteButton: SCVoteButton_1.default,
418
430
  SCWidget: SCWidget_1.default,
419
- SCEventMediaWidget: SCEventMediaWidget_1.default
431
+ SCLiveStream: SCLiveStream_1.default,
432
+ SCLiveStreamInfoDetails: SCLiveStreamInfoDetails_1.default,
433
+ SCUpScalingTierBadge: SCUpScalingTierBadge_1.default,
434
+ SCUserLiveStreamWidget: SCUserLiveStreamWidget_1.default,
435
+ SCCreateLiveStreamButton: SCCreateLiveStreamButton_1.default,
436
+ SCCreateLiveStreamDialog: SCLiveStreamDialog_1.default,
437
+ SCLiveStreamSelector: SCLiveStreamSelector_1.default,
438
+ SCLiveStreamForm: SCLiveStreamForm_1.default,
439
+ SCLiveStreamFormSettings: SCLiveStreamFormSettings_1.default,
440
+ SCLiveStreamRoom: SCLiveStreamRoom_1.default,
441
+ SCLiveStreamVideoConference: SCLiveStreamVideoConference_1.default
420
442
  },
421
443
  selfcommunity: {
422
444
  user: {
@@ -49,19 +49,16 @@ declare const Component: {
49
49
  margin: string;
50
50
  padding: any;
51
51
  height: string;
52
+ overflowY: string;
52
53
  '& .SCEditor-root': {
53
54
  padding: any;
55
+ marginBottom: any;
56
+ position: string;
54
57
  '& .SCEditor-placeholder': {
55
58
  left: number;
56
- top: any;
57
59
  position: string;
58
60
  };
59
61
  '&.SCEditor-toolbar': {
60
- position: string;
61
- '& .SCEditor-placeholder': {
62
- marginTop: number;
63
- position: string;
64
- };
65
62
  '& .SCEditorToolbarPlugin-root': {
66
63
  zIndex: number;
67
64
  position: string;
@@ -105,8 +102,12 @@ declare const Component: {
105
102
  attributesRoot: ({ theme }: any) => {};
106
103
  contentDiscussionRoot: ({ theme }: any) => {
107
104
  '& .SCComposer-content-discussion-title': {
108
- paddingBottom: any;
109
105
  '& .MuiInputBase-root': {
106
+ [x: number]: {
107
+ maxHeight: number;
108
+ };
109
+ maxHeight: number;
110
+ overflowY: string;
110
111
  paddingLeft: number;
111
112
  paddingRight: number;
112
113
  paddingBottom: number;
@@ -126,6 +127,19 @@ declare const Component: {
126
127
  marginLeft: number;
127
128
  };
128
129
  };
130
+ '& .SCEditor-root': {
131
+ '& .SCEditor-placeholder': {
132
+ top: any;
133
+ };
134
+ '& .SCEditor-content': {
135
+ [x: number]: {
136
+ maxHeight: number;
137
+ };
138
+ overflowY: string;
139
+ minHeight: number;
140
+ maxHeight: string;
141
+ };
142
+ };
129
143
  };
130
144
  contentPollRoot: ({ theme }: any) => {
131
145
  padding: any;
@@ -139,7 +153,21 @@ declare const Component: {
139
153
  marginTop: any;
140
154
  };
141
155
  };
142
- contentPostRoot: ({ theme }: any) => {};
156
+ contentPostRoot: ({ theme }: any) => {
157
+ '& .SCEditor-root': {
158
+ '& .SCEditor-placeholder': {
159
+ top: any;
160
+ };
161
+ '& .SCEditor-content': {
162
+ [x: number]: {
163
+ maxHeight: number;
164
+ };
165
+ overflowY: string;
166
+ minHeight: number;
167
+ maxHeight: string;
168
+ };
169
+ };
170
+ };
143
171
  layerTransitionRoot: ({ theme }: any) => {
144
172
  position: string;
145
173
  top: number;
@@ -35,19 +35,16 @@ const Component = {
35
35
  margin: '45px 0',
36
36
  padding: theme.spacing(1, 2),
37
37
  height: `calc(100% - 45px - 45px - ${theme.spacing(2)})`,
38
+ overflowY: 'hidden',
38
39
  '& .SCEditor-root': {
39
40
  padding: theme.spacing(1, 0),
41
+ marginBottom: theme.spacing(3),
42
+ position: 'relative',
40
43
  '& .SCEditor-placeholder': {
41
44
  left: 0,
42
- top: theme.spacing(1),
43
45
  position: 'absolute'
44
46
  },
45
47
  '&.SCEditor-toolbar': {
46
- position: 'static',
47
- '& .SCEditor-placeholder': {
48
- marginTop: -40,
49
- position: 'static'
50
- },
51
48
  '& .SCEditorToolbarPlugin-root': {
52
49
  zIndex: 1,
53
50
  position: 'absolute',
@@ -106,13 +103,17 @@ const Component = {
106
103
  attributesRoot: ({ theme }) => ({}),
107
104
  contentDiscussionRoot: ({ theme }) => ({
108
105
  '& .SCComposer-content-discussion-title': {
109
- paddingBottom: theme.spacing(2),
110
106
  '& .MuiInputBase-root': {
107
+ maxHeight: 160,
108
+ overflowY: 'auto',
111
109
  paddingLeft: 0,
112
110
  paddingRight: 0,
113
111
  paddingBottom: 0,
114
- fontSize: '1.429rem',
112
+ fontSize: '1.3rem',
115
113
  fontWeight: theme.typography.fontWeightBold,
114
+ [theme.breakpoints.up('md')]: {
115
+ maxHeight: 110
116
+ },
116
117
  '& fieldset': {
117
118
  display: 'none'
118
119
  },
@@ -126,6 +127,19 @@ const Component = {
126
127
  '& .MuiFormHelperText-root': {
127
128
  marginLeft: 0
128
129
  }
130
+ },
131
+ '& .SCEditor-root': {
132
+ '& .SCEditor-placeholder': {
133
+ top: theme.spacing(7)
134
+ },
135
+ '& .SCEditor-content': {
136
+ overflowY: 'auto',
137
+ minHeight: 300,
138
+ maxHeight: `calc(100vh - 45px - 45px - 55px - 45px - ${theme.spacing(2)})`,
139
+ [theme.breakpoints.up('md')]: {
140
+ maxHeight: 380
141
+ }
142
+ }
129
143
  }
130
144
  }),
131
145
  contentPollRoot: ({ theme }) => ({
@@ -140,7 +154,21 @@ const Component = {
140
154
  marginTop: theme.spacing(3)
141
155
  }
142
156
  }),
143
- contentPostRoot: ({ theme }) => ({}),
157
+ contentPostRoot: ({ theme }) => ({
158
+ '& .SCEditor-root': {
159
+ '& .SCEditor-placeholder': {
160
+ top: theme.spacing()
161
+ },
162
+ '& .SCEditor-content': {
163
+ overflowY: 'auto',
164
+ minHeight: 300,
165
+ maxHeight: `calc(100vh - 45px - 45px - ${theme.spacing(3)})`,
166
+ [theme.breakpoints.up('md')]: {
167
+ maxHeight: 400
168
+ }
169
+ }
170
+ }
171
+ }),
144
172
  layerTransitionRoot: ({ theme }) => ({
145
173
  position: 'absolute',
146
174
  top: 0,
@@ -0,0 +1,12 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ '& .MuiButton-startIcon': {
5
+ '& .MuiIcon-root': {
6
+ fontSize: string;
7
+ };
8
+ };
9
+ };
10
+ };
11
+ };
12
+ export default Component;
@@ -0,0 +1,12 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({
4
+ '& .MuiButton-startIcon': {
5
+ '& .MuiIcon-root': {
6
+ fontSize: '1.2rem'
7
+ }
8
+ }
9
+ })
10
+ }
11
+ };
12
+ export default Component;
@@ -25,6 +25,9 @@ declare const Component: {
25
25
  '-webkit-box-orient': string;
26
26
  };
27
27
  };
28
+ '& .SCEventInfoDetails-join-live': {
29
+ height: number;
30
+ };
28
31
  '& .SCEventInfoDetails-in-progress': {
29
32
  width: string;
30
33
  height: string;
@@ -23,6 +23,9 @@ const Component = {
23
23
  '-webkit-box-orient': 'vertical'
24
24
  }
25
25
  },
26
+ '& .SCEventInfoDetails-join-live': {
27
+ height: 20
28
+ },
26
29
  '& .SCEventInfoDetails-in-progress': {
27
30
  width: '6px',
28
31
  height: '6px',
@@ -65,16 +65,16 @@ declare const Component: {
65
65
  [x: number]: {
66
66
  marginRight: string;
67
67
  };
68
+ height: number;
68
69
  };
69
70
  };
70
71
  '& .SCFeedObject-group, & .SCFeedObject-event': {
71
72
  justifyContent: string;
72
- padding: any;
73
- height: number;
74
73
  '& a': {
75
74
  padding: any;
76
- marginBottom: any;
75
+ margin: any;
77
76
  color: any;
77
+ maxHeight: number;
78
78
  '&:hover': {
79
79
  backgroundColor: any;
80
80
  };
@@ -306,19 +306,24 @@ declare const Component: {
306
306
  '& li': {
307
307
  margin: string;
308
308
  };
309
- '& span span': {
310
- display: string;
311
- };
312
- '& span span:not(:has(+ a))': {
313
- width: string;
314
- };
315
- '& span a': {
316
- display: string;
317
- margin: any;
318
- };
319
- '& span a:hover': {
309
+ '& span': {
320
310
  '& span': {
321
- textDecoration: string;
311
+ display: string;
312
+ };
313
+ '& span:not(:has(+ a))': {
314
+ width: string;
315
+ };
316
+ '& a': {
317
+ display: string;
318
+ margin: any;
319
+ };
320
+ '& a:hover': {
321
+ '& span': {
322
+ textDecoration: string;
323
+ };
324
+ };
325
+ '& :last-child': {
326
+ display: string;
322
327
  };
323
328
  };
324
329
  };
@@ -331,6 +336,7 @@ declare const Component: {
331
336
  fontSize: any;
332
337
  fontWeight: any;
333
338
  padding: any;
339
+ marginTop: number;
334
340
  justifyContent: string;
335
341
  '&:hover': {
336
342
  backgroundColor: string;
@@ -63,6 +63,7 @@ const Component = {
63
63
  }
64
64
  },
65
65
  '& .SCFeedObject-group, & .SCFeedObject-event': {
66
+ height: 20,
66
67
  [theme.breakpoints.up('sm')]: {
67
68
  marginRight: `${theme.spacing(1)} !important`
68
69
  }
@@ -70,12 +71,11 @@ const Component = {
70
71
  },
71
72
  '& .SCFeedObject-group, & .SCFeedObject-event': {
72
73
  justifyContent: 'flex-start',
73
- padding: theme.spacing(0.2, 0.5),
74
- height: 20,
75
74
  '& a': {
76
75
  padding: theme.spacing(0.5),
77
- marginBottom: theme.spacing(0.5),
76
+ margin: theme.spacing(0.5),
78
77
  color: theme.palette.common.white,
78
+ maxHeight: 20,
79
79
  '&:hover': {
80
80
  backgroundColor: theme.palette.common.black
81
81
  },
@@ -85,7 +85,7 @@ const Component = {
85
85
  }
86
86
  },
87
87
  borderBottom: '1px solid rgba(221, 221, 221, 1)',
88
- margin: theme.spacing(1, 2, 0, 2)
88
+ margin: theme.spacing(0.5, 2, 0, 2)
89
89
  },
90
90
  '& .SCFeedObject-content': {
91
91
  padding: theme.spacing(1, 0, 0, 0),
@@ -307,19 +307,24 @@ const Component = {
307
307
  '& li': {
308
308
  margin: '0 32px'
309
309
  },
310
- '& span span': {
311
- display: 'inline-block'
312
- },
313
- '& span span:not(:has(+ a))': {
314
- width: '100%'
315
- },
316
- '& span a': {
317
- display: 'inline-block',
318
- margin: theme.spacing(0, 0.3)
319
- },
320
- '& span a:hover': {
310
+ '& span': {
321
311
  '& span': {
322
- textDecoration: 'underline'
312
+ display: 'inline'
313
+ },
314
+ '& span:not(:has(+ a))': {
315
+ width: '100%'
316
+ },
317
+ '& a': {
318
+ display: 'inline-block',
319
+ margin: theme.spacing(0, 0.3)
320
+ },
321
+ '& a:hover': {
322
+ '& span': {
323
+ textDecoration: 'underline'
324
+ }
325
+ },
326
+ '& :last-child': {
327
+ display: 'inline'
323
328
  }
324
329
  }
325
330
  },
@@ -332,6 +337,7 @@ const Component = {
332
337
  fontSize: theme.typography.fontSize,
333
338
  fontWeight: theme.typography.fontWeightBold,
334
339
  padding: theme.spacing(0.25),
340
+ marginTop: -2,
335
341
  justifyContent: 'start',
336
342
  '&:hover': { backgroundColor: 'transparent' }
337
343
  }
@@ -12,8 +12,19 @@ declare const Component: {
12
12
  '& .SCFeedObject-text-section .SCFeedObject-text': {
13
13
  '& span': {
14
14
  display: string;
15
+ };
16
+ '& span:not(:has(+ a))': {
15
17
  width: string;
16
18
  };
19
+ '& a': {
20
+ display: string;
21
+ margin: any;
22
+ };
23
+ '& a:hover': {
24
+ '& span': {
25
+ textDecoration: string;
26
+ };
27
+ };
17
28
  };
18
29
  };
19
30
  };
@@ -11,8 +11,19 @@ const Component = {
11
11
  '& .SCFeedObject-content': {
12
12
  '& .SCFeedObject-text-section .SCFeedObject-text': {
13
13
  '& span': {
14
- display: 'inline-block',
14
+ display: 'inline'
15
+ },
16
+ '& span:not(:has(+ a))': {
15
17
  width: '100%'
18
+ },
19
+ '& a': {
20
+ display: 'inline-block',
21
+ margin: theme.spacing(0, 0.3)
22
+ },
23
+ '& a:hover': {
24
+ '& span': {
25
+ textDecoration: 'underline'
26
+ }
16
27
  }
17
28
  }
18
29
  }
@@ -0,0 +1,218 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {};
4
+ detailRoot: ({ theme }: any) => {
5
+ '& .SCLiveStream-detail-image-wrapper': {
6
+ position: string;
7
+ '& .SCLiveStream-detail-image': {
8
+ height: string;
9
+ };
10
+ '& .SCLiveStream-detail-in-progress': {
11
+ backgroundColor: any;
12
+ position: string;
13
+ top: number;
14
+ right: number;
15
+ color: any;
16
+ boxShadow: string;
17
+ };
18
+ };
19
+ '& .SCLiveStream-detail-content': {
20
+ padding: string;
21
+ '& .SCLiveStream-detail-user': {
22
+ marginTop: string;
23
+ '& .SCBaseItemButton-text': {
24
+ margin: number;
25
+ };
26
+ };
27
+ '& .SCLiveStream-detail-name-wrapper': {
28
+ textDecoration: string;
29
+ color: string;
30
+ '& .SCLiveStream-detail-name': {
31
+ marginBottom: string;
32
+ };
33
+ };
34
+ '& .SCLiveStream-detail-first-divider': {
35
+ marginTop: string;
36
+ marginBottom: any;
37
+ };
38
+ '& .SCLiveStream-detail-second-divider': {
39
+ marginTop: any;
40
+ marginBottom: string;
41
+ };
42
+ };
43
+ };
44
+ previewRoot: ({ theme }: any) => {
45
+ '& .SCLiveStream-preview-image-wrapper': {
46
+ position: string;
47
+ '& .SCLiveStream-preview-image': {
48
+ height: string;
49
+ };
50
+ '& .SCLiveStream-preview-in-progress': {
51
+ height: number;
52
+ backgroundColor: any;
53
+ position: string;
54
+ top: number;
55
+ right: number;
56
+ color: any;
57
+ boxShadow: string;
58
+ '& span': {
59
+ fontSize: string;
60
+ paddingLeft: any;
61
+ paddingRight: any;
62
+ };
63
+ };
64
+ };
65
+ '& .SCLiveStream-preview-content': {
66
+ padding: string;
67
+ '& .SCLiveStreamInfoDetails-icon-text-wrapper': {
68
+ '& .MuiTypography-root': {
69
+ fontSize: string;
70
+ };
71
+ };
72
+ '& .SCLiveStream-detail-user': {
73
+ marginTop: string;
74
+ '& .SCBaseItemButton-text': {
75
+ margin: number;
76
+ };
77
+ };
78
+ '& .SCLiveStream-preview-name-wrapper': {
79
+ marginTop: number;
80
+ textDecoration: string;
81
+ color: string;
82
+ '& h5': {
83
+ whiteSpace: string;
84
+ overflow: string;
85
+ textOverflow: string;
86
+ };
87
+ };
88
+ };
89
+ };
90
+ snippetRoot: ({ theme }: any) => {
91
+ overflow: string;
92
+ boxSizing: string;
93
+ paddingLeft: string;
94
+ paddingRight: string;
95
+ '& .SCBaseItem-image': {
96
+ '& .MuiAvatar-root': {
97
+ width: number;
98
+ height: number;
99
+ borderRadius: string;
100
+ '& img': {
101
+ borderRadius: string;
102
+ };
103
+ };
104
+ };
105
+ '& .SCLiveStream-snippet-image': {
106
+ position: string;
107
+ '& .SCLiveStream-snippet-in-progress': {
108
+ height: number;
109
+ backgroundColor: any;
110
+ position: string;
111
+ top: number;
112
+ right: number;
113
+ color: any;
114
+ boxShadow: string;
115
+ '& span': {
116
+ fontSize: string;
117
+ paddingLeft: any;
118
+ paddingRight: any;
119
+ };
120
+ };
121
+ };
122
+ '& .SCBaseItem-text': {
123
+ fontSize: any;
124
+ '& .SCLiveStream-snippet-primary': {
125
+ color: any;
126
+ textDecoration: string;
127
+ '&:hover': {
128
+ textDecoration: string;
129
+ };
130
+ '& p': {
131
+ fontWeight: any;
132
+ };
133
+ };
134
+ '& .SCLiveStream-snippet-secondary': {
135
+ color: any;
136
+ };
137
+ };
138
+ };
139
+ skeletonRoot: ({ theme }: any) => {
140
+ '& .SCLiveStream-skeleton-detail-root': {
141
+ '& .SCLiveStream-skeleton-detail-calendar': {
142
+ position: string;
143
+ bottom: string;
144
+ left: string;
145
+ boxShadow: string;
146
+ };
147
+ '& .SCLiveStream-skeleton-detail-content': {
148
+ padding: string;
149
+ '& .SCLiveStream-skeleton-detail-user': {
150
+ marginTop: string;
151
+ '& .SCBaseItemButton-text': {
152
+ margin: number;
153
+ };
154
+ };
155
+ '& .SCLiveStream-skeleton-detail-name-wrapper': {
156
+ textDecoration: string;
157
+ color: string;
158
+ '& .SCLiveStream-skeleton-detail-name': {
159
+ marginBottom: string;
160
+ };
161
+ };
162
+ '& .SCLiveStream-skeleton-detail-first-divider': {
163
+ marginTop: string;
164
+ marginBottom: any;
165
+ };
166
+ '& .SCLiveStream-skeleton-detail-second-divider': {
167
+ marginTop: any;
168
+ marginBottom: string;
169
+ };
170
+ };
171
+ };
172
+ '& .SCLiveStream-skeleton-preview-root': {
173
+ '& .SCLiveStream-skeleton-preview-content': {
174
+ padding: any;
175
+ };
176
+ '& .SCLiveStream-skeleton-preview-image': {
177
+ position: string;
178
+ '& .MuiSkeleton-root': {
179
+ borderRadius: string;
180
+ };
181
+ '& .MuiIcon-root': {
182
+ color: any;
183
+ position: string;
184
+ top: string;
185
+ left: string;
186
+ transform: string;
187
+ };
188
+ };
189
+ '& .SCBaseItem-actions': {
190
+ maxWidth: string;
191
+ };
192
+ };
193
+ '& .SCLiveStream-skeleton-snippet-root': {
194
+ overflow: string;
195
+ boxSizing: string;
196
+ paddingLeft: string;
197
+ paddingRight: string;
198
+ '& .SCLiveStream-skeleton-snippet-image': {
199
+ position: string;
200
+ '& .MuiSkeleton-root': {
201
+ borderRadius: string;
202
+ };
203
+ '& .MuiIcon-root': {
204
+ color: any;
205
+ position: string;
206
+ top: string;
207
+ left: string;
208
+ transform: string;
209
+ };
210
+ };
211
+ '& .SCBaseItem-actions': {
212
+ maxWidth: string;
213
+ };
214
+ };
215
+ };
216
+ };
217
+ };
218
+ export default Component;