@selfcommunity/react-theme-default 0.4.5-alpha.15 → 0.4.5-alpha.17
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 +2 -0
- package/lib/cjs/components/SCLiveStreamForm.js +3 -1
- package/lib/cjs/components/SCLiveStreamRoom.d.ts +20 -1
- package/lib/cjs/components/SCLiveStreamRoom.js +20 -1
- package/lib/cjs/components/SCLiveStreamSelector.d.ts +2 -0
- package/lib/cjs/components/SCLiveStreamSelector.js +3 -1
- package/lib/cjs/components/SCLiveStreamVideoConference.d.ts +2 -1
- package/lib/cjs/components/SCLiveStreamVideoConference.js +2 -1
- package/lib/cjs/index.d.ts +26 -2
- package/lib/esm/components/SCLiveStreamForm.d.ts +2 -0
- package/lib/esm/components/SCLiveStreamForm.js +3 -1
- package/lib/esm/components/SCLiveStreamRoom.d.ts +20 -1
- package/lib/esm/components/SCLiveStreamRoom.js +20 -1
- package/lib/esm/components/SCLiveStreamSelector.d.ts +2 -0
- package/lib/esm/components/SCLiveStreamSelector.js +3 -1
- package/lib/esm/components/SCLiveStreamVideoConference.d.ts +2 -1
- package/lib/esm/components/SCLiveStreamVideoConference.js +2 -1
- package/lib/esm/index.d.ts +26 -2
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -19,7 +19,9 @@ const Component = {
|
|
|
19
19
|
margin: theme.spacing(2, 0),
|
|
20
20
|
[`& a`]: {
|
|
21
21
|
color: theme.palette.common.white,
|
|
22
|
-
fontWeight: 'bold'
|
|
22
|
+
fontWeight: 'bold',
|
|
23
|
+
textDecoration: 'underline',
|
|
24
|
+
whiteSpace: 'nowrap'
|
|
23
25
|
}
|
|
24
26
|
},
|
|
25
27
|
[`& .SCLiveStreamForm-access-view`]: {
|
|
@@ -95,6 +95,18 @@ declare const Component: {
|
|
|
95
95
|
backgroundColor: any;
|
|
96
96
|
};
|
|
97
97
|
};
|
|
98
|
+
'& .lk-settings-menu-modal': {
|
|
99
|
+
minWidth: number;
|
|
100
|
+
'& .MuiFormControlLabel-root': {
|
|
101
|
+
marginLeft: number;
|
|
102
|
+
};
|
|
103
|
+
'& div.MuiTypography-body1': {
|
|
104
|
+
color: any;
|
|
105
|
+
};
|
|
106
|
+
'& .MuiSwitch-track': {
|
|
107
|
+
backgroundColor: any;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
98
110
|
};
|
|
99
111
|
dialogRoot: ({ theme }: any) => {
|
|
100
112
|
"& .SCLiveStreamRoom-end-conference-wrap": {
|
|
@@ -103,7 +115,14 @@ declare const Component: {
|
|
|
103
115
|
alignItems: string;
|
|
104
116
|
alignContent: string;
|
|
105
117
|
flexDirection: string;
|
|
106
|
-
"& .
|
|
118
|
+
"& .SCLiveStreamRoom-logo": {
|
|
119
|
+
img: {
|
|
120
|
+
maxHeight: number;
|
|
121
|
+
maxWidth: number;
|
|
122
|
+
};
|
|
123
|
+
marginBottom: any;
|
|
124
|
+
};
|
|
125
|
+
"& .SCLiveStreamRoom-btn-back-home": {
|
|
107
126
|
marginTop: any;
|
|
108
127
|
};
|
|
109
128
|
};
|
|
@@ -96,6 +96,18 @@ const Component = {
|
|
|
96
96
|
'&:hover': {
|
|
97
97
|
backgroundColor: theme.palette.primary.dark
|
|
98
98
|
}
|
|
99
|
+
},
|
|
100
|
+
'& .lk-settings-menu-modal': {
|
|
101
|
+
minWidth: 250,
|
|
102
|
+
'& .MuiFormControlLabel-root': {
|
|
103
|
+
marginLeft: 0
|
|
104
|
+
},
|
|
105
|
+
'& div.MuiTypography-body1': {
|
|
106
|
+
color: theme.palette.common.white
|
|
107
|
+
},
|
|
108
|
+
'& .MuiSwitch-track': {
|
|
109
|
+
backgroundColor: theme.palette.grey['300']
|
|
110
|
+
}
|
|
99
111
|
}
|
|
100
112
|
}),
|
|
101
113
|
dialogRoot: ({ theme }) => ({
|
|
@@ -105,7 +117,14 @@ const Component = {
|
|
|
105
117
|
alignItems: 'center',
|
|
106
118
|
alignContent: 'center',
|
|
107
119
|
flexDirection: 'column',
|
|
108
|
-
[`& .
|
|
120
|
+
[`& .SCLiveStreamRoom-logo`]: {
|
|
121
|
+
img: {
|
|
122
|
+
maxHeight: 60,
|
|
123
|
+
maxWidth: 300
|
|
124
|
+
},
|
|
125
|
+
marginBottom: theme.spacing(2)
|
|
126
|
+
},
|
|
127
|
+
[`& .SCLiveStreamRoom-btn-back-home`]: {
|
|
109
128
|
marginTop: theme.spacing(2)
|
|
110
129
|
}
|
|
111
130
|
}
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -8981,6 +8981,8 @@ declare const theme: {
|
|
|
8981
8981
|
"& a": {
|
|
8982
8982
|
color: any;
|
|
8983
8983
|
fontWeight: string;
|
|
8984
|
+
textDecoration: string;
|
|
8985
|
+
whiteSpace: string;
|
|
8984
8986
|
};
|
|
8985
8987
|
};
|
|
8986
8988
|
'& .SCLiveStreamSelector-options': {
|
|
@@ -9063,6 +9065,8 @@ declare const theme: {
|
|
|
9063
9065
|
"& a": {
|
|
9064
9066
|
color: any;
|
|
9065
9067
|
fontWeight: string;
|
|
9068
|
+
textDecoration: string;
|
|
9069
|
+
whiteSpace: string;
|
|
9066
9070
|
};
|
|
9067
9071
|
};
|
|
9068
9072
|
"& .SCLiveStreamForm-access-view": {
|
|
@@ -9187,6 +9191,18 @@ declare const theme: {
|
|
|
9187
9191
|
backgroundColor: any;
|
|
9188
9192
|
};
|
|
9189
9193
|
};
|
|
9194
|
+
'& .lk-settings-menu-modal': {
|
|
9195
|
+
minWidth: number;
|
|
9196
|
+
'& .MuiFormControlLabel-root': {
|
|
9197
|
+
marginLeft: number;
|
|
9198
|
+
};
|
|
9199
|
+
'& div.MuiTypography-body1': {
|
|
9200
|
+
color: any;
|
|
9201
|
+
};
|
|
9202
|
+
'& .MuiSwitch-track': {
|
|
9203
|
+
backgroundColor: any;
|
|
9204
|
+
};
|
|
9205
|
+
};
|
|
9190
9206
|
};
|
|
9191
9207
|
dialogRoot: ({ theme }: any) => {
|
|
9192
9208
|
"& .SCLiveStreamRoom-end-conference-wrap": {
|
|
@@ -9195,7 +9211,14 @@ declare const theme: {
|
|
|
9195
9211
|
alignItems: string;
|
|
9196
9212
|
alignContent: string;
|
|
9197
9213
|
flexDirection: string;
|
|
9198
|
-
"& .
|
|
9214
|
+
"& .SCLiveStreamRoom-logo": {
|
|
9215
|
+
img: {
|
|
9216
|
+
maxHeight: number;
|
|
9217
|
+
maxWidth: number;
|
|
9218
|
+
};
|
|
9219
|
+
marginBottom: any;
|
|
9220
|
+
};
|
|
9221
|
+
"& .SCLiveStreamRoom-btn-back-home": {
|
|
9199
9222
|
marginTop: any;
|
|
9200
9223
|
};
|
|
9201
9224
|
};
|
|
@@ -9219,7 +9242,8 @@ declare const theme: {
|
|
|
9219
9242
|
textAlign: string;
|
|
9220
9243
|
"& .SCLiveStreamVideoConference-logo": {
|
|
9221
9244
|
img: {
|
|
9222
|
-
maxHeight:
|
|
9245
|
+
maxHeight: number;
|
|
9246
|
+
maxWidth: number;
|
|
9223
9247
|
};
|
|
9224
9248
|
marginBottom: any;
|
|
9225
9249
|
};
|
|
@@ -17,7 +17,9 @@ const Component = {
|
|
|
17
17
|
margin: theme.spacing(2, 0),
|
|
18
18
|
[`& a`]: {
|
|
19
19
|
color: theme.palette.common.white,
|
|
20
|
-
fontWeight: 'bold'
|
|
20
|
+
fontWeight: 'bold',
|
|
21
|
+
textDecoration: 'underline',
|
|
22
|
+
whiteSpace: 'nowrap'
|
|
21
23
|
}
|
|
22
24
|
},
|
|
23
25
|
[`& .SCLiveStreamForm-access-view`]: {
|
|
@@ -95,6 +95,18 @@ declare const Component: {
|
|
|
95
95
|
backgroundColor: any;
|
|
96
96
|
};
|
|
97
97
|
};
|
|
98
|
+
'& .lk-settings-menu-modal': {
|
|
99
|
+
minWidth: number;
|
|
100
|
+
'& .MuiFormControlLabel-root': {
|
|
101
|
+
marginLeft: number;
|
|
102
|
+
};
|
|
103
|
+
'& div.MuiTypography-body1': {
|
|
104
|
+
color: any;
|
|
105
|
+
};
|
|
106
|
+
'& .MuiSwitch-track': {
|
|
107
|
+
backgroundColor: any;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
98
110
|
};
|
|
99
111
|
dialogRoot: ({ theme }: any) => {
|
|
100
112
|
"& .SCLiveStreamRoom-end-conference-wrap": {
|
|
@@ -103,7 +115,14 @@ declare const Component: {
|
|
|
103
115
|
alignItems: string;
|
|
104
116
|
alignContent: string;
|
|
105
117
|
flexDirection: string;
|
|
106
|
-
"& .
|
|
118
|
+
"& .SCLiveStreamRoom-logo": {
|
|
119
|
+
img: {
|
|
120
|
+
maxHeight: number;
|
|
121
|
+
maxWidth: number;
|
|
122
|
+
};
|
|
123
|
+
marginBottom: any;
|
|
124
|
+
};
|
|
125
|
+
"& .SCLiveStreamRoom-btn-back-home": {
|
|
107
126
|
marginTop: any;
|
|
108
127
|
};
|
|
109
128
|
};
|
|
@@ -94,6 +94,18 @@ const Component = {
|
|
|
94
94
|
'&:hover': {
|
|
95
95
|
backgroundColor: theme.palette.primary.dark
|
|
96
96
|
}
|
|
97
|
+
},
|
|
98
|
+
'& .lk-settings-menu-modal': {
|
|
99
|
+
minWidth: 250,
|
|
100
|
+
'& .MuiFormControlLabel-root': {
|
|
101
|
+
marginLeft: 0
|
|
102
|
+
},
|
|
103
|
+
'& div.MuiTypography-body1': {
|
|
104
|
+
color: theme.palette.common.white
|
|
105
|
+
},
|
|
106
|
+
'& .MuiSwitch-track': {
|
|
107
|
+
backgroundColor: theme.palette.grey['300']
|
|
108
|
+
}
|
|
97
109
|
}
|
|
98
110
|
}),
|
|
99
111
|
dialogRoot: ({ theme }) => ({
|
|
@@ -103,7 +115,14 @@ const Component = {
|
|
|
103
115
|
alignItems: 'center',
|
|
104
116
|
alignContent: 'center',
|
|
105
117
|
flexDirection: 'column',
|
|
106
|
-
[`& .
|
|
118
|
+
[`& .SCLiveStreamRoom-logo`]: {
|
|
119
|
+
img: {
|
|
120
|
+
maxHeight: 60,
|
|
121
|
+
maxWidth: 300
|
|
122
|
+
},
|
|
123
|
+
marginBottom: theme.spacing(2)
|
|
124
|
+
},
|
|
125
|
+
[`& .SCLiveStreamRoom-btn-back-home`]: {
|
|
107
126
|
marginTop: theme.spacing(2)
|
|
108
127
|
}
|
|
109
128
|
}
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -8981,6 +8981,8 @@ declare const theme: {
|
|
|
8981
8981
|
"& a": {
|
|
8982
8982
|
color: any;
|
|
8983
8983
|
fontWeight: string;
|
|
8984
|
+
textDecoration: string;
|
|
8985
|
+
whiteSpace: string;
|
|
8984
8986
|
};
|
|
8985
8987
|
};
|
|
8986
8988
|
'& .SCLiveStreamSelector-options': {
|
|
@@ -9063,6 +9065,8 @@ declare const theme: {
|
|
|
9063
9065
|
"& a": {
|
|
9064
9066
|
color: any;
|
|
9065
9067
|
fontWeight: string;
|
|
9068
|
+
textDecoration: string;
|
|
9069
|
+
whiteSpace: string;
|
|
9066
9070
|
};
|
|
9067
9071
|
};
|
|
9068
9072
|
"& .SCLiveStreamForm-access-view": {
|
|
@@ -9187,6 +9191,18 @@ declare const theme: {
|
|
|
9187
9191
|
backgroundColor: any;
|
|
9188
9192
|
};
|
|
9189
9193
|
};
|
|
9194
|
+
'& .lk-settings-menu-modal': {
|
|
9195
|
+
minWidth: number;
|
|
9196
|
+
'& .MuiFormControlLabel-root': {
|
|
9197
|
+
marginLeft: number;
|
|
9198
|
+
};
|
|
9199
|
+
'& div.MuiTypography-body1': {
|
|
9200
|
+
color: any;
|
|
9201
|
+
};
|
|
9202
|
+
'& .MuiSwitch-track': {
|
|
9203
|
+
backgroundColor: any;
|
|
9204
|
+
};
|
|
9205
|
+
};
|
|
9190
9206
|
};
|
|
9191
9207
|
dialogRoot: ({ theme }: any) => {
|
|
9192
9208
|
"& .SCLiveStreamRoom-end-conference-wrap": {
|
|
@@ -9195,7 +9211,14 @@ declare const theme: {
|
|
|
9195
9211
|
alignItems: string;
|
|
9196
9212
|
alignContent: string;
|
|
9197
9213
|
flexDirection: string;
|
|
9198
|
-
"& .
|
|
9214
|
+
"& .SCLiveStreamRoom-logo": {
|
|
9215
|
+
img: {
|
|
9216
|
+
maxHeight: number;
|
|
9217
|
+
maxWidth: number;
|
|
9218
|
+
};
|
|
9219
|
+
marginBottom: any;
|
|
9220
|
+
};
|
|
9221
|
+
"& .SCLiveStreamRoom-btn-back-home": {
|
|
9199
9222
|
marginTop: any;
|
|
9200
9223
|
};
|
|
9201
9224
|
};
|
|
@@ -9219,7 +9242,8 @@ declare const theme: {
|
|
|
9219
9242
|
textAlign: string;
|
|
9220
9243
|
"& .SCLiveStreamVideoConference-logo": {
|
|
9221
9244
|
img: {
|
|
9222
|
-
maxHeight:
|
|
9245
|
+
maxHeight: number;
|
|
9246
|
+
maxWidth: number;
|
|
9223
9247
|
};
|
|
9224
9248
|
marginBottom: any;
|
|
9225
9249
|
};
|