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

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 (62) hide show
  1. package/lib/cjs/components/SCEventInfoDetails.d.ts +3 -0
  2. package/lib/cjs/components/SCEventInfoDetails.js +3 -0
  3. package/lib/cjs/components/SCFeedObject.d.ts +1 -0
  4. package/lib/cjs/components/SCFeedObject.js +3 -2
  5. package/lib/cjs/components/SCLiveStream.d.ts +218 -0
  6. package/lib/cjs/components/SCLiveStream.js +220 -0
  7. package/lib/cjs/components/SCLiveStreamDialog.d.ts +16 -0
  8. package/lib/cjs/components/SCLiveStreamDialog.js +18 -0
  9. package/lib/cjs/components/SCLiveStreamForm.d.ts +27 -0
  10. package/lib/cjs/components/SCLiveStreamForm.js +29 -0
  11. package/lib/cjs/components/SCLiveStreamFormSettings.d.ts +15 -0
  12. package/lib/cjs/components/SCLiveStreamFormSettings.js +17 -0
  13. package/lib/cjs/components/SCLiveStreamInfoDetails.d.ts +43 -0
  14. package/lib/cjs/components/SCLiveStreamInfoDetails.js +43 -0
  15. package/lib/cjs/components/SCLiveStreamRoom.d.ts +113 -0
  16. package/lib/cjs/components/SCLiveStreamRoom.js +115 -0
  17. package/lib/cjs/components/SCLiveStreamSelector.d.ts +71 -0
  18. package/lib/cjs/components/SCLiveStreamSelector.js +75 -0
  19. package/lib/cjs/components/SCLiveStreamVideoConference.d.ts +27 -0
  20. package/lib/cjs/components/SCLiveStreamVideoConference.js +29 -0
  21. package/lib/cjs/components/SCNavigationMenuDrawer.d.ts +3 -0
  22. package/lib/cjs/components/SCNavigationMenuDrawer.js +3 -0
  23. package/lib/cjs/components/SCNotification.d.ts +27 -0
  24. package/lib/cjs/components/SCNotification.js +27 -0
  25. package/lib/cjs/components/SCUpScalingTierBadge.d.ts +13 -0
  26. package/lib/cjs/components/SCUpScalingTierBadge.js +15 -0
  27. package/lib/cjs/components/SCUserLiveStreamWidget.d.ts +101 -0
  28. package/lib/cjs/components/SCUserLiveStreamWidget.js +97 -0
  29. package/lib/cjs/index.d.ts +762 -94
  30. package/lib/cjs/index.js +21 -1
  31. package/lib/esm/components/SCEventInfoDetails.d.ts +3 -0
  32. package/lib/esm/components/SCEventInfoDetails.js +3 -0
  33. package/lib/esm/components/SCFeedObject.d.ts +1 -0
  34. package/lib/esm/components/SCFeedObject.js +3 -2
  35. package/lib/esm/components/SCLiveStream.d.ts +218 -0
  36. package/lib/esm/components/SCLiveStream.js +218 -0
  37. package/lib/esm/components/SCLiveStreamDialog.d.ts +16 -0
  38. package/lib/esm/components/SCLiveStreamDialog.js +16 -0
  39. package/lib/esm/components/SCLiveStreamForm.d.ts +27 -0
  40. package/lib/esm/components/SCLiveStreamForm.js +27 -0
  41. package/lib/esm/components/SCLiveStreamFormSettings.d.ts +15 -0
  42. package/lib/esm/components/SCLiveStreamFormSettings.js +15 -0
  43. package/lib/esm/components/SCLiveStreamInfoDetails.d.ts +43 -0
  44. package/lib/esm/components/SCLiveStreamInfoDetails.js +41 -0
  45. package/lib/esm/components/SCLiveStreamRoom.d.ts +113 -0
  46. package/lib/esm/components/SCLiveStreamRoom.js +113 -0
  47. package/lib/esm/components/SCLiveStreamSelector.d.ts +71 -0
  48. package/lib/esm/components/SCLiveStreamSelector.js +73 -0
  49. package/lib/esm/components/SCLiveStreamVideoConference.d.ts +27 -0
  50. package/lib/esm/components/SCLiveStreamVideoConference.js +27 -0
  51. package/lib/esm/components/SCNavigationMenuDrawer.d.ts +3 -0
  52. package/lib/esm/components/SCNavigationMenuDrawer.js +3 -0
  53. package/lib/esm/components/SCNotification.d.ts +27 -0
  54. package/lib/esm/components/SCNotification.js +27 -0
  55. package/lib/esm/components/SCUpScalingTierBadge.d.ts +13 -0
  56. package/lib/esm/components/SCUpScalingTierBadge.js +13 -0
  57. package/lib/esm/components/SCUserLiveStreamWidget.d.ts +101 -0
  58. package/lib/esm/components/SCUserLiveStreamWidget.js +95 -0
  59. package/lib/esm/index.d.ts +762 -94
  60. package/lib/esm/index.js +21 -1
  61. package/lib/umd/react-theme-default.js +1 -19
  62. package/package.json +123 -117
