@selfcommunity/react-theme-default 0.2.0-live.44 → 0.2.0-live.45
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 +7 -0
- package/lib/cjs/components/SCLiveStreamRoom.js +8 -1
- package/lib/cjs/components/SCLiveStreamVideoConference.d.ts +3 -1
- package/lib/cjs/components/SCLiveStreamVideoConference.js +3 -1
- package/lib/cjs/index.d.ts +10 -1
- package/lib/esm/components/SCLiveStreamRoom.d.ts +7 -0
- package/lib/esm/components/SCLiveStreamRoom.js +8 -1
- package/lib/esm/components/SCLiveStreamVideoConference.d.ts +3 -1
- package/lib/esm/components/SCLiveStreamVideoConference.js +3 -1
- package/lib/esm/index.d.ts +10 -1
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +4 -4
|
@@ -5,6 +5,9 @@ declare const Component: {
|
|
|
5
5
|
display: string;
|
|
6
6
|
justifyContent: string;
|
|
7
7
|
alignContent: string;
|
|
8
|
+
"& .SCLiveStreamRoom-content": {
|
|
9
|
+
width: string;
|
|
10
|
+
};
|
|
8
11
|
"& .SCLiveStreamRoom-preJoin": {
|
|
9
12
|
padding: any;
|
|
10
13
|
display: string;
|
|
@@ -13,6 +16,10 @@ declare const Component: {
|
|
|
13
16
|
};
|
|
14
17
|
"& .SCLiveStreamRoom-conference": {
|
|
15
18
|
width: string;
|
|
19
|
+
display: string;
|
|
20
|
+
justifyContent: string;
|
|
21
|
+
alignItems: string;
|
|
22
|
+
backgroundColor: string;
|
|
16
23
|
};
|
|
17
24
|
'& .lk-prejoin': {
|
|
18
25
|
width: string;
|
|
@@ -7,6 +7,9 @@ const Component = {
|
|
|
7
7
|
display: 'flex',
|
|
8
8
|
justifyContent: 'center',
|
|
9
9
|
alignContent: 'center',
|
|
10
|
+
[`& .SCLiveStreamRoom-content`]: {
|
|
11
|
+
width: '100%'
|
|
12
|
+
},
|
|
10
13
|
[`& .SCLiveStreamRoom-preJoin`]: {
|
|
11
14
|
padding: theme.spacing(2),
|
|
12
15
|
display: 'grid',
|
|
@@ -14,7 +17,11 @@ const Component = {
|
|
|
14
17
|
height: '100%'
|
|
15
18
|
},
|
|
16
19
|
[`& .SCLiveStreamRoom-conference`]: {
|
|
17
|
-
width: '100%'
|
|
20
|
+
width: '100%',
|
|
21
|
+
display: 'flex',
|
|
22
|
+
justifyContent: 'center',
|
|
23
|
+
alignItems: 'center',
|
|
24
|
+
backgroundColor: '#111111'
|
|
18
25
|
},
|
|
19
26
|
'& .lk-prejoin': {
|
|
20
27
|
width: '620px',
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -8418,6 +8418,9 @@ declare const theme: {
|
|
|
8418
8418
|
display: string;
|
|
8419
8419
|
justifyContent: string;
|
|
8420
8420
|
alignContent: string;
|
|
8421
|
+
"& .SCLiveStreamRoom-content": {
|
|
8422
|
+
width: string;
|
|
8423
|
+
};
|
|
8421
8424
|
"& .SCLiveStreamRoom-preJoin": {
|
|
8422
8425
|
padding: any;
|
|
8423
8426
|
display: string;
|
|
@@ -8426,6 +8429,10 @@ declare const theme: {
|
|
|
8426
8429
|
};
|
|
8427
8430
|
"& .SCLiveStreamRoom-conference": {
|
|
8428
8431
|
width: string;
|
|
8432
|
+
display: string;
|
|
8433
|
+
justifyContent: string;
|
|
8434
|
+
alignItems: string;
|
|
8435
|
+
backgroundColor: string;
|
|
8429
8436
|
};
|
|
8430
8437
|
'& .lk-prejoin': {
|
|
8431
8438
|
width: string;
|
|
@@ -8447,7 +8454,9 @@ declare const theme: {
|
|
|
8447
8454
|
};
|
|
8448
8455
|
SCLiveStreamVideoConference: {
|
|
8449
8456
|
styleOverrides: {
|
|
8450
|
-
root: ({ theme }: any) => {
|
|
8457
|
+
root: ({ theme }: any) => {
|
|
8458
|
+
height: string;
|
|
8459
|
+
};
|
|
8451
8460
|
};
|
|
8452
8461
|
};
|
|
8453
8462
|
};
|
|
@@ -5,6 +5,9 @@ declare const Component: {
|
|
|
5
5
|
display: string;
|
|
6
6
|
justifyContent: string;
|
|
7
7
|
alignContent: string;
|
|
8
|
+
"& .SCLiveStreamRoom-content": {
|
|
9
|
+
width: string;
|
|
10
|
+
};
|
|
8
11
|
"& .SCLiveStreamRoom-preJoin": {
|
|
9
12
|
padding: any;
|
|
10
13
|
display: string;
|
|
@@ -13,6 +16,10 @@ declare const Component: {
|
|
|
13
16
|
};
|
|
14
17
|
"& .SCLiveStreamRoom-conference": {
|
|
15
18
|
width: string;
|
|
19
|
+
display: string;
|
|
20
|
+
justifyContent: string;
|
|
21
|
+
alignItems: string;
|
|
22
|
+
backgroundColor: string;
|
|
16
23
|
};
|
|
17
24
|
'& .lk-prejoin': {
|
|
18
25
|
width: string;
|
|
@@ -5,6 +5,9 @@ const Component = {
|
|
|
5
5
|
display: 'flex',
|
|
6
6
|
justifyContent: 'center',
|
|
7
7
|
alignContent: 'center',
|
|
8
|
+
[`& .SCLiveStreamRoom-content`]: {
|
|
9
|
+
width: '100%'
|
|
10
|
+
},
|
|
8
11
|
[`& .SCLiveStreamRoom-preJoin`]: {
|
|
9
12
|
padding: theme.spacing(2),
|
|
10
13
|
display: 'grid',
|
|
@@ -12,7 +15,11 @@ const Component = {
|
|
|
12
15
|
height: '100%'
|
|
13
16
|
},
|
|
14
17
|
[`& .SCLiveStreamRoom-conference`]: {
|
|
15
|
-
width: '100%'
|
|
18
|
+
width: '100%',
|
|
19
|
+
display: 'flex',
|
|
20
|
+
justifyContent: 'center',
|
|
21
|
+
alignItems: 'center',
|
|
22
|
+
backgroundColor: '#111111'
|
|
16
23
|
},
|
|
17
24
|
'& .lk-prejoin': {
|
|
18
25
|
width: '620px',
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -8418,6 +8418,9 @@ declare const theme: {
|
|
|
8418
8418
|
display: string;
|
|
8419
8419
|
justifyContent: string;
|
|
8420
8420
|
alignContent: string;
|
|
8421
|
+
"& .SCLiveStreamRoom-content": {
|
|
8422
|
+
width: string;
|
|
8423
|
+
};
|
|
8421
8424
|
"& .SCLiveStreamRoom-preJoin": {
|
|
8422
8425
|
padding: any;
|
|
8423
8426
|
display: string;
|
|
@@ -8426,6 +8429,10 @@ declare const theme: {
|
|
|
8426
8429
|
};
|
|
8427
8430
|
"& .SCLiveStreamRoom-conference": {
|
|
8428
8431
|
width: string;
|
|
8432
|
+
display: string;
|
|
8433
|
+
justifyContent: string;
|
|
8434
|
+
alignItems: string;
|
|
8435
|
+
backgroundColor: string;
|
|
8429
8436
|
};
|
|
8430
8437
|
'& .lk-prejoin': {
|
|
8431
8438
|
width: string;
|
|
@@ -8447,7 +8454,9 @@ declare const theme: {
|
|
|
8447
8454
|
};
|
|
8448
8455
|
SCLiveStreamVideoConference: {
|
|
8449
8456
|
styleOverrides: {
|
|
8450
|
-
root: ({ theme }: any) => {
|
|
8457
|
+
root: ({ theme }: any) => {
|
|
8458
|
+
height: string;
|
|
8459
|
+
};
|
|
8451
8460
|
};
|
|
8452
8461
|
};
|
|
8453
8462
|
};
|