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