@selfcommunity/react-theme-default 0.4.5-alpha.2 → 0.4.5-alpha.3
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 +1 -0
- package/lib/cjs/components/SCFeedObject.js +3 -2
- package/lib/cjs/index.d.ts +1 -3
- package/lib/esm/components/SCFeedObject.d.ts +1 -0
- package/lib/esm/components/SCFeedObject.js +3 -2
- package/lib/esm/index.d.ts +1 -3
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -72,12 +72,13 @@ const Component = {
|
|
|
72
72
|
},
|
|
73
73
|
'& .SCFeedObject-group, & .SCFeedObject-event': {
|
|
74
74
|
justifyContent: 'flex-start',
|
|
75
|
-
padding: theme.spacing(0.
|
|
75
|
+
padding: theme.spacing(0.4, 0.5),
|
|
76
76
|
height: 20,
|
|
77
77
|
'& a': {
|
|
78
78
|
padding: theme.spacing(0.5),
|
|
79
79
|
marginBottom: theme.spacing(0.5),
|
|
80
80
|
color: theme.palette.common.white,
|
|
81
|
+
maxHeight: 20,
|
|
81
82
|
'&:hover': {
|
|
82
83
|
backgroundColor: theme.palette.common.black
|
|
83
84
|
},
|
|
@@ -87,7 +88,7 @@ const Component = {
|
|
|
87
88
|
}
|
|
88
89
|
},
|
|
89
90
|
borderBottom: '1px solid rgba(221, 221, 221, 1)',
|
|
90
|
-
margin: theme.spacing(
|
|
91
|
+
margin: theme.spacing(0.5, 2, 0, 2)
|
|
91
92
|
},
|
|
92
93
|
'& .SCFeedObject-content': {
|
|
93
94
|
padding: theme.spacing(1, 0, 0, 0),
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -2225,6 +2225,7 @@ declare const theme: {
|
|
|
2225
2225
|
padding: any;
|
|
2226
2226
|
marginBottom: any;
|
|
2227
2227
|
color: any;
|
|
2228
|
+
maxHeight: number;
|
|
2228
2229
|
'&:hover': {
|
|
2229
2230
|
backgroundColor: any;
|
|
2230
2231
|
};
|
|
@@ -2527,9 +2528,6 @@ declare const theme: {
|
|
|
2527
2528
|
};
|
|
2528
2529
|
};
|
|
2529
2530
|
'& .SCFeedObject-reply-content': {
|
|
2530
|
-
/**
|
|
2531
|
-
* Export default theme
|
|
2532
|
-
*/
|
|
2533
2531
|
marginLeft: number;
|
|
2534
2532
|
background: string;
|
|
2535
2533
|
'& .SCCommentObjectReply-root': {
|
|
@@ -70,12 +70,13 @@ const Component = {
|
|
|
70
70
|
},
|
|
71
71
|
'& .SCFeedObject-group, & .SCFeedObject-event': {
|
|
72
72
|
justifyContent: 'flex-start',
|
|
73
|
-
padding: theme.spacing(0.
|
|
73
|
+
padding: theme.spacing(0.4, 0.5),
|
|
74
74
|
height: 20,
|
|
75
75
|
'& a': {
|
|
76
76
|
padding: theme.spacing(0.5),
|
|
77
77
|
marginBottom: theme.spacing(0.5),
|
|
78
78
|
color: theme.palette.common.white,
|
|
79
|
+
maxHeight: 20,
|
|
79
80
|
'&:hover': {
|
|
80
81
|
backgroundColor: theme.palette.common.black
|
|
81
82
|
},
|
|
@@ -85,7 +86,7 @@ const Component = {
|
|
|
85
86
|
}
|
|
86
87
|
},
|
|
87
88
|
borderBottom: '1px solid rgba(221, 221, 221, 1)',
|
|
88
|
-
margin: theme.spacing(
|
|
89
|
+
margin: theme.spacing(0.5, 2, 0, 2)
|
|
89
90
|
},
|
|
90
91
|
'& .SCFeedObject-content': {
|
|
91
92
|
padding: theme.spacing(1, 0, 0, 0),
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -2225,6 +2225,7 @@ declare const theme: {
|
|
|
2225
2225
|
padding: any;
|
|
2226
2226
|
marginBottom: any;
|
|
2227
2227
|
color: any;
|
|
2228
|
+
maxHeight: number;
|
|
2228
2229
|
'&:hover': {
|
|
2229
2230
|
backgroundColor: any;
|
|
2230
2231
|
};
|
|
@@ -2527,9 +2528,6 @@ declare const theme: {
|
|
|
2527
2528
|
};
|
|
2528
2529
|
};
|
|
2529
2530
|
'& .SCFeedObject-reply-content': {
|
|
2530
|
-
/**
|
|
2531
|
-
* Export default theme
|
|
2532
|
-
*/
|
|
2533
2531
|
marginLeft: number;
|
|
2534
2532
|
background: string;
|
|
2535
2533
|
'& .SCCommentObjectReply-root': {
|