@selfcommunity/react-theme-default 0.4.5-alpha.14 → 0.4.5-alpha.16
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/SCLiveStreamForm.d.ts +7 -0
- package/lib/cjs/components/SCLiveStreamForm.js +8 -1
- package/lib/cjs/components/SCLiveStreamRoom.d.ts +8 -1
- package/lib/cjs/components/SCLiveStreamRoom.js +8 -1
- package/lib/cjs/components/SCLiveStreamVideoConference.d.ts +2 -1
- package/lib/cjs/components/SCLiveStreamVideoConference.js +2 -1
- package/lib/cjs/index.d.ts +17 -2
- package/lib/esm/components/SCLiveStreamForm.d.ts +7 -0
- package/lib/esm/components/SCLiveStreamForm.js +8 -1
- package/lib/esm/components/SCLiveStreamRoom.d.ts +8 -1
- package/lib/esm/components/SCLiveStreamRoom.js +8 -1
- package/lib/esm/components/SCLiveStreamVideoConference.d.ts +2 -1
- package/lib/esm/components/SCLiveStreamVideoConference.js +2 -1
- package/lib/esm/index.d.ts +17 -2
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -15,8 +15,15 @@ const Component = {
|
|
|
15
15
|
minWidth: 'auto'
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
|
-
|
|
18
|
+
'& .SCLiveStreamForm-warning': {
|
|
19
19
|
margin: theme.spacing(2, 0),
|
|
20
|
+
[`& a`]: {
|
|
21
|
+
color: theme.palette.common.white,
|
|
22
|
+
fontWeight: 'bold'
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
[`& .SCLiveStreamForm-access-view`]: {
|
|
26
|
+
margin: theme.spacing(2, 0)
|
|
20
27
|
},
|
|
21
28
|
[`& .SCLiveStreamForm-actions`]: {
|
|
22
29
|
display: 'flex',
|
|
@@ -103,7 +103,14 @@ declare const Component: {
|
|
|
103
103
|
alignItems: string;
|
|
104
104
|
alignContent: string;
|
|
105
105
|
flexDirection: string;
|
|
106
|
-
"& .
|
|
106
|
+
"& .SCLiveStreamRoom-logo": {
|
|
107
|
+
img: {
|
|
108
|
+
maxHeight: number;
|
|
109
|
+
maxWidth: number;
|
|
110
|
+
};
|
|
111
|
+
marginBottom: any;
|
|
112
|
+
};
|
|
113
|
+
"& .SCLiveStreamRoom-btn-back-home": {
|
|
107
114
|
marginTop: any;
|
|
108
115
|
};
|
|
109
116
|
};
|
|
@@ -105,7 +105,14 @@ const Component = {
|
|
|
105
105
|
alignItems: 'center',
|
|
106
106
|
alignContent: 'center',
|
|
107
107
|
flexDirection: 'column',
|
|
108
|
-
[`& .
|
|
108
|
+
[`& .SCLiveStreamRoom-logo`]: {
|
|
109
|
+
img: {
|
|
110
|
+
maxHeight: 60,
|
|
111
|
+
maxWidth: 300
|
|
112
|
+
},
|
|
113
|
+
marginBottom: theme.spacing(2)
|
|
114
|
+
},
|
|
115
|
+
[`& .SCLiveStreamRoom-btn-back-home`]: {
|
|
109
116
|
marginTop: theme.spacing(2)
|
|
110
117
|
}
|
|
111
118
|
}
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -9058,6 +9058,13 @@ declare const theme: {
|
|
|
9058
9058
|
minWidth: string;
|
|
9059
9059
|
};
|
|
9060
9060
|
};
|
|
9061
|
+
'& .SCLiveStreamForm-warning': {
|
|
9062
|
+
margin: any;
|
|
9063
|
+
"& a": {
|
|
9064
|
+
color: any;
|
|
9065
|
+
fontWeight: string;
|
|
9066
|
+
};
|
|
9067
|
+
};
|
|
9061
9068
|
"& .SCLiveStreamForm-access-view": {
|
|
9062
9069
|
margin: any;
|
|
9063
9070
|
};
|
|
@@ -9188,7 +9195,14 @@ declare const theme: {
|
|
|
9188
9195
|
alignItems: string;
|
|
9189
9196
|
alignContent: string;
|
|
9190
9197
|
flexDirection: string;
|
|
9191
|
-
"& .
|
|
9198
|
+
"& .SCLiveStreamRoom-logo": {
|
|
9199
|
+
img: {
|
|
9200
|
+
maxHeight: number;
|
|
9201
|
+
maxWidth: number;
|
|
9202
|
+
};
|
|
9203
|
+
marginBottom: any;
|
|
9204
|
+
};
|
|
9205
|
+
"& .SCLiveStreamRoom-btn-back-home": {
|
|
9192
9206
|
marginTop: any;
|
|
9193
9207
|
};
|
|
9194
9208
|
};
|
|
@@ -9212,7 +9226,8 @@ declare const theme: {
|
|
|
9212
9226
|
textAlign: string;
|
|
9213
9227
|
"& .SCLiveStreamVideoConference-logo": {
|
|
9214
9228
|
img: {
|
|
9215
|
-
maxHeight:
|
|
9229
|
+
maxHeight: number;
|
|
9230
|
+
maxWidth: number;
|
|
9216
9231
|
};
|
|
9217
9232
|
marginBottom: any;
|
|
9218
9233
|
};
|
|
@@ -13,8 +13,15 @@ const Component = {
|
|
|
13
13
|
minWidth: 'auto'
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
|
-
|
|
16
|
+
'& .SCLiveStreamForm-warning': {
|
|
17
17
|
margin: theme.spacing(2, 0),
|
|
18
|
+
[`& a`]: {
|
|
19
|
+
color: theme.palette.common.white,
|
|
20
|
+
fontWeight: 'bold'
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
[`& .SCLiveStreamForm-access-view`]: {
|
|
24
|
+
margin: theme.spacing(2, 0)
|
|
18
25
|
},
|
|
19
26
|
[`& .SCLiveStreamForm-actions`]: {
|
|
20
27
|
display: 'flex',
|
|
@@ -103,7 +103,14 @@ declare const Component: {
|
|
|
103
103
|
alignItems: string;
|
|
104
104
|
alignContent: string;
|
|
105
105
|
flexDirection: string;
|
|
106
|
-
"& .
|
|
106
|
+
"& .SCLiveStreamRoom-logo": {
|
|
107
|
+
img: {
|
|
108
|
+
maxHeight: number;
|
|
109
|
+
maxWidth: number;
|
|
110
|
+
};
|
|
111
|
+
marginBottom: any;
|
|
112
|
+
};
|
|
113
|
+
"& .SCLiveStreamRoom-btn-back-home": {
|
|
107
114
|
marginTop: any;
|
|
108
115
|
};
|
|
109
116
|
};
|
|
@@ -103,7 +103,14 @@ const Component = {
|
|
|
103
103
|
alignItems: 'center',
|
|
104
104
|
alignContent: 'center',
|
|
105
105
|
flexDirection: 'column',
|
|
106
|
-
[`& .
|
|
106
|
+
[`& .SCLiveStreamRoom-logo`]: {
|
|
107
|
+
img: {
|
|
108
|
+
maxHeight: 60,
|
|
109
|
+
maxWidth: 300
|
|
110
|
+
},
|
|
111
|
+
marginBottom: theme.spacing(2)
|
|
112
|
+
},
|
|
113
|
+
[`& .SCLiveStreamRoom-btn-back-home`]: {
|
|
107
114
|
marginTop: theme.spacing(2)
|
|
108
115
|
}
|
|
109
116
|
}
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -9058,6 +9058,13 @@ declare const theme: {
|
|
|
9058
9058
|
minWidth: string;
|
|
9059
9059
|
};
|
|
9060
9060
|
};
|
|
9061
|
+
'& .SCLiveStreamForm-warning': {
|
|
9062
|
+
margin: any;
|
|
9063
|
+
"& a": {
|
|
9064
|
+
color: any;
|
|
9065
|
+
fontWeight: string;
|
|
9066
|
+
};
|
|
9067
|
+
};
|
|
9061
9068
|
"& .SCLiveStreamForm-access-view": {
|
|
9062
9069
|
margin: any;
|
|
9063
9070
|
};
|
|
@@ -9188,7 +9195,14 @@ declare const theme: {
|
|
|
9188
9195
|
alignItems: string;
|
|
9189
9196
|
alignContent: string;
|
|
9190
9197
|
flexDirection: string;
|
|
9191
|
-
"& .
|
|
9198
|
+
"& .SCLiveStreamRoom-logo": {
|
|
9199
|
+
img: {
|
|
9200
|
+
maxHeight: number;
|
|
9201
|
+
maxWidth: number;
|
|
9202
|
+
};
|
|
9203
|
+
marginBottom: any;
|
|
9204
|
+
};
|
|
9205
|
+
"& .SCLiveStreamRoom-btn-back-home": {
|
|
9192
9206
|
marginTop: any;
|
|
9193
9207
|
};
|
|
9194
9208
|
};
|
|
@@ -9212,7 +9226,8 @@ declare const theme: {
|
|
|
9212
9226
|
textAlign: string;
|
|
9213
9227
|
"& .SCLiveStreamVideoConference-logo": {
|
|
9214
9228
|
img: {
|
|
9215
|
-
maxHeight:
|
|
9229
|
+
maxHeight: number;
|
|
9230
|
+
maxWidth: number;
|
|
9216
9231
|
};
|
|
9217
9232
|
marginBottom: any;
|
|
9218
9233
|
};
|