@selfcommunity/react-theme-default 0.2.0-live.57 → 0.2.0-live.59
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 +7 -0
- package/lib/cjs/components/SCLiveStreamRoom.js +7 -0
- package/lib/cjs/components/SCLiveStreamVideoConference.d.ts +1 -0
- package/lib/cjs/components/SCLiveStreamVideoConference.js +1 -0
- package/lib/cjs/index.d.ts +53 -0
- package/lib/cjs/index.js +2 -0
- package/lib/esm/components/SCLiveStreamRoom.d.ts +7 -0
- package/lib/esm/components/SCLiveStreamRoom.js +7 -0
- package/lib/esm/components/SCLiveStreamVideoConference.d.ts +1 -0
- package/lib/esm/components/SCLiveStreamVideoConference.js +1 -0
- package/lib/esm/index.d.ts +53 -0
- package/lib/esm/index.js +2 -0
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +4 -4
|
@@ -39,6 +39,13 @@ declare const Component: {
|
|
|
39
39
|
color: string;
|
|
40
40
|
};
|
|
41
41
|
};
|
|
42
|
+
"& .SCLiveStreamRoom-end-prejoin-content": {
|
|
43
|
+
color: any;
|
|
44
|
+
display: string;
|
|
45
|
+
justifyContent: string;
|
|
46
|
+
alignItems: string;
|
|
47
|
+
marginTop: number;
|
|
48
|
+
};
|
|
42
49
|
'& .lk-prejoin': {
|
|
43
50
|
maxWidth: number;
|
|
44
51
|
width: string;
|
|
@@ -41,6 +41,13 @@ const Component = {
|
|
|
41
41
|
color: '#111111'
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
|
+
[`& .SCLiveStreamRoom-end-prejoin-content`]: {
|
|
45
|
+
color: theme.palette.common.black,
|
|
46
|
+
display: 'flex',
|
|
47
|
+
justifyContent: 'center',
|
|
48
|
+
alignItems: 'center',
|
|
49
|
+
marginTop: -30
|
|
50
|
+
},
|
|
44
51
|
'& .lk-prejoin': {
|
|
45
52
|
maxWidth: 620,
|
|
46
53
|
width: '100%',
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -8589,6 +8589,51 @@ declare const theme: {
|
|
|
8589
8589
|
};
|
|
8590
8590
|
};
|
|
8591
8591
|
};
|
|
8592
|
+
SCLiveStreamInfoDetails: {
|
|
8593
|
+
styleOverrides: {
|
|
8594
|
+
root: ({ theme }: {
|
|
8595
|
+
theme: any;
|
|
8596
|
+
}) => {
|
|
8597
|
+
/**
|
|
8598
|
+
* Style fragments - Imports - Start
|
|
8599
|
+
*/
|
|
8600
|
+
gap: any;
|
|
8601
|
+
'& .SCLiveStreamInfoDetails-icon-text-wrapper': {
|
|
8602
|
+
flexDirection: string;
|
|
8603
|
+
alignItems: string;
|
|
8604
|
+
gap: any;
|
|
8605
|
+
'& > p': {
|
|
8606
|
+
textTransform: string;
|
|
8607
|
+
};
|
|
8608
|
+
'& .SCLiveStreamInfoDetails-link': {
|
|
8609
|
+
textDecoration: string;
|
|
8610
|
+
color: any;
|
|
8611
|
+
'&:hover': {
|
|
8612
|
+
textDecoration: string;
|
|
8613
|
+
};
|
|
8614
|
+
'& .SCLiveStreamInfoDetails-url': {
|
|
8615
|
+
overflow: string;
|
|
8616
|
+
textOverflow: string;
|
|
8617
|
+
display: string;
|
|
8618
|
+
'-webkit-line-clamp': string;
|
|
8619
|
+
'-webkit-box-orient': string;
|
|
8620
|
+
};
|
|
8621
|
+
};
|
|
8622
|
+
'& .SCLiveStreamInfoDetails-in-progress': {
|
|
8623
|
+
width: string;
|
|
8624
|
+
height: string;
|
|
8625
|
+
borderRadius: string;
|
|
8626
|
+
backgroundColor: any;
|
|
8627
|
+
};
|
|
8628
|
+
};
|
|
8629
|
+
'& .SCLiveStreamInfoDetails-creation-wrapper': {
|
|
8630
|
+
flexDirection: string;
|
|
8631
|
+
alignItems: string;
|
|
8632
|
+
gap: any;
|
|
8633
|
+
};
|
|
8634
|
+
};
|
|
8635
|
+
};
|
|
8636
|
+
};
|
|
8592
8637
|
SCCreateLiveStreamDialog: {
|
|
8593
8638
|
styleOverrides: {
|
|
8594
8639
|
root: ({ theme }: any) => {
|
|
@@ -8685,6 +8730,13 @@ declare const theme: {
|
|
|
8685
8730
|
color: string;
|
|
8686
8731
|
};
|
|
8687
8732
|
};
|
|
8733
|
+
"& .SCLiveStreamRoom-end-prejoin-content": {
|
|
8734
|
+
color: any;
|
|
8735
|
+
display: string;
|
|
8736
|
+
justifyContent: string;
|
|
8737
|
+
alignItems: string;
|
|
8738
|
+
marginTop: number;
|
|
8739
|
+
};
|
|
8688
8740
|
'& .lk-prejoin': {
|
|
8689
8741
|
maxWidth: number;
|
|
8690
8742
|
width: string;
|
|
@@ -8705,6 +8757,7 @@ declare const theme: {
|
|
|
8705
8757
|
styleOverrides: {
|
|
8706
8758
|
root: ({ theme }: any) => {
|
|
8707
8759
|
height: string;
|
|
8760
|
+
width: string;
|
|
8708
8761
|
overflowY: string;
|
|
8709
8762
|
"& .SCLiveStreamVideoConference-end-conference-wrap": {
|
|
8710
8763
|
display: string;
|
package/lib/cjs/index.js
CHANGED
|
@@ -148,6 +148,7 @@ const SCLiveStreamForm_1 = tslib_1.__importDefault(require("./components/SCLiveS
|
|
|
148
148
|
const SCLiveStreamFormSettings_1 = tslib_1.__importDefault(require("./components/SCLiveStreamFormSettings"));
|
|
149
149
|
const SCLiveStreamRoom_1 = tslib_1.__importDefault(require("./components/SCLiveStreamRoom"));
|
|
150
150
|
const SCLiveStreamVideoConference_1 = tslib_1.__importDefault(require("./components/SCLiveStreamVideoConference"));
|
|
151
|
+
const SCLiveStreamInfoDetails_1 = tslib_1.__importDefault(require("./components/SCLiveStreamInfoDetails"));
|
|
151
152
|
const SCToastNotifications_1 = tslib_1.__importDefault(require("./components/SCToastNotifications"));
|
|
152
153
|
const SCUser_1 = tslib_1.__importDefault(require("./components/SCUser"));
|
|
153
154
|
const SCUserActionIconButton_1 = tslib_1.__importDefault(require("./components/SCUserActionIconButton"));
|
|
@@ -399,6 +400,7 @@ const theme = {
|
|
|
399
400
|
SCVoteButton: SCVoteButton_1.default,
|
|
400
401
|
SCWidget: SCWidget_1.default,
|
|
401
402
|
SCLiveStream: SCLiveStream_1.default,
|
|
403
|
+
SCLiveStreamInfoDetails: SCLiveStreamInfoDetails_1.default,
|
|
402
404
|
SCCreateLiveStreamDialog: SCLiveStreamDialog_1.default,
|
|
403
405
|
SCLiveStreamForm: SCLiveStreamForm_1.default,
|
|
404
406
|
SCLiveStreamFormSettings: SCLiveStreamFormSettings_1.default,
|
|
@@ -39,6 +39,13 @@ declare const Component: {
|
|
|
39
39
|
color: string;
|
|
40
40
|
};
|
|
41
41
|
};
|
|
42
|
+
"& .SCLiveStreamRoom-end-prejoin-content": {
|
|
43
|
+
color: any;
|
|
44
|
+
display: string;
|
|
45
|
+
justifyContent: string;
|
|
46
|
+
alignItems: string;
|
|
47
|
+
marginTop: number;
|
|
48
|
+
};
|
|
42
49
|
'& .lk-prejoin': {
|
|
43
50
|
maxWidth: number;
|
|
44
51
|
width: string;
|
|
@@ -39,6 +39,13 @@ const Component = {
|
|
|
39
39
|
color: '#111111'
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
|
+
[`& .SCLiveStreamRoom-end-prejoin-content`]: {
|
|
43
|
+
color: theme.palette.common.black,
|
|
44
|
+
display: 'flex',
|
|
45
|
+
justifyContent: 'center',
|
|
46
|
+
alignItems: 'center',
|
|
47
|
+
marginTop: -30
|
|
48
|
+
},
|
|
42
49
|
'& .lk-prejoin': {
|
|
43
50
|
maxWidth: 620,
|
|
44
51
|
width: '100%',
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -8589,6 +8589,51 @@ declare const theme: {
|
|
|
8589
8589
|
};
|
|
8590
8590
|
};
|
|
8591
8591
|
};
|
|
8592
|
+
SCLiveStreamInfoDetails: {
|
|
8593
|
+
styleOverrides: {
|
|
8594
|
+
root: ({ theme }: {
|
|
8595
|
+
theme: any;
|
|
8596
|
+
}) => {
|
|
8597
|
+
/**
|
|
8598
|
+
* Style fragments - Imports - Start
|
|
8599
|
+
*/
|
|
8600
|
+
gap: any;
|
|
8601
|
+
'& .SCLiveStreamInfoDetails-icon-text-wrapper': {
|
|
8602
|
+
flexDirection: string;
|
|
8603
|
+
alignItems: string;
|
|
8604
|
+
gap: any;
|
|
8605
|
+
'& > p': {
|
|
8606
|
+
textTransform: string;
|
|
8607
|
+
};
|
|
8608
|
+
'& .SCLiveStreamInfoDetails-link': {
|
|
8609
|
+
textDecoration: string;
|
|
8610
|
+
color: any;
|
|
8611
|
+
'&:hover': {
|
|
8612
|
+
textDecoration: string;
|
|
8613
|
+
};
|
|
8614
|
+
'& .SCLiveStreamInfoDetails-url': {
|
|
8615
|
+
overflow: string;
|
|
8616
|
+
textOverflow: string;
|
|
8617
|
+
display: string;
|
|
8618
|
+
'-webkit-line-clamp': string;
|
|
8619
|
+
'-webkit-box-orient': string;
|
|
8620
|
+
};
|
|
8621
|
+
};
|
|
8622
|
+
'& .SCLiveStreamInfoDetails-in-progress': {
|
|
8623
|
+
width: string;
|
|
8624
|
+
height: string;
|
|
8625
|
+
borderRadius: string;
|
|
8626
|
+
backgroundColor: any;
|
|
8627
|
+
};
|
|
8628
|
+
};
|
|
8629
|
+
'& .SCLiveStreamInfoDetails-creation-wrapper': {
|
|
8630
|
+
flexDirection: string;
|
|
8631
|
+
alignItems: string;
|
|
8632
|
+
gap: any;
|
|
8633
|
+
};
|
|
8634
|
+
};
|
|
8635
|
+
};
|
|
8636
|
+
};
|
|
8592
8637
|
SCCreateLiveStreamDialog: {
|
|
8593
8638
|
styleOverrides: {
|
|
8594
8639
|
root: ({ theme }: any) => {
|
|
@@ -8685,6 +8730,13 @@ declare const theme: {
|
|
|
8685
8730
|
color: string;
|
|
8686
8731
|
};
|
|
8687
8732
|
};
|
|
8733
|
+
"& .SCLiveStreamRoom-end-prejoin-content": {
|
|
8734
|
+
color: any;
|
|
8735
|
+
display: string;
|
|
8736
|
+
justifyContent: string;
|
|
8737
|
+
alignItems: string;
|
|
8738
|
+
marginTop: number;
|
|
8739
|
+
};
|
|
8688
8740
|
'& .lk-prejoin': {
|
|
8689
8741
|
maxWidth: number;
|
|
8690
8742
|
width: string;
|
|
@@ -8705,6 +8757,7 @@ declare const theme: {
|
|
|
8705
8757
|
styleOverrides: {
|
|
8706
8758
|
root: ({ theme }: any) => {
|
|
8707
8759
|
height: string;
|
|
8760
|
+
width: string;
|
|
8708
8761
|
overflowY: string;
|
|
8709
8762
|
"& .SCLiveStreamVideoConference-end-conference-wrap": {
|
|
8710
8763
|
display: string;
|
package/lib/esm/index.js
CHANGED
|
@@ -145,6 +145,7 @@ import SCLiveStreamForm from './components/SCLiveStreamForm';
|
|
|
145
145
|
import SCLiveStreamFormSettings from './components/SCLiveStreamFormSettings';
|
|
146
146
|
import SCLiveStreamRoom from './components/SCLiveStreamRoom';
|
|
147
147
|
import SCLiveStreamVideoConference from './components/SCLiveStreamVideoConference';
|
|
148
|
+
import SCLiveStreamInfoDetails from './components/SCLiveStreamInfoDetails';
|
|
148
149
|
import SCToastNotifications from './components/SCToastNotifications';
|
|
149
150
|
import SCUser from './components/SCUser';
|
|
150
151
|
import SCUserActionIconButton from './components/SCUserActionIconButton';
|
|
@@ -396,6 +397,7 @@ const theme = {
|
|
|
396
397
|
SCVoteButton,
|
|
397
398
|
SCWidget,
|
|
398
399
|
SCLiveStream,
|
|
400
|
+
SCLiveStreamInfoDetails,
|
|
399
401
|
SCCreateLiveStreamDialog,
|
|
400
402
|
SCLiveStreamForm,
|
|
401
403
|
SCLiveStreamFormSettings,
|