@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.
Files changed (74) hide show
  1. package/lib/cjs/components/SCBaseItemButton.d.ts +26 -35
  2. package/lib/cjs/components/SCBaseItemButton.js +27 -36
  3. package/lib/cjs/components/SCCommentObject.d.ts +7 -17
  4. package/lib/cjs/components/SCCommentObject.js +7 -17
  5. package/lib/cjs/components/SCComposer.d.ts +38 -9
  6. package/lib/cjs/components/SCComposer.js +40 -11
  7. package/lib/cjs/components/SCCreateLiveStreamButton.d.ts +12 -0
  8. package/lib/cjs/components/SCCreateLiveStreamButton.js +14 -0
  9. package/lib/cjs/components/SCEvent.d.ts +22 -0
  10. package/lib/cjs/components/SCEvent.js +22 -0
  11. package/lib/cjs/components/SCEventFormDialog.d.ts +9 -0
  12. package/lib/cjs/components/SCEventFormDialog.js +9 -0
  13. package/lib/cjs/components/SCEvents.d.ts +11 -1
  14. package/lib/cjs/components/SCEvents.js +12 -2
  15. package/lib/cjs/components/SCFeedObject.d.ts +21 -15
  16. package/lib/cjs/components/SCFeedObject.js +22 -16
  17. package/lib/cjs/components/SCFeedObjectDetailTemplate.d.ts +11 -0
  18. package/lib/cjs/components/SCFeedObjectDetailTemplate.js +12 -1
  19. package/lib/cjs/components/SCGroupForm.d.ts +3 -0
  20. package/lib/cjs/components/SCGroupForm.js +3 -0
  21. package/lib/cjs/components/SCGroups.d.ts +8 -0
  22. package/lib/cjs/components/SCGroups.js +8 -0
  23. package/lib/cjs/components/SCLiveStreamForm.d.ts +9 -0
  24. package/lib/cjs/components/SCLiveStreamForm.js +10 -1
  25. package/lib/cjs/components/SCLiveStreamRoom.d.ts +27 -1
  26. package/lib/cjs/components/SCLiveStreamRoom.js +27 -1
  27. package/lib/cjs/components/SCLiveStreamSelector.d.ts +2 -0
  28. package/lib/cjs/components/SCLiveStreamSelector.js +4 -2
  29. package/lib/cjs/components/SCLiveStreamVideoConference.d.ts +4 -1
  30. package/lib/cjs/components/SCLiveStreamVideoConference.js +5 -2
  31. package/lib/cjs/components/SCNavigationMenuDrawer.d.ts +3 -2
  32. package/lib/cjs/components/SCNavigationMenuDrawer.js +3 -2
  33. package/lib/cjs/components/SCPrivateMessageThreadItem.d.ts +2 -0
  34. package/lib/cjs/components/SCPrivateMessageThreadItem.js +2 -1
  35. package/lib/cjs/index.d.ts +214 -84
  36. package/lib/cjs/index.js +2 -0
  37. package/lib/esm/components/SCBaseItemButton.d.ts +26 -35
  38. package/lib/esm/components/SCBaseItemButton.js +27 -36
  39. package/lib/esm/components/SCCommentObject.d.ts +7 -17
  40. package/lib/esm/components/SCCommentObject.js +7 -17
  41. package/lib/esm/components/SCComposer.d.ts +38 -9
  42. package/lib/esm/components/SCComposer.js +40 -11
  43. package/lib/esm/components/SCCreateLiveStreamButton.d.ts +12 -0
  44. package/lib/esm/components/SCCreateLiveStreamButton.js +12 -0
  45. package/lib/esm/components/SCEvent.d.ts +22 -0
  46. package/lib/esm/components/SCEvent.js +22 -0
  47. package/lib/esm/components/SCEventFormDialog.d.ts +9 -0
  48. package/lib/esm/components/SCEventFormDialog.js +9 -0
  49. package/lib/esm/components/SCEvents.d.ts +11 -1
  50. package/lib/esm/components/SCEvents.js +12 -2
  51. package/lib/esm/components/SCFeedObject.d.ts +21 -15
  52. package/lib/esm/components/SCFeedObject.js +22 -16
  53. package/lib/esm/components/SCFeedObjectDetailTemplate.d.ts +11 -0
  54. package/lib/esm/components/SCFeedObjectDetailTemplate.js +12 -1
  55. package/lib/esm/components/SCGroupForm.d.ts +3 -0
  56. package/lib/esm/components/SCGroupForm.js +3 -0
  57. package/lib/esm/components/SCGroups.d.ts +8 -0
  58. package/lib/esm/components/SCGroups.js +8 -0
  59. package/lib/esm/components/SCLiveStreamForm.d.ts +9 -0
  60. package/lib/esm/components/SCLiveStreamForm.js +10 -1
  61. package/lib/esm/components/SCLiveStreamRoom.d.ts +27 -1
  62. package/lib/esm/components/SCLiveStreamRoom.js +27 -1
  63. package/lib/esm/components/SCLiveStreamSelector.d.ts +2 -0
  64. package/lib/esm/components/SCLiveStreamSelector.js +4 -2
  65. package/lib/esm/components/SCLiveStreamVideoConference.d.ts +4 -1
  66. package/lib/esm/components/SCLiveStreamVideoConference.js +5 -2
  67. package/lib/esm/components/SCNavigationMenuDrawer.d.ts +3 -2
  68. package/lib/esm/components/SCNavigationMenuDrawer.js +3 -2
  69. package/lib/esm/components/SCPrivateMessageThreadItem.d.ts +2 -0
  70. package/lib/esm/components/SCPrivateMessageThreadItem.js +2 -1
  71. package/lib/esm/index.d.ts +214 -84
  72. package/lib/esm/index.js +2 -0
  73. package/lib/umd/react-theme-default.js +1 -1
  74. package/package.json +2 -2
