@selfcommunity/react-theme-default 0.2.0-embeds.17 → 0.2.0-livestream.24

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 (96) hide show
  1. package/lib/cjs/components/MuiAppBar.js +4 -3
  2. package/lib/cjs/components/SCBottomNavigation.js +5 -4
  3. package/lib/cjs/components/SCEventForm.d.ts +8 -0
  4. package/lib/cjs/components/SCEventForm.js +8 -0
  5. package/lib/cjs/components/SCEventFormDialog.d.ts +13 -0
  6. package/lib/cjs/components/SCEventFormDialog.js +15 -0
  7. package/lib/cjs/components/SCEventMediaWidget.d.ts +120 -0
  8. package/lib/cjs/components/SCEventMediaWidget.js +115 -0
  9. package/lib/cjs/components/SCFeed.d.ts +9 -3
  10. package/lib/cjs/components/SCFeed.js +9 -3
  11. package/lib/cjs/components/SCFeedObject.d.ts +4 -0
  12. package/lib/cjs/components/SCFeedObject.js +4 -0
  13. package/lib/cjs/components/SCFeedObjectDetailTemplate.d.ts +10 -0
  14. package/lib/cjs/components/SCFeedObjectDetailTemplate.js +10 -0
  15. package/lib/cjs/components/SCGroupActionsMenu.d.ts +26 -0
  16. package/lib/cjs/components/SCGroupActionsMenu.js +28 -0
  17. package/lib/cjs/components/SCGroupHeader.d.ts +5 -2
  18. package/lib/cjs/components/SCGroupHeader.js +5 -2
  19. package/lib/cjs/components/SCLightbox.d.ts +5 -0
  20. package/lib/cjs/components/SCLightbox.js +12 -7
  21. package/lib/cjs/components/SCLiveStreamDialog.d.ts +16 -0
  22. package/lib/cjs/components/SCLiveStreamDialog.js +18 -0
  23. package/lib/cjs/components/SCLiveStreamForm.d.ts +12 -0
  24. package/lib/cjs/components/SCLiveStreamForm.js +14 -0
  25. package/lib/cjs/components/SCLiveStreamRoom.d.ts +27 -0
  26. package/lib/cjs/components/SCLiveStreamRoom.js +29 -0
  27. package/lib/cjs/components/SCLiveStreamVideoConference.d.ts +6 -0
  28. package/lib/cjs/components/SCLiveStreamVideoConference.js +8 -0
  29. package/lib/cjs/components/SCMediaLink.d.ts +4 -0
  30. package/lib/cjs/components/SCMediaLink.js +4 -4
  31. package/lib/cjs/components/SCNavigationMenuDrawer.d.ts +45 -0
  32. package/lib/cjs/components/SCNavigationMenuDrawer.js +48 -0
  33. package/lib/cjs/components/SCNavigationMenuIconButton.d.ts +0 -37
  34. package/lib/cjs/components/SCNavigationMenuIconButton.js +1 -39
  35. package/lib/cjs/components/SCNavigationToolbar.d.ts +3 -1
  36. package/lib/cjs/components/SCNavigationToolbar.js +68 -62
  37. package/lib/cjs/components/SCNavigationToolbarMobile.d.ts +3 -0
  38. package/lib/cjs/components/SCNavigationToolbarMobile.js +26 -19
  39. package/lib/cjs/components/SCOnBoardingWidget.d.ts +12 -2
  40. package/lib/cjs/components/SCOnBoardingWidget.js +12 -2
  41. package/lib/cjs/components/SCSearchAutocomplete.d.ts +4 -0
  42. package/lib/cjs/components/SCSearchAutocomplete.js +29 -21
  43. package/lib/cjs/components/SCVoteButton.d.ts +5 -3
  44. package/lib/cjs/components/SCVoteButton.js +6 -5
  45. package/lib/cjs/index.d.ts +295 -16
  46. package/lib/cjs/index.js +17 -1
  47. package/lib/esm/components/MuiAppBar.js +4 -3
  48. package/lib/esm/components/SCBottomNavigation.js +5 -4
  49. package/lib/esm/components/SCEventForm.d.ts +8 -0
  50. package/lib/esm/components/SCEventForm.js +8 -0
  51. package/lib/esm/components/SCEventFormDialog.d.ts +13 -0
  52. package/lib/esm/components/SCEventFormDialog.js +13 -0
  53. package/lib/esm/components/SCEventMediaWidget.d.ts +120 -0
  54. package/lib/esm/components/SCEventMediaWidget.js +113 -0
  55. package/lib/esm/components/SCFeed.d.ts +9 -3
  56. package/lib/esm/components/SCFeed.js +9 -3
  57. package/lib/esm/components/SCFeedObject.d.ts +4 -0
  58. package/lib/esm/components/SCFeedObject.js +4 -0
  59. package/lib/esm/components/SCFeedObjectDetailTemplate.d.ts +10 -0
  60. package/lib/esm/components/SCFeedObjectDetailTemplate.js +10 -0
  61. package/lib/esm/components/SCGroupActionsMenu.d.ts +26 -0
  62. package/lib/esm/components/SCGroupActionsMenu.js +26 -0
  63. package/lib/esm/components/SCGroupHeader.d.ts +5 -2
  64. package/lib/esm/components/SCGroupHeader.js +5 -2
  65. package/lib/esm/components/SCLightbox.d.ts +5 -0
  66. package/lib/esm/components/SCLightbox.js +12 -7
  67. package/lib/esm/components/SCLiveStreamDialog.d.ts +16 -0
  68. package/lib/esm/components/SCLiveStreamDialog.js +16 -0
  69. package/lib/esm/components/SCLiveStreamForm.d.ts +12 -0
  70. package/lib/esm/components/SCLiveStreamForm.js +12 -0
  71. package/lib/esm/components/SCLiveStreamRoom.d.ts +27 -0
  72. package/lib/esm/components/SCLiveStreamRoom.js +27 -0
  73. package/lib/esm/components/SCLiveStreamVideoConference.d.ts +6 -0
  74. package/lib/esm/components/SCLiveStreamVideoConference.js +6 -0
  75. package/lib/esm/components/SCMediaLink.d.ts +4 -0
  76. package/lib/esm/components/SCMediaLink.js +4 -4
  77. package/lib/esm/components/SCNavigationMenuDrawer.d.ts +45 -0
  78. package/lib/esm/components/SCNavigationMenuDrawer.js +46 -0
  79. package/lib/esm/components/SCNavigationMenuIconButton.d.ts +0 -37
  80. package/lib/esm/components/SCNavigationMenuIconButton.js +1 -39
  81. package/lib/esm/components/SCNavigationToolbar.d.ts +3 -1
  82. package/lib/esm/components/SCNavigationToolbar.js +68 -62
  83. package/lib/esm/components/SCNavigationToolbarMobile.d.ts +3 -0
  84. package/lib/esm/components/SCNavigationToolbarMobile.js +26 -19
  85. package/lib/esm/components/SCOnBoardingWidget.d.ts +12 -2
  86. package/lib/esm/components/SCOnBoardingWidget.js +12 -2
  87. package/lib/esm/components/SCSearchAutocomplete.d.ts +4 -0
  88. package/lib/esm/components/SCSearchAutocomplete.js +29 -21
  89. package/lib/esm/components/SCVoteButton.d.ts +5 -3
  90. package/lib/esm/components/SCVoteButton.js +6 -5
  91. package/lib/esm/index.d.ts +295 -16
  92. package/lib/esm/index.js +17 -1
  93. package/lib/umd/react-theme-default.js +1 -19
  94. package/package.json +125 -120
  95. package/lib/umd/850.js +0 -2
  96. package/lib/umd/850.js.LICENSE.txt +0 -16
