@selfcommunity/react-theme-default 0.2.0-live.43 → 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.
@@ -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',
@@ -1,6 +1,8 @@
1
1
  declare const Component: {
2
2
  styleOverrides: {
3
- root: ({ theme }: any) => {};
3
+ root: ({ theme }: any) => {
4
+ height: string;
5
+ };
4
6
  };
5
7
  };
6
8
  export default Component;
@@ -2,7 +2,9 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const Component = {
4
4
  styleOverrides: {
5
- root: ({ theme }) => ({})
5
+ root: ({ theme }) => ({
6
+ height: '100vh'
7
+ })
6
8
  }
7
9
  };
8
10
  exports.default = Component;
@@ -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',
@@ -1,6 +1,8 @@
1
1
  declare const Component: {
2
2
  styleOverrides: {
3
- root: ({ theme }: any) => {};
3
+ root: ({ theme }: any) => {
4
+ height: string;
5
+ };
4
6
  };
5
7
  };
6
8
  export default Component;
@@ -1,6 +1,8 @@
1
1
  const Component = {
2
2
  styleOverrides: {
3
- root: ({ theme }) => ({})
3
+ root: ({ theme }) => ({
4
+ height: '100vh'
5
+ })
4
6
  }
5
7
  };
6
8
  export default Component;
@@ -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
  };