@@ -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
- width: string;
455
- };
456
- '& .SCBaseItemButton-image': {
457
- flexShrink: number;
458
- marginRight: any;
459
- };
460
- '& .SCBaseItemButton-text': {
461
- flex: string;
462
- marginTop: any;
463
- marginBottom: any;
464
- textAlign: string;
465
- };
466
- '& .SCBaseItemButton-primary': {
467
- color: any;
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
- '& .SCBaseItemButton-text > *': {
480
- [x: number]: {
481
- maxWidth: string;
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
- position: string;
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
- marginRight: any;
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
- '& .SCBullet-root': {
1072
- display: string;
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
- marginBottom: any;
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 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
- textDecoration: string;
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
- padding: any;
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
- "& .SCLiveStreamVideoConference-btn-back-home": {
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: string;
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/cjs/index.js CHANGED
@@ -145,6 +145,7 @@ const SCSearchAutocomplete_1 = tslib_1.__importDefault(require("./components/SCS
145
145
  const SCSnippetNotifications_1 = tslib_1.__importDefault(require("./components/SCSnippetNotifications"));
146
146
  const SCSuggestedEventsWidget_1 = tslib_1.__importDefault(require("./components/SCSuggestedEventsWidget"));
147
147
  const SCLiveStream_1 = tslib_1.__importDefault(require("./components/SCLiveStream"));
148
+ const SCCreateLiveStreamButton_1 = tslib_1.__importDefault(require("./components/SCCreateLiveStreamButton"));
148
149
  const SCLiveStreamDialog_1 = tslib_1.__importDefault(require("./components/SCLiveStreamDialog"));
149
150
  const SCLiveStreamSelector_1 = tslib_1.__importDefault(require("./components/SCLiveStreamSelector"));
150
151
  const SCLiveStreamForm_1 = tslib_1.__importDefault(require("./components/SCLiveStreamForm"));
@@ -431,6 +432,7 @@ const theme = {
431
432
  SCLiveStreamInfoDetails: SCLiveStreamInfoDetails_1.default,
432
433
  SCUpScalingTierBadge: SCUpScalingTierBadge_1.default,
433
434
  SCUserLiveStreamWidget: SCUserLiveStreamWidget_1.default,
435
+ SCCreateLiveStreamButton: SCCreateLiveStreamButton_1.default,
434
436
  SCCreateLiveStreamDialog: SCLiveStreamDialog_1.default,
435
437
  SCLiveStreamSelector: SCLiveStreamSelector_1.default,
436
438
  SCLiveStreamForm: SCLiveStreamForm_1.default,
@@ -13,52 +13,43 @@ declare const Component: {
13
13
  paddingBottom: number;
14
14
  paddingLeft: number;
15
15
  paddingRight: number;
16
- '& .SCBaseItemButton-actions': {
17
- right: number;
18
- };
19
16
  };
20
17
  };
21
18
  '& .SCBaseItemButton-content': {
22
19
  display: string;
23
- flexDirection: string;
24
20
  justifyContent: string;
25
21
  alignItems: string;
26
- width: string;
27
- };
28
- '& .SCBaseItemButton-image': {
29
- flexShrink: number;
30
- marginRight: any;
31
- };
32
- '& .SCBaseItemButton-text': {
33
- flex: string;
34
- marginTop: any;
35
- marginBottom: any;
36
- textAlign: string;
37
- };
38
- '& .SCBaseItemButton-primary': {
39
- color: any;
40
- };
41
- '& .SCBaseItemButton-secondary': {
42
- color: any;
43
- };
44
- '& .SCBaseItemButton-primary, & .SCBaseItemButton-secondary': {
45
- whiteSpace: string;
46
- overflow: string;
47
- textOverflow: string;
48
- display: string;
22
+ gap: any;
23
+ '& .SCBaseItemButton-image': {
24
+ flexShrink: number;
25
+ };
26
+ '& .SCBaseItemButton-text': {
27
+ marginTop: any;
28
+ marginBottom: any;
29
+ '& .SCBaseItemButton-primary': {
30
+ color: any;
31
+ };
32
+ '& .SCBaseItemButton-secondary': {
33
+ color: any;
34
+ };
35
+ };
49
36
  };
50
37
  '&.SCBaseItemButton-with-actions': {
51
- '& .SCBaseItemButton-text > *': {
52
- [x: number]: {
53
- maxWidth: string;
38
+ display: string;
39
+ alignItems: string;
40
+ justifyContent: string;
41
+ gap: string;
42
+ '& .SCBaseItemButton-content': {
43
+ overflow: string;
44
+ '& .SCBaseItemButton-text': {
45
+ whiteSpace: string;
46
+ overflow: string;
47
+ textOverflow: string;
48
+ flexGrow: number;
54
49
  };
55
- maxWidth: string;
56
50
  };
57
51
  '& .SCBaseItemButton-actions': {
58
- position: string;
59
- right: any;
60
- top: string;
61
- transform: string;
52
+ flexShrink: number;
62
53
  maxWidth: any;
63
54
  };
64
55
  };