@selfcommunity/react-theme-default 0.4.5-alpha.3 → 0.4.5-alpha.5
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/SCFeedObject.d.ts +2 -3
- package/lib/cjs/components/SCFeedObject.js +2 -3
- package/lib/cjs/components/SCLiveStreamVideoConference.d.ts +2 -0
- package/lib/cjs/components/SCLiveStreamVideoConference.js +3 -1
- package/lib/cjs/index.d.ts +4 -3
- package/lib/esm/components/SCFeedObject.d.ts +2 -3
- package/lib/esm/components/SCFeedObject.js +2 -3
- package/lib/esm/components/SCLiveStreamVideoConference.d.ts +2 -0
- package/lib/esm/components/SCLiveStreamVideoConference.js +3 -1
- package/lib/esm/index.d.ts +4 -3
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -65,15 +65,14 @@ declare const Component: {
|
|
|
65
65
|
[x: number]: {
|
|
66
66
|
marginRight: string;
|
|
67
67
|
};
|
|
68
|
+
height: number;
|
|
68
69
|
};
|
|
69
70
|
};
|
|
70
71
|
'& .SCFeedObject-group, & .SCFeedObject-event': {
|
|
71
72
|
justifyContent: string;
|
|
72
|
-
padding: any;
|
|
73
|
-
height: number;
|
|
74
73
|
'& a': {
|
|
75
74
|
padding: any;
|
|
76
|
-
|
|
75
|
+
margin: any;
|
|
77
76
|
color: any;
|
|
78
77
|
maxHeight: number;
|
|
79
78
|
'&:hover': {
|
|
@@ -65,6 +65,7 @@ const Component = {
|
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
67
|
'& .SCFeedObject-group, & .SCFeedObject-event': {
|
|
68
|
+
height: 20,
|
|
68
69
|
[theme.breakpoints.up('sm')]: {
|
|
69
70
|
marginRight: `${theme.spacing(1)} !important`
|
|
70
71
|
}
|
|
@@ -72,11 +73,9 @@ const Component = {
|
|
|
72
73
|
},
|
|
73
74
|
'& .SCFeedObject-group, & .SCFeedObject-event': {
|
|
74
75
|
justifyContent: 'flex-start',
|
|
75
|
-
padding: theme.spacing(0.4, 0.5),
|
|
76
|
-
height: 20,
|
|
77
76
|
'& a': {
|
|
78
77
|
padding: theme.spacing(0.5),
|
|
79
|
-
|
|
78
|
+
margin: theme.spacing(0.5),
|
|
80
79
|
color: theme.palette.common.white,
|
|
81
80
|
maxHeight: 20,
|
|
82
81
|
'&:hover': {
|
|
@@ -12,10 +12,12 @@ declare const Component: {
|
|
|
12
12
|
alignItems: string;
|
|
13
13
|
alignContent: string;
|
|
14
14
|
flexDirection: string;
|
|
15
|
+
textAlign: string;
|
|
15
16
|
"& .SCLiveStreamVideoConference-logo": {
|
|
16
17
|
img: {
|
|
17
18
|
maxHeight: string;
|
|
18
19
|
};
|
|
20
|
+
marginBottom: any;
|
|
19
21
|
};
|
|
20
22
|
"& .SCLiveStreamVideoConference-btn-back-home": {
|
|
21
23
|
marginTop: any;
|
|
@@ -14,10 +14,12 @@ const Component = {
|
|
|
14
14
|
alignItems: 'center',
|
|
15
15
|
alignContent: 'center',
|
|
16
16
|
flexDirection: 'column',
|
|
17
|
+
textAlign: 'center',
|
|
17
18
|
[`& .SCLiveStreamVideoConference-logo`]: {
|
|
18
19
|
img: {
|
|
19
20
|
maxHeight: '100px'
|
|
20
|
-
}
|
|
21
|
+
},
|
|
22
|
+
marginBottom: theme.spacing(2)
|
|
21
23
|
},
|
|
22
24
|
[`& .SCLiveStreamVideoConference-btn-back-home`]: {
|
|
23
25
|
marginTop: theme.spacing(2)
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -2215,15 +2215,14 @@ declare const theme: {
|
|
|
2215
2215
|
[x: number]: {
|
|
2216
2216
|
marginRight: string;
|
|
2217
2217
|
};
|
|
2218
|
+
height: number;
|
|
2218
2219
|
};
|
|
2219
2220
|
};
|
|
2220
2221
|
'& .SCFeedObject-group, & .SCFeedObject-event': {
|
|
2221
2222
|
justifyContent: string;
|
|
2222
|
-
padding: any;
|
|
2223
|
-
height: number;
|
|
2224
2223
|
'& a': {
|
|
2225
2224
|
padding: any;
|
|
2226
|
-
|
|
2225
|
+
margin: any;
|
|
2227
2226
|
color: any;
|
|
2228
2227
|
maxHeight: number;
|
|
2229
2228
|
'&:hover': {
|
|
@@ -9169,10 +9168,12 @@ declare const theme: {
|
|
|
9169
9168
|
alignItems: string;
|
|
9170
9169
|
alignContent: string;
|
|
9171
9170
|
flexDirection: string;
|
|
9171
|
+
textAlign: string;
|
|
9172
9172
|
"& .SCLiveStreamVideoConference-logo": {
|
|
9173
9173
|
img: {
|
|
9174
9174
|
maxHeight: string;
|
|
9175
9175
|
};
|
|
9176
|
+
marginBottom: any;
|
|
9176
9177
|
};
|
|
9177
9178
|
"& .SCLiveStreamVideoConference-btn-back-home": {
|
|
9178
9179
|
marginTop: any;
|
|
@@ -65,15 +65,14 @@ declare const Component: {
|
|
|
65
65
|
[x: number]: {
|
|
66
66
|
marginRight: string;
|
|
67
67
|
};
|
|
68
|
+
height: number;
|
|
68
69
|
};
|
|
69
70
|
};
|
|
70
71
|
'& .SCFeedObject-group, & .SCFeedObject-event': {
|
|
71
72
|
justifyContent: string;
|
|
72
|
-
padding: any;
|
|
73
|
-
height: number;
|
|
74
73
|
'& a': {
|
|
75
74
|
padding: any;
|
|
76
|
-
|
|
75
|
+
margin: any;
|
|
77
76
|
color: any;
|
|
78
77
|
maxHeight: number;
|
|
79
78
|
'&:hover': {
|
|
@@ -63,6 +63,7 @@ const Component = {
|
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
65
|
'& .SCFeedObject-group, & .SCFeedObject-event': {
|
|
66
|
+
height: 20,
|
|
66
67
|
[theme.breakpoints.up('sm')]: {
|
|
67
68
|
marginRight: `${theme.spacing(1)} !important`
|
|
68
69
|
}
|
|
@@ -70,11 +71,9 @@ const Component = {
|
|
|
70
71
|
},
|
|
71
72
|
'& .SCFeedObject-group, & .SCFeedObject-event': {
|
|
72
73
|
justifyContent: 'flex-start',
|
|
73
|
-
padding: theme.spacing(0.4, 0.5),
|
|
74
|
-
height: 20,
|
|
75
74
|
'& a': {
|
|
76
75
|
padding: theme.spacing(0.5),
|
|
77
|
-
|
|
76
|
+
margin: theme.spacing(0.5),
|
|
78
77
|
color: theme.palette.common.white,
|
|
79
78
|
maxHeight: 20,
|
|
80
79
|
'&:hover': {
|
|
@@ -12,10 +12,12 @@ declare const Component: {
|
|
|
12
12
|
alignItems: string;
|
|
13
13
|
alignContent: string;
|
|
14
14
|
flexDirection: string;
|
|
15
|
+
textAlign: string;
|
|
15
16
|
"& .SCLiveStreamVideoConference-logo": {
|
|
16
17
|
img: {
|
|
17
18
|
maxHeight: string;
|
|
18
19
|
};
|
|
20
|
+
marginBottom: any;
|
|
19
21
|
};
|
|
20
22
|
"& .SCLiveStreamVideoConference-btn-back-home": {
|
|
21
23
|
marginTop: any;
|
|
@@ -12,10 +12,12 @@ const Component = {
|
|
|
12
12
|
alignItems: 'center',
|
|
13
13
|
alignContent: 'center',
|
|
14
14
|
flexDirection: 'column',
|
|
15
|
+
textAlign: 'center',
|
|
15
16
|
[`& .SCLiveStreamVideoConference-logo`]: {
|
|
16
17
|
img: {
|
|
17
18
|
maxHeight: '100px'
|
|
18
|
-
}
|
|
19
|
+
},
|
|
20
|
+
marginBottom: theme.spacing(2)
|
|
19
21
|
},
|
|
20
22
|
[`& .SCLiveStreamVideoConference-btn-back-home`]: {
|
|
21
23
|
marginTop: theme.spacing(2)
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -2215,15 +2215,14 @@ declare const theme: {
|
|
|
2215
2215
|
[x: number]: {
|
|
2216
2216
|
marginRight: string;
|
|
2217
2217
|
};
|
|
2218
|
+
height: number;
|
|
2218
2219
|
};
|
|
2219
2220
|
};
|
|
2220
2221
|
'& .SCFeedObject-group, & .SCFeedObject-event': {
|
|
2221
2222
|
justifyContent: string;
|
|
2222
|
-
padding: any;
|
|
2223
|
-
height: number;
|
|
2224
2223
|
'& a': {
|
|
2225
2224
|
padding: any;
|
|
2226
|
-
|
|
2225
|
+
margin: any;
|
|
2227
2226
|
color: any;
|
|
2228
2227
|
maxHeight: number;
|
|
2229
2228
|
'&:hover': {
|
|
@@ -9169,10 +9168,12 @@ declare const theme: {
|
|
|
9169
9168
|
alignItems: string;
|
|
9170
9169
|
alignContent: string;
|
|
9171
9170
|
flexDirection: string;
|
|
9171
|
+
textAlign: string;
|
|
9172
9172
|
"& .SCLiveStreamVideoConference-logo": {
|
|
9173
9173
|
img: {
|
|
9174
9174
|
maxHeight: string;
|
|
9175
9175
|
};
|
|
9176
|
+
marginBottom: any;
|
|
9176
9177
|
};
|
|
9177
9178
|
"& .SCLiveStreamVideoConference-btn-back-home": {
|
|
9178
9179
|
marginTop: any;
|