@selfcommunity/react-theme-default 0.1.0-alpha.67 → 0.1.0-alpha.69
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/MuiButton.d.ts +12 -0
- package/lib/cjs/components/MuiButton.d.ts.map +1 -1
- package/lib/cjs/components/MuiButton.js +4 -1
- package/lib/cjs/components/MuiButton.js.map +1 -1
- package/lib/cjs/components/SCCommentNotification.d.ts +30 -0
- package/lib/cjs/components/SCCommentNotification.d.ts.map +1 -0
- package/lib/cjs/components/SCCommentNotification.js +32 -0
- package/lib/cjs/components/SCCommentNotification.js.map +1 -0
- package/lib/cjs/components/SCContributionNotification.d.ts +21 -0
- package/lib/cjs/components/SCContributionNotification.d.ts.map +1 -1
- package/lib/cjs/components/SCContributionNotification.js +21 -0
- package/lib/cjs/components/SCContributionNotification.js.map +1 -1
- package/lib/cjs/components/SCDateTimeAgo.d.ts +1 -0
- package/lib/cjs/components/SCDateTimeAgo.d.ts.map +1 -1
- package/lib/cjs/components/SCDateTimeAgo.js +1 -0
- package/lib/cjs/components/SCDateTimeAgo.js.map +1 -1
- package/lib/cjs/components/SCFeedSkeleton.d.ts +0 -1
- package/lib/cjs/components/SCFeedSkeleton.d.ts.map +1 -1
- package/lib/cjs/components/SCFeedSkeleton.js +0 -1
- package/lib/cjs/components/SCFeedSkeleton.js.map +1 -1
- package/lib/cjs/components/SCNotification.d.ts +4 -1
- package/lib/cjs/components/SCNotification.d.ts.map +1 -1
- package/lib/cjs/components/SCNotification.js +4 -1
- package/lib/cjs/components/SCNotification.js.map +1 -1
- package/lib/cjs/components/SCNotificationItem.d.ts +9 -9
- package/lib/cjs/components/SCNotificationItem.js +9 -9
- package/lib/cjs/components/SCNotificationItem.js.map +1 -1
- package/lib/cjs/index.d.ts +78 -48
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js +2 -2
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/components/MuiButton.d.ts +12 -0
- package/lib/esm/components/MuiButton.d.ts.map +1 -1
- package/lib/esm/components/MuiButton.js +4 -1
- package/lib/esm/components/MuiButton.js.map +1 -1
- package/lib/esm/components/SCCommentNotification.d.ts +30 -0
- package/lib/esm/components/SCCommentNotification.d.ts.map +1 -0
- package/lib/esm/components/SCCommentNotification.js +30 -0
- package/lib/esm/components/SCCommentNotification.js.map +1 -0
- package/lib/esm/components/SCContributionNotification.d.ts +21 -0
- package/lib/esm/components/SCContributionNotification.d.ts.map +1 -1
- package/lib/esm/components/SCContributionNotification.js +21 -0
- package/lib/esm/components/SCContributionNotification.js.map +1 -1
- package/lib/esm/components/SCDateTimeAgo.d.ts +1 -0
- package/lib/esm/components/SCDateTimeAgo.d.ts.map +1 -1
- package/lib/esm/components/SCDateTimeAgo.js +1 -0
- package/lib/esm/components/SCDateTimeAgo.js.map +1 -1
- package/lib/esm/components/SCFeedSkeleton.d.ts +0 -1
- package/lib/esm/components/SCFeedSkeleton.d.ts.map +1 -1
- package/lib/esm/components/SCFeedSkeleton.js +0 -1
- package/lib/esm/components/SCFeedSkeleton.js.map +1 -1
- package/lib/esm/components/SCNotification.d.ts +4 -1
- package/lib/esm/components/SCNotification.d.ts.map +1 -1
- package/lib/esm/components/SCNotification.js +4 -1
- package/lib/esm/components/SCNotification.js.map +1 -1
- package/lib/esm/components/SCNotificationItem.d.ts +9 -9
- package/lib/esm/components/SCNotificationItem.js +9 -9
- package/lib/esm/components/SCNotificationItem.js.map +1 -1
- package/lib/esm/index.d.ts +78 -48
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js +2 -2
- package/lib/esm/index.js.map +1 -1
- package/lib/umd/react-theme-default.js +8 -8
- package/lib/umd/react-theme-default.js.map +1 -1
- package/package.json +4 -4
- package/lib/cjs/components/SCUserNotification.d.ts +0 -33
- package/lib/cjs/components/SCUserNotification.d.ts.map +0 -1
- package/lib/cjs/components/SCUserNotification.js +0 -35
- package/lib/cjs/components/SCUserNotification.js.map +0 -1
- package/lib/esm/components/SCUserNotification.d.ts +0 -33
- package/lib/esm/components/SCUserNotification.d.ts.map +0 -1
- package/lib/esm/components/SCUserNotification.js +0 -33
- package/lib/esm/components/SCUserNotification.js.map +0 -1
package/lib/esm/index.d.ts
CHANGED
|
@@ -62,6 +62,9 @@ declare const theme: {
|
|
|
62
62
|
};
|
|
63
63
|
style: {
|
|
64
64
|
borderWidth: number;
|
|
65
|
+
'&:hover, &:active': {
|
|
66
|
+
borderWidth: number;
|
|
67
|
+
};
|
|
65
68
|
};
|
|
66
69
|
} | {
|
|
67
70
|
props: {
|
|
@@ -69,6 +72,15 @@ declare const theme: {
|
|
|
69
72
|
};
|
|
70
73
|
style: {
|
|
71
74
|
borderWidth?: undefined;
|
|
75
|
+
'&:hover, &:active'?: undefined;
|
|
76
|
+
};
|
|
77
|
+
} | {
|
|
78
|
+
props: {
|
|
79
|
+
variant: string;
|
|
80
|
+
};
|
|
81
|
+
style: {
|
|
82
|
+
borderWidth: number;
|
|
83
|
+
'&:hover, &:active'?: undefined;
|
|
72
84
|
};
|
|
73
85
|
})[];
|
|
74
86
|
styleOverrides: {
|
|
@@ -404,6 +416,34 @@ declare const theme: {
|
|
|
404
416
|
};
|
|
405
417
|
};
|
|
406
418
|
};
|
|
419
|
+
SCCommentNotification: {
|
|
420
|
+
styleOverrides: {
|
|
421
|
+
root: ({ theme }: any) => {
|
|
422
|
+
'& .SCCommentNotification-username': {
|
|
423
|
+
fontWeight: any;
|
|
424
|
+
'&:hover': {
|
|
425
|
+
textDecoration: string;
|
|
426
|
+
};
|
|
427
|
+
};
|
|
428
|
+
'& .SCCommentNotification-vote-button': {
|
|
429
|
+
color: string;
|
|
430
|
+
padding: any;
|
|
431
|
+
fontSize: string;
|
|
432
|
+
minWidth: number;
|
|
433
|
+
borderRadius: string;
|
|
434
|
+
};
|
|
435
|
+
'& .SCCommentNotification-contribution-text': {
|
|
436
|
+
color: any;
|
|
437
|
+
textOverflow: string;
|
|
438
|
+
display: string;
|
|
439
|
+
overflow: string;
|
|
440
|
+
'&:hover': {
|
|
441
|
+
textDecoration: string;
|
|
442
|
+
};
|
|
443
|
+
};
|
|
444
|
+
};
|
|
445
|
+
};
|
|
446
|
+
};
|
|
407
447
|
SCCommentObject: {
|
|
408
448
|
styleOverrides: {
|
|
409
449
|
root: ({ theme }: any) => {
|
|
@@ -792,6 +832,27 @@ declare const theme: {
|
|
|
792
832
|
SCContributionNotification: {
|
|
793
833
|
styleOverrides: {
|
|
794
834
|
root: ({ theme }: any) => {
|
|
835
|
+
'& .SCContributionNotification-username': {
|
|
836
|
+
fontWeight: any;
|
|
837
|
+
'&:hover': {
|
|
838
|
+
textDecoration: string;
|
|
839
|
+
};
|
|
840
|
+
};
|
|
841
|
+
'& .SCContributionNotification-vote-button': {
|
|
842
|
+
color: string;
|
|
843
|
+
padding: any;
|
|
844
|
+
fontSize: string;
|
|
845
|
+
minWidth: number;
|
|
846
|
+
borderRadius: string;
|
|
847
|
+
};
|
|
848
|
+
'& .SCContributionNotification-contribution-text': {
|
|
849
|
+
color: any;
|
|
850
|
+
textOverflow: string;
|
|
851
|
+
overflow: string;
|
|
852
|
+
'&:hover': {
|
|
853
|
+
textDecoration: string;
|
|
854
|
+
};
|
|
855
|
+
};
|
|
795
856
|
'& .SCNotificationItem-root .SCNotificationItem-header .SCNotificationItem-secondary': {
|
|
796
857
|
marginTop: any;
|
|
797
858
|
'& .SCDateTimeAgo-root': {
|
|
@@ -829,6 +890,7 @@ declare const theme: {
|
|
|
829
890
|
SCDateTimeAgo: {
|
|
830
891
|
styleOverrides: {
|
|
831
892
|
root: ({ theme }: any) => {
|
|
893
|
+
color: string;
|
|
832
894
|
'& .MuiIcon-root': {
|
|
833
895
|
fontSize: string;
|
|
834
896
|
lineHeight: string;
|
|
@@ -856,9 +918,6 @@ declare const theme: {
|
|
|
856
918
|
styleOverrides: {
|
|
857
919
|
root: ({ theme }: any) => {
|
|
858
920
|
maxWidth: any;
|
|
859
|
-
/**
|
|
860
|
-
* Style fragments - Imports - Start
|
|
861
|
-
*/
|
|
862
921
|
'& .SCFeed-left': {
|
|
863
922
|
[x: number]: {
|
|
864
923
|
padding: any;
|
|
@@ -1029,6 +1088,9 @@ declare const theme: {
|
|
|
1029
1088
|
};
|
|
1030
1089
|
};
|
|
1031
1090
|
'& .SCCommentObjectSkeleton-root': {
|
|
1091
|
+
/**
|
|
1092
|
+
* Style fragments - Imports - End
|
|
1093
|
+
*/
|
|
1032
1094
|
background: string;
|
|
1033
1095
|
marginTop: number;
|
|
1034
1096
|
marginBottom: string;
|
|
@@ -1166,7 +1228,6 @@ declare const theme: {
|
|
|
1166
1228
|
SCFeedSkeleton: {
|
|
1167
1229
|
styleOverrides: {
|
|
1168
1230
|
root: ({ theme }: any) => {
|
|
1169
|
-
marginTop: any;
|
|
1170
1231
|
maxWidth: any;
|
|
1171
1232
|
'& .SCFeedSkeleton-left': {
|
|
1172
1233
|
padding: any;
|
|
@@ -1355,6 +1416,9 @@ declare const theme: {
|
|
|
1355
1416
|
width: any;
|
|
1356
1417
|
height: any;
|
|
1357
1418
|
};
|
|
1419
|
+
'& .SCNotification-username': {
|
|
1420
|
+
fontWeight: any;
|
|
1421
|
+
};
|
|
1358
1422
|
};
|
|
1359
1423
|
'& .SCNotification-content': {
|
|
1360
1424
|
padding: number;
|
|
@@ -1377,7 +1441,7 @@ declare const theme: {
|
|
|
1377
1441
|
borderRadius: number;
|
|
1378
1442
|
};
|
|
1379
1443
|
};
|
|
1380
|
-
'& a': {
|
|
1444
|
+
'& a:not(.MuiButton-root)': {
|
|
1381
1445
|
textDecoration: string;
|
|
1382
1446
|
color: any;
|
|
1383
1447
|
'&:hover, &:active': {
|
|
@@ -1391,13 +1455,7 @@ declare const theme: {
|
|
|
1391
1455
|
SCNotificationItem: {
|
|
1392
1456
|
styleOverrides: {
|
|
1393
1457
|
root: ({ theme }: any) => {
|
|
1394
|
-
|
|
1395
|
-
color: any;
|
|
1396
|
-
textDecoration: string;
|
|
1397
|
-
'&:hover, &:active': {
|
|
1398
|
-
textDecoration: string;
|
|
1399
|
-
};
|
|
1400
|
-
};
|
|
1458
|
+
whiteSpace: string;
|
|
1401
1459
|
'& .SCNotificationItem-header': {
|
|
1402
1460
|
display: string;
|
|
1403
1461
|
flexDirection: string;
|
|
@@ -1407,10 +1465,16 @@ declare const theme: {
|
|
|
1407
1465
|
fontWeight: any;
|
|
1408
1466
|
};
|
|
1409
1467
|
};
|
|
1410
|
-
'& .SCNotificationItem-secondary
|
|
1411
|
-
|
|
1468
|
+
'& .SCNotificationItem-secondary': {
|
|
1469
|
+
'& .SCDateTimeAgo-root, & .MuiStack-root': {
|
|
1470
|
+
color: any;
|
|
1471
|
+
minHeight: any;
|
|
1472
|
+
};
|
|
1412
1473
|
};
|
|
1413
1474
|
};
|
|
1475
|
+
'& .SCNotificationItem-actions': {
|
|
1476
|
+
color: any;
|
|
1477
|
+
};
|
|
1414
1478
|
'&.SCNotificationItem-toast': {
|
|
1415
1479
|
backgroundColor: string;
|
|
1416
1480
|
borderRadius: number;
|
|
@@ -1567,9 +1631,6 @@ declare const theme: {
|
|
|
1567
1631
|
};
|
|
1568
1632
|
};
|
|
1569
1633
|
maxWidth: any;
|
|
1570
|
-
/**
|
|
1571
|
-
* Style fragments - Imports - Start
|
|
1572
|
-
*/
|
|
1573
1634
|
maxHeight: any;
|
|
1574
1635
|
' .MuiPaper-root, MuiAppBar-root': {
|
|
1575
1636
|
boxShadow: string;
|
|
@@ -1755,37 +1816,6 @@ declare const theme: {
|
|
|
1755
1816
|
};
|
|
1756
1817
|
};
|
|
1757
1818
|
};
|
|
1758
|
-
SCUserNotification: {
|
|
1759
|
-
styleOverrides: {
|
|
1760
|
-
root: ({ theme }: any) => {
|
|
1761
|
-
'& .SCNotificationItem-primary': {
|
|
1762
|
-
color: any;
|
|
1763
|
-
'& a': {
|
|
1764
|
-
'&:hover': {
|
|
1765
|
-
color: any;
|
|
1766
|
-
textDecoration: string;
|
|
1767
|
-
};
|
|
1768
|
-
};
|
|
1769
|
-
};
|
|
1770
|
-
'& .SCUserNotification-username': {
|
|
1771
|
-
'&:hover': {
|
|
1772
|
-
textDecoration: string;
|
|
1773
|
-
};
|
|
1774
|
-
};
|
|
1775
|
-
'& .SCUserNotificationPrivateMessage-reply-button': {
|
|
1776
|
-
color: any;
|
|
1777
|
-
'&:hover': {
|
|
1778
|
-
color: string;
|
|
1779
|
-
};
|
|
1780
|
-
};
|
|
1781
|
-
'& .SCCommentNotification-vote-button': {
|
|
1782
|
-
'& > span': {
|
|
1783
|
-
fontSize: string;
|
|
1784
|
-
};
|
|
1785
|
-
};
|
|
1786
|
-
};
|
|
1787
|
-
};
|
|
1788
|
-
};
|
|
1789
1819
|
SCUserProfileHeader: {
|
|
1790
1820
|
styleOverrides: {
|
|
1791
1821
|
root: ({ theme }: any) => {
|
package/lib/esm/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AAAA,OAAO,oBAAoB,CAAC;AAC5B,OAAO,6BAA6B,CAAC;AAmFrC;;GAEG;AAEH,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAJX;;mCAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2IF,CAAC;AACF,eAAe,KAAK,CAAC"}
|
package/lib/esm/index.js
CHANGED
|
@@ -11,7 +11,6 @@ import SCCommentsObject from './components/SCCommentsObject';
|
|
|
11
11
|
import SCCommentsFeedObject from './components/SCCommentsFeedObject';
|
|
12
12
|
import SCComposer from './components/SCComposer';
|
|
13
13
|
import SCBroadcastMessages from './components/SCBroadcastMessages';
|
|
14
|
-
import SCUserNotification from './components/SCUserNotification';
|
|
15
14
|
import SCSnippetNotifications from './components/SCSnippetNotifications';
|
|
16
15
|
import SCScrollContainer from './components/SCScrollContainer';
|
|
17
16
|
import SCFeedObject from './components/SCFeedObject';
|
|
@@ -80,6 +79,7 @@ import SCCommentObjectReactions from './components/SCCommentObjectReactions';
|
|
|
80
79
|
import SCCommentObjectVotes from './components/SCCommentObjectVotes';
|
|
81
80
|
import SCActivitiesMenu from './components/SCActivitiesMenu';
|
|
82
81
|
import MuiTooltip from './components/MuiTooltip';
|
|
82
|
+
import SCCommentNotification from './components/SCCommentNotification';
|
|
83
83
|
/**
|
|
84
84
|
* Style fragments - Imports - End
|
|
85
85
|
*/
|
|
@@ -154,6 +154,7 @@ const theme = {
|
|
|
154
154
|
SCCategoryTemplateSkeleton,
|
|
155
155
|
SCChoices,
|
|
156
156
|
SCCommentAction,
|
|
157
|
+
SCCommentNotification,
|
|
157
158
|
SCCommentObject,
|
|
158
159
|
SCCommentObjectReactions,
|
|
159
160
|
SCCommentObjectSkeleton,
|
|
@@ -195,7 +196,6 @@ const theme = {
|
|
|
195
196
|
SCSnippetNotifications,
|
|
196
197
|
SCSnippetNotificationsSkeleton,
|
|
197
198
|
SCUser,
|
|
198
|
-
SCUserNotification,
|
|
199
199
|
SCUserProfileHeader,
|
|
200
200
|
SCUserProfileTemplate,
|
|
201
201
|
SCVoteAction,
|
package/lib/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
|