@selfcommunity/react-theme-default 0.4.5-alpha.0 → 0.4.5-alpha.2

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 (66) 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 +11 -0
  4. package/lib/cjs/components/SCFeedObject.js +12 -1
  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/SCMediaFile.d.ts +0 -4
  22. package/lib/cjs/components/SCMediaFile.js +1 -5
  23. package/lib/cjs/components/SCNavigationMenuDrawer.d.ts +3 -0
  24. package/lib/cjs/components/SCNavigationMenuDrawer.js +3 -0
  25. package/lib/cjs/components/SCNotification.d.ts +27 -0
  26. package/lib/cjs/components/SCNotification.js +27 -0
  27. package/lib/cjs/components/SCUpScalingTierBadge.d.ts +13 -0
  28. package/lib/cjs/components/SCUpScalingTierBadge.js +15 -0
  29. package/lib/cjs/components/SCUserLiveStreamWidget.d.ts +101 -0
  30. package/lib/cjs/components/SCUserLiveStreamWidget.js +97 -0
  31. package/lib/cjs/index.d.ts +772 -95
  32. package/lib/cjs/index.js +21 -1
  33. package/lib/esm/components/SCEventInfoDetails.d.ts +3 -0
  34. package/lib/esm/components/SCEventInfoDetails.js +3 -0
  35. package/lib/esm/components/SCFeedObject.d.ts +11 -0
  36. package/lib/esm/components/SCFeedObject.js +12 -1
  37. package/lib/esm/components/SCLiveStream.d.ts +218 -0
  38. package/lib/esm/components/SCLiveStream.js +218 -0
  39. package/lib/esm/components/SCLiveStreamDialog.d.ts +16 -0
  40. package/lib/esm/components/SCLiveStreamDialog.js +16 -0
  41. package/lib/esm/components/SCLiveStreamForm.d.ts +27 -0
  42. package/lib/esm/components/SCLiveStreamForm.js +27 -0
  43. package/lib/esm/components/SCLiveStreamFormSettings.d.ts +15 -0
  44. package/lib/esm/components/SCLiveStreamFormSettings.js +15 -0
  45. package/lib/esm/components/SCLiveStreamInfoDetails.d.ts +43 -0
  46. package/lib/esm/components/SCLiveStreamInfoDetails.js +41 -0
  47. package/lib/esm/components/SCLiveStreamRoom.d.ts +113 -0
  48. package/lib/esm/components/SCLiveStreamRoom.js +113 -0
  49. package/lib/esm/components/SCLiveStreamSelector.d.ts +71 -0
  50. package/lib/esm/components/SCLiveStreamSelector.js +73 -0
  51. package/lib/esm/components/SCLiveStreamVideoConference.d.ts +27 -0
  52. package/lib/esm/components/SCLiveStreamVideoConference.js +27 -0
  53. package/lib/esm/components/SCMediaFile.d.ts +0 -4
  54. package/lib/esm/components/SCMediaFile.js +1 -5
  55. package/lib/esm/components/SCNavigationMenuDrawer.d.ts +3 -0
  56. package/lib/esm/components/SCNavigationMenuDrawer.js +3 -0
  57. package/lib/esm/components/SCNotification.d.ts +27 -0
  58. package/lib/esm/components/SCNotification.js +27 -0
  59. package/lib/esm/components/SCUpScalingTierBadge.d.ts +13 -0
  60. package/lib/esm/components/SCUpScalingTierBadge.js +13 -0
  61. package/lib/esm/components/SCUserLiveStreamWidget.d.ts +101 -0
  62. package/lib/esm/components/SCUserLiveStreamWidget.js +95 -0
  63. package/lib/esm/index.d.ts +772 -95
  64. package/lib/esm/index.js +21 -1
  65. package/lib/umd/react-theme-default.js +1 -19
  66. package/package.json +123 -117
