@selfcommunity/react-theme-default 0.2.0-live.90 → 0.2.0-live.92

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,10 +5,25 @@ 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
+ backgroundColor: any;
15
+ color: any;
16
+ border: string;
17
+ borderRadius: string;
18
+ marginTop: any;
19
+ marginBottom: any;
20
+ padding: any;
21
+ };
8
22
  "& .SCLiveStreamRoom-content": {
9
23
  width: string;
10
24
  };
11
25
  "& .SCLiveStreamRoom-prejoin": {
26
+ margin: any;
12
27
  padding: any;
13
28
  display: string;
14
29
  placeItems: string;
@@ -23,8 +38,19 @@ declare const Component: {
23
38
  opacity: number;
24
39
  };
25
40
  };
41
+ "& .SCLiveStreamRoom-prejoin-alert": {
42
+ backgroundColor: any;
43
+ color: any;
44
+ border: string;
45
+ borderRadius: string;
46
+ };
26
47
  "& .SCLiveStreamRoom-share-link": {
27
48
  marginTop: any;
49
+ backgroundColor: any;
50
+ '& textarea': {
51
+ color: any;
52
+ '-webkit-text-fill-color': any;
53
+ };
28
54
  };
29
55
  "& .SCLiveStreamRoom-conference": {
30
56
  width: string;
@@ -47,8 +73,14 @@ declare const Component: {
47
73
  display: string;
48
74
  justifyContent: string;
49
75
  alignItems: string;
50
- marginTop: number;
76
+ marginTop: any;
51
77
  paddingBottom: any;
78
+ "& .SCLiveStreamRoom-end-prejoin-content-box": {
79
+ [x: number]: {
80
+ width: string;
81
+ };
82
+ width: string;
83
+ };
52
84
  };
53
85
  '& .lk-prejoin': {
54
86
  maxWidth: number;
@@ -7,14 +7,29 @@ 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
+ 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
+ },
10
24
  [`& .SCLiveStreamRoom-content`]: {
11
25
  width: '100%'
12
26
  },
13
27
  [`& .SCLiveStreamRoom-prejoin`]: {
28
+ margin: theme.spacing(2),
14
29
  padding: theme.spacing(),
15
30
  display: 'grid',
16
31
  placeItems: 'center',
17
- height: '100%',
32
+ height: 'auto',
18
33
  position: 'relative',
19
34
  '& .lk-form-control': {
20
35
  display: 'none'
@@ -25,8 +40,19 @@ const Component = {
25
40
  opacity: 0.5
26
41
  }
27
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
+ },
28
49
  [`& .SCLiveStreamRoom-share-link`]: {
29
- marginTop: theme.spacing(3)
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
+ }
30
56
  },
31
57
  [`& .SCLiveStreamRoom-conference`]: {
32
58
  width: '100%',
@@ -49,8 +75,14 @@ const Component = {
49
75
  display: 'flex',
50
76
  justifyContent: 'center',
51
77
  alignItems: 'center',
52
- marginTop: -30,
53
- paddingBottom: theme.spacing(3)
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
+ }
54
86
  },
55
87
  '& .lk-prejoin': {
56
88
  maxWidth: 620,
@@ -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
  }
@@ -9025,10 +9025,25 @@ 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
+ backgroundColor: any;
9035
+ color: any;
9036
+ border: string;
9037
+ borderRadius: string;
9038
+ marginTop: any;
9039
+ marginBottom: any;
9040
+ padding: any;
9041
+ };
9028
9042
  "& .SCLiveStreamRoom-content": {
9029
9043
  width: string;
9030
9044
  };
9031
9045
  "& .SCLiveStreamRoom-prejoin": {
9046
+ margin: any;
9032
9047
  padding: any;
9033
9048
  display: string;
9034
9049
  placeItems: string;
@@ -9043,8 +9058,19 @@ declare const theme: {
9043
9058
  opacity: number;
9044
9059
  };
9045
9060
  };
