@selfcommunity/react-theme-default 0.2.0-live.74 → 0.2.0-live.77
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/SCEventInfoDetails.d.ts +3 -0
- package/lib/cjs/components/SCEventInfoDetails.js +3 -0
- package/lib/cjs/components/SCLiveStream.d.ts +3 -0
- package/lib/cjs/components/SCLiveStream.js +4 -1
- package/lib/cjs/components/SCLiveStreamSelector.d.ts +4 -0
- package/lib/cjs/components/SCLiveStreamSelector.js +5 -1
- package/lib/cjs/index.d.ts +10 -3
- package/lib/esm/components/SCEventInfoDetails.d.ts +3 -0
- package/lib/esm/components/SCEventInfoDetails.js +3 -0
- package/lib/esm/components/SCLiveStream.d.ts +3 -0
- package/lib/esm/components/SCLiveStream.js +4 -1
- package/lib/esm/components/SCLiveStreamSelector.d.ts +4 -0
- package/lib/esm/components/SCLiveStreamSelector.js +5 -1
- package/lib/esm/index.d.ts +10 -3
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +4 -4
|
@@ -4,7 +4,11 @@ const Component = {
|
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
root: ({ theme }) => ({
|
|
6
6
|
'& .SCLiveStreamSelector-warning': {
|
|
7
|
-
margin: theme.spacing(2, 5, 2, 5)
|
|
7
|
+
margin: theme.spacing(2, 5, 2, 5),
|
|
8
|
+
[`& a`]: {
|
|
9
|
+
color: theme.palette.common.white,
|
|
10
|
+
fontWeight: 'bold'
|
|
11
|
+
}
|
|
8
12
|
},
|
|
9
13
|
'& .SCLiveStreamSelector-options': {
|
|
10
14
|
display: 'flex',
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -7597,9 +7597,6 @@ declare const theme: {
|
|
|
7597
7597
|
root: ({ theme }: {
|
|
7598
7598
|
theme: any;
|
|
7599
7599
|
}) => {
|
|
7600
|
-
/**
|
|
7601
|
-
* Style fragments - Imports - Start
|
|
7602
|
-
*/
|
|
7603
7600
|
gap: any;
|
|
7604
7601
|
'& .SCEventInfoDetails-icon-text-wrapper': {
|
|
7605
7602
|
flexDirection: string;
|
|
@@ -7622,6 +7619,9 @@ declare const theme: {
|
|
|
7622
7619
|
'-webkit-box-orient': string;
|
|
7623
7620
|
};
|
|
7624
7621
|
};
|
|
7622
|
+
'& .SCEventInfoDetails-join-live': {
|
|
7623
|
+
height: number;
|
|
7624
|
+
};
|
|
7625
7625
|
'& .SCEventInfoDetails-in-progress': {
|
|
7626
7626
|
width: string;
|
|
7627
7627
|
height: string;
|
|
@@ -8499,6 +8499,9 @@ declare const theme: {
|
|
|
8499
8499
|
width: number;
|
|
8500
8500
|
height: number;
|
|
8501
8501
|
borderRadius: string;
|
|
8502
|
+
'& img': {
|
|
8503
|
+
borderRadius: string;
|
|
8504
|
+
};
|
|
8502
8505
|
};
|
|
8503
8506
|
};
|
|
8504
8507
|
'& .SCLiveStream-snippet-image': {
|
|
@@ -8779,6 +8782,10 @@ declare const theme: {
|
|
|
8779
8782
|
root: ({ theme }: any) => {
|
|
8780
8783
|
'& .SCLiveStreamSelector-warning': {
|
|
8781
8784
|
margin: any;
|
|
8785
|
+
"& a": {
|
|
8786
|
+
color: any;
|
|
8787
|
+
fontWeight: string;
|
|
8788
|
+
};
|
|
8782
8789
|
};
|
|
8783
8790
|
'& .SCLiveStreamSelector-options': {
|
|
8784
8791
|
[x: number]: {
|
|
@@ -2,7 +2,11 @@ const Component = {
|
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }) => ({
|
|
4
4
|
'& .SCLiveStreamSelector-warning': {
|
|
5
|
-
margin: theme.spacing(2, 5, 2, 5)
|
|
5
|
+
margin: theme.spacing(2, 5, 2, 5),
|
|
6
|
+
[`& a`]: {
|
|
7
|
+
color: theme.palette.common.white,
|
|
8
|
+
fontWeight: 'bold'
|
|
9
|
+
}
|
|
6
10
|
},
|
|
7
11
|
'& .SCLiveStreamSelector-options': {
|
|
8
12
|
display: 'flex',
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -7597,9 +7597,6 @@ declare const theme: {
|
|
|
7597
7597
|
root: ({ theme }: {
|
|
7598
7598
|
theme: any;
|
|
7599
7599
|
}) => {
|
|
7600
|
-
/**
|
|
7601
|
-
* Style fragments - Imports - Start
|
|
7602
|
-
*/
|
|
7603
7600
|
gap: any;
|
|
7604
7601
|
'& .SCEventInfoDetails-icon-text-wrapper': {
|
|
7605
7602
|
flexDirection: string;
|
|
@@ -7622,6 +7619,9 @@ declare const theme: {
|
|
|
7622
7619
|
'-webkit-box-orient': string;
|
|
7623
7620
|
};
|
|
7624
7621
|
};
|
|
7622
|
+
'& .SCEventInfoDetails-join-live': {
|
|
7623
|
+
height: number;
|
|
7624
|
+
};
|
|
7625
7625
|
'& .SCEventInfoDetails-in-progress': {
|
|
7626
7626
|
width: string;
|
|
7627
7627
|
height: string;
|
|
@@ -8499,6 +8499,9 @@ declare const theme: {
|
|
|
8499
8499
|
width: number;
|
|
8500
8500
|
height: number;
|
|
8501
8501
|
borderRadius: string;
|
|
8502
|
+
'& img': {
|
|
8503
|
+
borderRadius: string;
|
|
8504
|
+
};
|
|
8502
8505
|
};
|
|
8503
8506
|
};
|
|
8504
8507
|
'& .SCLiveStream-snippet-image': {
|
|
@@ -8779,6 +8782,10 @@ declare const theme: {
|
|
|
8779
8782
|
root: ({ theme }: any) => {
|
|
8780
8783
|
'& .SCLiveStreamSelector-warning': {
|
|
8781
8784
|
margin: any;
|
|
8785
|
+
"& a": {
|
|
8786
|
+
color: any;
|
|
8787
|
+
fontWeight: string;
|
|
8788
|
+
};
|
|
8782
8789
|
};
|
|
8783
8790
|
'& .SCLiveStreamSelector-options': {
|
|
8784
8791
|
[x: number]: {
|