@@ -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;
@@ -0,0 +1,41 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({
4
+ gap: theme.spacing(0.5),
5
+ '& .SCLiveStreamInfoDetails-icon-text-wrapper': {
6
+ flexDirection: 'row',
7
+ alignItems: 'center',
8
+ gap: theme.spacing(0.75),
9
+ '& > p': {
10
+ textTransform: 'capitalize'
11
+ },
12
+ '& .SCLiveStreamInfoDetails-link': {
13
+ textDecoration: 'none',
14
+ color: theme.palette.text.primary,
15
+ '&:hover': {
16
+ textDecoration: 'underlined'
17
+ },
18
+ '& .SCLiveStreamInfoDetails-url': {
19
+ overflow: 'hidden',
20
+ textOverflow: 'ellipsis',
21
+ display: '-webkit-box',
22
+ '-webkit-line-clamp': '1',
23
+ '-webkit-box-orient': 'vertical'
24
+ }
25
+ },
26
+ '& .SCLiveStreamInfoDetails-in-progress': {
27
+ width: '6px',
28
+ height: '6px',
29
+ borderRadius: '9999px',
30
+ backgroundColor: theme.palette.secondary.main
31
+ }
32
+ },
33
+ '& .SCLiveStreamInfoDetails-creation-wrapper': {
34
+ flexDirection: 'row',
35
+ alignItems: 'center',
36
+ gap: theme.spacing(1)
37
+ }
38
+ })
39
+ }
40
+ };
41
+ export default Component;
@@ -0,0 +1,113 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ width: string;
5
+ display: string;
6
+ justifyContent: string;
7
+ alignContent: string;
8
+ "& .SCLiveStreamRoom-title": {
9
+ margin: any;
10
+ textAlign: string;
11
+ color: any;
12
+ };
13
+ "& .SCLiveStreamRoom-description": {
14
+ backgroundColor: any;
15
+ color: any;
16
+ border: string;
17
+ borderRadius: string;
18
+ marginTop: any;
19
+ marginBottom: any;
20
+ padding: any;
21
+ };
22
+ "& .SCLiveStreamRoom-content": {
23
+ width: string;
24
+ };
25
+ "& .SCLiveStreamRoom-prejoin": {
26
+ margin: any;
27
+ padding: any;
28
+ display: string;
29
+ placeItems: string;
30
+ height: string;
31
+ position: string;
32
+ '& .lk-form-control': {
33
+ display: string;
34
+ };
35
+ };
36
+ "& .SCLiveStreamRoom-prejoin-loading": {
37
+ '& .lk-prejoin': {
38
+ opacity: number;
39
+ };
40
+ };
41
+ "& .SCLiveStreamRoom-prejoin-alert": {
42
+ backgroundColor: any;
43
+ color: any;
44
+ border: string;
45
+ borderRadius: string;
46
+ };
47
+ "& .SCLiveStreamRoom-share-link": {
48
+ marginTop: any;
49
+ backgroundColor: any;
50
+ '& textarea': {
51
+ color: any;
52
+ '-webkit-text-fill-color': any;
53
+ };
54
+ };
55
+ "& .SCLiveStreamRoom-conference": {
56
+ width: string;
57
+ display: string;
58
+ justifyContent: string;
59
+ alignItems: string;
60
+ backgroundColor: string;
61
+ };
62
+ "& .SCLiveStreamRoom-prejoin-loader": {
63
+ maxWidth: number;
64
+ width: string;
65
+ position: string;
66
+ textAlign: string;
67
+ '& .MuiTypography-root': {
68
+ color: string;
69
+ };
70
+ };
71
+ "& .SCLiveStreamRoom-end-prejoin-content": {
72
+ color: any;
73
+ display: string;
74
+ justifyContent: string;
75
+ alignItems: string;
76
+ marginTop: any;
77
+ paddingBottom: any;
78
+ "& .SCLiveStreamRoom-end-prejoin-content-box": {
79
+ [x: number]: {
80
+ width: string;
81
+ };
82
+ width: string;
83
+ };
84
+ };
85
+ '& .lk-prejoin': {
86
+ maxWidth: number;
87
+ width: string;
88
+ backgroundColor: string;
89
+ borderRadius: any;
90
+ };
91
+ '& .lk-join-button': {
92
+ backgroundColor: any;
93
+ color: any;
94
+ '&:hover': {
95
+ backgroundColor: any;
96
+ };
97
+ };
98
+ };
99
+ dialogRoot: ({ theme }: any) => {
100
+ "& .SCLiveStreamRoom-end-conference-wrap": {
101
+ display: string;
102
+ justifyContent: string;
103
+ alignItems: string;
104
+ alignContent: string;
105
+ flexDirection: string;
106
+ "& .SCLiveStreamVideoConference-btn-back-home": {
107
+ marginTop: any;
108
+ };
109
+ };
110
+ };
111
+ };
112
+ };
113
+ export default Component;
@@ -0,0 +1,113 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({
4
+ width: '100%',
5
+ display: 'flex',
6
+ justifyContent: 'center',
7
+ alignContent: 'center',
8
+ [`& .SCLiveStreamRoom-title`]: {
9
+ margin: theme.spacing(2),
10
+ textAlign: 'center',
11
+ color: theme.palette.text.primary
12
+ },
13
+ [`& .SCLiveStreamRoom-description`]: {
14
+ backgroundColor: theme.palette.background.paper,
15
+ color: theme.palette.text.primary,
16
+ border: '1px solid #555555',
17
+ borderRadius: '5px',
18
+ marginTop: theme.spacing(2),
19
+ marginBottom: theme.spacing(2),
20
+ padding: theme.spacing(0, 2)
21
+ },
22
+ [`& .SCLiveStreamRoom-content`]: {
23
+ width: '100%'
24
+ },
25
+ [`& .SCLiveStreamRoom-prejoin`]: {
26
+ margin: theme.spacing(),
27
+ padding: theme.spacing(),
28
+ display: 'grid',
29
+ placeItems: 'center',
30
+ height: 'auto',
31
+ position: 'relative',
32
+ '& .lk-form-control': {
33
+ display: 'none'
34
+ }
35
+ },
36
+ [`& .SCLiveStreamRoom-prejoin-loading`]: {
37
+ '& .lk-prejoin': {
38
+ opacity: 0.5
39
+ }
40
+ },
41
+ [`& .SCLiveStreamRoom-prejoin-alert`]: {
42
+ backgroundColor: theme.palette.background.paper,
43
+ color: theme.palette.text.primary,
44
+ border: '1px solid #555555',
45
+ borderRadius: '5px'
46
+ },
47
+ [`& .SCLiveStreamRoom-share-link`]: {
48
+ marginTop: theme.spacing(3),
49
+ backgroundColor: theme.palette.background.paper,
50
+ '& textarea': {
51
+ color: theme.palette.text.primary,
52
+ '-webkit-text-fill-color': theme.palette.text.primary
53
+ }
54
+ },
55
+ [`& .SCLiveStreamRoom-conference`]: {
56
+ width: '100%',
57
+ display: 'flex',
58
+ justifyContent: 'center',
59
+ alignItems: 'center',
60
+ backgroundColor: '#111111'
61
+ },
62
+ [`& .SCLiveStreamRoom-prejoin-loader`]: {
63
+ maxWidth: 620,
64
+ width: '100%',
65
+ position: 'absolute',
66
+ textAlign: 'center',
67
+ '& .MuiTypography-root': {
68
+ color: '#111111'
69
+ }
70
+ },
71
+ [`& .SCLiveStreamRoom-end-prejoin-content`]: {
72
+ color: theme.palette.common.black,
73
+ display: 'flex',
74
+ justifyContent: 'center',
75
+ alignItems: 'center',
76
+ marginTop: theme.spacing(2),
77
+ paddingBottom: theme.spacing(3),
78
+ [`& .SCLiveStreamRoom-end-prejoin-content-box`]: {
79
+ width: '47%',
80
+ [theme.breakpoints.down('md')]: {
81
+ width: '90%'
82
+ }
83
+ }
84
+ },
85
+ '& .lk-prejoin': {
86
+ maxWidth: 620,
87
+ width: '100%',
88
+ backgroundColor: '#111111',
89
+ borderRadius: theme.shape.borderRadiusSm
90
+ },
91
+ '& .lk-join-button': {
92
+ backgroundColor: theme.palette.primary.main,
93
+ color: theme.palette.common.white,
94
+ '&:hover': {
95
+ backgroundColor: theme.palette.primary.dark
96
+ }
97
+ }
98
+ }),
99
+ dialogRoot: ({ theme }) => ({
100
+ [`& .SCLiveStreamRoom-end-conference-wrap`]: {
101
+ display: 'flex',
102
+ justifyContent: 'center',
103
+ alignItems: 'center',
104
+ alignContent: 'center',
105
+ flexDirection: 'column',
106
+ [`& .SCLiveStreamVideoConference-btn-back-home`]: {
107
+ marginTop: theme.spacing(2)
108
+ }
109
+ }
110
+ })
111
+ }
112
+ };
113
+ export default Component;
@@ -0,0 +1,71 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ '& .SCLiveStreamSelector-warning': {
5
+ margin: any;
6
+ "& a": {
7
+ color: any;
8
+ fontWeight: string;
9
+ };
10
+ };
11
+ '& .SCLiveStreamSelector-options': {
12
+ [x: number]: {
13
+ display: string;
14
+ };
15
+ display: string;
16
+ justifyContent: string;
17
+ alignItems: string;
18
+ '& > div': {
19
+ [x: number]: {
20
+ margin: string;
21
+ marginBottom: any;
22
+ };
23
+ width: string;
24
+ };
25
+ };
26
+ '& .SCLiveStreamSelector-actions': {
27
+ display: string;
28
+ justifyContent: string;
29
+ alignItems: string;
30
+ marginTop: any;
31
+ };
32
+ };
33
+ optionCardRoot: ({ theme, selected }: any) => {
34
+ maxWidth: number;
35
+ height: string;
36
+ minHeight: number;
37
+ padding: any;
38
+ margin: any;
39
+ cursor: string;
40
+ transition: any;
41
+ backgroundColor: any;
42
+ '&:hover': {
43
+ backgroundColor: any;
44
+ boxShadow: any;
45
+ };
46
+ border: string;
47
+ "& > div": {
48
+ display: string;
49
+ justifyContent: string;
50
+ alignItems: string;
51
+ marginBottom: number;
52
+ maxWidth: string;
53
+ };
54
+ "& ul": {
55
+ marginTop: any;
56
+ padding: number;
57
+ listStyle: string;
58
+ };
59
+ };
60
+ featureItemRoot: ({ theme, selected }: any) => {
61
+ display: string;
62
+ alignItems: string;
63
+ gap: any;
64
+ marginBottom: any;
65
+ '&:last-child': {
66
+ marginBottom: number;
67
+ };
68
+ };
69
+ };
70
+ };
71
+ export default Component;
@@ -0,0 +1,73 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({
4
+ '& .SCLiveStreamSelector-warning': {
5
+ margin: theme.spacing(2, 5, 2, 5),
6
+ [`& a`]: {
7
+ color: theme.palette.common.white,
8
+ fontWeight: 'bold'
9
+ }
10
+ },
11
+ '& .SCLiveStreamSelector-options': {
12
+ display: 'flex',
13
+ justifyContent: 'center',
14
+ alignItems: 'center',
15
+ [theme.breakpoints.down('sm')]: {
16
+ display: 'block'
17
+ },
18
+ '& > div': {
19
+ width: '290px',
20
+ [theme.breakpoints.down('sm')]: {
21
+ margin: '0px auto',
22
+ marginBottom: theme.spacing(2)
23
+ }
24
+ }
25
+ },
26
+ '& .SCLiveStreamSelector-actions': {
27
+ display: 'flex',
28
+ justifyContent: 'flex-end',
29
+ alignItems: 'flex-end',
30
+ marginTop: theme.spacing(4)
31
+ }
32
+ }),
33
+ optionCardRoot: ({ theme, selected }) => ({
34
+ maxWidth: 300,
35
+ height: 'auto',
36
+ minHeight: 425,
37
+ padding: theme.spacing(3),
38
+ margin: theme.spacing(0, 3),
39
+ cursor: 'pointer',
40
+ transition: theme.transitions.create(['background-color', 'box-shadow'], {
41
+ duration: theme.transitions.duration.short
42
+ }),
43
+ backgroundColor: selected ? theme.palette.grey[100] : theme.palette.background.paper,
44
+ '&:hover': {
45
+ backgroundColor: theme.palette.grey[50],
46
+ boxShadow: theme.shadows[2]
47
+ },
48
+ border: `1px solid ${theme.palette.divider}`,
49
+ [`& > div`]: {
50
+ display: 'flex',
51
+ justifyContent: 'space-between',
52
+ alignItems: 'center',
53
+ marginBottom: 2,
54
+ maxWidth: '300px'
55
+ },
56
+ [`& ul`]: {
57
+ marginTop: theme.spacing(2),
58
+ padding: 0,
59
+ listStyle: 'none'
60
+ }
61
+ }),
62
+ featureItemRoot: ({ theme, selected }) => ({
63
+ display: 'flex',
64
+ alignItems: 'flex-start',
65
+ gap: theme.spacing(1.5),
66
+ marginBottom: theme.spacing(2),
67
+ '&:last-child': {
68
+ marginBottom: 0
69
+ }
70
+ })
71
+ }
72
+ };
73
+ export default Component;
@@ -0,0 +1,27 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ height: string;
5
+ width: string;
6
+ overflowY: string;
7
+ };
8
+ dialogRoot: ({ theme }: any) => {
9
+ "& .SCLiveStreamVideoConference-end-conference-wrap": {
10
+ display: string;
11
+ justifyContent: string;
12
+ alignItems: string;
13
+ alignContent: string;
14
+ flexDirection: string;
15
+ "& .SCLiveStreamVideoConference-logo": {
16
+ img: {
17
+ maxHeight: string;
18
+ };
19
+ };
20
+ "& .SCLiveStreamVideoConference-btn-back-home": {
21
+ marginTop: any;
22
+ };
23
+ };
24
+ };
25
+ };
26
+ };
27
+ export default Component;
@@ -0,0 +1,27 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({
4
+ height: '100vh',
5
+ width: '100%',
6
+ overflowY: 'hidden'
7
+ }),
8
+ dialogRoot: ({ theme }) => ({
9
+ [`& .SCLiveStreamVideoConference-end-conference-wrap`]: {
10
+ display: 'flex',
11
+ justifyContent: 'center',
12
+ alignItems: 'center',
13
+ alignContent: 'center',
14
+ flexDirection: 'column',
15
+ [`& .SCLiveStreamVideoConference-logo`]: {
16
+ img: {
17
+ maxHeight: '100px'
18
+ }
19
+ },
20
+ [`& .SCLiveStreamVideoConference-btn-back-home`]: {
21
+ marginTop: theme.spacing(2)
22
+ }
23
+ }
24
+ })
25
+ }
26
+ };
27
+ export default Component;
@@ -100,11 +100,7 @@ declare const Component: {
100
100
  flexWrap: string;
101
101
  maxWidth: string;
102
102
  overflow: string;
103
- MsOverflowStyle: string;
104
103
  scrollbarWidth: string;
105
- '&::-webkit-scrollbar': {
106
- display: string;
107
- };
108
104
  '& .SCMediaFile-media': {
109
105
  backgroundSize: string;
110
106
  backgroundPosition: string;
@@ -100,11 +100,7 @@ const Component = {
100
100
  flexWrap: 'nowrap',
101
101
  maxWidth: '100%',
102
102
  overflow: 'auto',
103
- 'MsOverflowStyle': 'none',
104
- scrollbarWidth: 'none',
105
- '&::-webkit-scrollbar': {
106
- display: 'none'
107
- },
103
+ scrollbarWidth: 'thin',
108
104
  '& .SCMediaFile-media': {
109
105
  backgroundSize: 'cover',
110
106
  backgroundPosition: 'center',
@@ -39,6 +39,9 @@ declare const Component: {
39
39
  '& .SCBaseItemButton-text ': {
40
40
  maxWidth: string;
41
41
  };
42
+ '& .SCNavigationMenuDrawer-drawer-footer': {
43
+ padding: any;
44
+ };
42
45
  };
43
46
  };
44
47
  };
@@ -39,6 +39,9 @@ const Component = {
39
39
  },
40
40
  '& .SCBaseItemButton-text ': {
41
41
  maxWidth: '80%'
42
+ },
43
+ '& .SCNavigationMenuDrawer-drawer-footer': {
44
+ padding: theme.spacing(3)
42
45
  }
43
46
  })