@@ -1,31 +1,39 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const system_1 = require("@mui/system");
4
+ const styles_1 = require("@mui/material/styles");
4
5
  const Component = {
5
6
  styleOverrides: {
6
- root: ({ theme }) => ({
7
- '& .SCSearchAutocomplete-input': {
8
- padding: theme.spacing(0, 2),
9
- borderRadius: theme.shape.borderRadius,
10
- '& .MuiAutocomplete-input': {
11
- padding: theme.spacing(0.5, 1)
12
- }
13
- },
14
- '& .MuiInputBase-root': {
15
- '& fieldset': {
16
- borderColor: (0, system_1.alpha)(theme.palette.primary.main, theme.palette.action.disabledOpacity)
17
- },
18
- '&:hover fieldset': {
19
- borderColor: theme.palette.primary.main
20
- },
21
- '&.Mui-focused fieldset': {
22
- borderColor: theme.palette.secondary.main
7
+ root: ({ theme }) => {
8
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
9
+ return ({
10
+ '& .SCSearchAutocomplete-input': {
11
+ padding: theme.spacing(0, 2),
12
+ borderRadius: theme.shape.borderRadius,
13
+ '& .MuiAutocomplete-input': {
14
+ padding: theme.spacing(0.5, 1),
15
+ color: (0, styles_1.getContrastRatio)((_b = (_a = theme.palette) === null || _a === void 0 ? void 0 : _a.navbar) === null || _b === void 0 ? void 0 : _b.main, '#fff') > 4.5 ? '#fff' : theme.palette.primary.main
16
+ }
23
17
  },
24
- '&.Mui-focused .SCSearchAutocomplete-icon': {
25
- color: theme.palette.secondary.main
18
+ '& .MuiInputBase-root': {
19
+ '& .MuiIcon-root': {
20
+ color: (0, styles_1.getContrastRatio)((_d = (_c = theme.palette) === null || _c === void 0 ? void 0 : _c.navbar) === null || _d === void 0 ? void 0 : _d.main, '#fff') > 4.5 ? '#fff' : theme.palette.primary.main
21
+ },
22
+ '& fieldset': {
23
+ borderColor: (0, system_1.alpha)((0, styles_1.getContrastRatio)((_f = (_e = theme.palette) === null || _e === void 0 ? void 0 : _e.navbar) === null || _f === void 0 ? void 0 : _f.main, '#fff') > 4.5 ? '#fff' : theme.palette.primary.main, theme.palette.action.disabledOpacity)
24
+ },
25
+ '&:hover fieldset': {
26
+ borderColor: (0, styles_1.getContrastRatio)((_h = (_g = theme.palette) === null || _g === void 0 ? void 0 : _g.navbar) === null || _h === void 0 ? void 0 : _h.main, '#fff') > 4.5 ? '#fff' : theme.palette.primary.main
27
+ },
28
+ '&.Mui-focused fieldset': {
29
+ borderColor: (0, styles_1.getContrastRatio)((_k = (_j = theme.palette) === null || _j === void 0 ? void 0 : _j.navbar) === null || _k === void 0 ? void 0 : _k.main, '#fff') > 4.5 ? '#fff' : theme.palette.secondary.main
30
+ },
31
+ '&.Mui-focused .SCSearchAutocomplete-icon': {
32
+ color: (0, styles_1.getContrastRatio)((_m = (_l = theme.palette) === null || _l === void 0 ? void 0 : _l.navbar) === null || _m === void 0 ? void 0 : _m.main, '#fff') > 4.5 ? '#fff' : theme.palette.secondary.main
33
+ }
26
34
  }
27
- }
28
- })
35
+ });
36
+ }
29
37
  }
30
38
  };
31
39
  exports.default = Component;
@@ -9,9 +9,6 @@ declare const Component: {
9
9
  minWidth: number;
10
10
  '& .MuiIcon-root': {
11
11
  fontSize: string;
12
- '& img': {
13
- filter: string;
14
- };
15
12
  };
16
13
  '&.MuiButton-sizeSmall': {
17
14
  padding: any;
@@ -20,6 +17,11 @@ declare const Component: {
20
17
  };
21
18
  };
22
19
  };
20
+ popperRoot: ({ theme }: any) => {
21
+ '& .SCVoteButton-reaction .MuiIcon-root': {
22
+ fontSize: string;
23
+ };
24
+ };
23
25
  };
24
26
  };
