@selfcommunity/react-theme-default 0.2.0-live.46 → 0.2.0-live.50
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 +14 -1
- package/lib/cjs/components/SCLiveStreamRoom.js +16 -3
- package/lib/cjs/components/SCLiveStreamVideoConference.d.ts +10 -0
- package/lib/cjs/components/SCLiveStreamVideoConference.js +11 -1
- package/lib/cjs/index.d.ts +24 -1
- package/lib/esm/components/SCLiveStreamRoom.d.ts +14 -1
- package/lib/esm/components/SCLiveStreamRoom.js +16 -3
- package/lib/esm/components/SCLiveStreamVideoConference.d.ts +10 -0
- package/lib/esm/components/SCLiveStreamVideoConference.js +11 -1
- package/lib/esm/index.d.ts +24 -1
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +4 -4
|
@@ -8,11 +8,17 @@ declare const Component: {
|
|
|
8
8
|
"& .SCLiveStreamRoom-content": {
|
|
9
9
|
width: string;
|
|
10
10
|
};
|
|
11
|
-
"& .SCLiveStreamRoom-
|
|
11
|
+
"& .SCLiveStreamRoom-prejoin": {
|
|
12
12
|
padding: any;
|
|
13
13
|
display: string;
|
|
14
14
|
placeItems: string;
|
|
15
15
|
height: string;
|
|
16
|
+
position: string;
|
|
17
|
+
};
|
|
18
|
+
"& .SCLiveStreamRoom-prejoin-loading": {
|
|
19
|
+
'& .lk-prejoin': {
|
|
20
|
+
opacity: number;
|
|
21
|
+
};
|
|
16
22
|
};
|
|
17
23
|
"& .SCLiveStreamRoom-conference": {
|
|
18
24
|
width: string;
|
|
@@ -21,7 +27,14 @@ declare const Component: {
|
|
|
21
27
|
alignItems: string;
|
|
22
28
|
backgroundColor: string;
|
|
23
29
|
};
|
|
30
|
+
"& .SCLiveStreamRoom-prejoin-loader": {
|
|
31
|
+
maxWidth: number;
|
|
32
|
+
width: string;
|
|
33
|
+
position: string;
|
|
34
|
+
textAlign: string;
|
|
35
|
+
};
|
|
24
36
|
'& .lk-prejoin': {
|
|
37
|
+
maxWidth: number;
|
|
25
38
|
width: string;
|
|
26
39
|
backgroundColor: string;
|
|
27
40
|
borderRadius: any;
|
|
@@ -10,11 +10,17 @@ const Component = {
|
|
|
10
10
|
[`& .SCLiveStreamRoom-content`]: {
|
|
11
11
|
width: '100%'
|
|
12
12
|
},
|
|
13
|
-
[`& .SCLiveStreamRoom-
|
|
13
|
+
[`& .SCLiveStreamRoom-prejoin`]: {
|
|
14
14
|
padding: theme.spacing(2),
|
|
15
15
|
display: 'grid',
|
|
16
16
|
placeItems: 'center',
|
|
17
|
-
height: '100%'
|
|
17
|
+
height: '100%',
|
|
18
|
+
position: 'relative'
|
|
19
|
+
},
|
|
20
|
+
[`& .SCLiveStreamRoom-prejoin-loading`]: {
|
|
21
|
+
'& .lk-prejoin': {
|
|
22
|
+
opacity: 0.5
|
|
23
|
+
}
|
|
18
24
|
},
|
|
19
25
|
[`& .SCLiveStreamRoom-conference`]: {
|
|
20
26
|
width: '100%',
|
|
@@ -23,8 +29,15 @@ const Component = {
|
|
|
23
29
|
alignItems: 'center',
|
|
24
30
|
backgroundColor: '#111111'
|
|
25
31
|
},
|
|
32
|
+
[`& .SCLiveStreamRoom-prejoin-loader`]: {
|
|
33
|
+
maxWidth: 620,
|
|
34
|
+
width: '100%',
|
|
35
|
+
position: 'absolute',
|
|
36
|
+
textAlign: 'center'
|
|
37
|
+
},
|
|
26
38
|
'& .lk-prejoin': {
|
|
27
|
-
|
|
39
|
+
maxWidth: 620,
|
|
40
|
+
width: '100%',
|
|
28
41
|
backgroundColor: '#111111',
|
|
29
42
|
borderRadius: theme.shape.borderRadiusSm
|
|
30
43
|
},
|
|
@@ -2,6 +2,16 @@ declare const Component: {
|
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
4
|
height: string;
|
|
5
|
+
"& .SCLiveStreamVideoConference-end-conference-wrap": {
|
|
6
|
+
display: string;
|
|
7
|
+
justifyContent: string;
|
|
8
|
+
alignItems: string;
|
|
9
|
+
alignContent: string;
|
|
10
|
+
flexDirection: string;
|
|
11
|
+
"& .SCLiveStreamVideoConference-btn-back-home": {
|
|
12
|
+
marginTop: any;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
5
15
|
};
|
|
6
16
|
};
|
|
7
17
|
};
|
|
@@ -3,7 +3,17 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const Component = {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
root: ({ theme }) => ({
|
|
6
|
-
height: '100vh'
|
|
6
|
+
height: '100vh',
|
|
7
|
+
[`& .SCLiveStreamVideoConference-end-conference-wrap`]: {
|
|
8
|
+
display: 'flex',
|
|
9
|
+
justifyContent: 'center',
|
|
10
|
+
alignItems: 'center',
|
|
11
|
+
alignContent: 'center',
|
|
12
|
+
flexDirection: 'column',
|
|
13
|
+
[`& .SCLiveStreamVideoConference-btn-back-home`]: {
|
|
14
|
+
marginTop: theme.spacing(2)
|
|
15
|
+
}
|
|
16
|
+
}
|
|
7
17
|
})
|
|
8
18
|
}
|
|
9
19
|
};
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -8421,11 +8421,17 @@ declare const theme: {
|
|
|
8421
8421
|
"& .SCLiveStreamRoom-content": {
|
|
8422
8422
|
width: string;
|
|
8423
8423
|
};
|
|
8424
|
-
"& .SCLiveStreamRoom-
|
|
8424
|
+
"& .SCLiveStreamRoom-prejoin": {
|
|
8425
8425
|
padding: any;
|
|
8426
8426
|
display: string;
|
|
8427
8427
|
placeItems: string;
|
|
8428
8428
|
height: string;
|
|
8429
|
+
position: string;
|
|
8430
|
+
};
|
|
8431
|
+
"& .SCLiveStreamRoom-prejoin-loading": {
|
|
8432
|
+
'& .lk-prejoin': {
|
|
8433
|
+
opacity: number;
|
|
8434
|
+
};
|
|
8429
8435
|
};
|
|
8430
8436
|
"& .SCLiveStreamRoom-conference": {
|
|
8431
8437
|
width: string;
|
|
@@ -8434,7 +8440,14 @@ declare const theme: {
|
|
|
8434
8440
|
alignItems: string;
|
|
8435
8441
|
backgroundColor: string;
|
|
8436
8442
|
};
|
|
8443
|
+
"& .SCLiveStreamRoom-prejoin-loader": {
|
|
8444
|
+
maxWidth: number;
|
|
8445
|
+
width: string;
|
|
8446
|
+
position: string;
|
|
8447
|
+
textAlign: string;
|
|
8448
|
+
};
|
|
8437
8449
|
'& .lk-prejoin': {
|
|
8450
|
+
maxWidth: number;
|
|
8438
8451
|
width: string;
|
|
8439
8452
|
backgroundColor: string;
|
|
8440
8453
|
borderRadius: any;
|
|
@@ -8456,6 +8469,16 @@ declare const theme: {
|
|
|
8456
8469
|
styleOverrides: {
|
|
8457
8470
|
root: ({ theme }: any) => {
|
|
8458
8471
|
height: string;
|
|
8472
|
+
"& .SCLiveStreamVideoConference-end-conference-wrap": {
|
|
8473
|
+
display: string;
|
|
8474
|
+
justifyContent: string;
|
|
8475
|
+
alignItems: string;
|
|
8476
|
+
alignContent: string;
|
|
8477
|
+
flexDirection: string;
|
|
8478
|
+
"& .SCLiveStreamVideoConference-btn-back-home": {
|
|
8479
|
+
marginTop: any;
|
|
8480
|
+
};
|
|
8481
|
+
};
|
|
8459
8482
|
};
|
|
8460
8483
|
};
|
|
8461
8484
|
};
|
|
@@ -8,11 +8,17 @@ declare const Component: {
|
|
|
8
8
|
"& .SCLiveStreamRoom-content": {
|
|
9
9
|
width: string;
|
|
10
10
|
};
|
|
11
|
-
"& .SCLiveStreamRoom-
|
|
11
|
+
"& .SCLiveStreamRoom-prejoin": {
|
|
12
12
|
padding: any;
|
|
13
13
|
display: string;
|
|
14
14
|
placeItems: string;
|
|
15
15
|
height: string;
|
|
16
|
+
position: string;
|
|
17
|
+
};
|
|
18
|
+
"& .SCLiveStreamRoom-prejoin-loading": {
|
|
19
|
+
'& .lk-prejoin': {
|
|
20
|
+
opacity: number;
|
|
21
|
+
};
|
|
16
22
|
};
|
|
17
23
|
"& .SCLiveStreamRoom-conference": {
|
|
18
24
|
width: string;
|
|
@@ -21,7 +27,14 @@ declare const Component: {
|
|
|
21
27
|
alignItems: string;
|
|
22
28
|
backgroundColor: string;
|
|
23
29
|
};
|
|
30
|
+
"& .SCLiveStreamRoom-prejoin-loader": {
|
|
31
|
+
maxWidth: number;
|
|
32
|
+
width: string;
|
|
33
|
+
position: string;
|
|
34
|
+
textAlign: string;
|
|
35
|
+
};
|
|
24
36
|
'& .lk-prejoin': {
|
|
37
|
+
maxWidth: number;
|
|
25
38
|
width: string;
|
|
26
39
|
backgroundColor: string;
|
|
27
40
|
borderRadius: any;
|
|
@@ -8,11 +8,17 @@ const Component = {
|
|
|
8
8
|
[`& .SCLiveStreamRoom-content`]: {
|
|
9
9
|
width: '100%'
|
|
10
10
|
},
|
|
11
|
-
[`& .SCLiveStreamRoom-
|
|
11
|
+
[`& .SCLiveStreamRoom-prejoin`]: {
|
|
12
12
|
padding: theme.spacing(2),
|
|
13
13
|
display: 'grid',
|
|
14
14
|
placeItems: 'center',
|
|
15
|
-
height: '100%'
|
|
15
|
+
height: '100%',
|
|
16
|
+
position: 'relative'
|
|
17
|
+
},
|
|
18
|
+
[`& .SCLiveStreamRoom-prejoin-loading`]: {
|
|
19
|
+
'& .lk-prejoin': {
|
|
20
|
+
opacity: 0.5
|
|
21
|
+
}
|
|
16
22
|
},
|
|
17
23
|
[`& .SCLiveStreamRoom-conference`]: {
|
|
18
24
|
width: '100%',
|
|
@@ -21,8 +27,15 @@ const Component = {
|
|
|
21
27
|
alignItems: 'center',
|
|
22
28
|
backgroundColor: '#111111'
|
|
23
29
|
},
|
|
30
|
+
[`& .SCLiveStreamRoom-prejoin-loader`]: {
|
|
31
|
+
maxWidth: 620,
|
|
32
|
+
width: '100%',
|
|
33
|
+
position: 'absolute',
|
|
34
|
+
textAlign: 'center'
|
|
35
|
+
},
|
|
24
36
|
'& .lk-prejoin': {
|
|
25
|
-
|
|
37
|
+
maxWidth: 620,
|
|
38
|
+
width: '100%',
|
|
26
39
|
backgroundColor: '#111111',
|
|
27
40
|
borderRadius: theme.shape.borderRadiusSm
|
|
28
41
|
},
|
|
@@ -2,6 +2,16 @@ declare const Component: {
|
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
4
|
height: string;
|
|
5
|
+
"& .SCLiveStreamVideoConference-end-conference-wrap": {
|
|
6
|
+
display: string;
|
|
7
|
+
justifyContent: string;
|
|
8
|
+
alignItems: string;
|
|
9
|
+
alignContent: string;
|
|
10
|
+
flexDirection: string;
|
|
11
|
+
"& .SCLiveStreamVideoConference-btn-back-home": {
|
|
12
|
+
marginTop: any;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
5
15
|
};
|
|
6
16
|
};
|
|
7
17
|
};
|
|
@@ -1,7 +1,17 @@
|
|
|
1
1
|
const Component = {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }) => ({
|
|
4
|
-
height: '100vh'
|
|
4
|
+
height: '100vh',
|
|
5
|
+
[`& .SCLiveStreamVideoConference-end-conference-wrap`]: {
|
|
6
|
+
display: 'flex',
|
|
7
|
+
justifyContent: 'center',
|
|
8
|
+
alignItems: 'center',
|
|
9
|
+
alignContent: 'center',
|
|
10
|
+
flexDirection: 'column',
|
|
11
|
+
[`& .SCLiveStreamVideoConference-btn-back-home`]: {
|
|
12
|
+
marginTop: theme.spacing(2)
|
|
13
|
+
}
|
|
14
|
+
}
|
|
5
15
|
})
|
|
6
16
|
}
|
|
7
17
|
};
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -8421,11 +8421,17 @@ declare const theme: {
|
|
|
8421
8421
|
"& .SCLiveStreamRoom-content": {
|
|
8422
8422
|
width: string;
|
|
8423
8423
|
};
|
|
8424
|
-
"& .SCLiveStreamRoom-
|
|
8424
|
+
"& .SCLiveStreamRoom-prejoin": {
|
|
8425
8425
|
padding: any;
|
|
8426
8426
|
display: string;
|
|
8427
8427
|
placeItems: string;
|
|
8428
8428
|
height: string;
|
|
8429
|
+
position: string;
|
|
8430
|
+
};
|
|
8431
|
+
"& .SCLiveStreamRoom-prejoin-loading": {
|
|
8432
|
+
'& .lk-prejoin': {
|
|
8433
|
+
opacity: number;
|
|
8434
|
+
};
|
|
8429
8435
|
};
|
|
8430
8436
|
"& .SCLiveStreamRoom-conference": {
|
|
8431
8437
|
width: string;
|
|
@@ -8434,7 +8440,14 @@ declare const theme: {
|
|
|
8434
8440
|
alignItems: string;
|
|
8435
8441
|
backgroundColor: string;
|
|
8436
8442
|
};
|
|
8443
|
+
"& .SCLiveStreamRoom-prejoin-loader": {
|
|
8444
|
+
maxWidth: number;
|
|
8445
|
+
width: string;
|
|
8446
|
+
position: string;
|
|
8447
|
+
textAlign: string;
|
|
8448
|
+
};
|
|
8437
8449
|
'& .lk-prejoin': {
|
|
8450
|
+
maxWidth: number;
|
|
8438
8451
|
width: string;
|
|
8439
8452
|
backgroundColor: string;
|
|
8440
8453
|
borderRadius: any;
|
|
@@ -8456,6 +8469,16 @@ declare const theme: {
|
|
|
8456
8469
|
styleOverrides: {
|
|
8457
8470
|
root: ({ theme }: any) => {
|
|
8458
8471
|
height: string;
|
|
8472
|
+
"& .SCLiveStreamVideoConference-end-conference-wrap": {
|
|
8473
|
+
display: string;
|
|
8474
|
+
justifyContent: string;
|
|
8475
|
+
alignItems: string;
|
|
8476
|
+
alignContent: string;
|
|
8477
|
+
flexDirection: string;
|
|
8478
|
+
"& .SCLiveStreamVideoConference-btn-back-home": {
|
|
8479
|
+
marginTop: any;
|
|
8480
|
+
};
|
|
8481
|
+
};
|
|
8459
8482
|
};
|
|
8460
8483
|
};
|
|
8461
8484
|
};
|