@selfcommunity/react-theme-default 0.2.0-live.91 → 0.2.0-live.93
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 +12 -2
- package/lib/cjs/components/SCLiveStreamRoom.js +15 -5
- package/lib/cjs/index.d.ts +12 -2
- package/lib/esm/components/SCLiveStreamRoom.d.ts +12 -2
- package/lib/esm/components/SCLiveStreamRoom.js +15 -5
- package/lib/esm/index.d.ts +12 -2
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +4 -4
|
@@ -11,9 +11,13 @@ declare const Component: {
|
|
|
11
11
|
color: any;
|
|
12
12
|
};
|
|
13
13
|
"& .SCLiveStreamRoom-description": {
|
|
14
|
-
|
|
15
|
-
textAlign: string;
|
|
14
|
+
backgroundColor: any;
|
|
16
15
|
color: any;
|
|
16
|
+
border: string;
|
|
17
|
+
borderRadius: string;
|
|
18
|
+
marginTop: any;
|
|
19
|
+
marginBottom: any;
|
|
20
|
+
padding: any;
|
|
17
21
|
};
|
|
18
22
|
"& .SCLiveStreamRoom-content": {
|
|
19
23
|
width: string;
|
|
@@ -71,6 +75,12 @@ declare const Component: {
|
|
|
71
75
|
alignItems: string;
|
|
72
76
|
marginTop: any;
|
|
73
77
|
paddingBottom: any;
|
|
78
|
+
"& .SCLiveStreamRoom-end-prejoin-content-box": {
|
|
79
|
+
[x: number]: {
|
|
80
|
+
width: string;
|
|
81
|
+
};
|
|
82
|
+
width: string;
|
|
83
|
+
};
|
|
74
84
|
};
|
|
75
85
|
'& .lk-prejoin': {
|
|
76
86
|
maxWidth: number;
|
|
@@ -13,15 +13,19 @@ const Component = {
|
|
|
13
13
|
color: theme.palette.text.primary
|
|
14
14
|
},
|
|
15
15
|
[`& .SCLiveStreamRoom-description`]: {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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)
|
|
19
23
|
},
|
|
20
24
|
[`& .SCLiveStreamRoom-content`]: {
|
|
21
25
|
width: '100%'
|
|
22
26
|
},
|
|
23
27
|
[`& .SCLiveStreamRoom-prejoin`]: {
|
|
24
|
-
margin: theme.spacing(
|
|
28
|
+
margin: theme.spacing(),
|
|
25
29
|
padding: theme.spacing(),
|
|
26
30
|
display: 'grid',
|
|
27
31
|
placeItems: 'center',
|
|
@@ -72,7 +76,13 @@ const Component = {
|
|
|
72
76
|
justifyContent: 'center',
|
|
73
77
|
alignItems: 'center',
|
|
74
78
|
marginTop: theme.spacing(2),
|
|
75
|
-
paddingBottom: theme.spacing(3)
|
|
79
|
+
paddingBottom: theme.spacing(3),
|
|
80
|
+
[`& .SCLiveStreamRoom-end-prejoin-content-box`]: {
|
|
81
|
+
width: '47%',
|
|
82
|
+
[theme.breakpoints.down('md')]: {
|
|
83
|
+
width: '90%'
|
|
84
|
+
}
|
|
85
|
+
}
|
|
76
86
|
},
|
|
77
87
|
'& .lk-prejoin': {
|
|
78
88
|
maxWidth: 620,
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -9031,9 +9031,13 @@ declare const theme: {
|
|
|
9031
9031
|
color: any;
|
|
9032
9032
|
};
|
|
9033
9033
|
"& .SCLiveStreamRoom-description": {
|
|
9034
|
-
|
|
9035
|
-
textAlign: string;
|
|
9034
|
+
backgroundColor: any;
|
|
9036
9035
|
color: any;
|
|
9036
|
+
border: string;
|
|
9037
|
+
borderRadius: string;
|
|
9038
|
+
marginTop: any;
|
|
9039
|
+
marginBottom: any;
|
|
9040
|
+
padding: any;
|
|
9037
9041
|
};
|
|
9038
9042
|
"& .SCLiveStreamRoom-content": {
|
|
9039
9043
|
width: string;
|
|
@@ -9091,6 +9095,12 @@ declare const theme: {
|
|
|
9091
9095
|
alignItems: string;
|
|
9092
9096
|
marginTop: any;
|
|
9093
9097
|
paddingBottom: any;
|
|
9098
|
+
"& .SCLiveStreamRoom-end-prejoin-content-box": {
|
|
9099
|
+
[x: number]: {
|
|
9100
|
+
width: string;
|
|
9101
|
+
};
|
|
9102
|
+
width: string;
|
|
9103
|
+
};
|
|
9094
9104
|
};
|
|
9095
9105
|
'& .lk-prejoin': {
|
|
9096
9106
|
maxWidth: number;
|
|
@@ -11,9 +11,13 @@ declare const Component: {
|
|
|
11
11
|
color: any;
|
|
12
12
|
};
|
|
13
13
|
"& .SCLiveStreamRoom-description": {
|
|
14
|
-
|
|
15
|
-
textAlign: string;
|
|
14
|
+
backgroundColor: any;
|
|
16
15
|
color: any;
|
|
16
|
+
border: string;
|
|
17
|
+
borderRadius: string;
|
|
18
|
+
marginTop: any;
|
|
19
|
+
marginBottom: any;
|
|
20
|
+
padding: any;
|
|
17
21
|
};
|
|
18
22
|
"& .SCLiveStreamRoom-content": {
|
|
19
23
|
width: string;
|
|
@@ -71,6 +75,12 @@ declare const Component: {
|
|
|
71
75
|
alignItems: string;
|
|
72
76
|
marginTop: any;
|
|
73
77
|
paddingBottom: any;
|
|
78
|
+
"& .SCLiveStreamRoom-end-prejoin-content-box": {
|
|
79
|
+
[x: number]: {
|
|
80
|
+
width: string;
|
|
81
|
+
};
|
|
82
|
+
width: string;
|
|
83
|
+
};
|
|
74
84
|
};
|
|
75
85
|
'& .lk-prejoin': {
|
|
76
86
|
maxWidth: number;
|
|
@@ -11,15 +11,19 @@ const Component = {
|
|
|
11
11
|
color: theme.palette.text.primary
|
|
12
12
|
},
|
|
13
13
|
[`& .SCLiveStreamRoom-description`]: {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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)
|
|
17
21
|
},
|
|
18
22
|
[`& .SCLiveStreamRoom-content`]: {
|
|
19
23
|
width: '100%'
|
|
20
24
|
},
|
|
21
25
|
[`& .SCLiveStreamRoom-prejoin`]: {
|
|
22
|
-
margin: theme.spacing(
|
|
26
|
+
margin: theme.spacing(),
|
|
23
27
|
padding: theme.spacing(),
|
|
24
28
|
display: 'grid',
|
|
25
29
|
placeItems: 'center',
|
|
@@ -70,7 +74,13 @@ const Component = {
|
|
|
70
74
|
justifyContent: 'center',
|
|
71
75
|
alignItems: 'center',
|
|
72
76
|
marginTop: theme.spacing(2),
|
|
73
|
-
paddingBottom: theme.spacing(3)
|
|
77
|
+
paddingBottom: theme.spacing(3),
|
|
78
|
+
[`& .SCLiveStreamRoom-end-prejoin-content-box`]: {
|
|
79
|
+
width: '47%',
|
|
80
|
+
[theme.breakpoints.down('md')]: {
|
|
81
|
+
width: '90%'
|
|
82
|
+
}
|
|
83
|
+
}
|
|
74
84
|
},
|
|
75
85
|
'& .lk-prejoin': {
|
|
76
86
|
maxWidth: 620,
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -9031,9 +9031,13 @@ declare const theme: {
|
|
|
9031
9031
|
color: any;
|
|
9032
9032
|
};
|
|
9033
9033
|
"& .SCLiveStreamRoom-description": {
|
|
9034
|
-
|
|
9035
|
-
textAlign: string;
|
|
9034
|
+
backgroundColor: any;
|
|
9036
9035
|
color: any;
|
|
9036
|
+
border: string;
|
|
9037
|
+
borderRadius: string;
|
|
9038
|
+
marginTop: any;
|
|
9039
|
+
marginBottom: any;
|
|
9040
|
+
padding: any;
|
|
9037
9041
|
};
|
|
9038
9042
|
"& .SCLiveStreamRoom-content": {
|
|
9039
9043
|
width: string;
|
|
@@ -9091,6 +9095,12 @@ declare const theme: {
|
|
|
9091
9095
|
alignItems: string;
|
|
9092
9096
|
marginTop: any;
|
|
9093
9097
|
paddingBottom: any;
|
|
9098
|
+
"& .SCLiveStreamRoom-end-prejoin-content-box": {
|
|
9099
|
+
[x: number]: {
|
|
9100
|
+
width: string;
|
|
9101
|
+
};
|
|
9102
|
+
width: string;
|
|
9103
|
+
};
|
|
9094
9104
|
};
|
|
9095
9105
|
'& .lk-prejoin': {
|
|
9096
9106
|
maxWidth: number;
|