@selfcommunity/react-theme-default 0.2.0-live.90 → 0.2.0-live.91
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/SCLiveStreamRoom.d.ts +23 -1
- package/lib/cjs/components/SCLiveStreamRoom.js +25 -3
- package/lib/cjs/components/SCLiveStreamVideoConference.d.ts +5 -0
- package/lib/cjs/components/SCLiveStreamVideoConference.js +5 -0
- package/lib/cjs/index.d.ts +28 -1
- package/lib/esm/components/SCLiveStreamRoom.d.ts +23 -1
- package/lib/esm/components/SCLiveStreamRoom.js +25 -3
- package/lib/esm/components/SCLiveStreamVideoConference.d.ts +5 -0
- package/lib/esm/components/SCLiveStreamVideoConference.js +5 -0
- package/lib/esm/index.d.ts +28 -1
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +4 -4
|
@@ -5,10 +5,21 @@ declare const Component: {
|
|
|
5
5
|
display: string;
|
|
6
6
|
justifyContent: string;
|
|
7
7
|
alignContent: string;
|
|
8
|
+
"& .SCLiveStreamRoom-title": {
|
|
9
|
+
margin: any;
|
|
10
|
+
textAlign: string;
|
|
11
|
+
color: any;
|
|
12
|
+
};
|
|
13
|
+
"& .SCLiveStreamRoom-description": {
|
|
14
|
+
marginBottom: any;
|
|
15
|
+
textAlign: string;
|
|
16
|
+
color: any;
|
|
17
|
+
};
|
|
8
18
|
"& .SCLiveStreamRoom-content": {
|
|
9
19
|
width: string;
|
|
10
20
|
};
|
|
11
21
|
"& .SCLiveStreamRoom-prejoin": {
|
|
22
|
+
margin: any;
|
|
12
23
|
padding: any;
|
|
13
24
|
display: string;
|
|
14
25
|
placeItems: string;
|
|
@@ -23,8 +34,19 @@ declare const Component: {
|
|
|
23
34
|
opacity: number;
|
|
24
35
|
};
|
|
25
36
|
};
|
|
37
|
+
"& .SCLiveStreamRoom-prejoin-alert": {
|
|
38
|
+
backgroundColor: any;
|
|
39
|
+
color: any;
|
|
40
|
+
border: string;
|
|
41
|
+
borderRadius: string;
|
|
42
|
+
};
|
|
26
43
|
"& .SCLiveStreamRoom-share-link": {
|
|
27
44
|
marginTop: any;
|
|
45
|
+
backgroundColor: any;
|
|
46
|
+
'& textarea': {
|
|
47
|
+
color: any;
|
|
48
|
+
'-webkit-text-fill-color': any;
|
|
49
|
+
};
|
|
28
50
|
};
|
|
29
51
|
"& .SCLiveStreamRoom-conference": {
|
|
30
52
|
width: string;
|
|
@@ -47,7 +69,7 @@ declare const Component: {
|
|
|
47
69
|
display: string;
|
|
48
70
|
justifyContent: string;
|
|
49
71
|
alignItems: string;
|
|
50
|
-
marginTop:
|
|
72
|
+
marginTop: any;
|
|
51
73
|
paddingBottom: any;
|
|
52
74
|
};
|
|
53
75
|
'& .lk-prejoin': {
|
|
@@ -7,14 +7,25 @@ const Component = {
|
|
|
7
7
|
display: 'flex',
|
|
8
8
|
justifyContent: 'center',
|
|
9
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
|
+
marginBottom: theme.spacing(),
|
|
17
|
+
textAlign: 'center',
|
|
18
|
+
color: theme.palette.text.secondary
|
|
19
|
+
},
|
|
10
20
|
[`& .SCLiveStreamRoom-content`]: {
|
|
11
21
|
width: '100%'
|
|
12
22
|
},
|
|
13
23
|
[`& .SCLiveStreamRoom-prejoin`]: {
|
|
24
|
+
margin: theme.spacing(2),
|
|
14
25
|
padding: theme.spacing(),
|
|
15
26
|
display: 'grid',
|
|
16
27
|
placeItems: 'center',
|
|
17
|
-
height: '
|
|
28
|
+
height: 'auto',
|
|
18
29
|
position: 'relative',
|
|
19
30
|
'& .lk-form-control': {
|
|
20
31
|
display: 'none'
|
|
@@ -25,8 +36,19 @@ const Component = {
|
|
|
25
36
|
opacity: 0.5
|
|
26
37
|
}
|
|
27
38
|
},
|
|
39
|
+
[`& .SCLiveStreamRoom-prejoin-alert`]: {
|
|
40
|
+
backgroundColor: theme.palette.background.paper,
|
|
41
|
+
color: theme.palette.text.primary,
|
|
42
|
+
border: '1px solid #555555',
|
|
43
|
+
borderRadius: '5px'
|
|
44
|
+
},
|
|
28
45
|
[`& .SCLiveStreamRoom-share-link`]: {
|
|
29
|
-
marginTop: theme.spacing(3)
|
|
46
|
+
marginTop: theme.spacing(3),
|
|
47
|
+
backgroundColor: theme.palette.background.paper,
|
|
48
|
+
'& textarea': {
|
|
49
|
+
color: theme.palette.text.primary,
|
|
50
|
+
'-webkit-text-fill-color': theme.palette.text.primary
|
|
51
|
+
}
|
|
30
52
|
},
|
|
31
53
|
[`& .SCLiveStreamRoom-conference`]: {
|
|
32
54
|
width: '100%',
|
|
@@ -49,7 +71,7 @@ const Component = {
|
|
|
49
71
|
display: 'flex',
|
|
50
72
|
justifyContent: 'center',
|
|
51
73
|
alignItems: 'center',
|
|
52
|
-
marginTop:
|
|
74
|
+
marginTop: theme.spacing(2),
|
|
53
75
|
paddingBottom: theme.spacing(3)
|
|
54
76
|
},
|
|
55
77
|
'& .lk-prejoin': {
|
|
@@ -12,6 +12,11 @@ declare const Component: {
|
|
|
12
12
|
alignItems: string;
|
|
13
13
|
alignContent: string;
|
|
14
14
|
flexDirection: string;
|
|
15
|
+
"& .SCLiveStreamVideoConference-logo": {
|
|
16
|
+
img: {
|
|
17
|
+
maxHeight: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
15
20
|
"& .SCLiveStreamVideoConference-btn-back-home": {
|
|
16
21
|
marginTop: any;
|
|
17
22
|
};
|
|
@@ -14,6 +14,11 @@ const Component = {
|
|
|
14
14
|
alignItems: 'center',
|
|
15
15
|
alignContent: 'center',
|
|
16
16
|
flexDirection: 'column',
|
|
17
|
+
[`& .SCLiveStreamVideoConference-logo`]: {
|
|
18
|
+
img: {
|
|
19
|
+
maxHeight: '100px'
|
|
20
|
+
}
|
|
21
|
+
},
|
|
17
22
|
[`& .SCLiveStreamVideoConference-btn-back-home`]: {
|
|
18
23
|
marginTop: theme.spacing(2)
|
|
19
24
|
}
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -9025,10 +9025,21 @@ declare const theme: {
|
|
|
9025
9025
|
display: string;
|
|
9026
9026
|
justifyContent: string;
|
|
9027
9027
|
alignContent: string;
|
|
9028
|
+
"& .SCLiveStreamRoom-title": {
|
|
9029
|
+
margin: any;
|
|
9030
|
+
textAlign: string;
|
|
9031
|
+
color: any;
|
|
9032
|
+
};
|
|
9033
|
+
"& .SCLiveStreamRoom-description": {
|
|
9034
|
+
marginBottom: any;
|
|
9035
|
+
textAlign: string;
|
|
9036
|
+
color: any;
|
|
9037
|
+
};
|
|
9028
9038
|
"& .SCLiveStreamRoom-content": {
|
|
9029
9039
|
width: string;
|
|
9030
9040
|
};
|
|
9031
9041
|
"& .SCLiveStreamRoom-prejoin": {
|
|
9042
|
+
margin: any;
|
|
9032
9043
|
padding: any;
|
|
9033
9044
|
display: string;
|
|
9034
9045
|
placeItems: string;
|
|
@@ -9043,8 +9054,19 @@ declare const theme: {
|
|
|
9043
9054
|
opacity: number;
|
|
9044
9055
|
};
|
|
9045
9056
|
};
|
|
9057
|
+
"& .SCLiveStreamRoom-prejoin-alert": {
|
|
9058
|
+
backgroundColor: any;
|
|
9059
|
+
color: any;
|
|
9060
|
+
border: string;
|
|
9061
|
+
borderRadius: string;
|
|
9062
|
+
};
|
|
9046
9063
|
"& .SCLiveStreamRoom-share-link": {
|
|
9047
9064
|
marginTop: any;
|
|
9065
|
+
backgroundColor: any;
|
|
9066
|
+
'& textarea': {
|
|
9067
|
+
color: any;
|
|
9068
|
+
'-webkit-text-fill-color': any;
|
|
9069
|
+
};
|
|
9048
9070
|
};
|
|
9049
9071
|
"& .SCLiveStreamRoom-conference": {
|
|
9050
9072
|
width: string;
|
|
@@ -9067,7 +9089,7 @@ declare const theme: {
|
|
|
9067
9089
|
display: string;
|
|
9068
9090
|
justifyContent: string;
|
|
9069
9091
|
alignItems: string;
|
|
9070
|
-
marginTop:
|
|
9092
|
+
marginTop: any;
|
|
9071
9093
|
paddingBottom: any;
|
|
9072
9094
|
};
|
|
9073
9095
|
'& .lk-prejoin': {
|
|
@@ -9112,6 +9134,11 @@ declare const theme: {
|
|
|
9112
9134
|
alignItems: string;
|
|
9113
9135
|
alignContent: string;
|
|
9114
9136
|
flexDirection: string;
|
|
9137
|
+
"& .SCLiveStreamVideoConference-logo": {
|
|
9138
|
+
img: {
|
|
9139
|
+
maxHeight: string;
|
|
9140
|
+
};
|
|
9141
|
+
};
|
|
9115
9142
|
"& .SCLiveStreamVideoConference-btn-back-home": {
|
|
9116
9143
|
marginTop: any;
|
|
9117
9144
|
};
|
|
@@ -5,10 +5,21 @@ declare const Component: {
|
|
|
5
5
|
display: string;
|
|
6
6
|
justifyContent: string;
|
|
7
7
|
alignContent: string;
|
|
8
|
+
"& .SCLiveStreamRoom-title": {
|
|
9
|
+
margin: any;
|
|
10
|
+
textAlign: string;
|
|
11
|
+
color: any;
|
|
12
|
+
};
|
|
13
|
+
"& .SCLiveStreamRoom-description": {
|
|
14
|
+
marginBottom: any;
|
|
15
|
+
textAlign: string;
|
|
16
|
+
color: any;
|
|
17
|
+
};
|
|
8
18
|
"& .SCLiveStreamRoom-content": {
|
|
9
19
|
width: string;
|
|
10
20
|
};
|
|
11
21
|
"& .SCLiveStreamRoom-prejoin": {
|
|
22
|
+
margin: any;
|
|
12
23
|
padding: any;
|
|
13
24
|
display: string;
|
|
14
25
|
placeItems: string;
|
|
@@ -23,8 +34,19 @@ declare const Component: {
|
|
|
23
34
|
opacity: number;
|
|
24
35
|
};
|
|
25
36
|
};
|
|
37
|
+
"& .SCLiveStreamRoom-prejoin-alert": {
|
|
38
|
+
backgroundColor: any;
|
|
39
|
+
color: any;
|
|
40
|
+
border: string;
|
|
41
|
+
borderRadius: string;
|
|
42
|
+
};
|
|
26
43
|
"& .SCLiveStreamRoom-share-link": {
|
|
27
44
|
marginTop: any;
|
|
45
|
+
backgroundColor: any;
|
|
46
|
+
'& textarea': {
|
|
47
|
+
color: any;
|
|
48
|
+
'-webkit-text-fill-color': any;
|
|
49
|
+
};
|
|
28
50
|
};
|
|
29
51
|
"& .SCLiveStreamRoom-conference": {
|
|
30
52
|
width: string;
|
|
@@ -47,7 +69,7 @@ declare const Component: {
|
|
|
47
69
|
display: string;
|
|
48
70
|
justifyContent: string;
|
|
49
71
|
alignItems: string;
|
|
50
|
-
marginTop:
|
|
72
|
+
marginTop: any;
|
|
51
73
|
paddingBottom: any;
|
|
52
74
|
};
|
|
53
75
|
'& .lk-prejoin': {
|
|
@@ -5,14 +5,25 @@ const Component = {
|
|
|
5
5
|
display: 'flex',
|
|
6
6
|
justifyContent: 'center',
|
|
7
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
|
+
marginBottom: theme.spacing(),
|
|
15
|
+
textAlign: 'center',
|
|
16
|
+
color: theme.palette.text.secondary
|
|
17
|
+
},
|
|
8
18
|
[`& .SCLiveStreamRoom-content`]: {
|
|
9
19
|
width: '100%'
|
|
10
20
|
},
|
|
11
21
|
[`& .SCLiveStreamRoom-prejoin`]: {
|
|
22
|
+
margin: theme.spacing(2),
|
|
12
23
|
padding: theme.spacing(),
|
|
13
24
|
display: 'grid',
|
|
14
25
|
placeItems: 'center',
|
|
15
|
-
height: '
|
|
26
|
+
height: 'auto',
|
|
16
27
|
position: 'relative',
|
|
17
28
|
'& .lk-form-control': {
|
|
18
29
|
display: 'none'
|
|
@@ -23,8 +34,19 @@ const Component = {
|
|
|
23
34
|
opacity: 0.5
|
|
24
35
|
}
|
|
25
36
|
},
|
|
37
|
+
[`& .SCLiveStreamRoom-prejoin-alert`]: {
|
|
38
|
+
backgroundColor: theme.palette.background.paper,
|
|
39
|
+
color: theme.palette.text.primary,
|
|
40
|
+
border: '1px solid #555555',
|
|
41
|
+
borderRadius: '5px'
|
|
42
|
+
},
|
|
26
43
|
[`& .SCLiveStreamRoom-share-link`]: {
|
|
27
|
-
marginTop: theme.spacing(3)
|
|
44
|
+
marginTop: theme.spacing(3),
|
|
45
|
+
backgroundColor: theme.palette.background.paper,
|
|
46
|
+
'& textarea': {
|
|
47
|
+
color: theme.palette.text.primary,
|
|
48
|
+
'-webkit-text-fill-color': theme.palette.text.primary
|
|
49
|
+
}
|
|
28
50
|
},
|
|
29
51
|
[`& .SCLiveStreamRoom-conference`]: {
|
|
30
52
|
width: '100%',
|
|
@@ -47,7 +69,7 @@ const Component = {
|
|
|
47
69
|
display: 'flex',
|
|
48
70
|
justifyContent: 'center',
|
|
49
71
|
alignItems: 'center',
|
|
50
|
-
marginTop:
|
|
72
|
+
marginTop: theme.spacing(2),
|
|
51
73
|
paddingBottom: theme.spacing(3)
|
|
52
74
|
},
|
|
53
75
|
'& .lk-prejoin': {
|
|
@@ -12,6 +12,11 @@ declare const Component: {
|
|
|
12
12
|
alignItems: string;
|
|
13
13
|
alignContent: string;
|
|
14
14
|
flexDirection: string;
|
|
15
|
+
"& .SCLiveStreamVideoConference-logo": {
|
|
16
|
+
img: {
|
|
17
|
+
maxHeight: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
15
20
|
"& .SCLiveStreamVideoConference-btn-back-home": {
|
|
16
21
|
marginTop: any;
|
|
17
22
|
};
|
|
@@ -12,6 +12,11 @@ const Component = {
|
|
|
12
12
|
alignItems: 'center',
|
|
13
13
|
alignContent: 'center',
|
|
14
14
|
flexDirection: 'column',
|
|
15
|
+
[`& .SCLiveStreamVideoConference-logo`]: {
|
|
16
|
+
img: {
|
|
17
|
+
maxHeight: '100px'
|
|
18
|
+
}
|
|
19
|
+
},
|
|
15
20
|
[`& .SCLiveStreamVideoConference-btn-back-home`]: {
|
|
16
21
|
marginTop: theme.spacing(2)
|
|
17
22
|
}
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -9025,10 +9025,21 @@ declare const theme: {
|
|
|
9025
9025
|
display: string;
|
|
9026
9026
|
justifyContent: string;
|
|
9027
9027
|
alignContent: string;
|
|
9028
|
+
"& .SCLiveStreamRoom-title": {
|
|
9029
|
+
margin: any;
|
|
9030
|
+
textAlign: string;
|
|
9031
|
+
color: any;
|
|
9032
|
+
};
|
|
9033
|
+
"& .SCLiveStreamRoom-description": {
|
|
9034
|
+
marginBottom: any;
|
|
9035
|
+
textAlign: string;
|
|
9036
|
+
color: any;
|
|
9037
|
+
};
|
|
9028
9038
|
"& .SCLiveStreamRoom-content": {
|
|
9029
9039
|
width: string;
|
|
9030
9040
|
};
|
|
9031
9041
|
"& .SCLiveStreamRoom-prejoin": {
|
|
9042
|
+
margin: any;
|
|
9032
9043
|
padding: any;
|
|
9033
9044
|
display: string;
|
|
9034
9045
|
placeItems: string;
|
|
@@ -9043,8 +9054,19 @@ declare const theme: {
|
|
|
9043
9054
|
opacity: number;
|
|
9044
9055
|
};
|
|
9045
9056
|
};
|
|
9057
|
+
"& .SCLiveStreamRoom-prejoin-alert": {
|
|
9058
|
+
backgroundColor: any;
|
|
9059
|
+
color: any;
|
|
9060
|
+
border: string;
|
|
9061
|
+
borderRadius: string;
|
|
9062
|
+
};
|
|
9046
9063
|
"& .SCLiveStreamRoom-share-link": {
|
|
9047
9064
|
marginTop: any;
|
|
9065
|
+
backgroundColor: any;
|
|
9066
|
+
'& textarea': {
|
|
9067
|
+
color: any;
|
|
9068
|
+
'-webkit-text-fill-color': any;
|
|
9069
|
+
};
|
|
9048
9070
|
};
|
|
9049
9071
|
"& .SCLiveStreamRoom-conference": {
|
|
9050
9072
|
width: string;
|
|
@@ -9067,7 +9089,7 @@ declare const theme: {
|
|
|
9067
9089
|
display: string;
|
|
9068
9090
|
justifyContent: string;
|
|
9069
9091
|
alignItems: string;
|
|
9070
|
-
marginTop:
|
|
9092
|
+
marginTop: any;
|
|
9071
9093
|
paddingBottom: any;
|
|
9072
9094
|
};
|
|
9073
9095
|
'& .lk-prejoin': {
|
|
@@ -9112,6 +9134,11 @@ declare const theme: {
|
|
|
9112
9134
|
alignItems: string;
|
|
9113
9135
|
alignContent: string;
|
|
9114
9136
|
flexDirection: string;
|
|
9137
|
+
"& .SCLiveStreamVideoConference-logo": {
|
|
9138
|
+
img: {
|
|
9139
|
+
maxHeight: string;
|
|
9140
|
+
};
|
|
9141
|
+
};
|
|
9115
9142
|
"& .SCLiveStreamVideoConference-btn-back-home": {
|
|
9116
9143
|
marginTop: any;
|
|
9117
9144
|
};
|