@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
|
@@ -5,6 +5,9 @@ declare const Component: {
|
|
|
5
5
|
};
|
|
6
6
|
style: {
|
|
7
7
|
borderWidth: number;
|
|
8
|
+
'&:hover, &:active': {
|
|
9
|
+
borderWidth: number;
|
|
10
|
+
};
|
|
8
11
|
};
|
|
9
12
|
} | {
|
|
10
13
|
props: {
|
|
@@ -12,6 +15,15 @@ declare const Component: {
|
|
|
12
15
|
};
|
|
13
16
|
style: {
|
|
14
17
|
borderWidth?: undefined;
|
|
18
|
+
'&:hover, &:active'?: undefined;
|
|
19
|
+
};
|
|
20
|
+
} | {
|
|
21
|
+
props: {
|
|
22
|
+
variant: string;
|
|
23
|
+
};
|
|
24
|
+
style: {
|
|
25
|
+
borderWidth: number;
|
|
26
|
+
'&:hover, &:active'?: undefined;
|
|
15
27
|
};
|
|
16
28
|
})[];
|
|
17
29
|
styleOverrides: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MuiButton.d.ts","sourceRoot":"","sources":["../../../src/components/MuiButton.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"MuiButton.d.ts","sourceRoot":"","sources":["../../../src/components/MuiButton.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAuBK,GAAG;;;;;;;;;;;;;;;;;;;;CAoBtB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MuiButton.js","sourceRoot":"","sources":["../../../src/components/MuiButton.tsx"],"names":[],"mappings":";;AAAA,MAAM,SAAS,GAAG;IAChB,QAAQ,EAAE;QACR;YACE,KAAK,EAAE,EAAC,OAAO,EAAE,UAAU,EAAC;YAC5B,KAAK,EAAE;gBACL,WAAW,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"MuiButton.js","sourceRoot":"","sources":["../../../src/components/MuiButton.tsx"],"names":[],"mappings":";;AAAA,MAAM,SAAS,GAAG;IAChB,QAAQ,EAAE;QACR;YACE,KAAK,EAAE,EAAC,OAAO,EAAE,UAAU,EAAC;YAC5B,KAAK,EAAE;gBACL,WAAW,EAAE,CAAC;gBACd,mBAAmB,EAAE;oBACnB,WAAW,EAAE,CAAC;iBACf;aACF;SACF;QACD;YACE,KAAK,EAAE,EAAC,OAAO,EAAE,WAAW,EAAC;YAC7B,KAAK,EAAE,EAAE;SACV;QACD;YACE,KAAK,EAAE,EAAC,OAAO,EAAE,MAAM,EAAC;YACxB,KAAK,EAAE;gBACL,WAAW,EAAE,CAAC;aACf;SACF;KACF;IACD,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,aAAa,EAAE,SAAS;YACxB,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC,iBAAiB;YAC9C,OAAO,EAAE,WAAW;YACpB,UAAU,EAAE,GAAG;YACf,YAAY,EAAE,KAAK,CAAC,KAAK,CAAC,YAAY;SACvC,CAAC;QACF,SAAS,EAAE;YACT,QAAQ,EAAE,UAAU;YACpB,OAAO,EAAE,UAAU;SACpB;QACD,UAAU,EAAE;YACV,QAAQ,EAAE,OAAO;YACjB,OAAO,EAAE,WAAW;SACrB;QACD,SAAS,EAAE;YACT,QAAQ,EAAE,UAAU;YACpB,OAAO,EAAE,WAAW;SACrB;KACF;CACF,CAAC;AAEF,kBAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const Component: {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }: any) => {
|
|
4
|
+
'& .SCCommentNotification-username': {
|
|
5
|
+
fontWeight: any;
|
|
6
|
+
'&:hover': {
|
|
7
|
+
textDecoration: string;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
'& .SCCommentNotification-vote-button': {
|
|
11
|
+
color: string;
|
|
12
|
+
padding: any;
|
|
13
|
+
fontSize: string;
|
|
14
|
+
minWidth: number;
|
|
15
|
+
borderRadius: string;
|
|
16
|
+
};
|
|
17
|
+
'& .SCCommentNotification-contribution-text': {
|
|
18
|
+
color: any;
|
|
19
|
+
textOverflow: string;
|
|
20
|
+
display: string;
|
|
21
|
+
overflow: string;
|
|
22
|
+
'&:hover': {
|
|
23
|
+
textDecoration: string;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
export default Component;
|
|
30
|
+
//# sourceMappingURL=SCCommentNotification.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SCCommentNotification.d.ts","sourceRoot":"","sources":["../../../src/components/SCCommentNotification.tsx"],"names":[],"mappings":"AAEA,QAAA,MAAM,SAAS;;0BAEK,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;CAyBtB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const Component = {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: ({ theme }) => ({
|
|
6
|
+
'& .SCCommentNotification-username': {
|
|
7
|
+
fontWeight: theme.typography.fontWeightBold,
|
|
8
|
+
'&:hover': {
|
|
9
|
+
textDecoration: 'underline'
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
'& .SCCommentNotification-vote-button': {
|
|
13
|
+
color: 'inherit',
|
|
14
|
+
padding: theme.spacing(1),
|
|
15
|
+
fontSize: '1.143rem',
|
|
16
|
+
minWidth: 0,
|
|
17
|
+
borderRadius: '50%'
|
|
18
|
+
},
|
|
19
|
+
'& .SCCommentNotification-contribution-text': {
|
|
20
|
+
color: theme.palette.text.primary,
|
|
21
|
+
textOverflow: 'ellipsis',
|
|
22
|
+
display: 'inline',
|
|
23
|
+
overflow: 'hidden',
|
|
24
|
+
'&:hover': {
|
|
25
|
+
textDecoration: 'underline'
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
})
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
exports.default = Component;
|
|
32
|
+
//# sourceMappingURL=SCCommentNotification.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SCCommentNotification.js","sourceRoot":"","sources":["../../../src/components/SCCommentNotification.tsx"],"names":[],"mappings":";;AAEA,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,mCAAmC,EAAE;gBACnC,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc;gBAC3C,SAAS,EAAE;oBACT,cAAc,EAAE,WAAW;iBAC5B;aACF;YACD,sCAAsC,EAAE;gBACtC,KAAK,EAAE,SAAS;gBAChB,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;gBACzB,QAAQ,EAAE,UAAU;gBACpB,QAAQ,EAAE,CAAC;gBACX,YAAY,EAAE,KAAK;aACpB;YACD,4CAA4C,EAAE;gBAC5C,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO;gBACjC,YAAY,EAAE,UAAU;gBACxB,OAAO,EAAE,QAAQ;gBACjB,QAAQ,EAAE,QAAQ;gBAClB,SAAS,EAAE;oBACT,cAAc,EAAE,WAAW;iBAC5B;aACF;SACF,CAAC;KACH;CACF,CAAC;AAEF,kBAAe,SAAS,CAAC"}
|
|
@@ -1,6 +1,27 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
+
'& .SCContributionNotification-username': {
|
|
5
|
+
fontWeight: any;
|
|
6
|
+
'&:hover': {
|
|
7
|
+
textDecoration: string;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
'& .SCContributionNotification-vote-button': {
|
|
11
|
+
color: string;
|
|
12
|
+
padding: any;
|
|
13
|
+
fontSize: string;
|
|
14
|
+
minWidth: number;
|
|
15
|
+
borderRadius: string;
|
|
16
|
+
};
|
|
17
|
+
'& .SCContributionNotification-contribution-text': {
|
|
18
|
+
color: any;
|
|
19
|
+
textOverflow: string;
|
|
20
|
+
overflow: string;
|
|
21
|
+
'&:hover': {
|
|
22
|
+
textDecoration: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
4
25
|
'& .SCNotificationItem-root .SCNotificationItem-header .SCNotificationItem-secondary': {
|
|
5
26
|
marginTop: any;
|
|
6
27
|
'& .SCDateTimeAgo-root': {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCContributionNotification.d.ts","sourceRoot":"","sources":["../../../src/components/SCContributionNotification.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS;;0BAEK,GAAG
|
|
1
|
+
{"version":3,"file":"SCContributionNotification.d.ts","sourceRoot":"","sources":["../../../src/components/SCContributionNotification.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS;;0BAEK,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8BtB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -3,6 +3,27 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const Component = {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
root: ({ theme }) => ({
|
|
6
|
+
'& .SCContributionNotification-username': {
|
|
7
|
+
fontWeight: theme.typography.fontWeightBold,
|
|
8
|
+
'&:hover': {
|
|
9
|
+
textDecoration: 'underline'
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
'& .SCContributionNotification-vote-button': {
|
|
13
|
+
color: 'inherit',
|
|
14
|
+
padding: theme.spacing(1),
|
|
15
|
+
fontSize: '1.143rem',
|
|
16
|
+
minWidth: 0,
|
|
17
|
+
borderRadius: '50%'
|
|
18
|
+
},
|
|
19
|
+
'& .SCContributionNotification-contribution-text': {
|
|
20
|
+
color: theme.palette.text.primary,
|
|
21
|
+
textOverflow: 'ellipsis',
|
|
22
|
+
overflow: 'hidden',
|
|
23
|
+
'&:hover': {
|
|
24
|
+
textDecoration: 'underline'
|
|
25
|
+
}
|
|
26
|
+
},
|
|
6
27
|
'& .SCNotificationItem-root .SCNotificationItem-header .SCNotificationItem-secondary': {
|
|
7
28
|
marginTop: theme.spacing(1),
|
|
8
29
|
'& .SCDateTimeAgo-root': {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCContributionNotification.js","sourceRoot":"","sources":["../../../src/components/SCContributionNotification.tsx"],"names":[],"mappings":";;AAAA,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,qFAAqF,EAAE;gBACrF,SAAS,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;gBAC3B,uBAAuB,EAAE;oBACvB,SAAS,EAAE,CAAC;iBACb;aACF;SACF,CAAC;KACH;CACF,CAAC;AAEF,kBAAe,SAAS,CAAC"}
|
|
1
|
+
{"version":3,"file":"SCContributionNotification.js","sourceRoot":"","sources":["../../../src/components/SCContributionNotification.tsx"],"names":[],"mappings":";;AAAA,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,wCAAwC,EAAE;gBACxC,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc;gBAC3C,SAAS,EAAE;oBACT,cAAc,EAAE,WAAW;iBAC5B;aACF;YACD,2CAA2C,EAAE;gBAC3C,KAAK,EAAE,SAAS;gBAChB,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;gBACzB,QAAQ,EAAE,UAAU;gBACpB,QAAQ,EAAE,CAAC;gBACX,YAAY,EAAE,KAAK;aACpB;YACD,iDAAiD,EAAE;gBACjD,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO;gBACjC,YAAY,EAAE,UAAU;gBACxB,QAAQ,EAAE,QAAQ;gBAClB,SAAS,EAAE;oBACT,cAAc,EAAE,WAAW;iBAC5B;aACF;YACD,qFAAqF,EAAE;gBACrF,SAAS,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;gBAC3B,uBAAuB,EAAE;oBACvB,SAAS,EAAE,CAAC;iBACb;aACF;SACF,CAAC;KACH;CACF,CAAC;AAEF,kBAAe,SAAS,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCDateTimeAgo.d.ts","sourceRoot":"","sources":["../../../src/components/SCDateTimeAgo.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS;;0BAEK,GAAG
|
|
1
|
+
{"version":3,"file":"SCDateTimeAgo.d.ts","sourceRoot":"","sources":["../../../src/components/SCDateTimeAgo.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS;;0BAEK,GAAG;;;;;;;;;;;;;CAatB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCDateTimeAgo.js","sourceRoot":"","sources":["../../../src/components/SCDateTimeAgo.tsx"],"names":[],"mappings":";;AAAA,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,iBAAiB,EAAE;gBACjB,QAAQ,EAAE,MAAM;gBAChB,UAAU,EAAE,UAAU;gBACtB,WAAW,EAAE,CAAC;aACf;YACD,uBAAuB,EAAE;gBACvB,UAAU,EAAE,MAAM;gBAClB,QAAQ,EAAE,UAAU;aACrB;SACF,CAAC;KACH;CACF,CAAC;AAEF,kBAAe,SAAS,CAAC"}
|
|
1
|
+
{"version":3,"file":"SCDateTimeAgo.js","sourceRoot":"","sources":["../../../src/components/SCDateTimeAgo.tsx"],"names":[],"mappings":";;AAAA,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,KAAK,EAAE,SAAS;YAChB,iBAAiB,EAAE;gBACjB,QAAQ,EAAE,MAAM;gBAChB,UAAU,EAAE,UAAU;gBACtB,WAAW,EAAE,CAAC;aACf;YACD,uBAAuB,EAAE;gBACvB,UAAU,EAAE,MAAM;gBAClB,QAAQ,EAAE,UAAU;aACrB;SACF,CAAC;KACH;CACF,CAAC;AAEF,kBAAe,SAAS,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCFeedSkeleton.d.ts","sourceRoot":"","sources":["../../../src/components/SCFeedSkeleton.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS;;0BAEK,GAAG
|
|
1
|
+
{"version":3,"file":"SCFeedSkeleton.d.ts","sourceRoot":"","sources":["../../../src/components/SCFeedSkeleton.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS;;0BAEK,GAAG;;;;;;;;;;;;;;;;;;;;;;;CAuBtB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCFeedSkeleton.js","sourceRoot":"","sources":["../../../src/components/SCFeedSkeleton.tsx"],"names":[],"mappings":";;AAAA,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,
|
|
1
|
+
{"version":3,"file":"SCFeedSkeleton.js","sourceRoot":"","sources":["../../../src/components/SCFeedSkeleton.tsx"],"names":[],"mappings":";;AAAA,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,QAAQ,EAAE,KAAK,CAAC,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC;YACxC,wBAAwB,EAAE;gBACxB,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC;gBAC5B,cAAc,EAAE;oBACd,aAAa,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;iBAChC;aACF;YACD,yBAAyB,EAAE;gBACzB,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC;gBAC/B,kBAAkB,EAAE;oBAClB,YAAY,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;iBAC/B;aACF;YACD,uBAAuB,EAAE;gBACvB,OAAO,EAAE,CAAC;gBACV,YAAY,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;gBAC9B,SAAS,EAAE;oBACT,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;iBAC1B;aACF;SACF,CAAC;KACH;CACF,CAAC;AAEF,kBAAe,SAAS,CAAC"}
|
|
@@ -7,6 +7,9 @@ declare const Component: {
|
|
|
7
7
|
width: any;
|
|
8
8
|
height: any;
|
|
9
9
|
};
|
|
10
|
+
'& .SCNotification-username': {
|
|
11
|
+
fontWeight: any;
|
|
12
|
+
};
|
|
10
13
|
};
|
|
11
14
|
'& .SCNotification-content': {
|
|
12
15
|
padding: number;
|
|
@@ -29,7 +32,7 @@ declare const Component: {
|
|
|
29
32
|
borderRadius: number;
|
|
30
33
|
};
|
|
31
34
|
};
|
|
32
|
-
'& a': {
|
|
35
|
+
'& a:not(.MuiButton-root)': {
|
|
33
36
|
textDecoration: string;
|
|
34
37
|
color: any;
|
|
35
38
|
'&:hover, &:active': {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCNotification.d.ts","sourceRoot":"","sources":["../../../src/components/SCNotification.tsx"],"names":[],"mappings":"AAEA,QAAA,MAAM,SAAS;;0BAEK,GAAG
|
|
1
|
+
{"version":3,"file":"SCNotification.d.ts","sourceRoot":"","sources":["../../../src/components/SCNotification.tsx"],"names":[],"mappings":"AAEA,QAAA,MAAM,SAAS;;0BAEK,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0CtB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -9,6 +9,9 @@ const Component = {
|
|
|
9
9
|
'& .SCNotification-avatar': {
|
|
10
10
|
width: theme.selfcommunity.user.avatar.sizeMedium,
|
|
11
11
|
height: theme.selfcommunity.user.avatar.sizeMedium
|
|
12
|
+
},
|
|
13
|
+
'& .SCNotification-username': {
|
|
14
|
+
fontWeight: theme.typography.fontWeightBold
|
|
12
15
|
}
|
|
13
16
|
},
|
|
14
17
|
'& .SCNotification-content': {
|
|
@@ -32,7 +35,7 @@ const Component = {
|
|
|
32
35
|
borderRadius: 0
|
|
33
36
|
}
|
|
34
37
|
},
|
|
35
|
-
'& a': {
|
|
38
|
+
'& a:not(.MuiButton-root)': {
|
|
36
39
|
textDecoration: 'none',
|
|
37
40
|
color: theme.palette.text.primary,
|
|
38
41
|
'&:hover, &:active': {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCNotification.js","sourceRoot":"","sources":["../../../src/components/SCNotification.tsx"],"names":[],"mappings":";;AAAA,wCAAkC;AAElC,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,0BAA0B,EAAE;gBAC1B,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;gBAClC,0BAA0B,EAAE;oBAC1B,KAAK,EAAE,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,UAAU;oBACjD,MAAM,EAAE,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,UAAU;iBACnD;aACF;YACD,2BAA2B,EAAE;gBAC3B,OAAO,EAAE,CAAC;gBACV,+BAA+B,EAAE;oBAC/B,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;oBAClC,OAAO,EAAE;wBACP,YAAY,EAAE,KAAK,CAAC,OAAO,EAAE;qBAC9B;iBACF;gBACD,yCAAyC,EAAE;oBACzC,eAAe,EAAE,IAAA,cAAK,EAAC,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC;iBACtF;gBACD,6BAA6B,EAAE;oBAC7B,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;oBACzB,iCAAiC,EAAE;wBACjC,YAAY,EAAE,KAAK,CAAC,OAAO,EAAE;qBAC9B;iBACF;gBACD,8BAA8B,EAAE;oBAC9B,YAAY,EAAE,CAAC;iBAChB;aACF;YACD,
|
|
1
|
+
{"version":3,"file":"SCNotification.js","sourceRoot":"","sources":["../../../src/components/SCNotification.tsx"],"names":[],"mappings":";;AAAA,wCAAkC;AAElC,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,0BAA0B,EAAE;gBAC1B,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;gBAClC,0BAA0B,EAAE;oBAC1B,KAAK,EAAE,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,UAAU;oBACjD,MAAM,EAAE,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,UAAU;iBACnD;gBACD,4BAA4B,EAAE;oBAC5B,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc;iBAC5C;aACF;YACD,2BAA2B,EAAE;gBAC3B,OAAO,EAAE,CAAC;gBACV,+BAA+B,EAAE;oBAC/B,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;oBAClC,OAAO,EAAE;wBACP,YAAY,EAAE,KAAK,CAAC,OAAO,EAAE;qBAC9B;iBACF;gBACD,yCAAyC,EAAE;oBACzC,eAAe,EAAE,IAAA,cAAK,EAAC,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC;iBACtF;gBACD,6BAA6B,EAAE;oBAC7B,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;oBACzB,iCAAiC,EAAE;wBACjC,YAAY,EAAE,KAAK,CAAC,OAAO,EAAE;qBAC9B;iBACF;gBACD,8BAA8B,EAAE;oBAC9B,YAAY,EAAE,CAAC;iBAChB;aACF;YACD,0BAA0B,EAAE;gBAC1B,cAAc,EAAE,MAAM;gBACtB,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO;gBACjC,mBAAmB,EAAE;oBACnB,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO;oBACjC,cAAc,EAAE,WAAW;iBAC5B;aACF;SACF,CAAC;KACH;CACF,CAAC;AAEF,kBAAe,SAAS,CAAC"}
|
|
@@ -1,13 +1,7 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
-
|
|
5
|
-
color: any;
|
|
6
|
-
textDecoration: string;
|
|
7
|
-
'&:hover, &:active': {
|
|
8
|
-
textDecoration: string;
|
|
9
|
-
};
|
|
10
|
-
};
|
|
4
|
+
whiteSpace: string;
|
|
11
5
|
'& .SCNotificationItem-header': {
|
|
12
6
|
display: string;
|
|
13
7
|
flexDirection: string;
|
|
@@ -17,10 +11,16 @@ declare const Component: {
|
|
|
17
11
|
fontWeight: any;
|
|
18
12
|
};
|
|
19
13
|
};
|
|
20
|
-
'& .SCNotificationItem-secondary
|
|
21
|
-
|
|
14
|
+
'& .SCNotificationItem-secondary': {
|
|
15
|
+
'& .SCDateTimeAgo-root, & .MuiStack-root': {
|
|
16
|
+
color: any;
|
|
17
|
+
minHeight: any;
|
|
18
|
+
};
|
|
22
19
|
};
|
|
23
20
|
};
|
|
21
|
+
'& .SCNotificationItem-actions': {
|
|
22
|
+
color: any;
|
|
23
|
+
};
|
|
24
24
|
'&.SCNotificationItem-toast': {
|
|
25
25
|
backgroundColor: string;
|
|
26
26
|
borderRadius: number;
|
|
@@ -3,13 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const Component = {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
root: ({ theme }) => ({
|
|
6
|
-
|
|
7
|
-
color: theme.palette.text.primary,
|
|
8
|
-
textDecoration: 'none',
|
|
9
|
-
'&:hover, &:active': {
|
|
10
|
-
textDecoration: 'underline'
|
|
11
|
-
}
|
|
12
|
-
},
|
|
6
|
+
whiteSpace: 'normal',
|
|
13
7
|
'& .SCNotificationItem-header': {
|
|
14
8
|
display: 'flex',
|
|
15
9
|
flexDirection: 'row',
|
|
@@ -19,10 +13,16 @@ const Component = {
|
|
|
19
13
|
fontWeight: theme.typography.fontWeightBold
|
|
20
14
|
}
|
|
21
15
|
},
|
|
22
|
-
'& .SCNotificationItem-secondary
|
|
23
|
-
|
|
16
|
+
'& .SCNotificationItem-secondary': {
|
|
17
|
+
'& .SCDateTimeAgo-root, & .MuiStack-root': {
|
|
18
|
+
color: theme.palette.primary.main,
|
|
19
|
+
minHeight: theme.spacing(3)
|
|
20
|
+
}
|
|
24
21
|
}
|
|
25
22
|
},
|
|
23
|
+
'& .SCNotificationItem-actions': {
|
|
24
|
+
color: theme.palette.primary.main
|
|
25
|
+
},
|
|
26
26
|
'&.SCNotificationItem-toast': {
|
|
27
27
|
backgroundColor: 'transparent',
|
|
28
28
|
borderRadius: 0,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCNotificationItem.js","sourceRoot":"","sources":["../../../src/components/SCNotificationItem.tsx"],"names":[],"mappings":";;AAAA,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,
|
|
1
|
+
{"version":3,"file":"SCNotificationItem.js","sourceRoot":"","sources":["../../../src/components/SCNotificationItem.tsx"],"names":[],"mappings":";;AAAA,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,UAAU,EAAE,QAAQ;YACpB,8BAA8B,EAAE;gBAC9B,OAAO,EAAE,MAAM;gBACf,aAAa,EAAE,KAAK;gBACpB,+BAA+B,EAAE;oBAC/B,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC,gBAAgB;oBAC7C,wCAAwC,EAAE;wBACxC,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc;qBAC5C;iBACF;gBACD,iCAAiC,EAAE;oBACjC,yCAAyC,EAAE;wBACzC,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI;wBACjC,SAAS,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;qBAC5B;iBACF;aACF;YACD,+BAA+B,EAAE;gBAC/B,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI;aAClC;YACD,4BAA4B,EAAE;gBAC5B,eAAe,EAAE,aAAa;gBAC9B,YAAY,EAAE,CAAC;gBACf,8BAA8B,EAAE;oBAC9B,6BAA6B,EAAE;wBAC7B,WAAW,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;wBAC7B,mBAAmB,EAAE;4BACnB,KAAK,EAAE,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS;4BAChD,MAAM,EAAE,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS;yBAClD;qBACF;iBACF;aACF;YACD,8BAA8B,EAAE;gBAC9B,eAAe,EAAE,aAAa;gBAC9B,YAAY,EAAE,CAAC;gBACf,8BAA8B,EAAE;oBAC9B,6BAA6B,EAAE;wBAC7B,WAAW,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;wBAC7B,mBAAmB,EAAE;4BACnB,KAAK,EAAE,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS;4BAChD,MAAM,EAAE,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS;yBAClD;qBACF;iBACF;aACF;YACD,6BAA6B,EAAE;gBAC7B,eAAe,EAAE,aAAa;gBAC9B,YAAY,EAAE,CAAC;gBACf,8BAA8B,EAAE;oBAC9B,6BAA6B,EAAE;wBAC7B,WAAW,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;wBAC7B,mBAAmB,EAAE;4BACnB,KAAK,EAAE,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,UAAU;4BACjD,MAAM,EAAE,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,UAAU;yBACnD;qBACF;iBACF;aACF;SACF,CAAC;KACH;CACF,CAAC;AAEF,kBAAe,SAAS,CAAC"}
|
package/lib/cjs/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/cjs/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"}
|