9061
+ "& .SCLiveStreamRoom-prejoin-alert": {
9062
+ backgroundColor: any;
9063
+ color: any;
9064
+ border: string;
9065
+ borderRadius: string;
9066
+ };
9046
9067
  "& .SCLiveStreamRoom-share-link": {
9047
9068
  marginTop: any;
9069
+ backgroundColor: any;
9070
+ '& textarea': {
9071
+ color: any;
9072
+ '-webkit-text-fill-color': any;
9073
+ };
9048
9074
  };
9049
9075
  "& .SCLiveStreamRoom-conference": {
9050
9076
  width: string;
@@ -9067,8 +9093,14 @@ declare const theme: {
9067
9093
  display: string;
9068
9094
  justifyContent: string;
9069
9095
  alignItems: string;
9070
- marginTop: number;
9096
+ marginTop: any;
9071
9097
  paddingBottom: any;
9098
+ "& .SCLiveStreamRoom-end-prejoin-content-box": {
9099
+ [x: number]: {
9100
+ width: string;
9101
+ };
9102
+ width: string;
9103
+ };
9072
9104
  };
9073
9105
  '& .lk-prejoin': {
9074
9106
  maxWidth: number;
@@ -9112,6 +9144,11 @@ declare const theme: {
9112
9144
  alignItems: string;
9113
9145
  alignContent: string;
9114
9146
  flexDirection: string;
9147
+ "& .SCLiveStreamVideoConference-logo": {
9148
+ img: {
9149
+ maxHeight: string;
9150
+ };
9151
+ };
9115
9152
  "& .SCLiveStreamVideoConference-btn-back-home": {
9116
9153
  marginTop: any;
9117
9154
  };
@@ -5,10 +5,25 @@ 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
+ backgroundColor: any;
15
+ color: any;
16
+ border: string;
17
+ borderRadius: string;
18
+ marginTop: any;
19
+ marginBottom: any;
20
+ padding: any;
21
+ };
8
22
  "& .SCLiveStreamRoom-content": {
9
23
  width: string;
10
24
  };
11
25
  "& .SCLiveStreamRoom-prejoin": {
26
+ margin: any;
12
27
  padding: any;
13
28
  display: string;
14
29
  placeItems: string;
@@ -23,8 +38,19 @@ declare const Component: {
23
38
  opacity: number;
24
39
  };
25
40
  };
41
+ "& .SCLiveStreamRoom-prejoin-alert": {
42
+ backgroundColor: any;
43
+ color: any;
44
+ border: string;
45
+ borderRadius: string;
46
+ };
26
47
  "& .SCLiveStreamRoom-share-link": {
27
48
  marginTop: any;
49
+ backgroundColor: any;
50
+ '& textarea': {
51
+ color: any;
52
+ '-webkit-text-fill-color': any;
53
+ };
28
54
  };
29
55
  "& .SCLiveStreamRoom-conference": {
30
56
  width: string;
@@ -47,8 +73,14 @@ declare const Component: {
47
73
  display: string;
48
74
  justifyContent: string;
49
75
  alignItems: string;
50
- marginTop: number;
76
+ marginTop: any;
51
77
  paddingBottom: any;
78
+ "& .SCLiveStreamRoom-end-prejoin-content-box": {
79
+ [x: number]: {
80
+ width: string;
81
+ };
82
+ width: string;
83
+ };
52
84
  };
53
85
  '& .lk-prejoin': {
54
86
  maxWidth: number;
@@ -5,14 +5,29 @@ 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
+ backgroundColor: theme.palette.background.paper,
15
+ color: theme.palette.text.primary,
16
+ border: '1px solid #555555',
17
+ borderRadius: '5px',
18
+ marginTop: theme.spacing(2),
19
+ marginBottom: theme.spacing(2),
20
+ padding: theme.spacing(0, 2)
21
+ },
8
22
  [`& .SCLiveStreamRoom-content`]: {
9
23
  width: '100%'
10
24
  },
11
25
  [`& .SCLiveStreamRoom-prejoin`]: {
26
+ margin: theme.spacing(2),
12
27
  padding: theme.spacing(),
13
28
  display: 'grid',
14
29
  placeItems: 'center',
15
- height: '100%',
30
+ height: 'auto',
16
31
  position: 'relative',
17
32
  '& .lk-form-control': {
18
33
  display: 'none'
@@ -23,8 +38,19 @@ const Component = {
23
38
  opacity: 0.5
24
39
  }
25
40
  },
41
+ [`& .SCLiveStreamRoom-prejoin-alert`]: {
42
+ backgroundColor: theme.palette.background.paper,
43
+ color: theme.palette.text.primary,
44
+ border: '1px solid #555555',
45
+ borderRadius: '5px'
46
+ },
26
47
  [`& .SCLiveStreamRoom-share-link`]: {
27
- marginTop: theme.spacing(3)
48
+ marginTop: theme.spacing(3),
49
+ backgroundColor: theme.palette.background.paper,
50
+ '& textarea': {
51
+ color: theme.palette.text.primary,
52
+ '-webkit-text-fill-color': theme.palette.text.primary
53
+ }
28
54
  },
29
55
  [`& .SCLiveStreamRoom-conference`]: {
30
56
  width: '100%',
@@ -47,8 +73,14 @@ const Component = {
47
73
  display: 'flex',
48
74
  justifyContent: 'center',
49
75
  alignItems: 'center',
50
- marginTop: -30,
51
- paddingBottom: theme.spacing(3)
76
+ marginTop: theme.spacing(2),
77
+ paddingBottom: theme.spacing(3),
78
+ [`& .SCLiveStreamRoom-end-prejoin-content-box`]: {
79
+ width: '47%',
80
+ [theme.breakpoints.down('md')]: {
81
+ width: '90%'
82
+ }
83
+ }
52
84
  },
53
85
  '& .lk-prejoin': {
54
86
  maxWidth: 620,
@@ -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
  }
@@ -9025,10 +9025,25 @@ 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
+ backgroundColor: any;
9035
+ color: any;
9036
+ border: string;
9037
+ borderRadius: string;
9038
+ marginTop: any;
9039
+ marginBottom: any;
9040
+ padding: any;
9041
+ };
9028
9042
  "& .SCLiveStreamRoom-content": {
9029
9043
  width: string;
9030
9044
  };
9031
9045
  "& .SCLiveStreamRoom-prejoin": {
9046
+ margin: any;
9032
9047
  padding: any;
9033
9048
  display: string;
9034
9049
  placeItems: string;
@@ -9043,8 +9058,19 @@ declare const theme: {
9043
9058
  opacity: number;
9044
9059
  };
9045
9060
  };
9061
+ "& .SCLiveStreamRoom-prejoin-alert": {
9062
+ backgroundColor: any;
9063
+ color: any;
9064
+ border: string;
9065
+ borderRadius: string;
9066
+ };
9046
9067
  "& .SCLiveStreamRoom-share-link": {
9047
9068
  marginTop: any;
9069
+ backgroundColor: any;
9070
+ '& textarea': {
9071
+ color: any;
9072
+ '-webkit-text-fill-color': any;
9073
+ };
9048
9074
  };
9049
9075
  "& .SCLiveStreamRoom-conference": {
9050
9076
  width: string;
@@ -9067,8 +9093,14 @@ declare const theme: {
9067
9093
  display: string;
9068
9094
  justifyContent: string;
9069
9095
  alignItems: string;
9070
- marginTop: number;
9096
+ marginTop: any;
9071
9097
  paddingBottom: any;
9098
+ "& .SCLiveStreamRoom-end-prejoin-content-box": {
9099
+ [x: number]: {
9100
+ width: string;
9101
+ };
9102
+ width: string;
9103
+ };
9072
9104
  };
9073
9105
  '& .lk-prejoin': {
9074
9106
  maxWidth: number;
@@ -9112,6 +9144,11 @@ declare const theme: {
9112
9144
  alignItems: string;
9113
9145
  alignContent: string;
9114
9146
  flexDirection: string;
9147
+ "& .SCLiveStreamVideoConference-logo": {
9148
+ img: {
9149
+ maxHeight: string;
9150
+ };
9151
+ };
9115
9152
  "& .SCLiveStreamVideoConference-btn-back-home": {
9116
9153
  marginTop: any;
9117
9154
  };