@selfcommunity/react-theme-default 0.4.5-alpha.10 → 0.4.5-alpha.11
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 +18 -12
- package/lib/cjs/components/SCFeedObject.js +18 -12
- package/lib/cjs/index.d.ts +18 -12
- package/lib/esm/components/SCFeedObject.d.ts +18 -12
- package/lib/esm/components/SCFeedObject.js +18 -12
- package/lib/esm/index.d.ts +18 -12
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -306,19 +306,24 @@ declare const Component: {
|
|
|
306
306
|
'& li': {
|
|
307
307
|
margin: string;
|
|
308
308
|
};
|
|
309
|
-
'& span
|
|
310
|
-
display: string;
|
|
311
|
-
};
|
|
312
|
-
'& span span:not(:has(+ a))': {
|
|
313
|
-
width: string;
|
|
314
|
-
};
|
|
315
|
-
'& span a': {
|
|
316
|
-
display: string;
|
|
317
|
-
margin: any;
|
|
318
|
-
};
|
|
319
|
-
'& span a:hover': {
|
|
309
|
+
'& span': {
|
|
320
310
|
'& span': {
|
|
321
|
-
|
|
311
|
+
display: string;
|
|
312
|
+
};
|
|
313
|
+
'& span:not(:has(+ a))': {
|
|
314
|
+
width: string;
|
|
315
|
+
};
|
|
316
|
+
'& a': {
|
|
317
|
+
display: string;
|
|
318
|
+
margin: any;
|
|
319
|
+
};
|
|
320
|
+
'& a:hover': {
|
|
321
|
+
'& span': {
|
|
322
|
+
textDecoration: string;
|
|
323
|
+
};
|
|
324
|
+
};
|
|
325
|
+
'& :last-child': {
|
|
326
|
+
display: string;
|
|
322
327
|
};
|
|
323
328
|
};
|
|
324
329
|
};
|
|
@@ -331,6 +336,7 @@ declare const Component: {
|
|
|
331
336
|
fontSize: any;
|
|
332
337
|
fontWeight: any;
|
|
333
338
|
padding: any;
|
|
339
|
+
marginTop: number;
|
|
334
340
|
justifyContent: string;
|
|
335
341
|
'&:hover': {
|
|
336
342
|
backgroundColor: string;
|
|
@@ -309,19 +309,24 @@ const Component = {
|
|
|
309
309
|
'& li': {
|
|
310
310
|
margin: '0 32px'
|
|
311
311
|
},
|
|
312
|
-
'& span
|
|
313
|
-
display: 'inline'
|
|
314
|
-
},
|
|
315
|
-
'& span span:not(:has(+ a))': {
|
|
316
|
-
width: '100%'
|
|
317
|
-
},
|
|
318
|
-
'& span a': {
|
|
319
|
-
display: 'inline-block',
|
|
320
|
-
margin: theme.spacing(0, 0.3)
|
|
321
|
-
},
|
|
322
|
-
'& span a:hover': {
|
|
312
|
+
'& span': {
|
|
323
313
|
'& span': {
|
|
324
|
-
|
|
314
|
+
display: 'inline'
|
|
315
|
+
},
|
|
316
|
+
'& span:not(:has(+ a))': {
|
|
317
|
+
width: '100%'
|
|
318
|
+
},
|
|
319
|
+
'& a': {
|
|
320
|
+
display: 'inline-block',
|
|
321
|
+
margin: theme.spacing(0, 0.3)
|
|
322
|
+
},
|
|
323
|
+
'& a:hover': {
|
|
324
|
+
'& span': {
|
|
325
|
+
textDecoration: 'underline'
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
'& :last-child': {
|
|
329
|
+
display: 'inline'
|
|
325
330
|
}
|
|
326
331
|
}
|
|
327
332
|
},
|
|
@@ -334,6 +339,7 @@ const Component = {
|
|
|
334
339
|
fontSize: theme.typography.fontSize,
|
|
335
340
|
fontWeight: theme.typography.fontWeightBold,
|
|
336
341
|
padding: theme.spacing(0.25),
|
|
342
|
+
marginTop: -2,
|
|
337
343
|
justifyContent: 'start',
|
|
338
344
|
'&:hover': { backgroundColor: 'transparent' }
|
|
339
345
|
}
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -2484,19 +2484,24 @@ declare const theme: {
|
|
|
2484
2484
|
'& li': {
|
|
2485
2485
|
margin: string;
|
|
2486
2486
|
};
|
|
2487
|
-
'& span
|
|
2488
|
-
display: string;
|
|
2489
|
-
};
|
|
2490
|
-
'& span span:not(:has(+ a))': {
|
|
2491
|
-
width: string;
|
|
2492
|
-
};
|
|
2493
|
-
'& span a': {
|
|
2494
|
-
display: string;
|
|
2495
|
-
margin: any;
|
|
2496
|
-
};
|
|
2497
|
-
'& span a:hover': {
|
|
2487
|
+
'& span': {
|
|
2498
2488
|
'& span': {
|
|
2499
|
-
|
|
2489
|
+
display: string;
|
|
2490
|
+
};
|
|
2491
|
+
'& span:not(:has(+ a))': {
|
|
2492
|
+
width: string;
|
|
2493
|
+
};
|
|
2494
|
+
'& a': {
|
|
2495
|
+
display: string;
|
|
2496
|
+
margin: any;
|
|
2497
|
+
};
|
|
2498
|
+
'& a:hover': {
|
|
2499
|
+
'& span': {
|
|
2500
|
+
textDecoration: string;
|
|
2501
|
+
};
|
|
2502
|
+
};
|
|
2503
|
+
'& :last-child': {
|
|
2504
|
+
display: string;
|
|
2500
2505
|
};
|
|
2501
2506
|
};
|
|
2502
2507
|
};
|
|
@@ -2509,6 +2514,7 @@ declare const theme: {
|
|
|
2509
2514
|
fontSize: any;
|
|
2510
2515
|
fontWeight: any;
|
|
2511
2516
|
padding: any;
|
|
2517
|
+
marginTop: number;
|
|
2512
2518
|
justifyContent: string;
|
|
2513
2519
|
'&:hover': {
|
|
2514
2520
|
backgroundColor: string;
|
|
@@ -306,19 +306,24 @@ declare const Component: {
|
|
|
306
306
|
'& li': {
|
|
307
307
|
margin: string;
|
|
308
308
|
};
|
|
309
|
-
'& span
|
|
310
|
-
display: string;
|
|
311
|
-
};
|
|
312
|
-
'& span span:not(:has(+ a))': {
|
|
313
|
-
width: string;
|
|
314
|
-
};
|
|
315
|
-
'& span a': {
|
|
316
|
-
display: string;
|
|
317
|
-
margin: any;
|
|
318
|
-
};
|
|
319
|
-
'& span a:hover': {
|
|
309
|
+
'& span': {
|
|
320
310
|
'& span': {
|
|
321
|
-
|
|
311
|
+
display: string;
|
|
312
|
+
};
|
|
313
|
+
'& span:not(:has(+ a))': {
|
|
314
|
+
width: string;
|
|
315
|
+
};
|
|
316
|
+
'& a': {
|
|
317
|
+
display: string;
|
|
318
|
+
margin: any;
|
|
319
|
+
};
|
|
320
|
+
'& a:hover': {
|
|
321
|
+
'& span': {
|
|
322
|
+
textDecoration: string;
|
|
323
|
+
};
|
|
324
|
+
};
|
|
325
|
+
'& :last-child': {
|
|
326
|
+
display: string;
|
|
322
327
|
};
|
|
323
328
|
};
|
|
324
329
|
};
|
|
@@ -331,6 +336,7 @@ declare const Component: {
|
|
|
331
336
|
fontSize: any;
|
|
332
337
|
fontWeight: any;
|
|
333
338
|
padding: any;
|
|
339
|
+
marginTop: number;
|
|
334
340
|
justifyContent: string;
|
|
335
341
|
'&:hover': {
|
|
336
342
|
backgroundColor: string;
|
|
@@ -307,19 +307,24 @@ const Component = {
|
|
|
307
307
|
'& li': {
|
|
308
308
|
margin: '0 32px'
|
|
309
309
|
},
|
|
310
|
-
'& span
|
|
311
|
-
display: 'inline'
|
|
312
|
-
},
|
|
313
|
-
'& span span:not(:has(+ a))': {
|
|
314
|
-
width: '100%'
|
|
315
|
-
},
|
|
316
|
-
'& span a': {
|
|
317
|
-
display: 'inline-block',
|
|
318
|
-
margin: theme.spacing(0, 0.3)
|
|
319
|
-
},
|
|
320
|
-
'& span a:hover': {
|
|
310
|
+
'& span': {
|
|
321
311
|
'& span': {
|
|
322
|
-
|
|
312
|
+
display: 'inline'
|
|
313
|
+
},
|
|
314
|
+
'& span:not(:has(+ a))': {
|
|
315
|
+
width: '100%'
|
|
316
|
+
},
|
|
317
|
+
'& a': {
|
|
318
|
+
display: 'inline-block',
|
|
319
|
+
margin: theme.spacing(0, 0.3)
|
|
320
|
+
},
|
|
321
|
+
'& a:hover': {
|
|
322
|
+
'& span': {
|
|
323
|
+
textDecoration: 'underline'
|
|
324
|
+
}
|
|
325
|
+
},
|
|
326
|
+
'& :last-child': {
|
|
327
|
+
display: 'inline'
|
|
323
328
|
}
|
|
324
329
|
}
|
|
325
330
|
},
|
|
@@ -332,6 +337,7 @@ const Component = {
|
|
|
332
337
|
fontSize: theme.typography.fontSize,
|
|
333
338
|
fontWeight: theme.typography.fontWeightBold,
|
|
334
339
|
padding: theme.spacing(0.25),
|
|
340
|
+
marginTop: -2,
|
|
335
341
|
justifyContent: 'start',
|
|
336
342
|
'&:hover': { backgroundColor: 'transparent' }
|
|
337
343
|
}
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -2484,19 +2484,24 @@ declare const theme: {
|
|
|
2484
2484
|
'& li': {
|
|
2485
2485
|
margin: string;
|
|
2486
2486
|
};
|
|
2487
|
-
'& span
|
|
2488
|
-
display: string;
|
|
2489
|
-
};
|
|
2490
|
-
'& span span:not(:has(+ a))': {
|
|
2491
|
-
width: string;
|
|
2492
|
-
};
|
|
2493
|
-
'& span a': {
|
|
2494
|
-
display: string;
|
|
2495
|
-
margin: any;
|
|
2496
|
-
};
|
|
2497
|
-
'& span a:hover': {
|
|
2487
|
+
'& span': {
|
|
2498
2488
|
'& span': {
|
|
2499
|
-
|
|
2489
|
+
display: string;
|
|
2490
|
+
};
|
|
2491
|
+
'& span:not(:has(+ a))': {
|
|
2492
|
+
width: string;
|
|
2493
|
+
};
|
|
2494
|
+
'& a': {
|
|
2495
|
+
display: string;
|
|
2496
|
+
margin: any;
|
|
2497
|
+
};
|
|
2498
|
+
'& a:hover': {
|
|
2499
|
+
'& span': {
|
|
2500
|
+
textDecoration: string;
|
|
2501
|
+
};
|
|
2502
|
+
};
|
|
2503
|
+
'& :last-child': {
|
|
2504
|
+
display: string;
|
|
2500
2505
|
};
|
|
2501
2506
|
};
|
|
2502
2507
|
};
|
|
@@ -2509,6 +2514,7 @@ declare const theme: {
|
|
|
2509
2514
|
fontSize: any;
|
|
2510
2515
|
fontWeight: any;
|
|
2511
2516
|
padding: any;
|
|
2517
|
+
marginTop: number;
|
|
2512
2518
|
justifyContent: string;
|
|
2513
2519
|
'&:hover': {
|
|
2514
2520
|
backgroundColor: string;
|