44
47
  }
@@ -305,6 +305,33 @@ declare const Component: {
305
305
  backgroundColor: string;
306
306
  };
307
307
  };
308
+ liveStreamRoot: ({ theme }: any) => {
309
+ '& .SCNotification-username, & a': {
310
+ fontWeight: any;
311
+ };
312
+ '& .SCNotificationItem-primary': {
313
+ '& .MuiIcon-root': {
314
+ float: string;
315
+ fontSize: string;
316
+ marginLeft: any;
317
+ };
318
+ '& .SCEvent-root': {
319
+ width: string;
320
+ '& .SCEvent-snippet-root': {
321
+ paddingLeft: string;
322
+ };
323
+ };
324
+ };
325
+ '& .SCNotificationItem-secondary': {
326
+ textTransform: string;
327
+ };
328
+ '& .SCNotification-snippet-time': {
329
+ paddingLeft: any;
330
+ };
331
+ '& .SCEvent-snippet-root': {
332
+ backgroundColor: string;
333
+ };
334
+ };
308
335
  groupRoot: ({ theme }: any) => {};
309
336
  undeletedForRoot: ({ theme }: any) => {
310
337
  '& .SCNotification-undeleted-icon': {
@@ -307,6 +307,33 @@ const Component = {
307
307
  backgroundColor: 'transparent !important'
308
308
  }
309
309
  }),
