@selfcommunity/react-theme-default 0.1.0-alpha.135 → 0.1.0-alpha.137
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/SCBaseDialog.d.ts +2 -0
- package/lib/cjs/components/SCBaseDialog.d.ts.map +1 -1
- package/lib/cjs/components/SCBaseDialog.js +3 -1
- package/lib/cjs/components/SCBaseDialog.js.map +1 -1
- package/lib/cjs/components/SCCategory.d.ts +1 -1
- package/lib/cjs/components/SCCategory.js +1 -1
- package/lib/cjs/components/SCCategory.js.map +1 -1
- package/lib/cjs/components/SCCategorySkeleton.d.ts +3 -0
- package/lib/cjs/components/SCCategorySkeleton.d.ts.map +1 -1
- package/lib/cjs/components/SCCategorySkeleton.js +3 -0
- package/lib/cjs/components/SCCategorySkeleton.js.map +1 -1
- package/lib/cjs/components/SCComposer.d.ts +21 -0
- package/lib/cjs/components/SCComposer.d.ts.map +1 -1
- package/lib/cjs/components/SCComposer.js +21 -0
- package/lib/cjs/components/SCComposer.js.map +1 -1
- package/lib/cjs/components/SCNotificationItem.d.ts +7 -0
- package/lib/cjs/components/SCNotificationItem.d.ts.map +1 -1
- package/lib/cjs/components/SCNotificationItem.js +7 -0
- package/lib/cjs/components/SCNotificationItem.js.map +1 -1
- package/lib/cjs/components/SCPrivateMessageEditor.d.ts +48 -34
- package/lib/cjs/components/SCPrivateMessageEditor.d.ts.map +1 -1
- package/lib/cjs/components/SCPrivateMessageEditor.js +52 -39
- package/lib/cjs/components/SCPrivateMessageEditor.js.map +1 -1
- package/lib/cjs/index.d.ts +82 -35
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/esm/components/SCBaseDialog.d.ts +2 -0
- package/lib/esm/components/SCBaseDialog.d.ts.map +1 -1
- package/lib/esm/components/SCBaseDialog.js +3 -1
- package/lib/esm/components/SCBaseDialog.js.map +1 -1
- package/lib/esm/components/SCCategory.d.ts +1 -1
- package/lib/esm/components/SCCategory.js +1 -1
- package/lib/esm/components/SCCategory.js.map +1 -1
- package/lib/esm/components/SCCategorySkeleton.d.ts +3 -0
- package/lib/esm/components/SCCategorySkeleton.d.ts.map +1 -1
- package/lib/esm/components/SCCategorySkeleton.js +3 -0
- package/lib/esm/components/SCCategorySkeleton.js.map +1 -1
- package/lib/esm/components/SCComposer.d.ts +21 -0
- package/lib/esm/components/SCComposer.d.ts.map +1 -1
- package/lib/esm/components/SCComposer.js +21 -0
- package/lib/esm/components/SCComposer.js.map +1 -1
- package/lib/esm/components/SCNotificationItem.d.ts +7 -0
- package/lib/esm/components/SCNotificationItem.d.ts.map +1 -1
- package/lib/esm/components/SCNotificationItem.js +7 -0
- package/lib/esm/components/SCNotificationItem.js.map +1 -1
- package/lib/esm/components/SCPrivateMessageEditor.d.ts +48 -34
- package/lib/esm/components/SCPrivateMessageEditor.d.ts.map +1 -1
- package/lib/esm/components/SCPrivateMessageEditor.js +52 -39
- package/lib/esm/components/SCPrivateMessageEditor.js.map +1 -1
- package/lib/esm/index.d.ts +82 -35
- package/lib/esm/index.d.ts.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
|
@@ -7,7 +7,8 @@ const Component = {
|
|
|
7
7
|
fontSize: '1.571rem'
|
|
8
8
|
},
|
|
9
9
|
'& .SCPrivateMessageEditor-message-input': {
|
|
10
|
-
width: '100%'
|
|
10
|
+
width: '100%',
|
|
11
|
+
backgroundColor: alpha(theme.palette.secondary.main, theme.palette.action.activatedOpacity)
|
|
11
12
|
},
|
|
12
13
|
'& .MuiInputBase-root, MuiFilledInput-root': {
|
|
13
14
|
borderRadius: 0,
|
|
@@ -19,6 +20,15 @@ const Component = {
|
|
|
19
20
|
border: `2px solid transparent`,
|
|
20
21
|
'&:hover': {
|
|
21
22
|
border: `2px solid${theme.palette.secondary.main}`
|
|
23
|
+
},
|
|
24
|
+
'&.Mui-disabled': { border: 'none' }
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
'& .SCPrivateMessageEditor-emoji-section, SCEmojiPicker-root': {
|
|
28
|
+
'& .EmojiPickerReact.epr-main': {
|
|
29
|
+
borderRadius: 0,
|
|
30
|
+
'& .epr-preview': {
|
|
31
|
+
display: 'none'
|
|
22
32
|
}
|
|
23
33
|
}
|
|
24
34
|
},
|
|
@@ -26,21 +36,16 @@ const Component = {
|
|
|
26
36
|
borderRadius: 0,
|
|
27
37
|
height: theme.spacing(15),
|
|
28
38
|
backgroundColor: theme.palette.secondary.light,
|
|
39
|
+
'& .MuiCardHeader-root': {
|
|
40
|
+
paddingBottom: theme.spacing(0),
|
|
41
|
+
'& .SCMessageMediaUploader-close-button': {
|
|
42
|
+
fontSize: '0.857rem'
|
|
43
|
+
}
|
|
44
|
+
},
|
|
29
45
|
'& .MuiCardContent-root': {
|
|
30
|
-
|
|
31
|
-
'&:hover': {
|
|
32
|
-
backgroundColor: alpha(theme.palette.secondary.main, theme.palette.action.selectedOpacity)
|
|
33
|
-
},
|
|
34
|
-
overflow: 'visible',
|
|
46
|
+
overflow: 'auto',
|
|
35
47
|
padding: theme.spacing(1),
|
|
36
|
-
|
|
37
|
-
flexDirection: 'column',
|
|
38
|
-
height: theme.mixins.toolbar.minHeight,
|
|
39
|
-
'& .SCMessageMediaUploader-close': {
|
|
40
|
-
'& .MuiIcon-root': {
|
|
41
|
-
fontSize: '0.857rem'
|
|
42
|
-
}
|
|
43
|
-
},
|
|
48
|
+
//height: theme.mixins.toolbar.minHeight,
|
|
44
49
|
'& .SCMessageMediaUploader-upload-section': {
|
|
45
50
|
'& .SCMessageMediaUploader-upload-button': {
|
|
46
51
|
display: 'flex',
|
|
@@ -48,44 +53,52 @@ const Component = {
|
|
|
48
53
|
fontSize: '1.571rem'
|
|
49
54
|
}
|
|
50
55
|
},
|
|
56
|
+
'& .MuiList-root': {
|
|
57
|
+
paddingTop: theme.spacing(0),
|
|
58
|
+
paddingBottom: theme.spacing(0)
|
|
59
|
+
},
|
|
51
60
|
'& .SCMessageMediaUploader-preview-content': {
|
|
52
61
|
position: 'relative',
|
|
53
62
|
display: 'flex',
|
|
54
63
|
margin: '0 auto',
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
64
|
+
'& .MuiListItem-root': {
|
|
65
|
+
height: theme.spacing(6.25),
|
|
66
|
+
marginRight: theme.spacing(3),
|
|
67
|
+
img: {
|
|
68
|
+
width: theme.spacing(6.25),
|
|
69
|
+
height: theme.spacing(6.25)
|
|
70
|
+
},
|
|
71
|
+
video: {
|
|
72
|
+
objectFit: 'fill',
|
|
73
|
+
width: theme.spacing(6.25),
|
|
74
|
+
height: theme.spacing(6.25)
|
|
75
|
+
}
|
|
65
76
|
},
|
|
66
77
|
'& .SCMessageMediaUploader-preview-actions': {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
78
|
+
height: '100%',
|
|
79
|
+
background: 'transparent',
|
|
80
|
+
'&:hover, &:active, &.SCMessageMediaUploader-progress': {
|
|
81
|
+
background: 'rgba(0,0,0,0.5)'
|
|
82
|
+
},
|
|
70
83
|
'& .MuiButtonBase-root, .MuiTypography-root': {
|
|
71
84
|
color: theme.palette.common.white,
|
|
72
85
|
position: 'absolute',
|
|
73
86
|
top: '50%',
|
|
74
87
|
left: '50%',
|
|
75
88
|
transform: 'translate(-50%, -50%)'
|
|
76
|
-
},
|
|
77
|
-
'&:hover, &:active': {
|
|
78
|
-
background: 'rgba(0,0,0,0.5)'
|
|
79
|
-
},
|
|
80
|
-
'& .SCMessageMediaUploader-progress': {
|
|
81
|
-
background: 'rgba(0,0,0,0.5)',
|
|
82
|
-
height: '100%'
|
|
83
89
|
}
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
90
|
+
},
|
|
91
|
+
'& .SCMessageMediaUploader-preview-info': {
|
|
92
|
+
position: 'absolute',
|
|
93
|
+
left: '50%',
|
|
94
|
+
bottom: 0,
|
|
95
|
+
transform: 'translate(-50%, 100%)',
|
|
96
|
+
overflow: 'hidden',
|
|
97
|
+
textOverflow: 'ellipsis',
|
|
98
|
+
width: theme.spacing(6.25),
|
|
99
|
+
'& .MuiTypography-root': {
|
|
100
|
+
fontSize: '0.75rem'
|
|
101
|
+
}
|
|
89
102
|
}
|
|
90
103
|
}
|
|
91
104
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCPrivateMessageEditor.js","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageEditor.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,gBAAgB,CAAC;YAC3F,iBAAiB,EAAE;gBACjB,QAAQ,EAAE,UAAU;aACrB;YACD,yCAAyC,EAAE;gBACzC,KAAK,EAAE,MAAM;
|
|
1
|
+
{"version":3,"file":"SCPrivateMessageEditor.js","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageEditor.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,gBAAgB,CAAC;YAC3F,iBAAiB,EAAE;gBACjB,QAAQ,EAAE,UAAU;aACrB;YACD,yCAAyC,EAAE;gBACzC,KAAK,EAAE,MAAM;gBACb,eAAe,EAAE,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,gBAAgB,CAAC;aAC5F;YACD,2CAA2C,EAAE;gBAC3C,YAAY,EAAE,CAAC;gBACf,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC;gBACtC,YAAY,EAAE;oBACZ,eAAe,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK;oBAC3C,YAAY,EAAE,KAAK,CAAC,KAAK,CAAC,YAAY;oBACtC,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;oBACzB,MAAM,EAAE,uBAAuB;oBAC/B,SAAS,EAAE;wBACT,MAAM,EAAE,YAAY,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,EAAE;qBACnD;oBACD,gBAAgB,EAAE,EAAC,MAAM,EAAE,MAAM,EAAC;iBACnC;aACF;YACD,6DAA6D,EAAE;gBAC7D,8BAA8B,EAAE;oBAC9B,YAAY,EAAE,CAAC;oBACf,gBAAgB,EAAE;wBAChB,OAAO,EAAE,MAAM;qBAChB;iBACF;aACF;YACD,4EAA4E,EAAE;gBAC5E,YAAY,EAAE,CAAC;gBACf,MAAM,EAAE,KAAK,CAAC,OAAO,CAAC,EAAE,CAAC;gBACzB,eAAe,EAAE,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK;gBAC9C,uBAAuB,EAAE;oBACvB,aAAa,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;oBAC/B,wCAAwC,EAAE;wBACxC,QAAQ,EAAE,UAAU;qBACrB;iBACF;gBACD,wBAAwB,EAAE;oBACxB,QAAQ,EAAE,MAAM;oBAChB,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;oBACzB,yCAAyC;oBACzC,0CAA0C,EAAE;wBAC1C,yCAAyC,EAAE;4BACzC,OAAO,EAAE,MAAM;4BACf,MAAM,EAAE,QAAQ;4BAChB,QAAQ,EAAE,UAAU;yBACrB;qBACF;oBACD,iBAAiB,EAAE;wBACjB,UAAU,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;wBAC5B,aAAa,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;qBAChC;oBACD,2CAA2C,EAAE;wBAC3C,QAAQ,EAAE,UAAU;wBACpB,OAAO,EAAE,MAAM;wBACf,MAAM,EAAE,QAAQ;wBAChB,qBAAqB,EAAE;4BACrB,MAAM,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC;4BAC3B,WAAW,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;4BAC7B,GAAG,EAAE;gCACH,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC;gCAC1B,MAAM,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC;6BAC5B;4BACD,KAAK,EAAE;gCACL,SAAS,EAAE,MAAM;gCACjB,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC;gCAC1B,MAAM,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC;6BAC5B;yBACF;wBACD,2CAA2C,EAAE;4BAC3C,MAAM,EAAE,MAAM;4BACd,UAAU,EAAE,aAAa;4BACzB,sDAAsD,EAAE;gCACtD,UAAU,EAAE,iBAAiB;6BAC9B;4BACD,4CAA4C,EAAE;gCAC5C,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK;gCACjC,QAAQ,EAAE,UAAU;gCACpB,GAAG,EAAE,KAAK;gCACV,IAAI,EAAE,KAAK;gCACX,SAAS,EAAE,uBAAuB;6BACnC;yBACF;wBACD,wCAAwC,EAAE;4BACxC,QAAQ,EAAE,UAAU;4BACpB,IAAI,EAAE,KAAK;4BACX,MAAM,EAAE,CAAC;4BACT,SAAS,EAAE,uBAAuB;4BAClC,QAAQ,EAAE,QAAQ;4BAClB,YAAY,EAAE,UAAU;4BACxB,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC;4BAC1B,uBAAuB,EAAE;gCACvB,QAAQ,EAAE,SAAS;6BACpB;yBACF;qBACF;iBACF;aACF;SACF,CAAC;KACH;CACF,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -231,6 +231,7 @@ declare const theme: {
|
|
|
231
231
|
'& .infinite-scroll-component__outerdiv': {
|
|
232
232
|
height: string;
|
|
233
233
|
'& .infinite-scroll-component': {
|
|
234
|
+
paddingRight: number;
|
|
234
235
|
' > .': {
|
|
235
236
|
marginBottom: any;
|
|
236
237
|
};
|
|
@@ -239,6 +240,7 @@ declare const theme: {
|
|
|
239
240
|
paddingBottom: number;
|
|
240
241
|
'& .MuiListItem-root': {
|
|
241
242
|
paddingLeft: number;
|
|
243
|
+
paddingRight: number;
|
|
242
244
|
'& .SCBaseItemButton-root': {
|
|
243
245
|
borderRadius: number;
|
|
244
246
|
};
|
|
@@ -465,7 +467,7 @@ declare const theme: {
|
|
|
465
467
|
borderRadius: number;
|
|
466
468
|
'& .SCCategory-category-image': {
|
|
467
469
|
'& img': {
|
|
468
|
-
borderRadius:
|
|
470
|
+
borderRadius: any;
|
|
469
471
|
};
|
|
470
472
|
};
|
|
471
473
|
'& .SCBaseItemButton-primary, & .SCBaseItemButton-secondary': {
|
|
@@ -574,6 +576,9 @@ declare const theme: {
|
|
|
574
576
|
SCCategorySkeleton: {
|
|
575
577
|
styleOverrides: {
|
|
576
578
|
root: ({ theme }: any) => {
|
|
579
|
+
'& .SCCategorySkeleton-image': {
|
|
580
|
+
borderRadius: any;
|
|
581
|
+
};
|
|
577
582
|
'& .SCCategorySkeleton-primary': {
|
|
578
583
|
marginBottom: any;
|
|
579
584
|
};
|
|
@@ -971,6 +976,27 @@ declare const theme: {
|
|
|
971
976
|
'& .SCComposer-mediaContent, & .SCComposer-audienceContent, & .SCComposer-locationContent': {
|
|
972
977
|
minHeight: number;
|
|
973
978
|
};
|
|
979
|
+
'& .SCComposer-audienceContent': {
|
|
980
|
+
maxWidth: number;
|
|
981
|
+
margin: any;
|
|
982
|
+
'& .MuiTabs-root': {
|
|
983
|
+
margin: any;
|
|
984
|
+
'& .MuiTabs-flexContainer': {
|
|
985
|
+
justifyContent: string;
|
|
986
|
+
'& .MuiTab-root': {
|
|
987
|
+
minHeight: any;
|
|
988
|
+
flexDirection: string;
|
|
989
|
+
'& .MuiTab-iconWrapper': {
|
|
990
|
+
marginRight: any;
|
|
991
|
+
fontSize: string;
|
|
992
|
+
};
|
|
993
|
+
};
|
|
994
|
+
};
|
|
995
|
+
};
|
|
996
|
+
'& .SCComposer-block': {
|
|
997
|
+
marginBottom: any;
|
|
998
|
+
};
|
|
999
|
+
};
|
|
974
1000
|
'& .SCComposer-block': {
|
|
975
1001
|
padding: any;
|
|
976
1002
|
};
|
|
@@ -2855,12 +2881,19 @@ declare const theme: {
|
|
|
2855
2881
|
'& .SCContributionNotification-username': {
|
|
2856
2882
|
fontWeight: any;
|
|
2857
2883
|
};
|
|
2884
|
+
'& a': {
|
|
2885
|
+
color: any;
|
|
2886
|
+
textDecoration: string;
|
|
2887
|
+
};
|
|
2858
2888
|
};
|
|
2859
2889
|
'& .SCNotificationItem-secondary': {
|
|
2860
2890
|
'& .SCDateTimeAgo-root, & .MuiStack-root': {
|
|
2861
2891
|
color: any;
|
|
2862
2892
|
minHeight: any;
|
|
2863
2893
|
};
|
|
2894
|
+
'& a': {
|
|
2895
|
+
textDecoration: string;
|
|
2896
|
+
};
|
|
2864
2897
|
};
|
|
2865
2898
|
};
|
|
2866
2899
|
'& .SCNotificationItem-actions': {
|
|
@@ -3811,6 +3844,7 @@ declare const theme: {
|
|
|
3811
3844
|
};
|
|
3812
3845
|
'& .SCPrivateMessageEditor-message-input': {
|
|
3813
3846
|
width: string;
|
|
3847
|
+
backgroundColor: string;
|
|
3814
3848
|
};
|
|
3815
3849
|
'& .MuiInputBase-root, MuiFilledInput-root': {
|
|
3816
3850
|
borderRadius: number;
|
|
@@ -3823,27 +3857,32 @@ declare const theme: {
|
|
|
3823
3857
|
'&:hover': {
|
|
3824
3858
|
border: string;
|
|
3825
3859
|
};
|
|
3860
|
+
'&.Mui-disabled': {
|
|
3861
|
+
border: string;
|
|
3862
|
+
};
|
|
3863
|
+
};
|
|
3864
|
+
};
|
|
3865
|
+
'& .SCPrivateMessageEditor-emoji-section, SCEmojiPicker-root': {
|
|
3866
|
+
'& .EmojiPickerReact.epr-main': {
|
|
3867
|
+
borderRadius: number;
|
|
3868
|
+
'& .epr-preview': {
|
|
3869
|
+
display: string;
|
|
3870
|
+
};
|
|
3826
3871
|
};
|
|
3827
3872
|
};
|
|
3828
3873
|
'& .MuiPaper-root, MuiCard-root, SCWidget-root, SCMessageMediaUploader-root': {
|
|
3829
3874
|
borderRadius: number;
|
|
3830
3875
|
height: any;
|
|
3831
3876
|
backgroundColor: any;
|
|
3832
|
-
'& .
|
|
3833
|
-
|
|
3834
|
-
'
|
|
3835
|
-
|
|
3877
|
+
'& .MuiCardHeader-root': {
|
|
3878
|
+
paddingBottom: any;
|
|
3879
|
+
'& .SCMessageMediaUploader-close-button': {
|
|
3880
|
+
fontSize: string;
|
|
3836
3881
|
};
|
|
3882
|
+
};
|
|
3883
|
+
'& .MuiCardContent-root': {
|
|
3837
3884
|
overflow: string;
|
|
3838
3885
|
padding: any;
|
|
3839
|
-
display: string;
|
|
3840
|
-
flexDirection: string;
|
|
3841
|
-
height: any;
|
|
3842
|
-
'& .SCMessageMediaUploader-close': {
|
|
3843
|
-
'& .MuiIcon-root': {
|
|
3844
|
-
fontSize: string;
|
|
3845
|
-
};
|
|
3846
|
-
};
|
|
3847
3886
|
'& .SCMessageMediaUploader-upload-section': {
|
|
3848
3887
|
'& .SCMessageMediaUploader-upload-button': {
|
|
3849
3888
|
display: string;
|
|
@@ -3851,25 +3890,33 @@ declare const theme: {
|
|
|
3851
3890
|
fontSize: string;
|
|
3852
3891
|
};
|
|
3853
3892
|
};
|
|
3893
|
+
'& .MuiList-root': {
|
|
3894
|
+
paddingTop: any;
|
|
3895
|
+
paddingBottom: any;
|
|
3896
|
+
};
|
|
3854
3897
|
'& .SCMessageMediaUploader-preview-content': {
|
|
3855
3898
|
position: string;
|
|
3856
3899
|
display: string;
|
|
3857
3900
|
margin: string;
|
|
3858
|
-
|
|
3859
|
-
height: any;
|
|
3860
|
-
img: {
|
|
3861
|
-
resizeMode: string;
|
|
3862
|
-
width: any;
|
|
3863
|
-
height: any;
|
|
3864
|
-
};
|
|
3865
|
-
video: {
|
|
3866
|
-
width: any;
|
|
3901
|
+
'& .MuiListItem-root': {
|
|
3867
3902
|
height: any;
|
|
3903
|
+
marginRight: any;
|
|
3904
|
+
img: {
|
|
3905
|
+
width: any;
|
|
3906
|
+
height: any;
|
|
3907
|
+
};
|
|
3908
|
+
video: {
|
|
3909
|
+
objectFit: string;
|
|
3910
|
+
width: any;
|
|
3911
|
+
height: any;
|
|
3912
|
+
};
|
|
3868
3913
|
};
|
|
3869
3914
|
'& .SCMessageMediaUploader-preview-actions': {
|
|
3870
|
-
width: string;
|
|
3871
3915
|
height: string;
|
|
3872
|
-
|
|
3916
|
+
background: string;
|
|
3917
|
+
'&:hover, &:active, &.SCMessageMediaUploader-progress': {
|
|
3918
|
+
background: string;
|
|
3919
|
+
};
|
|
3873
3920
|
'& .MuiButtonBase-root, .MuiTypography-root': {
|
|
3874
3921
|
color: any;
|
|
3875
3922
|
position: string;
|
|
@@ -3877,18 +3924,18 @@ declare const theme: {
|
|
|
3877
3924
|
left: string;
|
|
3878
3925
|
transform: string;
|
|
3879
3926
|
};
|
|
3880
|
-
'&:hover, &:active': {
|
|
3881
|
-
background: string;
|
|
3882
|
-
};
|
|
3883
|
-
'& .SCMessageMediaUploader-progress': {
|
|
3884
|
-
background: string;
|
|
3885
|
-
height: string;
|
|
3886
|
-
};
|
|
3887
3927
|
};
|
|
3888
|
-
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
|
|
3928
|
+
'& .SCMessageMediaUploader-preview-info': {
|
|
3929
|
+
position: string;
|
|
3930
|
+
left: string;
|
|
3931
|
+
bottom: number;
|
|
3932
|
+
transform: string;
|
|
3933
|
+
overflow: string;
|
|
3934
|
+
textOverflow: string;
|
|
3935
|
+
width: any;
|
|
3936
|
+
'& .MuiTypography-root': {
|
|
3937
|
+
fontSize: string;
|
|
3938
|
+
};
|
|
3892
3939
|
};
|
|
3893
3940
|
};
|
|
3894
3941
|
};
|
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"}
|