@selfcommunity/react-theme-default 0.1.0-alpha.285 → 0.1.0-alpha.287

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.
Files changed (34) hide show
  1. package/lib/cjs/components/SCCommentObject.d.ts +1 -0
  2. package/lib/cjs/components/SCCommentObject.js +2 -1
  3. package/lib/cjs/components/SCCommentObjectReply.d.ts +1 -0
  4. package/lib/cjs/components/SCCommentObjectReply.js +1 -0
  5. package/lib/cjs/components/SCCommentsObject.d.ts +21 -1
  6. package/lib/cjs/components/SCCommentsObject.js +21 -1
  7. package/lib/cjs/components/SCContributorsFeedObject.d.ts +1 -0
  8. package/lib/cjs/components/SCContributorsFeedObject.js +2 -1
  9. package/lib/cjs/components/SCFeedObject.d.ts +7 -1
  10. package/lib/cjs/components/SCFeedObject.js +13 -7
  11. package/lib/cjs/components/SCLoyaltyProgramWidget.js +1 -1
  12. package/lib/cjs/components/SCUserAvatar.d.ts +1 -0
  13. package/lib/cjs/components/SCUserAvatar.js +2 -1
  14. package/lib/cjs/components/SCWidget.d.ts +6 -4
  15. package/lib/cjs/components/SCWidget.js +7 -5
  16. package/lib/cjs/index.d.ts +38 -9
  17. package/lib/esm/components/SCCommentObject.d.ts +1 -0
  18. package/lib/esm/components/SCCommentObject.js +2 -1
  19. package/lib/esm/components/SCCommentObjectReply.d.ts +1 -0
  20. package/lib/esm/components/SCCommentObjectReply.js +1 -0
  21. package/lib/esm/components/SCCommentsObject.d.ts +21 -1
  22. package/lib/esm/components/SCCommentsObject.js +21 -1
  23. package/lib/esm/components/SCContributorsFeedObject.d.ts +1 -0
  24. package/lib/esm/components/SCContributorsFeedObject.js +2 -1
  25. package/lib/esm/components/SCFeedObject.d.ts +7 -1
  26. package/lib/esm/components/SCFeedObject.js +13 -7
  27. package/lib/esm/components/SCLoyaltyProgramWidget.js +1 -1
  28. package/lib/esm/components/SCUserAvatar.d.ts +1 -0
  29. package/lib/esm/components/SCUserAvatar.js +2 -1
  30. package/lib/esm/components/SCWidget.d.ts +6 -4
  31. package/lib/esm/components/SCWidget.js +7 -5
  32. package/lib/esm/index.d.ts +38 -9
  33. package/lib/umd/react-theme-default.js +2 -2
  34. package/package.json +3 -3
@@ -14,6 +14,7 @@ declare const Component: {
14
14
  };
15
15
  '& .SCBaseItem-text': {
16
16
  marginBottom: number;
17
+ marginTop: any;
17
18
  };
18
19
  };
19
20
  '& .SCCommentObject-nested-comments': {
@@ -16,7 +16,8 @@ const Component = {
16
16
  top: theme.spacing(1.5)
17
17
  },
18
18
  '& .SCBaseItem-text': {
19
- marginBottom: 0
19
+ marginBottom: 0,
20
+ marginTop: theme.spacing(0.2)
20
21
  }
21
22
  },
22
23
  '& .SCCommentObject-nested-comments': {
@@ -14,6 +14,7 @@ declare const Component: {
14
14
  };
15
15
  };
16
16
  '& .SCBaseItem-image': {
17
+ marginTop: any;
17
18
  '& .MuiBadge-badge': {
18
19
  top: any;
19
20
  };
@@ -16,6 +16,7 @@ const Component = {
16
16
  }
17
17
  },
