@selfcommunity/react-theme-default 0.4.5-alpha.2 → 0.4.5-alpha.21
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/SCBaseItemButton.d.ts +26 -35
- package/lib/cjs/components/SCBaseItemButton.js +27 -36
- package/lib/cjs/components/SCCommentObject.d.ts +7 -17
- package/lib/cjs/components/SCCommentObject.js +7 -17
- package/lib/cjs/components/SCComposer.d.ts +38 -9
- package/lib/cjs/components/SCComposer.js +40 -11
- package/lib/cjs/components/SCCreateLiveStreamButton.d.ts +12 -0
- package/lib/cjs/components/SCCreateLiveStreamButton.js +14 -0
- package/lib/cjs/components/SCEvent.d.ts +22 -0
- package/lib/cjs/components/SCEvent.js +22 -0
- package/lib/cjs/components/SCEventFormDialog.d.ts +9 -0
- package/lib/cjs/components/SCEventFormDialog.js +9 -0
- package/lib/cjs/components/SCEvents.d.ts +11 -1
- package/lib/cjs/components/SCEvents.js +12 -2
- package/lib/cjs/components/SCFeedObject.d.ts +21 -15
- package/lib/cjs/components/SCFeedObject.js +22 -16
- package/lib/cjs/components/SCFeedObjectDetailTemplate.d.ts +11 -0
- package/lib/cjs/components/SCFeedObjectDetailTemplate.js +12 -1
- package/lib/cjs/components/SCGroupForm.d.ts +3 -0
- package/lib/cjs/components/SCGroupForm.js +3 -0
- package/lib/cjs/components/SCGroups.d.ts +8 -0
- package/lib/cjs/components/SCGroups.js +8 -0
- package/lib/cjs/components/SCLiveStreamForm.d.ts +9 -0
- package/lib/cjs/components/SCLiveStreamForm.js +10 -1
- package/lib/cjs/components/SCLiveStreamRoom.d.ts +27 -1
- package/lib/cjs/components/SCLiveStreamRoom.js +27 -1
- package/lib/cjs/components/SCLiveStreamSelector.d.ts +2 -0
- package/lib/cjs/components/SCLiveStreamSelector.js +4 -2
- package/lib/cjs/components/SCLiveStreamVideoConference.d.ts +4 -1
- package/lib/cjs/components/SCLiveStreamVideoConference.js +5 -2
- package/lib/cjs/components/SCNavigationMenuDrawer.d.ts +3 -2
- package/lib/cjs/components/SCNavigationMenuDrawer.js +3 -2
- package/lib/cjs/components/SCPrivateMessageThreadItem.d.ts +2 -0
- package/lib/cjs/components/SCPrivateMessageThreadItem.js +2 -1
- package/lib/cjs/index.d.ts +214 -84
- package/lib/cjs/index.js +2 -0
- package/lib/esm/components/SCBaseItemButton.d.ts +26 -35
- package/lib/esm/components/SCBaseItemButton.js +27 -36
- package/lib/esm/components/SCCommentObject.d.ts +7 -17
- package/lib/esm/components/SCCommentObject.js +7 -17
- package/lib/esm/components/SCComposer.d.ts +38 -9
- package/lib/esm/components/SCComposer.js +40 -11
- package/lib/esm/components/SCCreateLiveStreamButton.d.ts +12 -0
- package/lib/esm/components/SCCreateLiveStreamButton.js +12 -0
- package/lib/esm/components/SCEvent.d.ts +22 -0
- package/lib/esm/components/SCEvent.js +22 -0
- package/lib/esm/components/SCEventFormDialog.d.ts +9 -0
- package/lib/esm/components/SCEventFormDialog.js +9 -0
- package/lib/esm/components/SCEvents.d.ts +11 -1
- package/lib/esm/components/SCEvents.js +12 -2
- package/lib/esm/components/SCFeedObject.d.ts +21 -15
- package/lib/esm/components/SCFeedObject.js +22 -16
- package/lib/esm/components/SCFeedObjectDetailTemplate.d.ts +11 -0
- package/lib/esm/components/SCFeedObjectDetailTemplate.js +12 -1
- package/lib/esm/components/SCGroupForm.d.ts +3 -0
- package/lib/esm/components/SCGroupForm.js +3 -0
- package/lib/esm/components/SCGroups.d.ts +8 -0
- package/lib/esm/components/SCGroups.js +8 -0
- package/lib/esm/components/SCLiveStreamForm.d.ts +9 -0
- package/lib/esm/components/SCLiveStreamForm.js +10 -1
- package/lib/esm/components/SCLiveStreamRoom.d.ts +27 -1
- package/lib/esm/components/SCLiveStreamRoom.js +27 -1
- package/lib/esm/components/SCLiveStreamSelector.d.ts +2 -0
- package/lib/esm/components/SCLiveStreamSelector.js +4 -2
- package/lib/esm/components/SCLiveStreamVideoConference.d.ts +4 -1
- package/lib/esm/components/SCLiveStreamVideoConference.js +5 -2
- package/lib/esm/components/SCNavigationMenuDrawer.d.ts +3 -2
- package/lib/esm/components/SCNavigationMenuDrawer.js +3 -2
- package/lib/esm/components/SCPrivateMessageThreadItem.d.ts +2 -0
- package/lib/esm/components/SCPrivateMessageThreadItem.js +2 -1
- package/lib/esm/index.d.ts +214 -84
- package/lib/esm/index.js +2 -0
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
package/lib/esm/index.d.ts
CHANGED
|
@@ -441,52 +441,43 @@ declare const theme: {
|
|
|
441
441
|
paddingBottom: number;
|
|
442
442
|
paddingLeft: number;
|
|
443
443
|
paddingRight: number;
|
|
444
|
-
'& .SCBaseItemButton-actions': {
|
|
445
|
-
right: number;
|
|
446
|
-
};
|
|
447
444
|
};
|
|
448
445
|
};
|
|
449
446
|
'& .SCBaseItemButton-content': {
|
|
450
447
|
display: string;
|
|
451
|
-
flexDirection: string;
|
|
452
448
|
justifyContent: string;
|
|
453
449
|
alignItems: string;
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
};
|
|
469
|
-
'& .SCBaseItemButton-secondary': {
|
|
470
|
-
color: any;
|
|
471
|
-
};
|
|
472
|
-
'& .SCBaseItemButton-primary, & .SCBaseItemButton-secondary': {
|
|
473
|
-
whiteSpace: string;
|
|
474
|
-
overflow: string;
|
|
475
|
-
textOverflow: string;
|
|
476
|
-
display: string;
|
|
450
|
+
gap: any;
|
|
451
|
+
'& .SCBaseItemButton-image': {
|
|
452
|
+
flexShrink: number;
|
|
453
|
+
};
|
|
454
|
+
'& .SCBaseItemButton-text': {
|
|
455
|
+
marginTop: any;
|
|
456
|
+
marginBottom: any;
|
|
457
|
+
'& .SCBaseItemButton-primary': {
|
|
458
|
+
color: any;
|
|
459
|
+
};
|
|
460
|
+
'& .SCBaseItemButton-secondary': {
|
|
461
|
+
color: any;
|
|
462
|
+
};
|
|
463
|
+
};
|
|
477
464
|
};
|
|
478
465
|
'&.SCBaseItemButton-with-actions': {
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
466
|
+
display: string;
|
|
467
|
+
alignItems: string;
|
|
468
|
+
justifyContent: string;
|
|
469
|
+
gap: string;
|
|
470
|
+
'& .SCBaseItemButton-content': {
|
|
471
|
+
overflow: string;
|
|
472
|
+
'& .SCBaseItemButton-text': {
|
|
473
|
+
whiteSpace: string;
|
|
474
|
+
overflow: string;
|
|
475
|
+
textOverflow: string;
|
|
476
|
+
flexGrow: number;
|
|
482
477
|
};
|
|
483
|
-
maxWidth: string;
|
|
484
478
|
};
|
|
485
479
|
'& .SCBaseItemButton-actions': {
|
|
486
|
-
|
|
487
|
-
right: any;
|
|
488
|
-
top: string;
|
|
489
|
-
transform: string;
|
|
480
|
+
flexShrink: number;
|
|
490
481
|
maxWidth: any;
|
|
491
482
|
};
|
|
492
483
|
};
|
|
@@ -1032,27 +1023,16 @@ declare const theme: {
|
|
|
1032
1023
|
color: any;
|
|
1033
1024
|
};
|
|
1034
1025
|
'& .SCCommentObject-comment-sub-section': {
|
|
1035
|
-
[x: number]: {
|
|
1036
|
-
'& > *': {
|
|
1037
|
-
marginRight: number;
|
|
1038
|
-
};
|
|
1039
|
-
'& .SCCommentObject-vote-audience': {
|
|
1040
|
-
position: string;
|
|
1041
|
-
right: number;
|
|
1042
|
-
top: number;
|
|
1043
|
-
};
|
|
1044
|
-
'& .SCBullet-root': {
|
|
1045
|
-
display: string;
|
|
1046
|
-
};
|
|
1047
|
-
};
|
|
1048
1026
|
display: string;
|
|
1049
1027
|
flexWrap: string;
|
|
1050
1028
|
alignItems: string;
|
|
1051
1029
|
color: any;
|
|
1052
1030
|
marginTop: number;
|
|
1053
1031
|
position: string;
|
|
1054
|
-
'&
|
|
1055
|
-
|
|
1032
|
+
'& .SCCommentObject-reply': {
|
|
1033
|
+
paddingLeft: number;
|
|
1034
|
+
paddingRight: number;
|
|
1035
|
+
lineHeight: number;
|
|
1056
1036
|
};
|
|
1057
1037
|
'& .SCCommentObject-activity-at': {
|
|
1058
1038
|
color: string;
|
|
@@ -1068,8 +1048,9 @@ declare const theme: {
|
|
|
1068
1048
|
padding: any;
|
|
1069
1049
|
textTransform: string;
|
|
1070
1050
|
};
|
|
1071
|
-
'& .
|
|
1072
|
-
|
|
1051
|
+
'& .SCCommentObject-vote-audience': {
|
|
1052
|
+
position: string;
|
|
1053
|
+
right: number;
|
|
1073
1054
|
};
|
|
1074
1055
|
};
|
|
1075
1056
|
};
|
|
@@ -1231,7 +1212,6 @@ declare const theme: {
|
|
|
1231
1212
|
'& .MuiDialogContent-root': {
|
|
1232
1213
|
minHeight: number;
|
|
1233
1214
|
height: string;
|
|
1234
|
-
maxHeight: number;
|
|
1235
1215
|
};
|
|
1236
1216
|
'& .MuiDialogActions-root': {
|
|
1237
1217
|
justifyContent: string;
|
|
@@ -1268,22 +1248,21 @@ declare const theme: {
|
|
|
1268
1248
|
};
|
|
1269
1249
|
};
|
|
1270
1250
|
'& .MuiDialogContent-root': {
|
|
1251
|
+
[x: number]: {
|
|
1252
|
+
overflowY: string;
|
|
1253
|
+
};
|
|
1271
1254
|
margin: string;
|
|
1272
1255
|
padding: any;
|
|
1273
1256
|
height: string;
|
|
1274
1257
|
'& .SCEditor-root': {
|
|
1275
1258
|
padding: any;
|
|
1259
|
+
marginBottom: any;
|
|
1260
|
+
position: string;
|
|
1276
1261
|
'& .SCEditor-placeholder': {
|
|
1277
1262
|
left: number;
|
|
1278
|
-
top: any;
|
|
1279
1263
|
position: string;
|
|
1280
1264
|
};
|
|
1281
1265
|
'&.SCEditor-toolbar': {
|
|
1282
|
-
position: string;
|
|
1283
|
-
'& .SCEditor-placeholder': {
|
|
1284
|
-
marginTop: number;
|
|
1285
|
-
position: string;
|
|
1286
|
-
};
|
|
1287
1266
|
'& .SCEditorToolbarPlugin-root': {
|
|
1288
1267
|
zIndex: number;
|
|
1289
1268
|
position: string;
|
|
@@ -1327,8 +1306,12 @@ declare const theme: {
|
|
|
1327
1306
|
attributesRoot: ({ theme }: any) => {};
|
|
1328
1307
|
contentDiscussionRoot: ({ theme }: any) => {
|
|
1329
1308
|
'& .SCComposer-content-discussion-title': {
|
|
1330
|
-
paddingBottom: any;
|
|
1331
1309
|
'& .MuiInputBase-root': {
|
|
1310
|
+
[x: number]: {
|
|
1311
|
+
maxHeight: number;
|
|
1312
|
+
};
|
|
1313
|
+
maxHeight: number;
|
|
1314
|
+
overflowY: string;
|
|
1332
1315
|
paddingLeft: number;
|
|
1333
1316
|
paddingRight: number;
|
|
1334
1317
|
paddingBottom: number;
|
|
@@ -1348,6 +1331,19 @@ declare const theme: {
|
|
|
1348
1331
|
marginLeft: number;
|
|
1349
1332
|
};
|
|
1350
1333
|
};
|
|
1334
|
+
'& .SCEditor-root': {
|
|
1335
|
+
'& .SCEditor-placeholder': {
|
|
1336
|
+
top: any;
|
|
1337
|
+
};
|
|
1338
|
+
'& .SCEditor-content': {
|
|
1339
|
+
[x: number]: {
|
|
1340
|
+
maxHeight: number;
|
|
1341
|
+
};
|
|
1342
|
+
overflowY: string;
|
|
1343
|
+
minHeight: number;
|
|
1344
|
+
maxHeight: string;
|
|
1345
|
+
};
|
|
1346
|
+
};
|
|
1351
1347
|
};
|
|
1352
1348
|
contentPollRoot: ({ theme }: any) => {
|
|
1353
1349
|
padding: any;
|
|
@@ -1361,7 +1357,21 @@ declare const theme: {
|
|
|
1361
1357
|
marginTop: any;
|
|
1362
1358
|
};
|
|
1363
1359
|
};
|
|
1364
|
-
contentPostRoot: ({ theme }: any) => {
|
|
1360
|
+
contentPostRoot: ({ theme }: any) => {
|
|
1361
|
+
'& .SCEditor-root': {
|
|
1362
|
+
'& .SCEditor-placeholder': {
|
|
1363
|
+
top: any;
|
|
1364
|
+
};
|
|
1365
|
+
'& .SCEditor-content': {
|
|
1366
|
+
[x: number]: {
|
|
1367
|
+
maxHeight: number;
|
|
1368
|
+
};
|
|
1369
|
+
overflowY: string;
|
|
1370
|
+
minHeight: number;
|
|
1371
|
+
maxHeight: string;
|
|
1372
|
+
};
|
|
1373
|
+
};
|
|
1374
|
+
};
|
|
1365
1375
|
layerTransitionRoot: ({ theme }: any) => {
|
|
1366
1376
|
position: string;
|
|
1367
1377
|
top: number;
|
|
@@ -2215,16 +2225,16 @@ declare const theme: {
|
|
|
2215
2225
|
[x: number]: {
|
|
2216
2226
|
marginRight: string;
|
|
2217
2227
|
};
|
|
2228
|
+
height: number;
|
|
2218
2229
|
};
|
|
2219
2230
|
};
|
|
2220
2231
|
'& .SCFeedObject-group, & .SCFeedObject-event': {
|
|
2221
2232
|
justifyContent: string;
|
|
2222
|
-
padding: any;
|
|
2223
|
-
height: number;
|
|
2224
2233
|
'& a': {
|
|
2225
2234
|
padding: any;
|
|
2226
|
-
|
|
2235
|
+
margin: any;
|
|
2227
2236
|
color: any;
|
|
2237
|
+
maxHeight: number;
|
|
2228
2238
|
'&:hover': {
|
|
2229
2239
|
backgroundColor: any;
|
|
2230
2240
|
};
|
|
@@ -2456,19 +2466,24 @@ declare const theme: {
|
|
|
2456
2466
|
'& li': {
|
|
2457
2467
|
margin: string;
|
|
2458
2468
|
};
|
|
2459
|
-
'& span
|
|
2460
|
-
display: string;
|
|
2461
|
-
};
|
|
2462
|
-
'& span span:not(:has(+ a))': {
|
|
2463
|
-
width: string;
|
|
2464
|
-
};
|
|
2465
|
-
'& span a': {
|
|
2466
|
-
display: string;
|
|
2467
|
-
margin: any;
|
|
2468
|
-
};
|
|
2469
|
-
'& span a:hover': {
|
|
2469
|
+
'& span': {
|
|
2470
2470
|
'& span': {
|
|
2471
|
-
|
|
2471
|
+
display: string;
|
|
2472
|
+
};
|
|
2473
|
+
'& span:not(:has(+ a))': {
|
|
2474
|
+
width: string;
|
|
2475
|
+
};
|
|
2476
|
+
'& a': {
|
|
2477
|
+
display: string;
|
|
2478
|
+
margin: any;
|
|
2479
|
+
};
|
|
2480
|
+
'& a:hover': {
|
|
2481
|
+
'& span': {
|
|
2482
|
+
textDecoration: string;
|
|
2483
|
+
};
|
|
2484
|
+
};
|
|
2485
|
+
'& :last-child': {
|
|
2486
|
+
display: string;
|
|
2472
2487
|
};
|
|
2473
2488
|
};
|
|
2474
2489
|
};
|
|
@@ -2481,6 +2496,7 @@ declare const theme: {
|
|
|
2481
2496
|
fontSize: any;
|
|
2482
2497
|
fontWeight: any;
|
|
2483
2498
|
padding: any;
|
|
2499
|
+
marginTop: number;
|
|
2484
2500
|
justifyContent: string;
|
|
2485
2501
|
'&:hover': {
|
|
2486
2502
|
backgroundColor: string;
|
|
@@ -2527,9 +2543,6 @@ declare const theme: {
|
|
|
2527
2543
|
};
|
|
2528
2544
|
};
|
|
2529
2545
|
'& .SCFeedObject-reply-content': {
|
|
2530
|
-
/**
|
|
2531
|
-
* Export default theme
|
|
2532
|
-
*/
|
|
2533
2546
|
marginLeft: number;
|
|
2534
2547
|
background: string;
|
|
2535
2548
|
'& .SCCommentObjectReply-root': {
|
|
@@ -2911,8 +2924,19 @@ declare const theme: {
|
|
|
2911
2924
|
'& .SCFeedObject-text-section .SCFeedObject-text': {
|
|
2912
2925
|
'& span': {
|
|
2913
2926
|
display: string;
|
|
2927
|
+
};
|
|
2928
|
+
'& span:not(:has(+ a))': {
|
|
2914
2929
|
width: string;
|
|
2915
2930
|
};
|
|
2931
|
+
'& a': {
|
|
2932
|
+
display: string;
|
|
2933
|
+
margin: any;
|
|
2934
|
+
};
|
|
2935
|
+
'& a:hover': {
|
|
2936
|
+
'& span': {
|
|
2937
|
+
textDecoration: string;
|
|
2938
|
+
};
|
|
2939
|
+
};
|
|
2916
2940
|
};
|
|
2917
2941
|
};
|
|
2918
2942
|
};
|
|
@@ -3094,6 +3118,9 @@ declare const theme: {
|
|
|
3094
3118
|
height: any;
|
|
3095
3119
|
width: any;
|
|
3096
3120
|
};
|
|
3121
|
+
'& .MuiIcon-root': {
|
|
3122
|
+
color: any;
|
|
3123
|
+
};
|
|
3097
3124
|
};
|
|
3098
3125
|
};
|
|
3099
3126
|
'& .SCChangeGroupPictureButton-root': {
|
|
@@ -3471,6 +3498,14 @@ declare const theme: {
|
|
|
3471
3498
|
marginTop: any;
|
|
3472
3499
|
marginBottom: any;
|
|
3473
3500
|
};
|
|
3501
|
+
'& .SCGroups-search': {
|
|
3502
|
+
'& .MuiButtonBase-root': {
|
|
3503
|
+
minWidth: string;
|
|
3504
|
+
'& .MuiButton-endIcon': {
|
|
3505
|
+
margin: number;
|
|
3506
|
+
};
|
|
3507
|
+
};
|
|
3508
|
+
};
|
|
3474
3509
|
'& .SCGroups-groups': {
|
|
3475
3510
|
marginTop: any;
|
|
3476
3511
|
'& .SCGroups-item': {
|
|
@@ -4486,8 +4521,9 @@ declare const theme: {
|
|
|
4486
4521
|
'& .SCBaseItemButton-text ': {
|
|
4487
4522
|
maxWidth: string;
|
|
4488
4523
|
};
|
|
4489
|
-
'& .SCNavigationMenuDrawer-drawer-footer': {
|
|
4490
|
-
|
|
4524
|
+
'& .SCNavigationMenuDrawer-drawer-footer-live-button': {
|
|
4525
|
+
margin: any;
|
|
4526
|
+
maxWidth: number;
|
|
4491
4527
|
};
|
|
4492
4528
|
};
|
|
4493
4529
|
};
|
|
@@ -6309,12 +6345,14 @@ declare const theme: {
|
|
|
6309
6345
|
[x: number]: {
|
|
6310
6346
|
width: any;
|
|
6311
6347
|
};
|
|
6348
|
+
position: string;
|
|
6312
6349
|
'& img': {
|
|
6313
6350
|
height: string;
|
|
6314
6351
|
width: string;
|
|
6315
6352
|
};
|
|
6316
6353
|
'& .MuiButtonBase-root': {
|
|
6317
6354
|
flexWrap: string;
|
|
6355
|
+
width: string;
|
|
6318
6356
|
position: string;
|
|
6319
6357
|
bottom: any;
|
|
6320
6358
|
backgroundColor: string;
|
|
@@ -7118,6 +7156,15 @@ declare const theme: {
|
|
|
7118
7156
|
SCEventFormDialog: {
|
|
7119
7157
|
styleOverrides: {
|
|
7120
7158
|
root: ({ theme }: any) => {
|
|
7159
|
+
[x: number]: {
|
|
7160
|
+
'& .MuiDialogContent-root': {
|
|
7161
|
+
marginLeft: any;
|
|
7162
|
+
marginRight: any;
|
|
7163
|
+
};
|
|
7164
|
+
'& .SCEventForm-actions': {
|
|
7165
|
+
marginBottom: any;
|
|
7166
|
+
};
|
|
7167
|
+
};
|
|
7121
7168
|
'& .MuiDialogTitle-root': {
|
|
7122
7169
|
'& span': {
|
|
7123
7170
|
flexGrow: number;
|
|
@@ -7222,6 +7269,14 @@ declare const theme: {
|
|
|
7222
7269
|
paddingRight: any;
|
|
7223
7270
|
};
|
|
7224
7271
|
};
|
|
7272
|
+
'& .SCEvent-finished-chip': {
|
|
7273
|
+
backgroundColor: any;
|
|
7274
|
+
position: string;
|
|
7275
|
+
top: number;
|
|
7276
|
+
right: number;
|
|
7277
|
+
color: any;
|
|
7278
|
+
boxShadow: string;
|
|
7279
|
+
};
|
|
7225
7280
|
};
|
|
7226
7281
|
'& .SCEvent-preview-content': {
|
|
7227
7282
|
padding: string;
|
|
@@ -7278,6 +7333,20 @@ declare const theme: {
|
|
|
7278
7333
|
paddingRight: any;
|
|
7279
7334
|
};
|
|
7280
7335
|
};
|
|
7336
|
+
'& .SCEvent-finished-chip': {
|
|
7337
|
+
height: number;
|
|
7338
|
+
backgroundColor: any;
|
|
7339
|
+
position: string;
|
|
7340
|
+
top: number;
|
|
7341
|
+
right: number;
|
|
7342
|
+
color: any;
|
|
7343
|
+
boxShadow: string;
|
|
7344
|
+
'& span': {
|
|
7345
|
+
fontSize: string;
|
|
7346
|
+
paddingLeft: any;
|
|
7347
|
+
paddingRight: any;
|
|
7348
|
+
};
|
|
7349
|
+
};
|
|
7281
7350
|
};
|
|
7282
7351
|
'& .SCBaseItem-text': {
|
|
7283
7352
|
fontSize: any;
|
|
@@ -7403,6 +7472,16 @@ declare const theme: {
|
|
|
7403
7472
|
SCEvents: {
|
|
7404
7473
|
styleOverrides: {
|
|
7405
7474
|
root: ({ theme }: any) => {
|
|
7475
|
+
'& .SCEvents-section-title': {
|
|
7476
|
+
marginTop: any;
|
|
7477
|
+
marginBottom: any;
|
|
7478
|
+
color: any;
|
|
7479
|
+
fontWeight: number;
|
|
7480
|
+
fontSize: number;
|
|
7481
|
+
};
|
|
7482
|
+
'& .SCEvents-divider': {
|
|
7483
|
+
marginBottom: any;
|
|
7484
|
+
};
|
|
7406
7485
|
'& .SCEvents-filters': {
|
|
7407
7486
|
alignItems: string;
|
|
7408
7487
|
marginTop: any;
|
|
@@ -7480,7 +7559,7 @@ declare const theme: {
|
|
|
7480
7559
|
};
|
|
7481
7560
|
};
|
|
7482
7561
|
};
|
|
7483
|
-
eventsChipRoot: ({ theme, showFollowed, showPastEvents }: any) => {
|
|
7562
|
+
eventsChipRoot: ({ theme, showFollowed, showPastEvents, showOngoingEvents }: any) => {
|
|
7484
7563
|
height: any;
|
|
7485
7564
|
borderRadius: any;
|
|
7486
7565
|
color: any;
|
|
@@ -8920,6 +8999,17 @@ declare const theme: {
|
|
|
8920
8999
|
};
|
|
8921
9000
|
};
|
|
8922
9001
|
};
|
|
9002
|
+
SCCreateLiveStreamButton: {
|
|
9003
|
+
styleOverrides: {
|
|
9004
|
+
root: ({ theme }: any) => {
|
|
9005
|
+
'& .MuiButton-startIcon': {
|
|
9006
|
+
'& .MuiIcon-root': {
|
|
9007
|
+
fontSize: string;
|
|
9008
|
+
};
|
|
9009
|
+
};
|
|
9010
|
+
};
|
|
9011
|
+
};
|
|
9012
|
+
};
|
|
8923
9013
|
SCCreateLiveStreamDialog: {
|
|
8924
9014
|
styleOverrides: {
|
|
8925
9015
|
root: ({ theme }: any) => {
|
|
@@ -8943,6 +9033,8 @@ declare const theme: {
|
|
|
8943
9033
|
"& a": {
|
|
8944
9034
|
color: any;
|
|
8945
9035
|
fontWeight: string;
|
|
9036
|
+
textDecoration: string;
|
|
9037
|
+
whiteSpace: string;
|
|
8946
9038
|
};
|
|
8947
9039
|
};
|
|
8948
9040
|
'& .SCLiveStreamSelector-options': {
|
|
@@ -9020,6 +9112,15 @@ declare const theme: {
|
|
|
9020
9112
|
minWidth: string;
|
|
9021
9113
|
};
|
|
9022
9114
|
};
|
|
9115
|
+
'& .SCLiveStreamForm-warning': {
|
|
9116
|
+
margin: any;
|
|
9117
|
+
"& a": {
|
|
9118
|
+
color: any;
|
|
9119
|
+
fontWeight: string;
|
|
9120
|
+
textDecoration: string;
|
|
9121
|
+
whiteSpace: string;
|
|
9122
|
+
};
|
|
9123
|
+
};
|
|
9023
9124
|
"& .SCLiveStreamForm-access-view": {
|
|
9024
9125
|
margin: any;
|
|
9025
9126
|
};
|
|
@@ -9142,6 +9243,25 @@ declare const theme: {
|
|
|
9142
9243
|
backgroundColor: any;
|
|
9143
9244
|
};
|
|
9144
9245
|
};
|
|
9246
|
+
'& .lk-settings-menu-modal': {
|
|
9247
|
+
minWidth: number;
|
|
9248
|
+
paddingTop: any;
|
|
9249
|
+
'& .lk-settings-menu-modal-icon-close': {
|
|
9250
|
+
color: any;
|
|
9251
|
+
position: string;
|
|
9252
|
+
top: number;
|
|
9253
|
+
right: number;
|
|
9254
|
+
};
|
|
9255
|
+
'& .MuiFormControlLabel-root': {
|
|
9256
|
+
marginLeft: number;
|
|
9257
|
+
};
|
|
9258
|
+
'& .MuiTypography-body1': {
|
|
9259
|
+
color: string;
|
|
9260
|
+
};
|
|
9261
|
+
'& .MuiSwitch-track': {
|
|
9262
|
+
backgroundColor: any;
|
|
9263
|
+
};
|
|
9264
|
+
};
|
|
9145
9265
|
};
|
|
9146
9266
|
dialogRoot: ({ theme }: any) => {
|
|
9147
9267
|
"& .SCLiveStreamRoom-end-conference-wrap": {
|
|
@@ -9150,7 +9270,14 @@ declare const theme: {
|
|
|
9150
9270
|
alignItems: string;
|
|
9151
9271
|
alignContent: string;
|
|
9152
9272
|
flexDirection: string;
|
|
9153
|
-
"& .
|
|
9273
|
+
"& .SCLiveStreamRoom-logo": {
|
|
9274
|
+
img: {
|
|
9275
|
+
maxHeight: number;
|
|
9276
|
+
maxWidth: number;
|
|
9277
|
+
};
|
|
9278
|
+
marginBottom: any;
|
|
9279
|
+
};
|
|
9280
|
+
"& .SCLiveStreamRoom-btn-back-home": {
|
|
9154
9281
|
marginTop: any;
|
|
9155
9282
|
};
|
|
9156
9283
|
};
|
|
@@ -9171,10 +9298,13 @@ declare const theme: {
|
|
|
9171
9298
|
alignItems: string;
|
|
9172
9299
|
alignContent: string;
|
|
9173
9300
|
flexDirection: string;
|
|
9301
|
+
textAlign: string;
|
|
9174
9302
|
"& .SCLiveStreamVideoConference-logo": {
|
|
9175
9303
|
img: {
|
|
9176
|
-
maxHeight:
|
|
9304
|
+
maxHeight: number;
|
|
9305
|
+
maxWidth: number;
|
|
9177
9306
|
};
|
|
9307
|
+
marginBottom: any;
|
|
9178
9308
|
};
|
|
9179
9309
|
"& .SCLiveStreamVideoConference-btn-back-home": {
|
|
9180
9310
|
marginTop: any;
|
package/lib/esm/index.js
CHANGED
|
@@ -141,6 +141,7 @@ import SCSearchAutocomplete from './components/SCSearchAutocomplete';
|
|
|
141
141
|
import SCSnippetNotifications from './components/SCSnippetNotifications';
|
|
142
142
|
import SCSuggestedEventsWidget from './components/SCSuggestedEventsWidget';
|
|
143
143
|
import SCLiveStream from './components/SCLiveStream';
|
|
144
|
+
import SCCreateLiveStreamButton from './components/SCCreateLiveStreamButton';
|
|
144
145
|
import SCCreateLiveStreamDialog from './components/SCLiveStreamDialog';
|
|
145
146
|
import SCLiveStreamSelector from './components/SCLiveStreamSelector';
|
|
146
147
|
import SCLiveStreamForm from './components/SCLiveStreamForm';
|
|
@@ -419,6 +420,7 @@ const theme = {
|
|
|
419
420
|
SCLiveStreamInfoDetails,
|
|
420
421
|
SCUpScalingTierBadge,
|
|
421
422
|
SCUserLiveStreamWidget,
|
|
423
|
+
SCCreateLiveStreamButton,
|
|
422
424
|
SCCreateLiveStreamDialog,
|
|
423
425
|
SCLiveStreamSelector,
|
|
424
426
|
SCLiveStreamForm,
|