310
+ liveStreamRoot: ({ theme }) => ({
311
+ '& .SCNotification-username, & a': {
312
+ fontWeight: theme.typography.fontWeightBold
313
+ },
314
+ '& .SCNotificationItem-primary': {
315
+ '& .MuiIcon-root': {
316
+ float: 'right',
317
+ fontSize: '20px',
318
+ marginLeft: theme.spacing(0.5)
319
+ },
320
+ '& .SCEvent-root': {
321
+ width: '100%',
322
+ '& .SCEvent-snippet-root': {
323
+ paddingLeft: '0 !important'
324
+ }
325
+ }
326
+ },
327
+ '& .SCNotificationItem-secondary': {
328
+ textTransform: 'capitalize'
329
+ },
330
+ '& .SCNotification-snippet-time': {
331
+ paddingLeft: theme.spacing(5)
332
+ },
333
+ '& .SCEvent-snippet-root': {
334
+ backgroundColor: 'transparent !important'
335
+ }
336
+ }),
310
337
  groupRoot: ({ theme }) => ({}),
311
338
  undeletedForRoot: ({ theme }) => ({
312
339
  '& .SCNotification-undeleted-icon': {
@@ -0,0 +1,13 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {};
4
+ badgeRoot: ({ theme }: any) => {
5
+ background: string;
6
+ borderRadius: number;
7
+ padding: string;
8
+ height: string;
9
+ fontSize: number;
10
+ };
11
+ };
12
+ };
13
+ export default Component;
@@ -0,0 +1,13 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({}),
4
+ badgeRoot: ({ theme }) => ({
5
+ background: '#008080',
6
+ borderRadius: 3,
7
+ padding: '1px',
8
+ height: 'auto',
9
+ fontSize: 12
10
+ })
11
+ }
12
+ };
13
+ export default Component;