18
18
  '& .SCBaseItem-image': {
19
+ marginTop: theme.spacing(0.2),
19
20
  '& .MuiBadge-badge': {
20
21
  top: theme.spacing(1.25)
21
22
  },
@@ -1,8 +1,28 @@
1
1
  declare const Component: {
2
2
  styleOverrides: {
3
3
  root: ({ theme }: any) => {
4
+ boxShadow: string;
5
+ position: string;
6
+ display: string;
7
+ flexWrap: string;
8
+ width: string;
9
+ paddingBottom: any;
10
+ '& .SCCommentsObject-load-more-comments-button': {
11
+ textTransform: string;
12
+ padding: any;
13
+ };
14
+ '& .SCCommentsObject-load-previous-comments-button': {
15
+ textTransform: string;
16
+ padding: any;
17
+ };
18
+ '& .SCCommentsObject-comments-counter': {
19
+ paddingRight: any;
20
+ };
21
+ '& .SCCommentsObject-pagination-link': {
22
+ display: string;
23
+ };
4
24
  '& .SCCommentsObject-pagination': {
5
- paddingBottom: any;
25
+ width: string;
6
26
  '& button': {
7
27
  fontWeight: any;
8
28
  textDecoration: string;
@@ -3,8 +3,28 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const Component = {
4
4
  styleOverrides: {
5
5
  root: ({ theme }) => ({
6
+ boxShadow: 'none',
7
+ position: 'relative',
8
+ display: 'flex',
9
+ flexWrap: 'wrap',
10
+ width: '100%',
11
+ paddingBottom: theme.spacing(),
12
+ '& .SCCommentsObject-load-more-comments-button': {
13
+ textTransform: 'initial',
14
+ padding: theme.spacing()
15
+ },
16
+ '& .SCCommentsObject-load-previous-comments-button': {
17
+ textTransform: 'initial',
18
+ padding: theme.spacing()
19
+ },
20
+ '& .SCCommentsObject-comments-counter': {
21
+ paddingRight: theme.spacing()
22
+ },
23
+ '& .SCCommentsObject-pagination-link': {
24
+ display: 'none'
25
+ },
6
26
  '& .SCCommentsObject-pagination': {
7
- paddingBottom: theme.spacing(1),
27
+ width: '100%',
8
28
  '& button': {
9
29
  fontWeight: theme.typography.fontWeightLight,
10
30
  textDecoration: 'underline',
@@ -2,6 +2,7 @@ declare const Component: {
2
2
  styleOverrides: {
3
3
  root: ({ theme }: any) => {
4
4
  '& .SCContributorsFeedObject-btn-participants': {
5
+ padding: any;
5
6
  marginLeft: any;
6
7
  color: string;
7
8
  fontWeight: any;
@@ -4,7 +4,8 @@ const Component = {
4
4
  styleOverrides: {
5
5
  root: ({ theme }) => ({
6
6
  '& .SCContributorsFeedObject-btn-participants': {
7
- marginLeft: theme.spacing(-1),
7
+ padding: theme.spacing(0.5),
8
+ marginLeft: theme.spacing(-0.5),
8
9
  color: 'inherit',
9
10
  fontWeight: theme.typography.fontWeightLight,
10
11
  fontSize: '0.875rem'
@@ -19,6 +19,7 @@ declare const Component: {
19
19
  height: any;
20
20
  };
21
21
  '& .SCFeedObject-header': {
22
+ paddingTop: any;
22
23
  paddingBottom: number;
23
24
  '& .MuiCardHeader-subheader': {
24
25
  display: string;
@@ -152,6 +153,7 @@ declare const Component: {
152
153
  '& .SCFeedObject-text-section': {
153
154
  overflowWrap: string;
154
155
  '& > :first-of-type': {
156
+ marginBottom: number;
155
157
  padding: any;
156
158
  display: string;
157
159
  };
@@ -252,9 +254,12 @@ declare const Component: {
252
254
  margin: string;
253
255
  };
254
256
  };
257
+ '& .SCFeedObject-show-more': {
258
+ padding: any;
259
+ marginTop: any;
260
+ };
255
261
  };
256
262
  '& .SCFeedObject-actions-section': {
257
- marginBottom: any;
258
263
  '&:last-of-type': {
259
264
  marginBottom: number;
260
265
  };
@@ -327,6 +332,7 @@ declare const Component: {
327
332
  paddingBottom: number;
328
333
  '& .SCActivitiesMenu-selector': {
329
334
  '& .MuiButton-root': {
335
+ marginTop: any;
330
336
  fontSize: string;
331
337
  fontWeight: any;
332
338
  padding: any;
@@ -22,6 +22,7 @@ const Component = {
22
22
  height: theme.selfcommunity.user.avatar.sizeMedium
23
23
  },
24
24
  '& .SCFeedObject-header': {
25
+ paddingTop: theme.spacing(1),
25
26
  paddingBottom: 0,
26
27
  '& .MuiCardHeader-subheader': {
27
28
  display: 'flex',
@@ -86,7 +87,7 @@ const Component = {
86
87
  width: '100%',
87
88
  boxSizing: 'border-box',
88
89
  margin: 0,
89
- padding: theme.spacing(0.5, 2)
90
+ padding: theme.spacing(0.2, 2)
90
91
  },
91
92
  '& .SCFeedObject-info-section': {
92
93
  padding: theme.spacing(0, 2)
@@ -155,7 +156,8 @@ const Component = {
155
156
  '& .SCFeedObject-text-section': {
156
157
  overflowWrap: 'anywhere',
157
158
  '& > :first-of-type': {
158
- padding: theme.spacing(0, 2, 1),
159
+ marginBottom: 0,
160
+ padding: theme.spacing(0, 2, 0.5),
159
161
  display: 'block'
160
162
  },
161
163
  '& hr': {
@@ -254,22 +256,25 @@ const Component = {
254
256
  '& li': {
255
257
  margin: '0 32px'
256
258
  }
259
+ },
260
+ '& .SCFeedObject-show-more': {
261
+ padding: theme.spacing(0.5),
262
+ marginTop: theme.spacing(-0.5)
257
263
  }
258
264
  },
259
265
  '& .SCFeedObject-actions-section': {
260
- marginBottom: theme.spacing(1),
261
266
  '&:last-of-type': {
262
267
  marginBottom: 0
263
268
  },
264
269
  '& .SCFeedObjectActions-root': {
265
270
  margin: 0,
266
- padding: theme.spacing(0, 2, 0, 2),
271
+ padding: theme.spacing(0.2, 2, 0, 2),
267
272
  '& .SCFeedObjectActions-action': {
268
273
  marginTop: 'auto',
269
274
  '& .SCVoteAction-view-audience-button, & .SCCommentAction-view-audience-button, & .SCShareAction-view-audience-button, & .SCReactionAction-view-audience-button': {
270
275
  fontSize: '0.857rem',
271
276
  fontWeight: theme.typography.fontWeightRegular,
272
- marginTop: theme.spacing(1),
277
+ marginTop: theme.spacing(0),
273
278
  marginBottom: 0,
274
279
  color: theme.palette.primary.main,
275
280
  '&:hover': {
@@ -281,10 +286,10 @@ const Component = {
281
286
  },
282
287
  '& .SCVoteAction-button, & .SCCommentAction-button, & .SCShareAction-button, & .SCReactionAction-button': {
283
288
  color: theme.palette.primary.main,
284
- marginTop: theme.spacing(0.5),
289
+ marginTop: theme.spacing(-0.5),
285
290
  marginBottom: theme.spacing(0.5),
286
291
  borderRadius: '50%',
287
- padding: theme.spacing(1.5),
292
+ padding: theme.spacing(1),
288
293
  minWidth: 0,
289
294
  '& .MuiIcon-root': {
290
295
  fontSize: '1.57rem'
@@ -330,6 +335,7 @@ const Component = {
330
335
  paddingBottom: 0,
331
336
  '& .SCActivitiesMenu-selector': {
332
337
  '& .MuiButton-root': {
338
+ marginTop: theme.spacing(0.2),
333
339
  fontSize: '0.857rem',
334
340
  fontWeight: theme.typography.fontWeightRegular,
335
341
  padding: theme.spacing(1)
@@ -4,7 +4,7 @@ const Component = {
4
4
  styleOverrides: {
5
5
  root: ({ theme }) => ({
6
6
  '& .MuiCardContent-root': {
7
- padding: theme.spacing(2, 3, 2, 3)
7
+ padding: theme.spacing(2)
8
8
  },
9
9
  '& .SCLoyaltyProgramWidget-title': {
10
10
  fontWeight: theme.typography.fontWeightBold,
@@ -13,6 +13,7 @@ declare const Component: {
13
13
  };
14
14
  '.MuiBadge-badge': {
15
15
  right: any;
16
+ top: any;
16
17
  };
17
18
  };
18
19
  };
@@ -14,7 +14,8 @@ const Component = {
14
14
  height: `${theme.spacing(1.75)} !important`
15
15
  },
16
16
  '.MuiBadge-badge': {
17
- right: theme.spacing(0)
17
+ right: theme.spacing(0.2),
18
+ top: theme.spacing(0.9)
18
19
  }
19
20
  })
20
21
  }
@@ -39,7 +39,10 @@ declare const Component: {
39
39
  };
40
40
  '& .MuiList-root': {
41
41
  paddingTop: any;
42
- paddingBottom: any;
42
+ paddingBottom: number;
43
+ '& .MuiListItem-root:first-of-type': {
44
+ paddingTop: number;
45
+ };
43
46
  '& .MuiListItem-root': {
44
47
  paddingTop: any;
45
48
  paddingBottom: any;
@@ -58,9 +61,8 @@ declare const Component: {
58
61
  paddingTop: any;
59
62
  };
60
63
  '& > .MuiButton-sizeMedium': {
61
- marginLeft: any;
62
- paddingLeft: any;
63
- paddingRight: any;
64
+ marginTop: any;
65
+ padding: any;
64
66
  color: any;
65
67
  };
66
68
  };
@@ -29,7 +29,7 @@ const Component = {
29
29
  borderRadius: 0
30
30
  },
31
31
  '& .MuiCardContent-root': {
32
- padding: theme.spacing(3),
32
+ padding: theme.spacing(2.2),
33
33
  '& h5': {
34
34
  fontFamily: theme.typography.fontFamily,
35
35
  fontWeight: theme.typography.fontWeightBold,
@@ -38,7 +38,10 @@ const Component = {
38
38
  },
39
39
  '& .MuiList-root': {
40
40
  paddingTop: theme.spacing(2),
41
- paddingBottom: theme.spacing(2),
41
+ paddingBottom: 0,
42
+ '& .MuiListItem-root:first-of-type': {
43
+ paddingTop: 0
44
+ },
42
45
  '& .MuiListItem-root': {
43
46
  paddingTop: theme.spacing(1),
44
47
  paddingBottom: theme.spacing(1),
@@ -57,9 +60,8 @@ const Component = {
57
60
  paddingTop: theme.spacing(2)
58
61
  },
59
62
  '& > .MuiButton-sizeMedium': {
60
- marginLeft: theme.spacing(-2),
61
- paddingLeft: theme.spacing(2),
62
- paddingRight: theme.spacing(2),
63
+ marginTop: theme.spacing(1),
64
+ padding: theme.spacing(0),
63
65
  color: theme.palette.secondary.main
64
66
  }
65
67
  }
@@ -777,6 +777,7 @@ declare const theme: {
777
777
  };
778
778
  '& .SCBaseItem-text': {
779
779
  marginBottom: number;
780
+ marginTop: any;
780
781
  };
781
782
  };
782
783
  '& .SCCommentObject-nested-comments': {
@@ -922,6 +923,7 @@ declare const theme: {
922
923
  };
923
924
  };
924
925
  '& .SCBaseItem-image': {
926
+ marginTop: any;
925
927
  '& .MuiBadge-badge': {
926
928
  top: any;
927
929
  };
@@ -1019,8 +1021,28 @@ declare const theme: {
1019
1021
  SCCommentsObject: {
1020
1022
  styleOverrides: {
1021
1023
  root: ({ theme }: any) => {
1024
+ boxShadow: string;
1025
+ position: string;
1026
+ display: string;
1027
+ flexWrap: string;
1028
+ width: string;
1029
+ paddingBottom: any;
1030
+ '& .SCCommentsObject-load-more-comments-button': {
1031
+ textTransform: string;
1032
+ padding: any;
1033
+ };
1034
+ '& .SCCommentsObject-load-previous-comments-button': {
1035
+ textTransform: string;
1036
+ padding: any;
1037
+ };
1038
+ '& .SCCommentsObject-comments-counter': {
1039
+ paddingRight: any;
1040
+ };
1041
+ '& .SCCommentsObject-pagination-link': {
1042
+ display: string;
1043
+ };
1022
1044
  '& .SCCommentsObject-pagination': {
1023
- paddingBottom: any;
1045
+ width: string;
1024
1046
  '& button': {
1025
1047
  fontWeight: any;
1026
1048
  textDecoration: string;
@@ -1441,6 +1463,7 @@ declare const theme: {
1441
1463
  styleOverrides: {
1442
1464
  root: ({ theme }: any) => {
1443
1465
  '& .SCContributorsFeedObject-btn-participants': {
1466
+ padding: any;
1444
1467
  marginLeft: any;
1445
1468
  color: string;
1446
1469
  fontWeight: any;
@@ -1903,6 +1926,7 @@ declare const theme: {
1903
1926
  height: any;
1904
1927
  };
1905
1928
  '& .SCFeedObject-header': {
1929
+ paddingTop: any;
1906
1930
  paddingBottom: number;
1907
1931
  '& .MuiCardHeader-subheader': {
1908
1932
  display: string;
@@ -2036,6 +2060,7 @@ declare const theme: {
2036
2060
  '& .SCFeedObject-text-section': {
2037
2061
  overflowWrap: string;
2038
2062
  '& > :first-of-type': {
2063
+ marginBottom: number;
2039
2064
  padding: any;
2040
2065
  display: string;
2041
2066
  };
@@ -2136,9 +2161,12 @@ declare const theme: {
2136
2161
  margin: string;
2137
2162
  };
2138
2163
  };
2164
+ '& .SCFeedObject-show-more': {
2165
+ padding: any;
2166
+ marginTop: any;
2167
+ };
2139
2168
  };
2140
2169
  '& .SCFeedObject-actions-section': {
2141
- marginBottom: any;
2142
2170
  '&:last-of-type': {
2143
2171
  marginBottom: number;
2144
2172
  };
@@ -2160,9 +2188,6 @@ declare const theme: {
2160
2188
  '& .MuiDivider-root': {
2161
2189
  borderColor: any;
2162
2190
  };
2163
- /**
2164
- * Style fragments - Imports - End
2165
- */
2166
2191
  '& .SCVoteAction-button, & .SCCommentAction-button, & .SCShareAction-button, & .SCReactionAction-button': {
2167
2192
  color: any;
2168
2193
  marginTop: any;
@@ -2214,6 +2239,7 @@ declare const theme: {
2214
2239
  paddingBottom: number;
2215
2240
  '& .SCActivitiesMenu-selector': {
2216
2241
  '& .MuiButton-root': {
2242
+ marginTop: any;
2217
2243
  fontSize: string;
2218
2244
  fontWeight: any;
2219
2245
  padding: any;
@@ -3873,7 +3899,10 @@ declare const theme: {
3873
3899
  };
3874
3900
  '& .MuiList-root': {
3875
3901
  paddingTop: any;
3876
- paddingBottom: any;
3902
+ paddingBottom: number;
3903
+ '& .MuiListItem-root:first-of-type': {
3904
+ paddingTop: number;
3905
+ };
3877
3906
  '& .MuiListItem-root': {
3878
3907
  paddingTop: any;
3879
3908
  paddingBottom: any;
@@ -3892,9 +3921,8 @@ declare const theme: {
3892
3921
  paddingTop: any;
3893
3922
  };
3894
3923
  '& > .MuiButton-sizeMedium': {
3895
- marginLeft: any;
3896
- paddingLeft: any;
3897
- paddingRight: any;
3924
+ marginTop: any;
3925
+ padding: any;
3898
3926
  color: any;
3899
3927
  };
3900
3928
  };
@@ -4606,6 +4634,7 @@ declare const theme: {
4606
4634
  };
4607
4635
  '.MuiBadge-badge': {
4608
4636
  right: any;
4637
+ top: any;
4609
4638
  };
4610
4639
  };
4611
4640
  };
@@ -14,6 +14,7 @@ declare const Component: {
14
14
  };
15
15
  '& .SCBaseItem-text': {
16
16
  marginBottom: number;
17
+ marginTop: any;
17
18
  };
18
19
  };
19
20
  '& .SCCommentObject-nested-comments': {
@@ -14,7 +14,8 @@ const Component = {
14
14
  top: theme.spacing(1.5)
15
15
  },
16
16
  '& .SCBaseItem-text': {
17
- marginBottom: 0
17
+ marginBottom: 0,
18
+ marginTop: theme.spacing(0.2)
18
19
  }
19
20
  },
20
21
  '& .SCCommentObject-nested-comments': {
@@ -14,6 +14,7 @@ declare const Component: {
14
14
  };
15
15
  };
16
16
  '& .SCBaseItem-image': {
17
+ marginTop: any;
17
18
  '& .MuiBadge-badge': {
18
19
  top: any;
19
20
  };
@@ -14,6 +14,7 @@ const Component = {
14
14
  }
15
15
  },
16
16
  '& .SCBaseItem-image': {
17
+ marginTop: theme.spacing(0.2),
17
18
  '& .MuiBadge-badge': {
18
19
  top: theme.spacing(1.25)
19
20
  },
@@ -1,8 +1,28 @@
1
1
  declare const Component: {
2
2
  styleOverrides: {
3
3
  root: ({ theme }: any) => {
4
+ boxShadow: string;
5
+ position: string;
6
+ display: string;
7
+ flexWrap: string;
8
+ width: string;
9
+ paddingBottom: any;
10
+ '& .SCCommentsObject-load-more-comments-button': {
11
+ textTransform: string;
12
+ padding: any;
13
+ };
14
+ '& .SCCommentsObject-load-previous-comments-button': {
15
+ textTransform: string;
16
+ padding: any;
17
+ };
18
+ '& .SCCommentsObject-comments-counter': {
19
+ paddingRight: any;
20
+ };
21
+ '& .SCCommentsObject-pagination-link': {
22
+ display: string;
23
+ };
4
24
  '& .SCCommentsObject-pagination': {
5
- paddingBottom: any;
25
+ width: string;
6
26
  '& button': {
7
27
  fontWeight: any;
8
28
  textDecoration: string;
@@ -1,8 +1,28 @@
1
1
  const Component = {
2
2
  styleOverrides: {
3
3
  root: ({ theme }) => ({
4
+ boxShadow: 'none',
5
+ position: 'relative',
6
+ display: 'flex',
7
+ flexWrap: 'wrap',
8
+ width: '100%',
9
+ paddingBottom: theme.spacing(),
10
+ '& .SCCommentsObject-load-more-comments-button': {
11
+ textTransform: 'initial',
12
+ padding: theme.spacing()
13
+ },
14
+ '& .SCCommentsObject-load-previous-comments-button': {
15
+ textTransform: 'initial',
16
+ padding: theme.spacing()
17
+ },
18
+ '& .SCCommentsObject-comments-counter': {
19
+ paddingRight: theme.spacing()
20
+ },
21
+ '& .SCCommentsObject-pagination-link': {
22
+ display: 'none'
23
+ },
4
24
  '& .SCCommentsObject-pagination': {
5
- paddingBottom: theme.spacing(1),
25
+ width: '100%',
6
26
  '& button': {
7
27
  fontWeight: theme.typography.fontWeightLight,
8
28
  textDecoration: 'underline',
@@ -2,6 +2,7 @@ declare const Component: {
2
2
  styleOverrides: {
3
3
  root: ({ theme }: any) => {
4
4
  '& .SCContributorsFeedObject-btn-participants': {
5
+ padding: any;
5
6
  marginLeft: any;
6
7
  color: string;
7
8
  fontWeight: any;
@@ -2,7 +2,8 @@ const Component = {
2
2
  styleOverrides: {
3
3
  root: ({ theme }) => ({
4
4
  '& .SCContributorsFeedObject-btn-participants': {
5
- marginLeft: theme.spacing(-1),
5
+ padding: theme.spacing(0.5),
6
+ marginLeft: theme.spacing(-0.5),
6
7
  color: 'inherit',
7
8
  fontWeight: theme.typography.fontWeightLight,
8
9
  fontSize: '0.875rem'
@@ -19,6 +19,7 @@ declare const Component: {
19
19
  height: any;
20
20
  };
21
21
  '& .SCFeedObject-header': {
22
+ paddingTop: any;
22
23
  paddingBottom: number;
23
24
  '& .MuiCardHeader-subheader': {
24
25
  display: string;
@@ -152,6 +153,7 @@ declare const Component: {
152
153
  '& .SCFeedObject-text-section': {
153
154
  overflowWrap: string;
154
155
  '& > :first-of-type': {
156
+ marginBottom: number;
155
157
  padding: any;
156
158
  display: string;
157
159
  };
@@ -252,9 +254,12 @@ declare const Component: {
252
254
  margin: string;
253
255
  };
254
256
  };
257
+ '& .SCFeedObject-show-more': {
258
+ padding: any;
259
+ marginTop: any;
260
+ };
255
261
  };
256
262
  '& .SCFeedObject-actions-section': {
257
- marginBottom: any;
258
263
  '&:last-of-type': {
259
264
  marginBottom: number;
260
265
  };
@@ -327,6 +332,7 @@ declare const Component: {
327
332
  paddingBottom: number;
328
333
  '& .SCActivitiesMenu-selector': {
329
334
  '& .MuiButton-root': {
335
+ marginTop: any;
330
336
  fontSize: string;
331
337
  fontWeight: any;
332
338
  padding: any;