25
27
  export default Component;
@@ -1,6 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const hex_to_css_filter_1 = require("hex-to-css-filter");
4
3
  const Component = {
5
4
  styleOverrides: {
6
5
  root: ({ theme }) => ({
@@ -11,10 +10,7 @@ const Component = {
11
10
  padding: theme.spacing(1.5),
12
11
  minWidth: 0,
13
12
  '& .MuiIcon-root': {
14
- fontSize: '1.57rem',
15
- '& img': {
16
- filter: (0, hex_to_css_filter_1.hexToCSSFilter)(theme.palette.primary.main).filter
17
- }
13
+ fontSize: '1.57rem'
18
14
  },
19
15
  '&.MuiButton-sizeSmall': {
20
16
  padding: theme.spacing(0.5),
@@ -22,6 +18,11 @@ const Component = {
22
18
  fontSize: '1rem'
23
19
  }
24
20
  }
21
+ }),
22
+ popperRoot: ({ theme }) => ({
23
+ '& .SCVoteButton-reaction .MuiIcon-root': {
24
+ fontSize: '22px'
25
+ }
25
26
  })
26
27
  }
27
28
  };
@@ -2029,6 +2029,14 @@ declare const theme: {
2029
2029
  padding: number;
2030
2030
  marginBottom: any;
2031
2031
  };
2032
+ '& .SCFeed-header-item': {
2033
+ animation: string;
2034
+ '@keyframes pulse-animation': {
2035
+ '0%': {
2036
+ opacity: number;
2037
+ };
2038
+ };
2039
+ };
2032
2040
  };