@@ -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;
@@ -25,6 +25,9 @@ const Component = {
25
25
  '-webkit-box-orient': 'vertical'
26
26
  }
27
27
  },
28
+ '& .SCEventInfoDetails-join-live': {
29
+ height: 20
30
+ },
28
31
  '& .SCEventInfoDetails-in-progress': {
29
32
  width: '6px',
30
33
  height: '6px',
@@ -75,6 +75,7 @@ declare const Component: {
75
75
  padding: any;
76
76
  marginBottom: any;
77
77
  color: any;
78
+ maxHeight: number;
78
79
  '&:hover': {
79
80
  backgroundColor: any;
80
81
  };
@@ -72,12 +72,13 @@ const Component = {
72
72
  },
73
73
  '& .SCFeedObject-group, & .SCFeedObject-event': {
74
74
  justifyContent: 'flex-start',
75
- padding: theme.spacing(0.2, 0.5),
75
+ padding: theme.spacing(0.4, 0.5),
76
76
  height: 20,
77
77
  '& a': {
78
78
  padding: theme.spacing(0.5),
79
79
  marginBottom: theme.spacing(0.5),
80
80
  color: theme.palette.common.white,
81
+ maxHeight: 20,
81
82
  '&:hover': {
82
83
  backgroundColor: theme.palette.common.black
83
84
  },
@@ -87,7 +88,7 @@ const Component = {
87
88
  }
88
89
  },
89
90
  borderBottom: '1px solid rgba(221, 221, 221, 1)',
90
- margin: theme.spacing(1, 2, 0, 2)
91
+ margin: theme.spacing(0.5, 2, 0, 2)
91
92
  },
92
93
  '& .SCFeedObject-content': {
93
94
  padding: theme.spacing(1, 0, 0, 0),
@@ -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;
@@ -0,0 +1,220 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({}),
6
+ detailRoot: ({ theme }) => ({
7
+ '& .SCLiveStream-detail-image-wrapper': {
8
+ position: 'relative',
9
+ '& .SCLiveStream-detail-image': {
10
+ height: '170px'
11
+ },
12
+ '& .SCLiveStream-detail-in-progress': {
13
+ backgroundColor: theme.palette.secondary.main,
14
+ position: 'absolute',
15
+ top: 10,
16
+ right: 10,
17
+ color: theme.palette.common.white,
18
+ boxShadow: 'rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px'
19
+ }
20
+ },
21
+ '& .SCLiveStream-detail-content': {
22
+ padding: `52px ${theme.spacing(3)} 0 !important`,
23
+ '& .SCLiveStream-detail-user': {
24
+ marginTop: '14px',
25
+ '& .SCBaseItemButton-text': {
26
+ margin: 0
27
+ }
28
+ },
29
+ '& .SCLiveStream-detail-name-wrapper': {
30
+ textDecoration: 'none',
31
+ color: 'inherit',
32
+ '& .SCLiveStream-detail-name': {
33
+ marginBottom: '10px'
34
+ }
35
+ },
36
+ '& .SCLiveStream-detail-first-divider': {
37
+ marginTop: '18px',
38
+ marginBottom: theme.spacing()
39
+ },
40
+ '& .SCLiveStream-detail-second-divider': {
41
+ marginTop: theme.spacing(),
42
+ marginBottom: '18px'
43
+ }
44
+ }
45
+ }),
46
+ previewRoot: ({ theme }) => ({
47
+ '& .SCLiveStream-preview-image-wrapper': {
48
+ position: 'relative',
49
+ '& .SCLiveStream-preview-image': {
50
+ height: '80px'
51
+ },
52
+ '& .SCLiveStream-preview-in-progress': {
53
+ height: 18,
54
+ backgroundColor: theme.palette.secondary.main,
55
+ position: 'absolute',
56
+ top: 7,
57
+ right: 7,
58
+ color: theme.palette.common.white,
59
+ boxShadow: 'rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px',
60
+ '& span': {
61
+ fontSize: '0.8rem',
62
+ paddingLeft: theme.spacing(0.5),
63
+ paddingRight: theme.spacing(0.5)
64
+ }
65
+ }
66
+ },
67
+ '& .SCLiveStream-preview-content': {
68
+ padding: `${theme.spacing()} !important`,
69
+ '& .SCLiveStreamInfoDetails-icon-text-wrapper': {
70
+ '& .MuiTypography-root': {
71
+ fontSize: '0.8rem'
72
+ }
73
+ },
74
+ '& .SCLiveStream-detail-user': {
75
+ marginTop: '14px',
76
+ '& .SCBaseItemButton-text': {
77
+ margin: 0
78
+ }
79
+ },
80
+ '& .SCLiveStream-preview-name-wrapper': {
81
+ marginTop: 3,
82
+ textDecoration: 'none',
83
+ color: 'inherit',
84
+ '& h5': {
85
+ whiteSpace: 'nowrap',
86
+ overflow: 'hidden',
87
+ textOverflow: 'ellipsis'
88
+ }
89
+ }
90
+ }
91
+ }),
92
+ snippetRoot: ({ theme }) => ({
93
+ overflow: 'visible',
94
+ boxSizing: 'border-box',
95
+ paddingLeft: `${theme.spacing()} !important`,
96
+ paddingRight: `${theme.spacing()} !important`,
97
+ '& .SCBaseItem-image': {
98
+ '& .MuiAvatar-root': {
99
+ width: 100,
100
+ height: 60,
101
+ borderRadius: '5px',
102
+ '& img': {
103
+ borderRadius: '5px'
104
+ }
105
+ }
106
+ },
107
+ '& .SCLiveStream-snippet-image': {
108
+ position: 'relative',
109
+ '& .SCLiveStream-snippet-in-progress': {
110
+ height: 18,
111
+ backgroundColor: theme.palette.secondary.main,
112
+ position: 'absolute',
113
+ top: 5,
114
+ right: 3,
115
+ color: theme.palette.common.white,
116
+ boxShadow: 'rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px',
117
+ '& span': {
118
+ fontSize: '0.8rem',
119
+ paddingLeft: theme.spacing(0.5),
120
+ paddingRight: theme.spacing(0.5)
121
+ }
122
+ }
123
+ },
124
+ '& .SCBaseItem-text': {
125
+ fontSize: theme.typography.fontSize,
126
+ '& .SCLiveStream-snippet-primary': {
127
+ color: theme.palette.text.primary,
128
+ textDecoration: 'none',
129
+ '&:hover': {
130
+ textDecoration: 'none'
131
+ },
132
+ '& p': {
133
+ fontWeight: theme.typography.fontWeightBold
134
+ }
135
+ },
136
+ '& .SCLiveStream-snippet-secondary': {
137
+ color: theme.palette.text.secondary
138
+ }
139
+ }
140
+ }),
141
+ skeletonRoot: ({ theme }) => ({
142
+ '& .SCLiveStream-skeleton-detail-root': {
143
+ '& .SCLiveStream-skeleton-detail-calendar': {
144
+ position: 'absolute',
145
+ bottom: '-36px',
146
+ left: '24px',
147
+ boxShadow: '0px 3px 8px #00000040'
148
+ },
149
+ '& .SCLiveStream-skeleton-detail-content': {
150
+ padding: `52px ${theme.spacing(3)} 0 !important`,
151
+ '& .SCLiveStream-skeleton-detail-user': {
152
+ marginTop: '14px',
153
+ '& .SCBaseItemButton-text': {
154
+ margin: 0
155
+ }
156
+ },
157
+ '& .SCLiveStream-skeleton-detail-name-wrapper': {
158
+ textDecoration: 'none',
159
+ color: 'inherit',
160
+ '& .SCLiveStream-skeleton-detail-name': {
161
+ marginBottom: '10px'
162
+ }
163
+ },
164
+ '& .SCLiveStream-skeleton-detail-first-divider': {
165
+ marginTop: '18px',
166
+ marginBottom: theme.spacing()
167
+ },
168
+ '& .SCLiveStream-skeleton-detail-second-divider': {
169
+ marginTop: theme.spacing(),
170
+ marginBottom: '18px'
171
+ }
172
+ }
173
+ },
174
+ '& .SCLiveStream-skeleton-preview-root': {
175
+ '& .SCLiveStream-skeleton-preview-content': {
176
+ padding: theme.spacing()
177
+ },
178
+ '& .SCLiveStream-skeleton-preview-image': {
179
+ position: 'relative',
180
+ '& .MuiSkeleton-root': {
181
+ borderRadius: '5px'
182
+ },
183
+ '& .MuiIcon-root': {
184
+ color: theme.palette.common.white,
185
+ position: 'absolute',
186
+ top: '50%',
187
+ left: '50%',
188
+ transform: 'translate(-50%, -50%)'
189
+ }
190
+ },
191
+ '& .SCBaseItem-actions': {
192
+ maxWidth: 'none !important'
193
+ }
194
+ },
195
+ '& .SCLiveStream-skeleton-snippet-root': {
196
+ overflow: 'visible',
197
+ boxSizing: 'border-box',
198
+ paddingLeft: `${theme.spacing()} !important`,
199
+ paddingRight: `${theme.spacing()} !important`,
200
+ '& .SCLiveStream-skeleton-snippet-image': {
201
+ position: 'relative',
202
+ '& .MuiSkeleton-root': {
203
+ borderRadius: '5px'
204
+ },
205
+ '& .MuiIcon-root': {
206
+ color: theme.palette.common.white,
207
+ position: 'absolute',
208
+ top: '50%',
209
+ left: '50%',
210
+ transform: 'translate(-50%, -50%)'
211
+ }
212
+ },
213
+ '& .SCBaseItem-actions': {
214
+ maxWidth: 'none !important'
215
+ }
216
+ }
217
+ })
218
+ }
219
+ };
220
+ exports.default = Component;
@@ -0,0 +1,16 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ '& .MuiDialogTitle-root': {
5
+ '& span': {
6
+ flexGrow: number;
7
+ textAlign: string;
8
+ };
9
+ };
10
+ '& .SCCreateLiveStreamDialog-root': {
11
+ padding: any;
12
+ };
13
+ };
14
+ };
15
+ };
16
+ export default Component;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({
6
+ '& .MuiDialogTitle-root': {
7
+ '& span': {
8
+ flexGrow: 1,
9
+ textAlign: 'center'
10
+ }
11
+ },
12
+ '& .SCCreateLiveStreamDialog-root': {
13
+ padding: theme.spacing(2, 0, 0, 0)
14
+ }
15
+ })
16
+ }
17
+ };
18
+ exports.default = Component;
@@ -0,0 +1,27 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ '& .SCLiveStreamForm-cover': {
5
+ position: string;
6
+ height: number;
7
+ minHeight: number;
8
+ '& .SCEventForm-upload-event-cover-root': {
9
+ position: string;
10
+ right: any;
11
+ bottom: any;
12
+ padding: any;
13
+ minWidth: string;
14
+ };
15
+ };
16
+ "& .SCLiveStreamForm-access-view": {
17
+ margin: any;
18
+ };
19
+ "& .SCLiveStreamForm-actions": {
20
+ display: string;
21
+ justifyContent: string;
22
+ marginTop: any;
23
+ };
24
+ };
25
+ };
26
+ };
27
+ export default Component;
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({
6
+ '& .SCLiveStreamForm-cover': {
7
+ position: 'relative',
8
+ height: 120,
9
+ minHeight: 120,
10
+ '& .SCEventForm-upload-event-cover-root': {
11
+ position: 'absolute',
12
+ right: theme.spacing(2),
13
+ bottom: theme.spacing(1),
14
+ padding: theme.spacing(1),
15
+ minWidth: 'auto'
16
+ }
17
+ },
18
+ [`& .SCLiveStreamForm-access-view`]: {
19
+ margin: theme.spacing(2, 0),
20
+ },
21
+ [`& .SCLiveStreamForm-actions`]: {
22
+ display: 'flex',
23
+ justifyContent: 'flex-end',
24
+ marginTop: theme.spacing(2)
25
+ }
26
+ })
27
+ }
28
+ };
29
+ exports.default = Component;
@@ -0,0 +1,15 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ margin: any;
5
+ '& .SCLiveStreamFormSettings-access-view': {
6
+ margin: any;
7
+ width: string;
8
+ '& .Mui-checked': {
9
+ color: any;
10
+ };
11
+ };
12
+ };
13
+ };
14
+ };
15
+ export default Component;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({
6
+ margin: theme.spacing(1, 0),
7
+ '& .SCLiveStreamFormSettings-access-view': {
8
+ margin: theme.spacing(2, 0),
9
+ width: '100%',
10
+ '& .Mui-checked': {
11
+ color: theme.palette.primary.main
12
+ }
13
+ }
14
+ })
15
+ }
16
+ };
17
+ exports.default = Component;
@@ -0,0 +1,43 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: {
4
+ theme: any;
5
+ }) => {
6
+ gap: any;
7
+ '& .SCLiveStreamInfoDetails-icon-text-wrapper': {
8
+ flexDirection: string;
9
+ alignItems: string;
10
+ gap: any;
11
+ '& > p': {
12
+ textTransform: string;
13
+ };
14
+ '& .SCLiveStreamInfoDetails-link': {
15
+ textDecoration: string;
16
+ color: any;
17
+ '&:hover': {
18
+ textDecoration: string;
19
+ };
20
+ '& .SCLiveStreamInfoDetails-url': {
21
+ overflow: string;
22
+ textOverflow: string;
23
+ display: string;
24
+ '-webkit-line-clamp': string;
25
+ '-webkit-box-orient': string;
26
+ };
27
+ };
28
+ '& .SCLiveStreamInfoDetails-in-progress': {
29
+ width: string;
30
+ height: string;
31
+ borderRadius: string;
32
+ backgroundColor: any;
33
+ };
34
+ };
35
+ '& .SCLiveStreamInfoDetails-creation-wrapper': {
36
+ flexDirection: string;
37
+ alignItems: string;
38
+ gap: any;
39
+ };
40
+ };
41
+ };
42
+ };
43
+ export default Component;