@selfcommunity/react-theme-default 0.1.0-alpha.134 → 0.1.0-alpha.136
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/SCPrivateMessageComponent.d.ts +7 -20
- package/lib/cjs/components/SCPrivateMessageComponent.d.ts.map +1 -1
- package/lib/cjs/components/SCPrivateMessageComponent.js +7 -18
- package/lib/cjs/components/SCPrivateMessageComponent.js.map +1 -1
- package/lib/cjs/components/SCPrivateMessageEditor.d.ts +2 -9
- package/lib/cjs/components/SCPrivateMessageEditor.d.ts.map +1 -1
- package/lib/cjs/components/SCPrivateMessageEditor.js +2 -9
- package/lib/cjs/components/SCPrivateMessageEditor.js.map +1 -1
- package/lib/cjs/components/SCPrivateMessageSnippetItem.d.ts +2 -0
- package/lib/cjs/components/SCPrivateMessageSnippetItem.d.ts.map +1 -1
- package/lib/cjs/components/SCPrivateMessageSnippetItem.js +2 -0
- package/lib/cjs/components/SCPrivateMessageSnippetItem.js.map +1 -1
- package/lib/cjs/components/SCPrivateMessageSnippets.d.ts +32 -31
- package/lib/cjs/components/SCPrivateMessageSnippets.d.ts.map +1 -1
- package/lib/cjs/components/SCPrivateMessageSnippets.js +32 -31
- package/lib/cjs/components/SCPrivateMessageSnippets.js.map +1 -1
- package/lib/cjs/components/SCPrivateMessageThread.d.ts +14 -17
- package/lib/cjs/components/SCPrivateMessageThread.d.ts.map +1 -1
- package/lib/cjs/components/SCPrivateMessageThread.js +16 -19
- package/lib/cjs/components/SCPrivateMessageThread.js.map +1 -1
- package/lib/cjs/components/SCPrivateMessageThreadItem.d.ts +3 -4
- package/lib/cjs/components/SCPrivateMessageThreadItem.d.ts.map +1 -1
- package/lib/cjs/components/SCPrivateMessageThreadItem.js +3 -4
- package/lib/cjs/components/SCPrivateMessageThreadItem.js.map +1 -1
- package/lib/cjs/components/SCPrivateMessageThreadSkeleton.d.ts +2 -4
- package/lib/cjs/components/SCPrivateMessageThreadSkeleton.d.ts.map +1 -1
- package/lib/cjs/components/SCPrivateMessageThreadSkeleton.js +3 -4
- package/lib/cjs/components/SCPrivateMessageThreadSkeleton.js.map +1 -1
- package/lib/cjs/index.d.ts +62 -85
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/esm/components/SCPrivateMessageComponent.d.ts +7 -20
- package/lib/esm/components/SCPrivateMessageComponent.d.ts.map +1 -1
- package/lib/esm/components/SCPrivateMessageComponent.js +7 -18
- package/lib/esm/components/SCPrivateMessageComponent.js.map +1 -1
- package/lib/esm/components/SCPrivateMessageEditor.d.ts +2 -9
- package/lib/esm/components/SCPrivateMessageEditor.d.ts.map +1 -1
- package/lib/esm/components/SCPrivateMessageEditor.js +2 -9
- package/lib/esm/components/SCPrivateMessageEditor.js.map +1 -1
- package/lib/esm/components/SCPrivateMessageSnippetItem.d.ts +2 -0
- package/lib/esm/components/SCPrivateMessageSnippetItem.d.ts.map +1 -1
- package/lib/esm/components/SCPrivateMessageSnippetItem.js +2 -0
- package/lib/esm/components/SCPrivateMessageSnippetItem.js.map +1 -1
- package/lib/esm/components/SCPrivateMessageSnippets.d.ts +32 -31
- package/lib/esm/components/SCPrivateMessageSnippets.d.ts.map +1 -1
- package/lib/esm/components/SCPrivateMessageSnippets.js +32 -31
- package/lib/esm/components/SCPrivateMessageSnippets.js.map +1 -1
- package/lib/esm/components/SCPrivateMessageThread.d.ts +14 -17
- package/lib/esm/components/SCPrivateMessageThread.d.ts.map +1 -1
- package/lib/esm/components/SCPrivateMessageThread.js +16 -19
- package/lib/esm/components/SCPrivateMessageThread.js.map +1 -1
- package/lib/esm/components/SCPrivateMessageThreadItem.d.ts +3 -4
- package/lib/esm/components/SCPrivateMessageThreadItem.d.ts.map +1 -1
- package/lib/esm/components/SCPrivateMessageThreadItem.js +3 -4
- package/lib/esm/components/SCPrivateMessageThreadItem.js.map +1 -1
- package/lib/esm/components/SCPrivateMessageThreadSkeleton.d.ts +2 -4
- package/lib/esm/components/SCPrivateMessageThreadSkeleton.d.ts.map +1 -1
- package/lib/esm/components/SCPrivateMessageThreadSkeleton.js +3 -4
- package/lib/esm/components/SCPrivateMessageThreadSkeleton.js.map +1 -1
- package/lib/esm/index.d.ts +62 -85
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/umd/react-theme-default.js +1 -1
- package/lib/umd/react-theme-default.js.map +1 -1
- package/package.json +4 -4
|
@@ -2,21 +2,45 @@ import { alpha } from '@mui/system';
|
|
|
2
2
|
const Component = {
|
|
3
3
|
styleOverrides: {
|
|
4
4
|
root: ({ theme }) => ({
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
maxHeight: 'calc(100vh - 6.2rem)',
|
|
8
|
-
overflow: 'auto'
|
|
9
|
-
},
|
|
5
|
+
height: '100%',
|
|
6
|
+
width: '100%',
|
|
10
7
|
'& .MuiCardContent-root': {
|
|
11
8
|
display: 'flex',
|
|
12
9
|
flexDirection: 'column',
|
|
10
|
+
height: `calc(100% - ${theme.spacing(4)})`,
|
|
11
|
+
padding: theme.spacing(2),
|
|
12
|
+
'& .SCPrivateMessageSnippets-search-bar': {
|
|
13
|
+
padding: theme.spacing(1),
|
|
14
|
+
'& .SCPrivateMessageSnippets-input': {
|
|
15
|
+
borderRadius: theme.shape.borderRadius,
|
|
16
|
+
backgroundColor: alpha(theme.palette.secondary.main, theme.palette.action.selectedOpacity),
|
|
17
|
+
'&:hover': {
|
|
18
|
+
backgroundColor: alpha(theme.palette.secondary.main, theme.palette.action.activatedOpacity)
|
|
19
|
+
},
|
|
20
|
+
'& .MuiInputBase-input, MuiFilledInput-input': {
|
|
21
|
+
padding: 0
|
|
22
|
+
},
|
|
23
|
+
'& .SCPrivateMessageSnippets-icon': {
|
|
24
|
+
marginRight: theme.spacing(1)
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
'& .SCPrivateMessageSnippets-new-message-button': {
|
|
29
|
+
color: `${theme.palette.primary.main} !important`,
|
|
30
|
+
alignSelf: 'center',
|
|
31
|
+
backgroundColor: 'transparent',
|
|
32
|
+
'&:hover': {
|
|
33
|
+
borderWidth: '2px !important',
|
|
34
|
+
backgroundColor: alpha(theme.palette.primary.main, theme.palette.action.hoverOpacity)
|
|
35
|
+
}
|
|
36
|
+
},
|
|
13
37
|
'& .MuiList-root': {
|
|
38
|
+
flexGrow: 1,
|
|
39
|
+
overflowY: 'auto',
|
|
40
|
+
padding: theme.spacing(1),
|
|
14
41
|
'& .Mui-selected': {
|
|
15
42
|
backgroundColor: alpha(theme.palette.secondary.main, theme.palette.action.selectedOpacity)
|
|
16
43
|
},
|
|
17
|
-
'&:last-child': {
|
|
18
|
-
marginBottom: theme.spacing(2)
|
|
19
|
-
},
|
|
20
44
|
'& .MuiButtonBase-root, MuiListItemButton-root': {
|
|
21
45
|
'&:hover': { borderRadius: 'inherit', backgroundColor: alpha(theme.palette.secondary.main, theme.palette.action.hoverOpacity) }
|
|
22
46
|
}
|
|
@@ -24,29 +48,6 @@ const Component = {
|
|
|
24
48
|
},
|
|
25
49
|
'& .MuiPaper-root, MuiCard-root, SCWidget-root, SCPrivateMessageSnippets-root, MuiCardContent-root': {
|
|
26
50
|
padding: theme.spacing(2)
|
|
27
|
-
},
|
|
28
|
-
'& .SCPrivateMessageSnippets-input': {
|
|
29
|
-
'& .MuiInputBase-input, MuiFilledInput-input': {
|
|
30
|
-
padding: theme.spacing(0)
|
|
31
|
-
},
|
|
32
|
-
borderRadius: theme.shape.borderRadius,
|
|
33
|
-
backgroundColor: alpha(theme.palette.secondary.main, theme.palette.action.selectedOpacity),
|
|
34
|
-
'&:hover': {
|
|
35
|
-
backgroundColor: alpha(theme.palette.secondary.main, theme.palette.action.activatedOpacity)
|
|
36
|
-
},
|
|
37
|
-
height: theme.spacing(3.75),
|
|
38
|
-
'& .SCPrivateMessageSnippets-icon': {
|
|
39
|
-
marginRight: theme.spacing(1)
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
'& .SCPrivateMessageSnippets-new-message-button': {
|
|
43
|
-
color: `${theme.palette.primary.main} !important`,
|
|
44
|
-
alignSelf: 'center',
|
|
45
|
-
backgroundColor: 'transparent',
|
|
46
|
-
'&:hover': {
|
|
47
|
-
borderWidth: '2px !important',
|
|
48
|
-
backgroundColor: alpha(theme.palette.primary.main, theme.palette.action.hoverOpacity)
|
|
49
|
-
}
|
|
50
51
|
}
|
|
51
52
|
})
|
|
52
53
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCPrivateMessageSnippets.js","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageSnippets.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,EAAC,MAAM,aAAa,CAAC;AAElC,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,
|
|
1
|
+
{"version":3,"file":"SCPrivateMessageSnippets.js","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageSnippets.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,EAAC,MAAM,aAAa,CAAC;AAElC,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,MAAM,EAAE,MAAM;YACd,KAAK,EAAE,MAAM;YACb,wBAAwB,EAAE;gBACxB,OAAO,EAAE,MAAM;gBACf,aAAa,EAAE,QAAQ;gBACvB,MAAM,EAAE,eAAe,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG;gBAC1C,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;gBACzB,wCAAwC,EAAE;oBACxC,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;oBACzB,mCAAmC,EAAE;wBACnC,YAAY,EAAE,KAAK,CAAC,KAAK,CAAC,YAAY;wBACtC,eAAe,EAAE,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC;wBAC1F,SAAS,EAAE;4BACT,eAAe,EAAE,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,gBAAgB,CAAC;yBAC5F;wBACD,6CAA6C,EAAE;4BAC7C,OAAO,EAAE,CAAC;yBACX;wBACD,kCAAkC,EAAE;4BAClC,WAAW,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;yBAC9B;qBACF;iBACF;gBACD,gDAAgD,EAAE;oBAChD,KAAK,EAAE,GAAG,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,aAAa;oBACjD,SAAS,EAAE,QAAQ;oBACnB,eAAe,EAAE,aAAa;oBAC9B,SAAS,EAAE;wBACT,WAAW,EAAE,gBAAgB;wBAC7B,eAAe,EAAE,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC;qBACtF;iBACF;gBACD,iBAAiB,EAAE;oBACjB,QAAQ,EAAE,CAAC;oBACX,SAAS,EAAE,MAAM;oBACjB,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;oBACzB,iBAAiB,EAAE;wBACjB,eAAe,EAAE,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC;qBAC3F;oBACD,+CAA+C,EAAE;wBAC/C,SAAS,EAAE,EAAC,YAAY,EAAE,SAAS,EAAE,eAAe,EAAE,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC,EAAC;qBAC9H;iBACF;aACF;YACD,mGAAmG,EAAE;gBACnG,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;aAC1B;SACF,CAAC;KACH;CACF,CAAC;AACF,eAAe,SAAS,CAAC"}
|
|
@@ -1,19 +1,16 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
maxHeight: string;
|
|
7
|
-
};
|
|
4
|
+
height: string;
|
|
5
|
+
width: string;
|
|
8
6
|
backgroundColor: string;
|
|
9
|
-
|
|
7
|
+
borderRadius: number;
|
|
10
8
|
'& .MuiCardContent-root': {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
};
|
|
14
|
-
overflow: string;
|
|
15
|
-
padding: any;
|
|
9
|
+
display: string;
|
|
10
|
+
flexDirection: string;
|
|
16
11
|
height: string;
|
|
12
|
+
padding: number;
|
|
13
|
+
position: string;
|
|
17
14
|
'& .MuiAlert-root': {
|
|
18
15
|
position: string;
|
|
19
16
|
bottom: number;
|
|
@@ -22,8 +19,11 @@ declare const Component: {
|
|
|
22
19
|
display: string;
|
|
23
20
|
justifyContent: string;
|
|
24
21
|
};
|
|
25
|
-
'& .MuiList-root': {
|
|
26
|
-
|
|
22
|
+
'& > .MuiList-root': {
|
|
23
|
+
flexGrow: number;
|
|
24
|
+
overflowY: string;
|
|
25
|
+
margin: number;
|
|
26
|
+
padding: any;
|
|
27
27
|
'& .MuiListItem-root': {
|
|
28
28
|
'&.SCPrivateMessageThread-receiver': {
|
|
29
29
|
backgroundColor: any;
|
|
@@ -46,16 +46,13 @@ declare const Component: {
|
|
|
46
46
|
};
|
|
47
47
|
};
|
|
48
48
|
'& .SCPrivateMessageThread-empty-message': {
|
|
49
|
-
|
|
50
|
-
top: string;
|
|
49
|
+
height: string;
|
|
51
50
|
display: string;
|
|
52
51
|
justifyContent: string;
|
|
52
|
+
alignItems: string;
|
|
53
53
|
fontSize: string;
|
|
54
54
|
};
|
|
55
55
|
'& .SCPrivateMessageThread-new-message-header': {
|
|
56
|
-
position: string;
|
|
57
|
-
top: number;
|
|
58
|
-
right: number;
|
|
59
56
|
display: string;
|
|
60
57
|
width: string;
|
|
61
58
|
height: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCPrivateMessageThread.d.ts","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThread.tsx"],"names":[],"mappings":"AAEA,QAAA,MAAM,SAAS;;0BAEK,GAAG
|
|
1
|
+
{"version":3,"file":"SCPrivateMessageThread.d.ts","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThread.tsx"],"names":[],"mappings":"AAEA,QAAA,MAAM,SAAS;;0BAEK,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4GtB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -2,19 +2,16 @@ import { alpha } from '@mui/system';
|
|
|
2
2
|
const Component = {
|
|
3
3
|
styleOverrides: {
|
|
4
4
|
root: ({ theme }) => ({
|
|
5
|
+
height: '100%',
|
|
6
|
+
width: '100%',
|
|
5
7
|
backgroundColor: alpha(theme.palette.secondary.main, theme.palette.action.selectedOpacity),
|
|
6
|
-
|
|
7
|
-
[theme.breakpoints.up('sm')]: {
|
|
8
|
-
height: '100vh',
|
|
9
|
-
maxHeight: 'calc(100vh - 6.2rem)'
|
|
10
|
-
},
|
|
8
|
+
borderRadius: 0,
|
|
11
9
|
'& .MuiCardContent-root': {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
height: '
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
},
|
|
10
|
+
display: 'flex',
|
|
11
|
+
flexDirection: 'column',
|
|
12
|
+
height: '100%',
|
|
13
|
+
padding: 0,
|
|
14
|
+
position: 'relative',
|
|
18
15
|
'& .MuiAlert-root': {
|
|
19
16
|
position: 'absolute',
|
|
20
17
|
bottom: 0,
|
|
@@ -23,8 +20,11 @@ const Component = {
|
|
|
23
20
|
display: 'flex',
|
|
24
21
|
justifyContent: 'center'
|
|
25
22
|
},
|
|
26
|
-
'& .MuiList-root': {
|
|
27
|
-
|
|
23
|
+
'& > .MuiList-root': {
|
|
24
|
+
flexGrow: 1,
|
|
25
|
+
overflowY: 'auto',
|
|
26
|
+
margin: 0,
|
|
27
|
+
padding: theme.spacing(2, 2, 0, 2),
|
|
28
28
|
'& .MuiListItem-root': {
|
|
29
29
|
'&.SCPrivateMessageThread-receiver': {
|
|
30
30
|
backgroundColor: theme.palette.common.white,
|
|
@@ -47,19 +47,16 @@ const Component = {
|
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
'& .SCPrivateMessageThread-empty-message': {
|
|
50
|
-
|
|
51
|
-
top: '50%',
|
|
50
|
+
height: '100%',
|
|
52
51
|
display: 'flex',
|
|
53
52
|
justifyContent: 'center',
|
|
53
|
+
alignItems: 'center',
|
|
54
54
|
fontSize: '1.5rem'
|
|
55
55
|
},
|
|
56
56
|
'& .SCPrivateMessageThread-new-message-header': {
|
|
57
|
-
position: 'absolute',
|
|
58
|
-
top: 0,
|
|
59
|
-
right: 0,
|
|
60
57
|
display: 'flex',
|
|
61
58
|
width: '100%',
|
|
62
|
-
height: theme.
|
|
59
|
+
height: theme.mixins.toolbar.minHeight,
|
|
63
60
|
alignItems: 'center',
|
|
64
61
|
justifyContent: 'center',
|
|
65
62
|
backgroundColor: alpha(theme.palette.secondary.main, theme.palette.action.activatedOpacity),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCPrivateMessageThread.js","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThread.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,EAAC,MAAM,aAAa,CAAC;AAElC,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,eAAe,EAAE,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC;YAC1F,
|
|
1
|
+
{"version":3,"file":"SCPrivateMessageThread.js","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThread.tsx"],"names":[],"mappings":"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"}
|
|
@@ -2,10 +2,9 @@ declare const Component: {
|
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
4
|
borderRadius: any;
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
paddingLeft: string;
|
|
5
|
+
padding: any;
|
|
6
|
+
boxShadow: string;
|
|
7
|
+
marginBottom: any;
|
|
9
8
|
'& .MuiListItemSecondaryAction-root': {
|
|
10
9
|
right: any;
|
|
11
10
|
top: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCPrivateMessageThreadItem.d.ts","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThreadItem.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS;;0BAEK,GAAG
|
|
1
|
+
{"version":3,"file":"SCPrivateMessageThreadItem.d.ts","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThreadItem.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS;;0BAEK,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0EtB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -2,10 +2,9 @@ const Component = {
|
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }) => ({
|
|
4
4
|
borderRadius: theme.shape.borderRadius,
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
paddingLeft: `${theme.spacing(2)} !important`,
|
|
5
|
+
padding: theme.spacing(2, 2, 4, 2),
|
|
6
|
+
boxShadow: '0px 0px 10px rgba(0, 0, 0, 0.1)',
|
|
7
|
+
marginBottom: theme.spacing(1),
|
|
9
8
|
'& .MuiListItemSecondaryAction-root': {
|
|
10
9
|
right: theme.spacing(0),
|
|
11
10
|
top: theme.spacing(3)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCPrivateMessageThreadItem.js","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThreadItem.tsx"],"names":[],"mappings":"AAAA,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,YAAY,EAAE,KAAK,CAAC,KAAK,CAAC,YAAY;YACtC,
|
|
1
|
+
{"version":3,"file":"SCPrivateMessageThreadItem.js","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThreadItem.tsx"],"names":[],"mappings":"AAAA,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,YAAY,EAAE,KAAK,CAAC,KAAK,CAAC,YAAY;YACtC,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;YAClC,SAAS,EAAE,iCAAiC;YAC5C,YAAY,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;YAC9B,oCAAoC,EAAE;gBACpC,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;gBACvB,GAAG,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;aACtB;YACD,4CAA4C,EAAE;gBAC5C,QAAQ,EAAE,UAAU;gBACpB,MAAM,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;gBACxB,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;gBACvB,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;aAC5B;YACD,oCAAoC,EAAE;gBACpC,SAAS,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;gBAC3B,OAAO,EAAE,MAAM;gBACf,UAAU,EAAE,QAAQ;gBACpB,uBAAuB,EAAE;oBACvB,QAAQ,EAAE,UAAU;oBACpB,UAAU,EAAE,UAAU;iBACvB;aACF;YACD,mCAAmC,EAAE;gBACnC,OAAO,EAAE,MAAM;gBACf,UAAU,EAAE,QAAQ;gBACpB,SAAS,EAAE,OAAO;gBAClB,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE;oBACP,KAAK,EAAE,MAAM;oBACb,MAAM,EAAE,MAAM;iBACf;aACF;YACD,qCAAqC,EAAE;gBACrC,uBAAuB,EAAE;oBACvB,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK;oBACjC,QAAQ,EAAE,UAAU;oBACpB,GAAG,EAAE,KAAK;oBACV,IAAI,EAAE,KAAK;oBACX,SAAS,EAAE,uBAAuB;oBAClC,iBAAiB,EAAE;wBACjB,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK;wBACjC,QAAQ,EAAE,MAAM;wBAChB,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,EAAE;4BAC9B,QAAQ,EAAE,MAAM;yBACjB;qBACF;iBACF;aACF;YACD,wCAAwC,EAAE;gBACxC,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC;gBAC1B,OAAO,EAAE;oBACP,MAAM,EAAE,MAAM;oBACd,KAAK,EAAE,MAAM;iBACd;gBACD,uBAAuB,EAAE;oBACvB,KAAK,EAAE,SAAS;oBAChB,QAAQ,EAAE,UAAU;oBACpB,MAAM,EAAE,KAAK;oBACb,eAAe,EAAE,iBAAiB;oBAClC,KAAK,EAAE,uBAAuB;oBAC9B,OAAO,EAAE,MAAM;oBACf,YAAY,EAAE,CAAC;oBACf,uBAAuB,EAAE;wBACvB,UAAU,EAAE,QAAQ;wBACpB,QAAQ,EAAE,QAAQ;wBAClB,YAAY,EAAE,UAAU;wBACxB,UAAU,EAAE,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC;qBAC/B;iBACF;aACF;SACF,CAAC;KACH;CACF,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
-
[x: number]: {
|
|
5
|
-
height: string;
|
|
6
|
-
};
|
|
7
4
|
height: string;
|
|
5
|
+
width: string;
|
|
6
|
+
borderRadius: number;
|
|
8
7
|
'& .MuiCardContent-root': {
|
|
9
8
|
padding: number;
|
|
10
9
|
'& .MuiList-root .MuiListItem-root': {
|
|
11
10
|
[x: number]: {
|
|
12
11
|
width: string;
|
|
13
12
|
};
|
|
14
|
-
padding: any;
|
|
15
13
|
height: any;
|
|
16
14
|
};
|
|
17
15
|
'&:last-child': {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCPrivateMessageThreadSkeleton.d.ts","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThreadSkeleton.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS;;0BAEK,GAAG
|
|
1
|
+
{"version":3,"file":"SCPrivateMessageThreadSkeleton.d.ts","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThreadSkeleton.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS;;0BAEK,GAAG;;;;;;;;;;;;;;;;;;CAmBtB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -2,13 +2,12 @@ const Component = {
|
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }) => ({
|
|
4
4
|
height: '100%',
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
},
|
|
5
|
+
width: '100%',
|
|
6
|
+
borderRadius: 0,
|
|
8
7
|
'& .MuiCardContent-root': {
|
|
9
8
|
padding: 0,
|
|
10
9
|
'& .MuiList-root .MuiListItem-root': {
|
|
11
|
-
padding: theme.spacing(0, 1, 0, 1),
|
|
10
|
+
// padding: theme.spacing(0, 1, 0, 1),
|
|
12
11
|
height: theme.spacing(10),
|
|
13
12
|
[theme.breakpoints.up('sm')]: {
|
|
14
13
|
width: '80%'
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCPrivateMessageThreadSkeleton.js","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThreadSkeleton.tsx"],"names":[],"mappings":"AAAA,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,MAAM,EAAE,MAAM;YACd,
|
|
1
|
+
{"version":3,"file":"SCPrivateMessageThreadSkeleton.js","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThreadSkeleton.tsx"],"names":[],"mappings":"AAAA,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,MAAM,EAAE,MAAM;YACd,KAAK,EAAE,MAAM;YACb,YAAY,EAAE,CAAC;YACf,wBAAwB,EAAE;gBACxB,OAAO,EAAE,CAAC;gBACV,mCAAmC,EAAE;oBACnC,sCAAsC;oBACtC,MAAM,EAAE,KAAK,CAAC,OAAO,CAAC,EAAE,CAAC;oBACzB,CAAC,KAAK,CAAC,WAAW,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,EAAE;wBAC5B,KAAK,EAAE,KAAK;qBACb;iBACF;gBACD,cAAc,EAAE;oBACd,aAAa,EAAE,CAAC;iBACjB;aACF;SACF,CAAC;KACH;CACF,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -3013,27 +3013,14 @@ declare const theme: {
|
|
|
3013
3013
|
SCPrivateMessageComponent: {
|
|
3014
3014
|
styleOverrides: {
|
|
3015
3015
|
root: ({ theme }: any) => {
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
'& .
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
'& .SCPrivateMessageThread-root': {
|
|
3024
|
-
borderRadius: number;
|
|
3025
|
-
};
|
|
3016
|
+
height: string;
|
|
3017
|
+
'& .SCPrivateMessageComponent-snippets-box, & .SCPrivateMessageComponent-thread-box': {
|
|
3018
|
+
position: string;
|
|
3019
|
+
'& .SCPrivateMessageSnippets-root, & .SCPrivateMessageThread-root': {
|
|
3020
|
+
position: string;
|
|
3021
|
+
top: number;
|
|
3022
|
+
left: number;
|
|
3026
3023
|
};
|
|
3027
|
-
maxWidth?: undefined;
|
|
3028
|
-
maxHeight?: undefined;
|
|
3029
|
-
};
|
|
3030
|
-
' .MuiPaper-root': {
|
|
3031
|
-
boxShadow: string;
|
|
3032
|
-
borderRadius: number;
|
|
3033
|
-
};
|
|
3034
|
-
'& .SCPrivateMessageSnippetItem-root, .SCPrivateMessageThreadItem-root': {
|
|
3035
|
-
boxShadow: string;
|
|
3036
|
-
marginBottom: any;
|
|
3037
3024
|
};
|
|
3038
3025
|
'& .SCPrivateMessageComponent-hide': {
|
|
3039
3026
|
display: string;
|
|
@@ -3532,6 +3519,8 @@ declare const theme: {
|
|
|
3532
3519
|
root: ({ theme }: any) => {
|
|
3533
3520
|
borderRadius: any;
|
|
3534
3521
|
padding: string;
|
|
3522
|
+
boxShadow: string;
|
|
3523
|
+
marginBottom: any;
|
|
3535
3524
|
'& .SCPrivateMessageSnippetItem-time': {
|
|
3536
3525
|
float: string;
|
|
3537
3526
|
fontSize: any;
|
|
@@ -3572,21 +3561,45 @@ declare const theme: {
|
|
|
3572
3561
|
SCPrivateMessageSnippets: {
|
|
3573
3562
|
styleOverrides: {
|
|
3574
3563
|
root: ({ theme }: any) => {
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
maxHeight: string;
|
|
3578
|
-
overflow: string;
|
|
3579
|
-
};
|
|
3564
|
+
height: string;
|
|
3565
|
+
width: string;
|
|
3580
3566
|
'& .MuiCardContent-root': {
|
|
3581
3567
|
display: string;
|
|
3582
3568
|
flexDirection: string;
|
|
3569
|
+
height: string;
|
|
3570
|
+
padding: any;
|
|
3571
|
+
'& .SCPrivateMessageSnippets-search-bar': {
|
|
3572
|
+
padding: any;
|
|
3573
|
+
'& .SCPrivateMessageSnippets-input': {
|
|
3574
|
+
borderRadius: any;
|
|
3575
|
+
backgroundColor: string;
|
|
3576
|
+
'&:hover': {
|
|
3577
|
+
backgroundColor: string;
|
|
3578
|
+
};
|
|
3579
|
+
'& .MuiInputBase-input, MuiFilledInput-input': {
|
|
3580
|
+
padding: number;
|
|
3581
|
+
};
|
|
3582
|
+
'& .SCPrivateMessageSnippets-icon': {
|
|
3583
|
+
marginRight: any;
|
|
3584
|
+
};
|
|
3585
|
+
};
|
|
3586
|
+
};
|
|
3587
|
+
'& .SCPrivateMessageSnippets-new-message-button': {
|
|
3588
|
+
color: string;
|
|
3589
|
+
alignSelf: string;
|
|
3590
|
+
backgroundColor: string;
|
|
3591
|
+
'&:hover': {
|
|
3592
|
+
borderWidth: string;
|
|
3593
|
+
backgroundColor: string;
|
|
3594
|
+
};
|
|
3595
|
+
};
|
|
3583
3596
|
'& .MuiList-root': {
|
|
3597
|
+
flexGrow: number;
|
|
3598
|
+
overflowY: string;
|
|
3599
|
+
padding: any;
|
|
3584
3600
|
'& .Mui-selected': {
|
|
3585
3601
|
backgroundColor: string;
|
|
3586
3602
|
};
|
|
3587
|
-
'&:last-child': {
|
|
3588
|
-
marginBottom: any;
|
|
3589
|
-
};
|
|
3590
3603
|
'& .MuiButtonBase-root, MuiListItemButton-root': {
|
|
3591
3604
|
'&:hover': {
|
|
3592
3605
|
borderRadius: string;
|
|
@@ -3598,48 +3611,22 @@ declare const theme: {
|
|
|
3598
3611
|
'& .MuiPaper-root, MuiCard-root, SCWidget-root, SCPrivateMessageSnippets-root, MuiCardContent-root': {
|
|
3599
3612
|
padding: any;
|
|
3600
3613
|
};
|
|
3601
|
-
'& .SCPrivateMessageSnippets-input': {
|
|
3602
|
-
'& .MuiInputBase-input, MuiFilledInput-input': {
|
|
3603
|
-
padding: any;
|
|
3604
|
-
};
|
|
3605
|
-
borderRadius: any;
|
|
3606
|
-
backgroundColor: string;
|
|
3607
|
-
'&:hover': {
|
|
3608
|
-
backgroundColor: string;
|
|
3609
|
-
};
|
|
3610
|
-
height: any;
|
|
3611
|
-
'& .SCPrivateMessageSnippets-icon': {
|
|
3612
|
-
marginRight: any;
|
|
3613
|
-
};
|
|
3614
|
-
};
|
|
3615
|
-
'& .SCPrivateMessageSnippets-new-message-button': {
|
|
3616
|
-
color: string;
|
|
3617
|
-
alignSelf: string;
|
|
3618
|
-
backgroundColor: string;
|
|
3619
|
-
'&:hover': {
|
|
3620
|
-
borderWidth: string;
|
|
3621
|
-
backgroundColor: string;
|
|
3622
|
-
};
|
|
3623
|
-
};
|
|
3624
3614
|
};
|
|
3625
3615
|
};
|
|
3626
3616
|
};
|
|
3627
3617
|
SCPrivateMessageThread: {
|
|
3628
3618
|
styleOverrides: {
|
|
3629
3619
|
root: ({ theme }: any) => {
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
maxHeight: string;
|
|
3633
|
-
};
|
|
3620
|
+
height: string;
|
|
3621
|
+
width: string;
|
|
3634
3622
|
backgroundColor: string;
|
|
3635
|
-
|
|
3623
|
+
borderRadius: number;
|
|
3636
3624
|
'& .MuiCardContent-root': {
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
};
|
|
3640
|
-
overflow: string;
|
|
3641
|
-
padding: any;
|
|
3625
|
+
display: string;
|
|
3626
|
+
flexDirection: string;
|
|
3642
3627
|
height: string;
|
|
3628
|
+
padding: number;
|
|
3629
|
+
position: string;
|
|
3643
3630
|
'& .MuiAlert-root': {
|
|
3644
3631
|
position: string;
|
|
3645
3632
|
bottom: number;
|
|
@@ -3648,8 +3635,11 @@ declare const theme: {
|
|
|
3648
3635
|
display: string;
|
|
3649
3636
|
justifyContent: string;
|
|
3650
3637
|
};
|
|
3651
|
-
'& .MuiList-root': {
|
|
3652
|
-
|
|
3638
|
+
'& > .MuiList-root': {
|
|
3639
|
+
flexGrow: number;
|
|
3640
|
+
overflowY: string;
|
|
3641
|
+
margin: number;
|
|
3642
|
+
padding: any;
|
|
3653
3643
|
'& .MuiListItem-root': {
|
|
3654
3644
|
'&.SCPrivateMessageThread-receiver': {
|
|
3655
3645
|
backgroundColor: any;
|
|
@@ -3672,16 +3662,13 @@ declare const theme: {
|
|
|
3672
3662
|
};
|
|
3673
3663
|
};
|
|
3674
3664
|
'& .SCPrivateMessageThread-empty-message': {
|
|
3675
|
-
|
|
3676
|
-
top: string;
|
|
3665
|
+
height: string;
|
|
3677
3666
|
display: string;
|
|
3678
3667
|
justifyContent: string;
|
|
3668
|
+
alignItems: string;
|
|
3679
3669
|
fontSize: string;
|
|
3680
3670
|
};
|
|
3681
3671
|
'& .SCPrivateMessageThread-new-message-header': {
|
|
3682
|
-
position: string;
|
|
3683
|
-
top: number;
|
|
3684
|
-
right: number;
|
|
3685
3672
|
display: string;
|
|
3686
3673
|
width: string;
|
|
3687
3674
|
height: any;
|
|
@@ -3742,10 +3729,9 @@ declare const theme: {
|
|
|
3742
3729
|
styleOverrides: {
|
|
3743
3730
|
root: ({ theme }: any) => {
|
|
3744
3731
|
borderRadius: any;
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
paddingLeft: string;
|
|
3732
|
+
padding: any;
|
|
3733
|
+
boxShadow: string;
|
|
3734
|
+
marginBottom: any;
|
|
3749
3735
|
'& .MuiListItemSecondaryAction-root': {
|
|
3750
3736
|
right: any;
|
|
3751
3737
|
top: any;
|
|
@@ -3819,14 +3805,6 @@ declare const theme: {
|
|
|
3819
3805
|
SCPrivateMessageEditor: {
|
|
3820
3806
|
styleOverrides: {
|
|
3821
3807
|
root: ({ theme }: any) => {
|
|
3822
|
-
[x: number]: {
|
|
3823
|
-
position: string;
|
|
3824
|
-
};
|
|
3825
|
-
width: string;
|
|
3826
|
-
position: string;
|
|
3827
|
-
bottom: number;
|
|
3828
|
-
left: number;
|
|
3829
|
-
zIndex: number;
|
|
3830
3808
|
backgroundColor: string;
|
|
3831
3809
|
'& .MuiIcon-root': {
|
|
3832
3810
|
fontSize: string;
|
|
@@ -3848,6 +3826,7 @@ declare const theme: {
|
|
|
3848
3826
|
};
|
|
3849
3827
|
};
|
|
3850
3828
|
'& .MuiPaper-root, MuiCard-root, SCWidget-root, SCMessageMediaUploader-root': {
|
|
3829
|
+
borderRadius: number;
|
|
3851
3830
|
height: any;
|
|
3852
3831
|
backgroundColor: any;
|
|
3853
3832
|
'& .MuiCardContent-root': {
|
|
@@ -3859,7 +3838,7 @@ declare const theme: {
|
|
|
3859
3838
|
padding: any;
|
|
3860
3839
|
display: string;
|
|
3861
3840
|
flexDirection: string;
|
|
3862
|
-
|
|
3841
|
+
height: any;
|
|
3863
3842
|
'& .SCMessageMediaUploader-close': {
|
|
3864
3843
|
'& .MuiIcon-root': {
|
|
3865
3844
|
fontSize: string;
|
|
@@ -3942,17 +3921,15 @@ declare const theme: {
|
|
|
3942
3921
|
SCPrivateMessageThreadSkeleton: {
|
|
3943
3922
|
styleOverrides: {
|
|
3944
3923
|
root: ({ theme }: any) => {
|
|
3945
|
-
[x: number]: {
|
|
3946
|
-
height: string;
|
|
3947
|
-
};
|
|
3948
3924
|
height: string;
|
|
3925
|
+
width: string;
|
|
3926
|
+
borderRadius: number;
|
|
3949
3927
|
'& .MuiCardContent-root': {
|
|
3950
3928
|
padding: number;
|
|
3951
3929
|
'& .MuiList-root .MuiListItem-root': {
|
|
3952
3930
|
[x: number]: {
|
|
3953
3931
|
width: string;
|
|
3954
3932
|
};
|
|
3955
|
-
padding: any;
|
|
3956
3933
|
height: any;
|
|
3957
3934
|
};
|
|
3958
3935
|
'&:last-child': {
|
package/lib/esm/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,oBAAoB,CAAC;AAC5B,OAAO,6BAA6B,CAAC;AAmHrC;;GAEG;AAEH,QAAA,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,oBAAoB,CAAC;AAC5B,OAAO,6BAA6B,CAAC;AAmHrC;;GAEG;AAEH,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0KV,CAAC;AACF,eAAe,KAAK,CAAC"}
|