2033
2041
  '& .SCFeed-end': {
2034
2042
  '& > .SCWidget-root': {
@@ -2042,9 +2050,7 @@ declare const theme: {
2042
2050
  padding: any;
2043
2051
  };
2044
2052
  };
2045
- '& .SCFeed-refresh': {
2046
- textAlign: string;
2047
- };
2053
+ '& .SCFeed-refresh': {};
2048
2054
  '& .SCFeed-pagination-link': {
2049
2055
  display: string;
2050
2056
  };
@@ -2369,6 +2375,10 @@ declare const theme: {
2369
2375
  '& li': {
2370
2376
  margin: string;
2371
2377
  };
2378
+ '& span span': {
2379
+ display: string;
2380
+ width: string;
2381
+ };
2372
2382
  };
2373
2383
  '& .SCFeedObject-medias-section': {
2374
2384
  '& .SCFeedObjectMediaPreview-root': {
@@ -2399,9 +2409,7 @@ declare const theme: {
2399
2409
  fontWeight: any;
2400
2410
  marginTop: any;
2401
2411
  marginBottom: number;
2402
- color: any; /**
2403
- * Export default theme
2404
- */
2412
+ color: any;
2405
2413
  '&:hover': {
2406
2414
  color: string;
2407
2415
  };
@@ -2803,6 +2811,16 @@ declare const theme: {
2803
2811
  paddingLeft: any;
2804
2812
  };
2805
2813
  };
2814
+ '& .SCFeedObject-detail': {
2815
+ '& .SCFeedObject-content': {
2816
+ '& .SCFeedObject-text-section .SCFeedObject-text': {
2817
+ '& span': {
2818
+ display: string;
2819
+ width: string;
2820
+ };
2821
+ };
2822
+ };
2823
+ };
2806
2824
  };
2807
2825
  skeletonRoot: ({ theme }: any) => {
2808
2826
  marginTop: any;
@@ -2912,6 +2930,31 @@ declare const theme: {
2912
2930
  skeletonRoot: ({ theme }: any) => {};
2913
2931
  };
2914
2932
  };
2933
+ SCGroupActionsMenu: {
2934
+ styleOverrides: {
2935
+ root: ({ theme }: any) => {};
2936
+ menuRoot: ({ theme }: any) => {
2937
+ '& .MuiDivider-root': {
2938
+ margin: any;
2939
+ };
2940
+ '& .MuiIcon-root': {
2941
+ fontSize: string;
2942
+ };
2943
+ };
2944
+ drawerRoot: ({ theme }: any) => {
2945
+ '& .SCGroupActionsMenu-item': {
2946
+ paddingTop: number;
2947
+ paddingBottom: number;
2948
+ };
2949
+ '& .MuiDivider-root': {
2950
+ margin: any;
2951
+ };
2952
+ '& .MuiIcon-root': {
2953
+ fontSize: string;
2954
+ };
2955
+ };
2956
+ };
2957
+ };
2915
2958
  SCGroupAutocomplete: {
2916
2959
  styleOverrides: {
2917
2960
  root: ({ theme }: any) => {};
@@ -3062,10 +3105,13 @@ declare const theme: {
3062
3105
  gap: any;
3063
3106
  };
3064
3107
  };
3065
- '& .SCEditGroupButton-root': {
3108
+ '& .SCGroupHeader-multi-actions': {
3109
+ display: string;
3066
3110
  marginLeft: string;
3067
3111
  marginTop: any;
3068
- marginRight: any;
3112
+ '& .SCEditGroupButton-root': {
3113
+ marginRight: any;
3114
+ };
3069
3115
  };
3070
3116
  '& .SCGroupSubscribeButton-root': {
3071
3117
  marginTop: any;
@@ -3594,6 +3640,11 @@ declare const theme: {
3594
3640
  "& .PhotoView__Photo": {
3595
3641
  cursor: string;
3596
3642
  maxWidth: string;
3643
+ WebkitUserDrag: string;
3644
+ userDrag: string;
3645
+ '@-moz-document url-prefix()': {
3646
+ pointerEvents: string;
3647
+ };
3597
3648
  };
3598
3649
  "& .PhotoView__Photo:active": {
3599
3650
  cursor: string;
@@ -4179,6 +4230,7 @@ declare const theme: {
4179
4230
  width: string;
4180
4231
  position: string;
4181
4232
  top: number;
4233
+ zIndex: number;
4182
4234
  '& iframe': {
4183
4235
  width: string;
4184
4236
  margin: string;
@@ -4188,6 +4240,7 @@ declare const theme: {
4188
4240
  width: string;
4189
4241
  position: string;
4190
4242
  top: number;
4243
+ zIndex: number;
4191
4244
  '& .SCMediaLink-html-loading': {
4192
4245
  position: string;
4193
4246
  display: string;
@@ -4240,6 +4293,7 @@ declare const theme: {
4240
4293
  '& .SCMediaLink-html': {
4241
4294
  width: string;
4242
4295
  position: string;
4296
+ zIndex: number;
4243
4297
  '& iframe': {
4244
4298
  width: string;
4245
4299
  margin: string;
@@ -4249,6 +4303,7 @@ declare const theme: {
4249
4303
  width: string;
4250
4304
  position: string;
4251
4305
  top: number;
4306
+ zIndex: number;
4252
4307
  '& .SCMediaLink-html-loading': {
4253
4308
  position: string;
4254
4309
  display: string;
@@ -4287,14 +4342,18 @@ declare const theme: {
4287
4342
  SCNavigationMenuIconButton: {
4288
4343
  styleOverrides: {
4289
4344
  root: ({ theme }: any) => {};
4290
- drawerRoot: ({ theme }: any) => {
4345
+ };
4346
+ };
4347
+ SCNavigationMenuDrawer: {
4348
+ styleOverrides: {
4349
+ root: ({ theme }: any) => {
4291
4350
  '& .MuiDrawer-paper': {
4292
4351
  [x: number]: {
4293
4352
  width: any;
4294
4353
  };
4295
4354
  width: string;
4296
4355
  };
4297
- '& .SCNavigationMenuIconButton-drawer-header': {
4356
+ '& .SCNavigationMenuDrawer-drawer-header': {
4298
4357
  minHeight: any;
4299
4358
  padding: string;
4300
4359
  display: string;
@@ -4323,6 +4382,9 @@ declare const theme: {
4323
4382
  '& .SCBaseItemButton-text ': {
4324
4383
  maxWidth: string;
4325
4384
  };
4385
+ '& .SCNavigationMenuDrawer-drawer-footer': {
4386
+ padding: any;
4387
+ };
4326
4388
  };
4327
4389
  };
4328
4390
  };
@@ -4368,7 +4430,6 @@ declare const theme: {
4368
4430
  paddingRight: any;
4369
4431
  paddingBottom: number;
4370
4432
  margin: any;
4371
- color: any;
4372
4433
  borderRadius: number;
4373
4434
  borderBottom: string;
4374
4435
  '&.SCNavigationToolbar-active, &:hover': {
@@ -4408,6 +4469,9 @@ declare const theme: {
4408
4469
  '& .SCNavigationToolbar-settings': {
4409
4470
  marginLeft: number;
4410
4471
  };
4472
+ '& .SCNavigationToolbar-composer:hover': {
4473
+ color: any;
4474
+ };
4411
4475
  '& .MuiIconButton-root': {
4412
4476
  color: any;
4413
4477
  };
@@ -4457,6 +4521,9 @@ declare const theme: {
4457
4521
  '& .SCNavigationToolbarMobile-logo-flex': {
4458
4522
  flexGrow: number;
4459
4523
  };
4524
+ '& .MuiIconButton-root': {
4525
+ color: any;
4526
+ };
4460
4527
  '& h4': {
4461
4528
  fontSize: string;
4462
4529
  overflow: string;
@@ -5200,8 +5267,18 @@ declare const theme: {
5200
5267
  display: string;
5201
5268
  flexDirection: string;
5202
5269
  };
5203
- '& .SCOnBoardingWidget-appearance-color': {
5204
- margin: any;
5270
+ '& .SCOnBoardingWidget-appearance-color-container': {
5271
+ position: string;
5272
+ display: string;
5273
+ '& .SCOnBoardingWidget-appearance-color': {
5274
+ margin: any;
5275
+ };
5276
+ '& .SCOnBoardingWidget-appearance-color-progress': {
5277
+ position: string;
5278
+ top: string;
5279
+ marginTop: any;
5280
+ marginLeft: any;
5281
+ };
5205
5282
  };
5206
5283
  '& .SCOnBoardingWidget-appearance-logo-container': {
5207
5284
  position: string;
@@ -6194,9 +6271,13 @@ declare const theme: {
6194
6271
  borderRadius: any;
6195
6272
  '& .MuiAutocomplete-input': {
6196
6273
  padding: any;
6274
+ color: any;
6197
6275
  };
6198
6276
  };
6199
6277
  '& .MuiInputBase-root': {
6278
+ '& .MuiIcon-root': {
6279
+ color: any;
6280
+ };
6200
6281
  '& fieldset': {
6201
6282
  borderColor: string;
6202
6283
  };
@@ -6800,6 +6881,14 @@ declare const theme: {
6800
6881
  '& .SCEventForm-active': {
6801
6882
  color: any;
6802
6883
  };
6884
+ '& .SCEventForm-actions': {
6885
+ marginTop: any;
6886
+ display: string;
6887
+ justifyContent: string;
6888
+ '& button': {
6889
+ width: string;
6890
+ };
6891
+ };
6803
6892
  '& .SCEventForm-privacy-section': {
6804
6893
  marginTop: any;
6805
6894
  justifyContent: string;
@@ -6840,6 +6929,18 @@ declare const theme: {
6840
6929
  };
6841
6930
  };
6842
6931
  };
6932
+ SCEventFormDialog: {
6933
+ styleOverrides: {
6934
+ root: ({ theme }: any) => {
6935
+ '& .MuiDialogTitle-root': {
6936
+ '& span': {
6937
+ flexGrow: number;
6938
+ textAlign: string;
6939
+ };
6940
+ };
6941
+ };
6942
+ };
6943
+ };
6843
6944
  SCCreateEventButton: {
6844
6945
  styleOverrides: {
6845
6946
  root: ({ theme }: any) => {
@@ -7639,6 +7740,125 @@ declare const theme: {
7639
7740
  };
7640
7741
  };
7641
7742
  };
7743
+ SCEventMediaWidget: {
7744
+ styleOverrides: {
7745
+ root: ({ theme, showPadding }: {
7746
+ theme: any;
7747
+ showPadding: any;
7748
+ }) => {
7749
+ '& .SCEventMediaWidget-header': {
7750
+ padding: any;
7751
+ };
7752
+ '& .SCEventMediaWidget-content': {
7753
+ padding: any;
7754
+ '& .SCEventMediaWidget-grid': {
7755
+ display: string;
7756
+ gap: string;
7757
+ gridTemplateColumns: string;
7758
+ '& > .SCEventMediaWidget-media': {
7759
+ position: string;
7760
+ width: string;
7761
+ paddingBottom: string;
7762
+ backgroundSize: string;
7763
+ cursor: string;
7764
+ '& > .SCEventMediaWidget-media-layer': {
7765
+ position: string;
7766
+ inset: number;
7767
+ backgroundColor: string;
7768
+ opacity: number;
7769
+ };
7770
+ '& > .SCEventMediaWidget-count-hidden-media-wrapper': {
7771
+ position: string;
7772
+ top: string;
7773
+ left: string;
7774
+ transform: string;
7775
+ color: any;
7776
+ '& > .SCEventMediaWidget-count-hidden-media': {
7777
+ fontSize: string;
7778
+ };
7779
+ };
7780
+ };
7781
+ };
7782
+ };
7783
+ '& .SCEventMediaWidget-actions': {
7784
+ padding: any;
7785
+ justifyContent: string;
7786
+ };
7787
+ };
7788
+ skeletonRoot: ({}: {}) => {
7789
+ '& .SCEventMediaWidget-grid': {
7790
+ display: string;
7791
+ gap: string;
7792
+ gridTemplateColumns: string;
7793
+ '& > .SCEventMediaWidget-media': {
7794
+ paddingBottom: string;
7795
+ };
7796
+ };
7797
+ };
7798
+ dialogRoot: ({ theme }: {
7799
+ theme: any;
7800
+ }) => {
7801
+ '& .SCEventMediaWidget-grid': {
7802
+ display: string;
7803
+ gap: string;
7804
+ gridTemplateColumns: string;
7805
+ '& > .SCEventMediaWidget-media': {
7806
+ paddingBottom: string;
7807
+ };
7808
+ '& > .SCEventMediaWidget-dialog-media-wrapper': {
7809
+ position: string;
7810
+ width: string;
7811
+ paddingBottom: string;
7812
+ backgroundSize: string;
7813
+ '& > .SCEventMediaWidget-dialog-button-wrapper': {
7814
+ position: string;
7815
+ top: number;
7816
+ width: string;
7817
+ height: string;
7818
+ backgroundColor: any;
7819
+ opacity: number;
7820
+ flexDirection: string;
7821
+ justifyContent: string;
7822
+ alignItems: string;
7823
+ '& > .SCEventMediaWidget-dialog-loading-button': {
7824
+ padding: number;
7825
+ minWidth: string;
7826
+ '& > .MuiLoadingButton-loadingIndicatorCenter': {
7827
+ color: any;
7828
+ };
7829
+ };
7830
+ };
7831
+ };
7832
+ };
7833
+ };
7834
+ triggerRoot: ({ isSquare }: {
7835
+ isSquare: any;
7836
+ }) => {
7837
+ padding: 0;
7838
+ borderRadius: 0;
7839
+ backgroundColor: string;
7840
+ '&:hover': {
7841
+ backgroundColor: string;
7842
+ };
7843
+ '& > .SCEventMediaWidget-trigger-content': {
7844
+ position: string;
7845
+ width: string;
7846
+ padding: string;
7847
+ paddingBottom: string;
7848
+ flexDirection: string;
7849
+ gap: string;
7850
+ alignItems: string;
7851
+ justifyContent: string;
7852
+ '& > .SCEventMediaWidget-trigger-icon': {
7853
+ position: string;
7854
+ top: string;
7855
+ transform: string;
7856
+ fontSize: string;
7857
+ };
7858
+ };
7859
+ };
7860
+ };
7861
+ };
7642
7862
  SCCalendar: {
7643
7863
  styleOverrides: {
7644
7864
  root: ({ theme }: {
@@ -8039,9 +8259,6 @@ declare const theme: {
8039
8259
  minWidth: number;
8040
8260
  '& .MuiIcon-root': {
8041
8261
  fontSize: string;
8042
- '& img': {
8043
- filter: string;
8044
- };
8045
8262
  };
8046
8263
  '&.MuiButton-sizeSmall': {
8047
8264
  padding: any;
@@ -8050,6 +8267,11 @@ declare const theme: {
8050
8267
  };
8051
8268
  };
8052
8269
  };
8270
+ popperRoot: ({ theme }: any) => {
8271
+ '& .SCVoteButton-reaction .MuiIcon-root': {
8272
+ fontSize: string;
8273
+ };
8274
+ };
8053
8275
  };
8054
8276
  };
8055
8277
  SCWidget: {
@@ -8123,6 +8345,63 @@ declare const theme: {
8123
8345
  };
8124
8346
  };
8125
8347
  };
8348
+ SCCreateLiveStreamDialog: {
8349
+ styleOverrides: {
8350
+ root: ({ theme }: any) => {
8351
+ '& .MuiDialogTitle-root': {
8352
+ '& span': {
8353
+ flexGrow: number;
8354
+ textAlign: string;
8355
+ };
8356
+ };
8357
+ '& .SCCreateLiveStreamDialog-root': {
8358
+ padding: any;
8359
+ };
8360
+ };
8361
+ };
8362
+ };
8363
+ SCLiveStreamForm: {
8364
+ styleOverrides: {
8365
+ root: ({ theme }: any) => {
8366
+ "& .SCLiveStreamForm-actions": {
8367
+ display: string;
8368
+ justifyContent: string;
8369
+ marginTop: any;
8370
+ };
8371
+ };
8372
+ };
8373
+ };
8374
+ SCLiveStreamRoom: {
8375
+ styleOverrides: {
8376
+ root: ({ theme }: any) => {
8377
+ backgroundColor: string;
8378
+ height: string;
8379
+ display: string;
8380
+ justifyContent: string;
8381
+ alignContent: string;
8382
+ "& .SCLiveStreamRoom-preJoin": {
8383
+ display: string;
8384
+ placeItems: string;
8385
+ height: string;
8386
+ };
8387
+ '& .lk-form-control': {
8388
+ display: string;
8389
+ };
8390
+ '& .lk-join-button': {
8391
+ backgroundColor: any;
8392
+ color: any;
8393
+ '&:hover': {
8394
+ backgroundColor: any;
8395
+ };
8396
+ };
8397
+ };
8398
+ };
8399
+ };
8400
+ SCLiveStreamVideoConference: {
8401
+ styleOverrides: {
8402
+ root: ({ theme }: any) => {};
8403
+ };
8404
+ };
8126
8405
  };
8127
8406
  selfcommunity: {
8128
8407
  user: {