@selfcommunity/react-theme-default 0.4.5-alpha.0 → 0.4.5-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/SCFeedObject.d.ts +11 -0
- package/lib/cjs/components/SCFeedObject.js +12 -1
- package/lib/cjs/components/SCMediaFile.d.ts +0 -4
- package/lib/cjs/components/SCMediaFile.js +1 -5
- package/lib/cjs/index.d.ts +11 -4
- package/lib/esm/components/SCFeedObject.d.ts +11 -0
- package/lib/esm/components/SCFeedObject.js +12 -1
- package/lib/esm/components/SCMediaFile.d.ts +0 -4
- package/lib/esm/components/SCMediaFile.js +1 -5
- package/lib/esm/index.d.ts +11 -4
- package/lib/umd/react-theme-default.js +2 -2
- package/package.json +2 -2
|
@@ -308,8 +308,19 @@ declare const Component: {
|
|
|
308
308
|
};
|
|
309
309
|
'& span span': {
|
|
310
310
|
display: string;
|
|
311
|
+
};
|
|
312
|
+
'& span span:not(:has(+ a))': {
|
|
311
313
|
width: string;
|
|
312
314
|
};
|
|
315
|
+
'& span a': {
|
|
316
|
+
display: string;
|
|
317
|
+
margin: any;
|
|
318
|
+
};
|
|
319
|
+
'& span a:hover': {
|
|
320
|
+
'& span': {
|
|
321
|
+
textDecoration: string;
|
|
322
|
+
};
|
|
323
|
+
};
|
|
313
324
|
};
|
|
314
325
|
'& .SCFeedObject-medias-section': {
|
|
315
326
|
'& .SCFeedObjectMediaPreview-root': {
|
|
@@ -310,8 +310,19 @@ const Component = {
|
|
|
310
310
|
margin: '0 32px'
|
|
311
311
|
},
|
|
312
312
|
'& span span': {
|
|
313
|
-
display: 'inline-block'
|
|
313
|
+
display: 'inline-block'
|
|
314
|
+
},
|
|
315
|
+
'& span span:not(:has(+ a))': {
|
|
314
316
|
width: '100%'
|
|
317
|
+
},
|
|
318
|
+
'& span a': {
|
|
319
|
+
display: 'inline-block',
|
|
320
|
+
margin: theme.spacing(0, 0.3)
|
|
321
|
+
},
|
|
322
|
+
'& span a:hover': {
|
|
323
|
+
'& span': {
|
|
324
|
+
textDecoration: 'underline'
|
|
325
|
+
}
|
|
315
326
|
}
|
|
316
327
|
},
|
|
317
328
|
'& .SCFeedObject-medias-section': {
|
|
@@ -100,11 +100,7 @@ declare const Component: {
|
|
|
100
100
|
flexWrap: string;
|
|
101
101
|
maxWidth: string;
|
|
102
102
|
overflow: string;
|
|
103
|
-
MsOverflowStyle: string;
|
|
104
103
|
scrollbarWidth: string;
|
|
105
|
-
'&::-webkit-scrollbar': {
|
|
106
|
-
display: string;
|
|
107
|
-
};
|
|
108
104
|
'& .SCMediaFile-media': {
|
|
109
105
|
backgroundSize: string;
|
|
110
106
|
backgroundPosition: string;
|
|
@@ -102,11 +102,7 @@ const Component = {
|
|
|
102
102
|
flexWrap: 'nowrap',
|
|
103
103
|
maxWidth: '100%',
|
|
104
104
|
overflow: 'auto',
|
|
105
|
-
|
|
106
|
-
scrollbarWidth: 'none',
|
|
107
|
-
'&::-webkit-scrollbar': {
|
|
108
|
-
display: 'none'
|
|
109
|
-
},
|
|
105
|
+
scrollbarWidth: 'thin',
|
|
110
106
|
'& .SCMediaFile-media': {
|
|
111
107
|
backgroundSize: 'cover',
|
|
112
108
|
backgroundPosition: 'center',
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -2458,8 +2458,19 @@ declare const theme: {
|
|
|
2458
2458
|
};
|
|
2459
2459
|
'& span span': {
|
|
2460
2460
|
display: string;
|
|
2461
|
+
};
|
|
2462
|
+
'& span span:not(:has(+ a))': {
|
|
2461
2463
|
width: string;
|
|
2462
2464
|
};
|
|
2465
|
+
'& span a': {
|
|
2466
|
+
display: string;
|
|
2467
|
+
margin: any;
|
|
2468
|
+
};
|
|
2469
|
+
'& span a:hover': {
|
|
2470
|
+
'& span': {
|
|
2471
|
+
textDecoration: string;
|
|
2472
|
+
};
|
|
2473
|
+
};
|
|
2463
2474
|
};
|
|
2464
2475
|
'& .SCFeedObject-medias-section': {
|
|
2465
2476
|
'& .SCFeedObjectMediaPreview-root': {
|
|
@@ -4244,11 +4255,7 @@ declare const theme: {
|
|
|
4244
4255
|
flexWrap: string;
|
|
4245
4256
|
maxWidth: string;
|
|
4246
4257
|
overflow: string;
|
|
4247
|
-
MsOverflowStyle: string;
|
|
4248
4258
|
scrollbarWidth: string;
|
|
4249
|
-
'&::-webkit-scrollbar': {
|
|
4250
|
-
display: string;
|
|
4251
|
-
};
|
|
4252
4259
|
'& .SCMediaFile-media': {
|
|
4253
4260
|
backgroundSize: string;
|
|
4254
4261
|
backgroundPosition: string;
|
|
@@ -308,8 +308,19 @@ declare const Component: {
|
|
|
308
308
|
};
|
|
309
309
|
'& span span': {
|
|
310
310
|
display: string;
|
|
311
|
+
};
|
|
312
|
+
'& span span:not(:has(+ a))': {
|
|
311
313
|
width: string;
|
|
312
314
|
};
|
|
315
|
+
'& span a': {
|
|
316
|
+
display: string;
|
|
317
|
+
margin: any;
|
|
318
|
+
};
|
|
319
|
+
'& span a:hover': {
|
|
320
|
+
'& span': {
|
|
321
|
+
textDecoration: string;
|
|
322
|
+
};
|
|
323
|
+
};
|
|
313
324
|
};
|
|
314
325
|
'& .SCFeedObject-medias-section': {
|
|
315
326
|
'& .SCFeedObjectMediaPreview-root': {
|
|
@@ -308,8 +308,19 @@ const Component = {
|
|
|
308
308
|
margin: '0 32px'
|
|
309
309
|
},
|
|
310
310
|
'& span span': {
|
|
311
|
-
display: 'inline-block'
|
|
311
|
+
display: 'inline-block'
|
|
312
|
+
},
|
|
313
|
+
'& span span:not(:has(+ a))': {
|
|
312
314
|
width: '100%'
|
|
315
|
+
},
|
|
316
|
+
'& span a': {
|
|
317
|
+
display: 'inline-block',
|
|
318
|
+
margin: theme.spacing(0, 0.3)
|
|
319
|
+
},
|
|
320
|
+
'& span a:hover': {
|
|
321
|
+
'& span': {
|
|
322
|
+
textDecoration: 'underline'
|
|
323
|
+
}
|
|
313
324
|
}
|
|
314
325
|
},
|
|
315
326
|
'& .SCFeedObject-medias-section': {
|
|
@@ -100,11 +100,7 @@ declare const Component: {
|
|
|
100
100
|
flexWrap: string;
|
|
101
101
|
maxWidth: string;
|
|
102
102
|
overflow: string;
|
|
103
|
-
MsOverflowStyle: string;
|
|
104
103
|
scrollbarWidth: string;
|
|
105
|
-
'&::-webkit-scrollbar': {
|
|
106
|
-
display: string;
|
|
107
|
-
};
|
|
108
104
|
'& .SCMediaFile-media': {
|
|
109
105
|
backgroundSize: string;
|
|
110
106
|
backgroundPosition: string;
|
|
@@ -100,11 +100,7 @@ const Component = {
|
|
|
100
100
|
flexWrap: 'nowrap',
|
|
101
101
|
maxWidth: '100%',
|
|
102
102
|
overflow: 'auto',
|
|
103
|
-
|
|
104
|
-
scrollbarWidth: 'none',
|
|
105
|
-
'&::-webkit-scrollbar': {
|
|
106
|
-
display: 'none'
|
|
107
|
-
},
|
|
103
|
+
scrollbarWidth: 'thin',
|
|
108
104
|
'& .SCMediaFile-media': {
|
|
109
105
|
backgroundSize: 'cover',
|
|
110
106
|
backgroundPosition: 'center',
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -2458,8 +2458,19 @@ declare const theme: {
|
|
|
2458
2458
|
};
|
|
2459
2459
|
'& span span': {
|
|
2460
2460
|
display: string;
|
|
2461
|
+
};
|
|
2462
|
+
'& span span:not(:has(+ a))': {
|
|
2461
2463
|
width: string;
|
|
2462
2464
|
};
|
|
2465
|
+
'& span a': {
|
|
2466
|
+
display: string;
|
|
2467
|
+
margin: any;
|
|
2468
|
+
};
|
|
2469
|
+
'& span a:hover': {
|
|
2470
|
+
'& span': {
|
|
2471
|
+
textDecoration: string;
|
|
2472
|
+
};
|
|
2473
|
+
};
|
|
2463
2474
|
};
|
|
2464
2475
|
'& .SCFeedObject-medias-section': {
|
|
2465
2476
|
'& .SCFeedObjectMediaPreview-root': {
|
|
@@ -4244,11 +4255,7 @@ declare const theme: {
|
|
|
4244
4255
|
flexWrap: string;
|
|
4245
4256
|
maxWidth: string;
|
|
4246
4257
|
overflow: string;
|
|
4247
|
-
MsOverflowStyle: string;
|
|
4248
4258
|
scrollbarWidth: string;
|
|
4249
|
-
'&::-webkit-scrollbar': {
|
|
4250
|
-
display: string;
|
|
4251
|
-
};
|
|
4252
4259
|
'& .SCMediaFile-media': {
|
|
4253
4260
|
backgroundSize: string;
|
|
4254
4261
|
backgroundPosition: string;
|