@selfcommunity/react-theme-default 0.5.0 → 1.0.0-alpha.1
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/MuiAutocomplete.d.ts +2 -3
- package/lib/cjs/components/MuiSelect.d.ts +1 -2
- package/lib/cjs/components/SCCourseInfoDetails.d.ts +2 -2
- package/lib/cjs/components/SCCourseInfoDetails.js +2 -2
- package/lib/cjs/components/SCEvent.d.ts +2 -0
- package/lib/cjs/components/SCEvent.js +2 -0
- package/lib/cjs/components/SCEventInfoDetails.d.ts +2 -2
- package/lib/cjs/components/SCEventInfoDetails.js +2 -2
- package/lib/cjs/components/SCEventLocationWidget.d.ts +1 -1
- package/lib/cjs/components/SCEventLocationWidget.js +2 -2
- package/lib/cjs/components/SCEvents.d.ts +0 -14
- package/lib/cjs/components/SCEvents.js +1 -15
- package/lib/cjs/components/SCFeedObject.d.ts +6 -3
- package/lib/cjs/components/SCFeedObject.js +6 -3
- package/lib/cjs/components/SCFeedObjectDetailTemplate.d.ts +25 -15
- package/lib/cjs/components/SCFeedObjectDetailTemplate.js +25 -15
- package/lib/cjs/components/SCGroups.d.ts +0 -4
- package/lib/cjs/components/SCGroups.js +0 -4
- package/lib/cjs/components/SCLightbox.d.ts +3 -3
- package/lib/cjs/components/SCLightbox.js +3 -3
- package/lib/cjs/components/SCLiveStreamInfoDetails.d.ts +2 -2
- package/lib/cjs/components/SCLiveStreamInfoDetails.js +2 -2
- package/lib/cjs/components/SCLiveStreamRoom.d.ts +1 -1
- package/lib/cjs/components/SCLiveStreamRoom.js +1 -1
- package/lib/cjs/components/SCMediaFile.d.ts +6 -2
- package/lib/cjs/components/SCMediaFile.js +7 -3
- package/lib/cjs/components/SCOnBoardingWidget.d.ts +3 -3
- package/lib/cjs/components/SCOnBoardingWidget.js +3 -3
- package/lib/cjs/components/SCUserProfileTemplate.d.ts +2 -0
- package/lib/cjs/components/SCUserProfileTemplate.js +3 -1
- package/lib/cjs/index.d.ts +58 -65
- package/lib/esm/components/MuiAutocomplete.d.ts +2 -3
- package/lib/esm/components/MuiSelect.d.ts +1 -2
- package/lib/esm/components/SCCourseInfoDetails.d.ts +2 -2
- package/lib/esm/components/SCCourseInfoDetails.js +2 -2
- package/lib/esm/components/SCEvent.d.ts +2 -0
- package/lib/esm/components/SCEvent.js +2 -0
- package/lib/esm/components/SCEventInfoDetails.d.ts +2 -2
- package/lib/esm/components/SCEventInfoDetails.js +2 -2
- package/lib/esm/components/SCEventLocationWidget.d.ts +1 -1
- package/lib/esm/components/SCEventLocationWidget.js +2 -2
- package/lib/esm/components/SCEvents.d.ts +0 -14
- package/lib/esm/components/SCEvents.js +1 -15
- package/lib/esm/components/SCFeedObject.d.ts +6 -3
- package/lib/esm/components/SCFeedObject.js +6 -3
- package/lib/esm/components/SCFeedObjectDetailTemplate.d.ts +25 -15
- package/lib/esm/components/SCFeedObjectDetailTemplate.js +25 -15
- package/lib/esm/components/SCGroups.d.ts +0 -4
- package/lib/esm/components/SCGroups.js +0 -4
- package/lib/esm/components/SCLightbox.d.ts +3 -3
- package/lib/esm/components/SCLightbox.js +3 -3
- package/lib/esm/components/SCLiveStreamInfoDetails.d.ts +2 -2
- package/lib/esm/components/SCLiveStreamInfoDetails.js +2 -2
- package/lib/esm/components/SCLiveStreamRoom.d.ts +1 -1
- package/lib/esm/components/SCLiveStreamRoom.js +1 -1
- package/lib/esm/components/SCMediaFile.d.ts +6 -2
- package/lib/esm/components/SCMediaFile.js +7 -3
- package/lib/esm/components/SCOnBoardingWidget.d.ts +3 -3
- package/lib/esm/components/SCOnBoardingWidget.js +3 -3
- package/lib/esm/components/SCUserProfileTemplate.d.ts +2 -0
- package/lib/esm/components/SCUserProfileTemplate.js +3 -1
- package/lib/esm/index.d.ts +58 -65
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +10 -11
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const Component: {
|
|
3
2
|
defaultProps: {
|
|
4
|
-
clearIcon: JSX.Element;
|
|
5
|
-
popupIcon: JSX.Element;
|
|
3
|
+
clearIcon: import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
popupIcon: import("react/jsx-runtime").JSX.Element;
|
|
6
5
|
};
|
|
7
6
|
};
|
|
8
7
|
export default Component;
|
|
@@ -21,8 +21,8 @@ declare const Component: {
|
|
|
21
21
|
overflow: string;
|
|
22
22
|
textOverflow: string;
|
|
23
23
|
display: string;
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
WebkitLineClamp: string;
|
|
25
|
+
WebkitBoxOrient: string;
|
|
26
26
|
};
|
|
27
27
|
};
|
|
28
28
|
'& .SCCourseInfoDetails-in-progress': {
|
|
@@ -21,8 +21,8 @@ const Component = {
|
|
|
21
21
|
overflow: 'hidden',
|
|
22
22
|
textOverflow: 'ellipsis',
|
|
23
23
|
display: '-webkit-box',
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
WebkitLineClamp: '1',
|
|
25
|
+
WebkitBoxOrient: 'vertical'
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
'& .SCCourseInfoDetails-in-progress': {
|
|
@@ -160,6 +160,7 @@ declare const Component: {
|
|
|
160
160
|
};
|
|
161
161
|
};
|
|
162
162
|
skeletonRoot: ({ theme }: any) => {
|
|
163
|
+
height: string;
|
|
163
164
|
'& .SCEvent-skeleton-detail-root': {
|
|
164
165
|
'& .SCEvent-skeleton-detail-calendar': {
|
|
165
166
|
position: string;
|
|
@@ -193,6 +194,7 @@ declare const Component: {
|
|
|
193
194
|
};
|
|
194
195
|
};
|
|
195
196
|
'& .SCEvent-skeleton-preview-root': {
|
|
197
|
+
minWidth: string;
|
|
196
198
|
'& .SCEvent-skeleton-preview-content': {
|
|
197
199
|
padding: any;
|
|
198
200
|
};
|
|
@@ -162,6 +162,7 @@ const Component = {
|
|
|
162
162
|
}
|
|
163
163
|
}),
|
|
164
164
|
skeletonRoot: ({ theme }) => ({
|
|
165
|
+
height: '100%',
|
|
165
166
|
'& .SCEvent-skeleton-detail-root': {
|
|
166
167
|
'& .SCEvent-skeleton-detail-calendar': {
|
|
167
168
|
position: 'absolute',
|
|
@@ -195,6 +196,7 @@ const Component = {
|
|
|
195
196
|
}
|
|
196
197
|
},
|
|
197
198
|
'& .SCEvent-skeleton-preview-root': {
|
|
199
|
+
minWidth: '212px',
|
|
198
200
|
'& .SCEvent-skeleton-preview-content': {
|
|
199
201
|
padding: theme.spacing()
|
|
200
202
|
},
|
|
@@ -21,8 +21,8 @@ declare const Component: {
|
|
|
21
21
|
overflow: string;
|
|
22
22
|
textOverflow: string;
|
|
23
23
|
display: string;
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
WebkitLineClamp: string;
|
|
25
|
+
WebkitBoxOrient: string;
|
|
26
26
|
};
|
|
27
27
|
};
|
|
28
28
|
'& .SCEventInfoDetails-join-live': {
|
|
@@ -21,8 +21,8 @@ const Component = {
|
|
|
21
21
|
overflow: 'hidden',
|
|
22
22
|
textOverflow: 'ellipsis',
|
|
23
23
|
display: '-webkit-box',
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
WebkitLineClamp: '1',
|
|
25
|
+
WebkitBoxOrient: 'vertical'
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
'& .SCEventInfoDetails-join-live': {
|
|
@@ -33,20 +33,10 @@ declare const Component: {
|
|
|
33
33
|
marginBottom: any;
|
|
34
34
|
};
|
|
35
35
|
marginTop: any;
|
|
36
|
-
'& .SCEvents-item': {
|
|
37
|
-
paddingTop: any;
|
|
38
|
-
};
|
|
39
|
-
'& .SCEvents-item-skeleton': {
|
|
40
|
-
paddingTop: any;
|
|
41
|
-
};
|
|
42
36
|
'& .SCBaseItem-root': {
|
|
43
37
|
display: string;
|
|
44
38
|
justifyContent: string;
|
|
45
39
|
};
|
|
46
|
-
'& .SCEvent-skeleton-preview-name': {
|
|
47
|
-
marginTop: number;
|
|
48
|
-
marginBottom: number;
|
|
49
|
-
};
|
|
50
40
|
'& .SCEvent-skeleton-snippet .SCBaseItem-content': {
|
|
51
41
|
maxWidth: string;
|
|
52
42
|
};
|
|
@@ -81,11 +71,7 @@ declare const Component: {
|
|
|
81
71
|
};
|
|
82
72
|
skeletonRoot: ({ theme }: any) => {
|
|
83
73
|
'& .SCEvents-skeleton-events': {
|
|
84
|
-
justifyContent: string;
|
|
85
74
|
marginTop: any;
|
|
86
|
-
'& .SCEvents-skeleton-item': {
|
|
87
|
-
paddingTop: any;
|
|
88
|
-
};
|
|
89
75
|
};
|
|
90
76
|
};
|
|
91
77
|
eventsChipRoot: ({ theme, showFollowed, showPastEvents, showOngoingEvents }: any) => {
|
|
@@ -35,20 +35,10 @@ const Component = {
|
|
|
35
35
|
[theme.breakpoints.down('md')]: {
|
|
36
36
|
marginBottom: theme.spacing(7)
|
|
37
37
|
},
|
|
38
|
-
'& .SCEvents-item': {
|
|
39
|
-
paddingTop: theme.spacing(2)
|
|
40
|
-
},
|
|
41
|
-
'& .SCEvents-item-skeleton': {
|
|
42
|
-
paddingTop: theme.spacing(2)
|
|
43
|
-
},
|
|
44
38
|
'& .SCBaseItem-root': {
|
|
45
39
|
display: 'flex',
|
|
46
40
|
justifyContent: 'space-between'
|
|
47
41
|
},
|
|
48
|
-
'& .SCEvent-skeleton-preview-name': {
|
|
49
|
-
marginTop: 6,
|
|
50
|
-
marginBottom: 6
|
|
51
|
-
},
|
|
52
42
|
'& .SCEvent-skeleton-snippet .SCBaseItem-content': {
|
|
53
43
|
maxWidth: '70%'
|
|
54
44
|
}
|
|
@@ -83,11 +73,7 @@ const Component = {
|
|
|
83
73
|
}),
|
|
84
74
|
skeletonRoot: ({ theme }) => ({
|
|
85
75
|
'& .SCEvents-skeleton-events': {
|
|
86
|
-
|
|
87
|
-
marginTop: theme.spacing(2),
|
|
88
|
-
'& .SCEvents-skeleton-item': {
|
|
89
|
-
paddingTop: theme.spacing(2)
|
|
90
|
-
}
|
|
76
|
+
marginTop: theme.spacing(2)
|
|
91
77
|
}
|
|
92
78
|
}),
|
|
93
79
|
eventsChipRoot: ({ theme, showFollowed, showPastEvents, showOngoingEvents }) => ({
|
|
@@ -201,9 +201,12 @@ declare const Component: {
|
|
|
201
201
|
};
|
|
202
202
|
};
|
|
203
203
|
'& .SCFeedObject-tag, & .SCFeedObject-location': {
|
|
204
|
-
'& .
|
|
205
|
-
|
|
206
|
-
|
|
204
|
+
'& .MuiBox-root': {
|
|
205
|
+
lineHeight: number;
|
|
206
|
+
'& .MuiIcon-root': {
|
|
207
|
+
fontSize: string;
|
|
208
|
+
color: string;
|
|
209
|
+
};
|
|
207
210
|
};
|
|
208
211
|
};
|
|
209
212
|
};
|
|
@@ -204,9 +204,12 @@ const Component = {
|
|
|
204
204
|
}
|
|
205
205
|
},
|
|
206
206
|
'& .SCFeedObject-tag, & .SCFeedObject-location': {
|
|
207
|
-
'& .
|
|
208
|
-
|
|
209
|
-
|
|
207
|
+
'& .MuiBox-root': {
|
|
208
|
+
lineHeight: 1,
|
|
209
|
+
'& .MuiIcon-root': {
|
|
210
|
+
fontSize: '1rem',
|
|
211
|
+
color: 'inherit'
|
|
212
|
+
}
|
|
210
213
|
}
|
|
211
214
|
}
|
|
212
215
|
}
|
|
@@ -2,27 +2,37 @@ declare const Component: {
|
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
4
|
'& .SCCommentsFeedObject-root': {
|
|
5
|
+
[x: number]: {
|
|
6
|
+
width: string;
|
|
7
|
+
};
|
|
5
8
|
padding: any;
|
|
6
9
|
'& .SCCommentsObject-root h6': {
|
|
7
10
|
paddingLeft: any;
|
|
8
11
|
};
|
|
9
12
|
};
|
|
10
|
-
'& .SCFeedObject-
|
|
11
|
-
'
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
'& a': {
|
|
20
|
-
display: string;
|
|
21
|
-
margin: any;
|
|
22
|
-
};
|
|
23
|
-
'& a:hover': {
|
|
13
|
+
'& .SCFeedObject-root': {
|
|
14
|
+
'&.SCFeedObject-detail': {
|
|
15
|
+
[x: number]: {
|
|
16
|
+
width: string;
|
|
17
|
+
margin: any;
|
|
18
|
+
};
|
|
19
|
+
borderRadius: any;
|
|
20
|
+
'& .SCFeedObject-content': {
|
|
21
|
+
'& .SCFeedObject-text-section .SCFeedObject-text': {
|
|
24
22
|
'& span': {
|
|
25
|
-
|
|
23
|
+
display: string;
|
|
24
|
+
};
|
|
25
|
+
'& span:not(:has(+ a))': {
|
|
26
|
+
width: string;
|
|
27
|
+
};
|
|
28
|
+
'& a': {
|
|
29
|
+
display: string;
|
|
30
|
+
margin: any;
|
|
31
|
+
};
|
|
32
|
+
'& a:hover': {
|
|
33
|
+
'& span': {
|
|
34
|
+
textDecoration: string;
|
|
35
|
+
};
|
|
26
36
|
};
|
|
27
37
|
};
|
|
28
38
|
};
|
|
@@ -5,26 +5,36 @@ const Component = {
|
|
|
5
5
|
root: ({ theme }) => ({
|
|
6
6
|
'& .SCCommentsFeedObject-root': {
|
|
7
7
|
padding: theme.spacing(2, 1),
|
|
8
|
+
[theme.breakpoints.down('md')]: {
|
|
9
|
+
width: 'auto'
|
|
10
|
+
},
|
|
8
11
|
'& .SCCommentsObject-root h6': {
|
|
9
12
|
paddingLeft: theme.spacing(2)
|
|
10
13
|
}
|
|
11
14
|
},
|
|
12
|
-
'& .SCFeedObject-
|
|
13
|
-
'
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
'& a': {
|
|
22
|
-
display: 'inline-block',
|
|
23
|
-
margin: theme.spacing(0, 0.3)
|
|
24
|
-
},
|
|
25
|
-
'& a:hover': {
|
|
15
|
+
'& .SCFeedObject-root': {
|
|
16
|
+
'&.SCFeedObject-detail': {
|
|
17
|
+
borderRadius: theme.shape.borderRadius,
|
|
18
|
+
[theme.breakpoints.down('md')]: {
|
|
19
|
+
width: 'auto',
|
|
20
|
+
margin: theme.spacing(0, 1)
|
|
21
|
+
},
|
|
22
|
+
'& .SCFeedObject-content': {
|
|
23
|
+
'& .SCFeedObject-text-section .SCFeedObject-text': {
|
|
26
24
|
'& span': {
|
|
27
|
-
|
|
25
|
+
display: 'inline'
|
|
26
|
+
},
|
|
27
|
+
'& span:not(:has(+ a))': {
|
|
28
|
+
width: '100%'
|
|
29
|
+
},
|
|
30
|
+
'& a': {
|
|
31
|
+
display: 'inline-block',
|
|
32
|
+
margin: theme.spacing(0, 0.3)
|
|
33
|
+
},
|
|
34
|
+
'& a:hover': {
|
|
35
|
+
'& span': {
|
|
36
|
+
textDecoration: 'underline'
|
|
37
|
+
}
|
|
28
38
|
}
|
|
29
39
|
}
|
|
30
40
|
}
|
|
@@ -26,10 +26,6 @@ const Component = {
|
|
|
26
26
|
'& .SCGroups-groups': {
|
|
27
27
|
marginTop: theme.spacing(2),
|
|
28
28
|
'& .SCGroups-item': {
|
|
29
|
-
[theme.breakpoints.up('md')]: {
|
|
30
|
-
padding: theme.spacing(2)
|
|
31
|
-
},
|
|
32
|
-
width: 'auto',
|
|
33
29
|
'& > div': {
|
|
34
30
|
cursor: 'default',
|
|
35
31
|
padding: theme.spacing(1)
|
|
@@ -10,11 +10,11 @@ declare const Component: {
|
|
|
10
10
|
width: string;
|
|
11
11
|
zIndex: number;
|
|
12
12
|
"& .PhotoView__Spinner": {
|
|
13
|
-
|
|
13
|
+
WebkitAnimation: string;
|
|
14
14
|
animation: string;
|
|
15
15
|
};
|
|
16
16
|
"& .PhotoView__Spinner svg": {
|
|
17
|
-
|
|
17
|
+
WebkitAnimation: string;
|
|
18
18
|
animation: string;
|
|
19
19
|
};
|
|
20
20
|
"& .PhotoView__Photo": {
|
|
@@ -76,7 +76,7 @@ declare const Component: {
|
|
|
76
76
|
zIndex: number;
|
|
77
77
|
};
|
|
78
78
|
"& .PhotoView-Slider__fadeIn": {
|
|
79
|
-
|
|
79
|
+
WebkitAnimation: string;
|
|
80
80
|
animation: string;
|
|
81
81
|
opacity: number;
|
|
82
82
|
};
|
|
@@ -35,11 +35,11 @@ const Component = {
|
|
|
35
35
|
width: '100%',
|
|
36
36
|
zIndex: 2000,
|
|
37
37
|
['& .PhotoView__Spinner']: {
|
|
38
|
-
|
|
38
|
+
WebkitAnimation: `${PhotoViewDelayIn} .4s linear both`,
|
|
39
39
|
animation: `${PhotoViewDelayIn} .4s linear both`
|
|
40
40
|
},
|
|
41
41
|
['& .PhotoView__Spinner svg']: {
|
|
42
|
-
|
|
42
|
+
WebkitAnimation: `${PhotoViewRotate} .6s linear infinite`,
|
|
43
43
|
animation: `${PhotoViewRotate} .6s linear infinite`
|
|
44
44
|
},
|
|
45
45
|
['& .PhotoView__Photo']: {
|
|
@@ -101,7 +101,7 @@ const Component = {
|
|
|
101
101
|
zIndex: -1
|
|
102
102
|
},
|
|
103
103
|
['& .PhotoView-Slider__fadeIn']: {
|
|
104
|
-
|
|
104
|
+
WebkitAnimation: `${PhotoViewFade} linear both`,
|
|
105
105
|
animation: `${PhotoViewFade} linear both`,
|
|
106
106
|
opacity: 0
|
|
107
107
|
},
|
|
@@ -21,8 +21,8 @@ declare const Component: {
|
|
|
21
21
|
overflow: string;
|
|
22
22
|
textOverflow: string;
|
|
23
23
|
display: string;
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
WebkitLineClamp: string;
|
|
25
|
+
WebkitBoxOrient: string;
|
|
26
26
|
};
|
|
27
27
|
};
|
|
28
28
|
'& .SCLiveStreamInfoDetails-in-progress': {
|
|
@@ -21,8 +21,8 @@ const Component = {
|
|
|
21
21
|
overflow: 'hidden',
|
|
22
22
|
textOverflow: 'ellipsis',
|
|
23
23
|
display: '-webkit-box',
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
WebkitLineClamp: '1',
|
|
25
|
+
WebkitBoxOrient: 'vertical'
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
'& .SCLiveStreamInfoDetails-in-progress': {
|
|
@@ -51,7 +51,7 @@ const Component = {
|
|
|
51
51
|
backgroundColor: theme.palette.background.paper,
|
|
52
52
|
'& textarea': {
|
|
53
53
|
color: theme.palette.text.primary,
|
|
54
|
-
|
|
54
|
+
WebkitTextFillColor: theme.palette.text.primary
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
57
|
[`& .SCLiveStreamRoom-conference`]: {
|
|
@@ -116,6 +116,7 @@ declare const Component: {
|
|
|
116
116
|
flexBasis: number;
|
|
117
117
|
flexGrow: number;
|
|
118
118
|
flexShrink: number;
|
|
119
|
+
cursor: string;
|
|
119
120
|
'& .SCMediaFile-title': {
|
|
120
121
|
position: string;
|
|
121
122
|
left: any;
|
|
@@ -152,6 +153,9 @@ declare const Component: {
|
|
|
152
153
|
display: string;
|
|
153
154
|
flexDirection: string;
|
|
154
155
|
gap: any;
|
|
156
|
+
'& > .SCMediaFile-doc': {
|
|
157
|
+
cursor: string;
|
|
158
|
+
};
|
|
155
159
|
};
|
|
156
160
|
};
|
|
157
161
|
triggerRoot: () => {};
|
|
@@ -182,8 +186,8 @@ declare const Component: {
|
|
|
182
186
|
'& .SCMediaFile-title': {
|
|
183
187
|
textAlign: string;
|
|
184
188
|
display: string;
|
|
185
|
-
|
|
186
|
-
|
|
189
|
+
WebkitLineClamp: string;
|
|
190
|
+
WebkitBoxOrient: string;
|
|
187
191
|
overflow: string;
|
|
188
192
|
};
|
|
189
193
|
'& .SCMediaFile-subtitle': {
|
|
@@ -118,6 +118,7 @@ const Component = {
|
|
|
118
118
|
flexBasis: 120,
|
|
119
119
|
flexGrow: 0,
|
|
120
120
|
flexShrink: 0,
|
|
121
|
+
cursor: 'grab',
|
|
121
122
|
'& .SCMediaFile-title': {
|
|
122
123
|
position: 'absolute',
|
|
123
124
|
left: theme.spacing(1),
|
|
@@ -153,7 +154,10 @@ const Component = {
|
|
|
153
154
|
'& .SCMediaFile-docs-wrapper': {
|
|
154
155
|
display: 'flex',
|
|
155
156
|
flexDirection: 'column',
|
|
156
|
-
gap: theme.spacing(2)
|
|
157
|
+
gap: theme.spacing(2),
|
|
158
|
+
'& > .SCMediaFile-doc': {
|
|
159
|
+
cursor: 'grab'
|
|
160
|
+
}
|
|
157
161
|
}
|
|
158
162
|
}),
|
|
159
163
|
triggerRoot: () => ({}),
|
|
@@ -182,8 +186,8 @@ const Component = {
|
|
|
182
186
|
'& .SCMediaFile-title': {
|
|
183
187
|
textAlign: 'left',
|
|
184
188
|
display: '-webkit-box',
|
|
185
|
-
|
|
186
|
-
|
|
189
|
+
WebkitLineClamp: '1',
|
|
190
|
+
WebkitBoxOrient: 'vertical',
|
|
187
191
|
overflow: 'hidden'
|
|
188
192
|
},
|
|
189
193
|
'& .SCMediaFile-subtitle': {
|
|
@@ -33,7 +33,7 @@ declare const Component: {
|
|
|
33
33
|
'&::-webkit-scrollbar': {
|
|
34
34
|
display: string;
|
|
35
35
|
};
|
|
36
|
-
|
|
36
|
+
WebkitOverflowScrolling: string;
|
|
37
37
|
'& .MuiButtonBase-root, .MuiListItem-root': {
|
|
38
38
|
marginRight: any;
|
|
39
39
|
padding: number;
|
|
@@ -63,7 +63,7 @@ declare const Component: {
|
|
|
63
63
|
};
|
|
64
64
|
};
|
|
65
65
|
};
|
|
66
|
-
dialogRoot: (
|
|
66
|
+
dialogRoot: () => {
|
|
67
67
|
'& .SCOnBoardingWidget-dialog-content': {
|
|
68
68
|
whiteSpace: string;
|
|
69
69
|
fontSize: string;
|
|
@@ -78,7 +78,7 @@ declare const Component: {
|
|
|
78
78
|
};
|
|
79
79
|
};
|
|
80
80
|
};
|
|
81
|
-
actionsDrawerRoot: (
|
|
81
|
+
actionsDrawerRoot: () => {};
|
|
82
82
|
accordionRoot: ({ theme, expanded }: any) => {
|
|
83
83
|
boxShadow: string;
|
|
84
84
|
'& .MuiAccordionDetails-root ': {
|
|
@@ -35,7 +35,7 @@ const Component = {
|
|
|
35
35
|
'&::-webkit-scrollbar': {
|
|
36
36
|
display: 'none'
|
|
37
37
|
},
|
|
38
|
-
|
|
38
|
+
WebkitOverflowScrolling: 'touch',
|
|
39
39
|
'& .MuiButtonBase-root, .MuiListItem-root': {
|
|
40
40
|
marginRight: theme.spacing(0.5),
|
|
41
41
|
padding: 0,
|
|
@@ -65,7 +65,7 @@ const Component = {
|
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
}),
|
|
68
|
-
dialogRoot: (
|
|
68
|
+
dialogRoot: () => ({
|
|
69
69
|
'& .SCOnBoardingWidget-dialog-content': {
|
|
70
70
|
whiteSpace: 'pre-line',
|
|
71
71
|
fontSize: '1.143rem'
|
|
@@ -80,7 +80,7 @@ const Component = {
|
|
|
80
80
|
}
|
|
81
81
|
}
|
|
82
82
|
}),
|
|
83
|
-
actionsDrawerRoot: (
|
|
83
|
+
actionsDrawerRoot: () => ({}),
|
|
84
84
|
accordionRoot: ({ theme, expanded }) => ({
|
|
85
85
|
boxShadow: 'none',
|
|
86
86
|
'& .MuiAccordionDetails-root ': {
|
|
@@ -10,7 +10,9 @@ const Component = {
|
|
|
10
10
|
'& .SCUserProfileTemplate-tags': {
|
|
11
11
|
marginTop: theme.spacing(2),
|
|
12
12
|
marginLeft: theme.spacing(2),
|
|
13
|
-
justifyContent: 'start'
|
|
13
|
+
justifyContent: 'start',
|
|
14
|
+
flexWrap: 'wrap',
|
|
15
|
+
gap: theme.spacing(2)
|
|
14
16
|
},
|
|
15
17
|
'& .SCUserProfileTemplate-counters': {
|
|
16
18
|
marginLeft: theme.spacing(1),
|