@selfcommunity/react-theme-default 0.1.0-alpha.287 → 0.1.0-alpha.288
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/SCBottomNavigation.d.ts +7 -0
- package/lib/cjs/components/SCBottomNavigation.js +8 -1
- package/lib/cjs/components/SCComposer.d.ts +163 -295
- package/lib/cjs/components/SCComposer.js +173 -314
- package/lib/cjs/components/SCFeedObjectMediaPreview.d.ts +11 -0
- package/lib/cjs/components/{SCNavigationToolbarMobileSkeleton.js → SCFeedObjectMediaPreview.js} +4 -4
- package/lib/cjs/components/SCInlineComposerWidget.d.ts +31 -7
- package/lib/cjs/components/SCInlineComposerWidget.js +31 -7
- package/lib/cjs/components/SCLightbox.d.ts +1 -0
- package/lib/cjs/components/SCLightbox.js +2 -1
- package/lib/cjs/components/SCMediaFile.d.ts +158 -0
- package/lib/cjs/components/SCMediaFile.js +160 -0
- package/lib/cjs/components/SCMediaLink.d.ts +65 -0
- package/lib/cjs/components/SCMediaLink.js +68 -0
- package/lib/cjs/components/SCMediaShare.d.ts +6 -0
- package/lib/cjs/components/SCMediaShare.js +8 -0
- package/lib/cjs/components/SCNavigationToolbarMobile.d.ts +6 -0
- package/lib/cjs/components/SCNavigationToolbarMobile.js +6 -0
- package/lib/cjs/fonts/community/icons.eot +0 -0
- package/lib/cjs/fonts/community/icons.svg +30 -27
- package/lib/cjs/fonts/community/icons.ttf +0 -0
- package/lib/cjs/fonts/community/icons.woff +0 -0
- package/lib/cjs/fonts/community/icons.woff2 +0 -0
- package/lib/cjs/fonts/community-icons.css +12 -9
- package/lib/cjs/index.d.ts +425 -333
- package/lib/cjs/index.js +5 -5
- package/lib/esm/components/SCBottomNavigation.d.ts +7 -0
- package/lib/esm/components/SCBottomNavigation.js +8 -1
- package/lib/esm/components/SCComposer.d.ts +163 -295
- package/lib/esm/components/SCComposer.js +173 -314
- package/lib/esm/components/SCFeedObjectMediaPreview.d.ts +11 -0
- package/lib/esm/components/SCFeedObjectMediaPreview.js +11 -0
- package/lib/esm/components/SCInlineComposerWidget.d.ts +31 -7
- package/lib/esm/components/SCInlineComposerWidget.js +31 -7
- package/lib/esm/components/SCLightbox.d.ts +1 -0
- package/lib/esm/components/SCLightbox.js +2 -1
- package/lib/esm/components/SCMediaFile.d.ts +158 -0
- package/lib/esm/components/SCMediaFile.js +158 -0
- package/lib/esm/components/SCMediaLink.d.ts +65 -0
- package/lib/esm/components/SCMediaLink.js +66 -0
- package/lib/esm/components/SCMediaShare.d.ts +6 -0
- package/lib/esm/components/SCMediaShare.js +6 -0
- package/lib/esm/components/SCNavigationToolbarMobile.d.ts +6 -0
- package/lib/esm/components/SCNavigationToolbarMobile.js +6 -0
- package/lib/esm/fonts/community/icons.eot +0 -0
- package/lib/esm/fonts/community/icons.svg +30 -27
- package/lib/esm/fonts/community/icons.ttf +0 -0
- package/lib/esm/fonts/community/icons.woff +0 -0
- package/lib/esm/fonts/community/icons.woff2 +0 -0
- package/lib/esm/fonts/community-icons.css +12 -9
- package/lib/esm/index.d.ts +425 -333
- package/lib/esm/index.js +5 -5
- package/lib/umd/community/icons.eot +0 -0
- package/lib/umd/community/icons.svg +30 -27
- package/lib/umd/community/icons.ttf +0 -0
- package/lib/umd/community/icons.woff +0 -0
- package/lib/umd/community/icons.woff2 +0 -0
- package/lib/umd/react-theme-default.js +2 -2
- package/package.json +4 -4
- package/lib/cjs/components/SCComposerPoll.d.ts +0 -26
- package/lib/cjs/components/SCComposerPoll.js +0 -28
- package/lib/cjs/components/SCNavigationToolbarMobileSkeleton.d.ts +0 -11
- package/lib/esm/components/SCComposerPoll.d.ts +0 -26
- package/lib/esm/components/SCComposerPoll.js +0 -26
- package/lib/esm/components/SCNavigationToolbarMobileSkeleton.d.ts +0 -11
- package/lib/esm/components/SCNavigationToolbarMobileSkeleton.js +0 -11
package/lib/esm/index.d.ts
CHANGED
|
@@ -482,10 +482,17 @@ declare const theme: {
|
|
|
482
482
|
fontSize: string;
|
|
483
483
|
color: any;
|
|
484
484
|
borderTop: string;
|
|
485
|
+
minWidth: number;
|
|
485
486
|
'&.Mui-selected, &:hover': {
|
|
486
487
|
color: any;
|
|
487
488
|
borderTop: string;
|
|
488
489
|
};
|
|
490
|
+
'&.SCBottomNavigation-composer': {
|
|
491
|
+
'&.Mui-selected, &:hover': {
|
|
492
|
+
color: any;
|
|
493
|
+
borderTop: string;
|
|
494
|
+
};
|
|
495
|
+
};
|
|
489
496
|
};
|
|
490
497
|
'&.SCBottomNavigation-ios': {
|
|
491
498
|
paddingBottom: string;
|
|
@@ -1059,339 +1066,207 @@ declare const theme: {
|
|
|
1059
1066
|
SCComposer: {
|
|
1060
1067
|
styleOverrides: {
|
|
1061
1068
|
root: ({ theme }: any) => {
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
fontSize: string;
|
|
1067
|
-
display: string;
|
|
1068
|
-
flexDirection: string;
|
|
1069
|
-
flexWrap: string;
|
|
1070
|
-
justifyContent: string;
|
|
1071
|
-
alignItems: string;
|
|
1072
|
-
'& .SCComposer-types .MuiInputBase-input': {
|
|
1073
|
-
fontWeight: any;
|
|
1074
|
-
fontSize: string;
|
|
1075
|
-
minHeight: string;
|
|
1076
|
-
};
|
|
1077
|
-
'& > div': {
|
|
1078
|
-
flex: number;
|
|
1079
|
-
textAlign: string;
|
|
1080
|
-
};
|
|
1081
|
-
'& > div:first-of-type': {
|
|
1082
|
-
textAlign: string;
|
|
1083
|
-
};
|
|
1084
|
-
'& > div:last-of-type': {
|
|
1085
|
-
textAlign: string;
|
|
1086
|
-
display: string;
|
|
1087
|
-
};
|
|
1088
|
-
};
|
|
1089
|
-
'& .SCComposer-types': {
|
|
1090
|
-
flexDirection: string;
|
|
1091
|
-
alignItems: string;
|
|
1092
|
-
};
|
|
1093
|
-
'& .SCComposer-avatar': {
|
|
1094
|
-
width: any;
|
|
1095
|
-
height: any;
|
|
1096
|
-
display: string;
|
|
1097
|
-
};
|
|
1098
|
-
'& .SCComposer-content': {
|
|
1099
|
-
position: string;
|
|
1100
|
-
overflowY: string;
|
|
1101
|
-
padding: any;
|
|
1102
|
-
minHeight: number;
|
|
1103
|
-
display: string;
|
|
1104
|
-
flexDirection: string;
|
|
1105
|
-
justifyContent: string;
|
|
1106
|
-
'& .SCComposer-editor': {
|
|
1107
|
-
flexGrow: number;
|
|
1108
|
-
padding: number;
|
|
1109
|
-
fontSize: string;
|
|
1110
|
-
'& .SCEditor-placeholder': {
|
|
1111
|
-
top: number;
|
|
1112
|
-
left: number;
|
|
1113
|
-
};
|
|
1114
|
-
'& .SCEditor-actions': {
|
|
1115
|
-
bottom: any;
|
|
1116
|
-
padding: any;
|
|
1117
|
-
'& > p.MuiTypography-alignLeft > .MuiIconButton-root': {
|
|
1118
|
-
marginLeft: any;
|
|
1119
|
-
marginRight: any;
|
|
1120
|
-
'&:first-of-type': {
|
|
1121
|
-
marginLeft: number;
|
|
1122
|
-
};
|
|
1123
|
-
'&:last-child': {
|
|
1124
|
-
marginRight: number;
|
|
1125
|
-
};
|
|
1126
|
-
};
|
|
1127
|
-
'& > p.MuiTypography-alignRight > .MuiIconButton-root': {
|
|
1128
|
-
marginRight: any;
|
|
1129
|
-
};
|
|
1130
|
-
'& .MuiIconButton-sizeMedium': {
|
|
1131
|
-
fontSize: string;
|
|
1132
|
-
};
|
|
1133
|
-
};
|
|
1134
|
-
'&.SCEditor-toolbar': {
|
|
1135
|
-
'& .SCEditor-placeholder': {
|
|
1136
|
-
top: any;
|
|
1137
|
-
left: number;
|
|
1138
|
-
};
|
|
1139
|
-
'& .SCEditor-actions': {
|
|
1140
|
-
bottom: any;
|
|
1141
|
-
};
|
|
1069
|
+
[x: number]: {
|
|
1070
|
+
'& .MuiDialog-paper': {
|
|
1071
|
+
'& > form': {
|
|
1072
|
+
zIndex: number;
|
|
1142
1073
|
};
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
};
|
|
1148
|
-
'& .SCComposer-medias': {
|
|
1149
|
-
'& .SCComposer-mediasActions': {
|
|
1150
|
-
position: string;
|
|
1151
|
-
borderTop: string;
|
|
1152
|
-
backgroundColor: any;
|
|
1153
|
-
padding: any;
|
|
1154
|
-
'& .SCComposer-mediasActionsTitle': {
|
|
1155
|
-
fontSize: string;
|
|
1156
|
-
};
|
|
1074
|
+
'& .MuiDialogContent-root': {
|
|
1075
|
+
minHeight: number;
|
|
1076
|
+
height: string;
|
|
1077
|
+
maxHeight: number;
|
|
1157
1078
|
};
|
|
1158
|
-
|
|
1159
|
-
};
|
|
1160
|
-
'& .SCComposer-mediaContent, & .SCComposer-audienceContent, & .SCComposer-locationContent': {
|
|
1161
|
-
minHeight: number;
|
|
1162
|
-
};
|
|
1163
|
-
'& .SCComposer-audienceContent': {
|
|
1164
|
-
maxWidth: number;
|
|
1165
|
-
margin: any;
|
|
1166
|
-
'& .MuiTabs-root': {
|
|
1167
|
-
margin: any;
|
|
1168
|
-
'& .MuiTabs-flexContainer': {
|
|
1079
|
+
'& .MuiDialogActions-root': {
|
|
1169
1080
|
justifyContent: string;
|
|
1170
|
-
'& .MuiTab-root': {
|
|
1171
|
-
minHeight: any;
|
|
1172
|
-
flexDirection: string;
|
|
1173
|
-
'& .MuiTab-iconWrapper': {
|
|
1174
|
-
marginRight: any;
|
|
1175
|
-
fontSize: string;
|
|
1176
|
-
};
|
|
1177
|
-
};
|
|
1178
1081
|
};
|
|
1179
1082
|
};
|
|
1180
|
-
'& .SCComposer-block': {
|
|
1181
|
-
marginBottom: any;
|
|
1182
|
-
};
|
|
1183
|
-
};
|
|
1184
|
-
'& .SCComposer-block': {
|
|
1185
|
-
padding: any;
|
|
1186
|
-
};
|
|
1187
|
-
'& .SCComposer-editor': {
|
|
1188
|
-
minHeight: number;
|
|
1189
|
-
'& .SCEditor-placeholder': {
|
|
1190
|
-
top: any;
|
|
1191
|
-
left: any;
|
|
1192
|
-
};
|
|
1193
|
-
};
|
|
1194
|
-
'& .SCComposer-divider': {
|
|
1195
|
-
borderTop: string;
|
|
1196
|
-
};
|
|
1197
|
-
'& .SCComposer-medias': {
|
|
1198
|
-
margin: string;
|
|
1199
|
-
};
|
|
1200
|
-
'& .SCComposer-location, & .SCComposer-audience': {
|
|
1201
|
-
padding: any;
|
|
1202
|
-
paddingBottom: number;
|
|
1203
|
-
};
|
|
1204
|
-
'& .SCComposer-mediasActions': {
|
|
1205
|
-
position: string;
|
|
1206
|
-
left: number;
|
|
1207
|
-
right: number;
|
|
1208
|
-
background: any;
|
|
1209
|
-
padding: any;
|
|
1210
|
-
zIndex: number;
|
|
1211
|
-
display: string;
|
|
1212
|
-
flexWrap: string;
|
|
1213
|
-
justifyContent: string;
|
|
1214
|
-
'& .SCComposer-mediasActionsActions': {
|
|
1215
|
-
textAlign: string;
|
|
1216
|
-
};
|
|
1217
1083
|
};
|
|
1218
|
-
'& .
|
|
1084
|
+
'& .MuiDialog-paper': {
|
|
1219
1085
|
position: string;
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
backgroundPosition: string;
|
|
1224
|
-
backgroundRepeat: string;
|
|
1225
|
-
border: string;
|
|
1226
|
-
borderRadius: number;
|
|
1227
|
-
height: number;
|
|
1228
|
-
};
|
|
1229
|
-
'& .SCComposer-links': {
|
|
1230
|
-
padding: any;
|
|
1231
|
-
};
|
|
1232
|
-
'& .SCComposer-actions': {
|
|
1233
|
-
margin: number;
|
|
1234
|
-
borderTop: string;
|
|
1235
|
-
padding: any;
|
|
1236
|
-
'& .SCComposer-media-actions': {};
|
|
1237
|
-
'& .SCComposer-filter-actions': {
|
|
1238
|
-
flexGrow: number;
|
|
1239
|
-
textAlign: string;
|
|
1086
|
+
overflowX: string;
|
|
1087
|
+
'& > form': {
|
|
1088
|
+
zIndex: number;
|
|
1240
1089
|
};
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
padding: number;
|
|
1259
|
-
'& .SCMediaActionImage-upload': {
|
|
1260
|
-
padding: any;
|
|
1261
|
-
backgroundColor: string;
|
|
1262
|
-
borderRadius: any;
|
|
1263
|
-
color: any;
|
|
1264
|
-
'&.SCMediaActionImage-dragOver': {
|
|
1265
|
-
backgroundColor: string;
|
|
1266
|
-
};
|
|
1267
|
-
'& .SCMediaActionImage-uploadBtn': {
|
|
1268
|
-
border: string;
|
|
1269
|
-
};
|
|
1090
|
+
'& .MuiDialogTitle-root': {
|
|
1091
|
+
position: string;
|
|
1092
|
+
top: number;
|
|
1093
|
+
left: number;
|
|
1094
|
+
right: number;
|
|
1095
|
+
padding: any;
|
|
1096
|
+
display: string;
|
|
1097
|
+
flexDirection: string;
|
|
1098
|
+
justifyContent: string;
|
|
1099
|
+
alignItems: string;
|
|
1100
|
+
borderBottom: string;
|
|
1101
|
+
zIndex: number;
|
|
1102
|
+
backgroundColor: any;
|
|
1103
|
+
'& .MuiTypography-root': {
|
|
1104
|
+
flexGrow: number;
|
|
1105
|
+
textAlign: string;
|
|
1106
|
+
fontWeight: any;
|
|
1270
1107
|
};
|
|
1271
1108
|
};
|
|
1272
|
-
'& .
|
|
1273
|
-
|
|
1274
|
-
|
|
1109
|
+
'& .MuiDialogContent-root': {
|
|
1110
|
+
margin: string;
|
|
1111
|
+
padding: any;
|
|
1112
|
+
height: string;
|
|
1113
|
+
'& .SCEditor-root': {
|
|
1275
1114
|
padding: any;
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1115
|
+
position: string;
|
|
1116
|
+
'& .SCEditor-placeholder': {
|
|
1117
|
+
left: number;
|
|
1118
|
+
top: number;
|
|
1119
|
+
position: string;
|
|
1281
1120
|
};
|
|
1282
|
-
'& .
|
|
1283
|
-
|
|
1121
|
+
'& .SCEditorToolbarPlugin-root': {
|
|
1122
|
+
zIndex: number;
|
|
1123
|
+
position: string;
|
|
1124
|
+
display: string;
|
|
1125
|
+
bottom: number;
|
|
1126
|
+
right: any;
|
|
1127
|
+
left: any;
|
|
1128
|
+
marginBottom: number;
|
|
1129
|
+
backgroundColor: any;
|
|
1284
1130
|
};
|
|
1285
1131
|
};
|
|
1286
1132
|
};
|
|
1287
|
-
|
|
1288
|
-
'& .SCComposer-locationContent': {
|
|
1289
|
-
padding: any;
|
|
1290
|
-
minHeight: number;
|
|
1291
|
-
};
|
|
1292
|
-
'& .MuiDialog-container': {
|
|
1293
|
-
'& .MuiDialog-paper': {
|
|
1294
|
-
[x: number]: {
|
|
1295
|
-
borderRadius: any;
|
|
1296
|
-
};
|
|
1297
|
-
boxShadow: any;
|
|
1298
|
-
'&.MuiDialog-paperFullScreen': {
|
|
1299
|
-
height: string;
|
|
1300
|
-
minHeight: string;
|
|
1301
|
-
};
|
|
1302
|
-
};
|
|
1303
|
-
};
|
|
1304
|
-
'& .SCCategoryAutocomplete-root': {
|
|
1305
|
-
minWidth: number;
|
|
1306
|
-
'& .MuiFormControl-root': {
|
|
1307
|
-
margin: number;
|
|
1308
|
-
};
|
|
1309
|
-
};
|
|
1310
|
-
'& .MuiDialog-paperFullScreen': {
|
|
1311
|
-
position: string;
|
|
1312
|
-
'& .SCComposer-title': {
|
|
1313
|
-
transition: string;
|
|
1133
|
+
'& .SCComposer-types': {
|
|
1314
1134
|
position: string;
|
|
1315
|
-
|
|
1135
|
+
zIndex: number;
|
|
1136
|
+
bottom: any;
|
|
1316
1137
|
left: number;
|
|
1317
1138
|
right: number;
|
|
1318
|
-
|
|
1319
|
-
backgroundColor: any;
|
|
1320
|
-
zIndex: number;
|
|
1321
|
-
};
|
|
1322
|
-
'& .SCComposer-content': {
|
|
1323
|
-
transition: string;
|
|
1324
|
-
padding: any;
|
|
1139
|
+
justifyContent: string;
|
|
1325
1140
|
};
|
|
1326
|
-
'& .
|
|
1141
|
+
'& .MuiDialogActions-root': {
|
|
1327
1142
|
position: string;
|
|
1328
1143
|
bottom: number;
|
|
1329
1144
|
left: number;
|
|
1330
1145
|
right: number;
|
|
1331
1146
|
padding: any;
|
|
1147
|
+
display: string;
|
|
1148
|
+
flexDirection: string;
|
|
1149
|
+
justifyContent: string;
|
|
1332
1150
|
zIndex: number;
|
|
1333
1151
|
backgroundColor: any;
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1152
|
+
borderTop: string;
|
|
1153
|
+
};
|
|
1154
|
+
'& .SCComposer-general-error': {
|
|
1155
|
+
marginBottom: any;
|
|
1156
|
+
color: any;
|
|
1157
|
+
};
|
|
1158
|
+
};
|
|
1159
|
+
};
|
|
1160
|
+
attributesRoot: ({ theme }: any) => {};
|
|
1161
|
+
contentDiscussionRoot: ({ theme }: any) => {
|
|
1162
|
+
'& .SCComposer-content-discussion-title': {
|
|
1163
|
+
paddingBottom: any;
|
|
1164
|
+
'& .MuiInputBase-root': {
|
|
1165
|
+
paddingLeft: number;
|
|
1166
|
+
paddingRight: number;
|
|
1167
|
+
paddingBottom: number;
|
|
1168
|
+
fontSize: string;
|
|
1169
|
+
fontWeight: any;
|
|
1170
|
+
'& fieldset': {
|
|
1171
|
+
display: string;
|
|
1337
1172
|
};
|
|
1338
|
-
'
|
|
1339
|
-
|
|
1173
|
+
'&.MuiInputBase-adornedEnd .MuiTypography-root': {
|
|
1174
|
+
alignSelf: string;
|
|
1175
|
+
};
|
|
1176
|
+
'&.Mui-error': {
|
|
1177
|
+
color: any;
|
|
1340
1178
|
};
|
|
1341
1179
|
};
|
|
1180
|
+
'& .MuiFormHelperText-root': {
|
|
1181
|
+
marginLeft: number;
|
|
1182
|
+
};
|
|
1342
1183
|
};
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1184
|
+
};
|
|
1185
|
+
contentPollRoot: ({ theme }: any) => {
|
|
1186
|
+
padding: any;
|
|
1187
|
+
'& .SCComposer-content-poll-title, & .SCComposer-content-poll-choices, & .SCComposer-content-poll-choice-new, & .SCComposer-content-poll-metadata': {
|
|
1188
|
+
marginBottom: any;
|
|
1189
|
+
};
|
|
1190
|
+
'& .SCComposer-content-poll-choices .MuiTextField-root': {
|
|
1191
|
+
marginBottom: any;
|
|
1192
|
+
};
|
|
1193
|
+
'& .SCComposer-content-poll-metadata': {
|
|
1194
|
+
marginTop: any;
|
|
1195
|
+
};
|
|
1196
|
+
};
|
|
1197
|
+
contentPostRoot: ({ theme }: any) => {};
|
|
1198
|
+
layerTransitionRoot: ({ theme }: any) => {
|
|
1199
|
+
position: string;
|
|
1200
|
+
top: number;
|
|
1201
|
+
left: number;
|
|
1202
|
+
right: number;
|
|
1203
|
+
bottom: number;
|
|
1204
|
+
zIndex: number;
|
|
1205
|
+
background: any;
|
|
1206
|
+
'& .MuiDialogContent-root': {
|
|
1207
|
+
height: string;
|
|
1208
|
+
marginBottom: string;
|
|
1209
|
+
};
|
|
1210
|
+
};
|
|
1211
|
+
layerAudienceRoot: ({ theme }: any) => {
|
|
1212
|
+
'& .MuiTabs-root': {
|
|
1213
|
+
minHeight: string;
|
|
1214
|
+
marginBottom: any;
|
|
1215
|
+
'& .MuiTabs-flexContainer': {
|
|
1216
|
+
justifyContent: string;
|
|
1217
|
+
'& .MuiTab-labelIcon': {
|
|
1218
|
+
minHeight: string;
|
|
1358
1219
|
flexDirection: string;
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
'& .MuiButtonBase-root': {
|
|
1362
|
-
margin: any;
|
|
1363
|
-
padding: any;
|
|
1364
|
-
fontSize: string;
|
|
1365
|
-
border: number;
|
|
1366
|
-
borderRadius: number;
|
|
1220
|
+
'& .MuiIcon-root': {
|
|
1221
|
+
marginRight: any;
|
|
1367
1222
|
};
|
|
1368
1223
|
};
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1224
|
+
};
|
|
1225
|
+
};
|
|
1226
|
+
'& .SCComposer-layer-audience-message': {
|
|
1227
|
+
textAlign: string;
|
|
1228
|
+
marginBottom: any;
|
|
1229
|
+
};
|
|
1230
|
+
};
|
|
1231
|
+
layerCategoryRoot: ({ theme }: any) => {};
|
|
1232
|
+
layerCloseRoot: ({ theme }: any) => {
|
|
1233
|
+
'& .SCComposer-layer-content': {
|
|
1234
|
+
'& .MuiTypography-root': {
|
|
1235
|
+
textAlign: string;
|
|
1236
|
+
};
|
|
1237
|
+
'& .MuiList-root': {
|
|
1238
|
+
'& .MuiListItem-root': {
|
|
1239
|
+
padding: number;
|
|
1240
|
+
'& .MuiTypography-root': {
|
|
1241
|
+
fontSize: string;
|
|
1375
1242
|
};
|
|
1376
|
-
'
|
|
1377
|
-
|
|
1378
|
-
'& .SCEditorToolbarPlugin-root': {
|
|
1379
|
-
position: string;
|
|
1380
|
-
top: any;
|
|
1381
|
-
left: any;
|
|
1382
|
-
right: any;
|
|
1383
|
-
zIndex: number;
|
|
1384
|
-
};
|
|
1385
|
-
'& .SCEditor-placeholder': {
|
|
1386
|
-
top: number;
|
|
1387
|
-
};
|
|
1243
|
+
'&:nth-last-of-type(1)': {
|
|
1244
|
+
color: any;
|
|
1388
1245
|
};
|
|
1389
1246
|
};
|
|
1390
|
-
'& .SCComposer-actions': {};
|
|
1391
1247
|
};
|
|
1392
1248
|
};
|
|
1393
|
-
|
|
1394
|
-
|
|
1249
|
+
};
|
|
1250
|
+
layerLocationRoot: ({ theme }: any) => {};
|
|
1251
|
+
skeletonRoot: ({ theme }: any) => {};
|
|
1252
|
+
typeSwitchButtonGroupRoot: ({ theme }: any) => {
|
|
1253
|
+
'& .MuiToggleButton-root': {
|
|
1254
|
+
backgroundColor: any;
|
|
1255
|
+
color: string;
|
|
1256
|
+
padding: any;
|
|
1257
|
+
fontSize: string;
|
|
1258
|
+
fontWeight: any;
|
|
1259
|
+
textTransform: string;
|
|
1260
|
+
'&.Mui-selected, &:hover, &:active, &.Mui-selected:hover': {
|
|
1261
|
+
color: any;
|
|
1262
|
+
backgroundColor: any;
|
|
1263
|
+
};
|
|
1264
|
+
'&:nth-of-type(1)': {
|
|
1265
|
+
paddingLeft: any;
|
|
1266
|
+
};
|
|
1267
|
+
'&:nth-last-of-type(1)': {
|
|
1268
|
+
paddingRight: any;
|
|
1269
|
+
};
|
|
1395
1270
|
};
|
|
1396
1271
|
};
|
|
1397
1272
|
};
|
|
@@ -1401,31 +1276,6 @@ declare const theme: {
|
|
|
1401
1276
|
root: ({ theme }: any) => {};
|
|
1402
1277
|
};
|
|
1403
1278
|
};
|
|
1404
|
-
SCComposerPoll: {
|
|
1405
|
-
styleOverrides: {
|
|
1406
|
-
root: ({ theme }: any) => {
|
|
1407
|
-
'& .SCComposerPoll-title': {
|
|
1408
|
-
marginBottom: any;
|
|
1409
|
-
};
|
|
1410
|
-
'& .SCComposerPoll-choices': {
|
|
1411
|
-
marginBottom: number;
|
|
1412
|
-
'& .MuiTextField-root .MuiInputAdornment-positionStart': {
|
|
1413
|
-
cursor: string;
|
|
1414
|
-
};
|
|
1415
|
-
};
|
|
1416
|
-
'& .SCComposerPoll-choice-new': {
|
|
1417
|
-
color: any;
|
|
1418
|
-
marginLeft: any;
|
|
1419
|
-
};
|
|
1420
|
-
'& .SCComposerPoll-metadata': {
|
|
1421
|
-
margin: any;
|
|
1422
|
-
'& .MuiFormControlLabel-root': {
|
|
1423
|
-
marginBottom: any;
|
|
1424
|
-
};
|
|
1425
|
-
};
|
|
1426
|
-
};
|
|
1427
|
-
};
|
|
1428
|
-
};
|
|
1429
1279
|
SCContributionNotification: {
|
|
1430
1280
|
styleOverrides: {
|
|
1431
1281
|
root: ({ theme }: any) => {
|
|
@@ -2508,13 +2358,37 @@ declare const theme: {
|
|
|
2508
2358
|
textTransform: string;
|
|
2509
2359
|
};
|
|
2510
2360
|
};
|
|
2511
|
-
'& .SCInlineComposerWidget-
|
|
2361
|
+
'& .SCInlineComposerWidget-avatar': {
|
|
2362
|
+
[x: number]: {
|
|
2363
|
+
marginLeft: any;
|
|
2364
|
+
};
|
|
2365
|
+
display: string;
|
|
2366
|
+
alignItems: string;
|
|
2367
|
+
'& .MuiAvatar-root': {
|
|
2368
|
+
width: any;
|
|
2369
|
+
height: any;
|
|
2370
|
+
};
|
|
2371
|
+
};
|
|
2372
|
+
};
|
|
2373
|
+
};
|
|
2374
|
+
skeletonRoot: ({ theme }: any) => {
|
|
2375
|
+
marginBottom: any;
|
|
2376
|
+
'& .SCInlineComposerWidget-content, & .SCInlineComposerWidget-content:last-child': {
|
|
2377
|
+
[x: number]: {
|
|
2378
|
+
padding: any;
|
|
2379
|
+
};
|
|
2380
|
+
padding: any;
|
|
2381
|
+
display: string;
|
|
2382
|
+
flexDirection: string;
|
|
2383
|
+
justifyContent: string;
|
|
2384
|
+
'& .SCInlineComposerWidget-input': {
|
|
2512
2385
|
display: string;
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2386
|
+
flexGrow: number;
|
|
2387
|
+
height: number;
|
|
2388
|
+
width: string;
|
|
2389
|
+
'& .MuiSkeleton-root': {
|
|
2390
|
+
width: string;
|
|
2391
|
+
height: string;
|
|
2518
2392
|
};
|
|
2519
2393
|
};
|
|
2520
2394
|
'& .SCInlineComposerWidget-avatar': {
|
|
@@ -2523,7 +2397,7 @@ declare const theme: {
|
|
|
2523
2397
|
};
|
|
2524
2398
|
display: string;
|
|
2525
2399
|
alignItems: string;
|
|
2526
|
-
'& .
|
|
2400
|
+
'& .MuiSkeleton-root': {
|
|
2527
2401
|
width: any;
|
|
2528
2402
|
height: any;
|
|
2529
2403
|
};
|
|
@@ -2645,6 +2519,7 @@ declare const theme: {
|
|
|
2645
2519
|
alignItems: string;
|
|
2646
2520
|
display: string;
|
|
2647
2521
|
height: string;
|
|
2522
|
+
color: string;
|
|
2648
2523
|
};
|
|
2649
2524
|
"& .PhotoView-Slider__toolbarIcon": {
|
|
2650
2525
|
fill: string;
|
|
@@ -2934,6 +2809,227 @@ declare const theme: {
|
|
|
2934
2809
|
};
|
|
2935
2810
|
};
|
|
2936
2811
|
};
|
|
2812
|
+
SCMediaFile: {
|
|
2813
|
+
styleOverrides: {
|
|
2814
|
+
displayRoot: ({ theme }: any) => {
|
|
2815
|
+
[x: number]: {
|
|
2816
|
+
minHeight: number;
|
|
2817
|
+
};
|
|
2818
|
+
textAlign: string;
|
|
2819
|
+
margin: string;
|
|
2820
|
+
width: string;
|
|
2821
|
+
position: string;
|
|
2822
|
+
'& .SCMediaFile-background': {
|
|
2823
|
+
backgroundSize: string;
|
|
2824
|
+
backgroundPosition: string;
|
|
2825
|
+
backgroundRepeat: string;
|
|
2826
|
+
};
|
|
2827
|
+
'& .SCMediaFile-background-portrait': {
|
|
2828
|
+
backgroundSize: string;
|
|
2829
|
+
backgroundPosition: string;
|
|
2830
|
+
backgroundRepeat: string;
|
|
2831
|
+
};
|
|
2832
|
+
'& .SCMediaFile-height-one': {
|
|
2833
|
+
width: string;
|
|
2834
|
+
paddingTop: string;
|
|
2835
|
+
};
|
|
2836
|
+
'& .SCMediaFile-height-half-one': {
|
|
2837
|
+
paddingTop: string;
|
|
2838
|
+
};
|
|
2839
|
+
'& .SCMediaFile-height-two': {
|
|
2840
|
+
width: string;
|
|
2841
|
+
paddingTop: string;
|
|
2842
|
+
};
|
|
2843
|
+
'& .SCMediaFile-height-three': {
|
|
2844
|
+
width: string;
|
|
2845
|
+
paddingTop: string;
|
|
2846
|
+
};
|
|
2847
|
+
'& .SCMediaFile-cover': {
|
|
2848
|
+
backgroundColor: string;
|
|
2849
|
+
opacity: number;
|
|
2850
|
+
position: string;
|
|
2851
|
+
right: number;
|
|
2852
|
+
top: number;
|
|
2853
|
+
left: number;
|
|
2854
|
+
bottom: number;
|
|
2855
|
+
};
|
|
2856
|
+
'& .SCMediaFile-cover-text': {
|
|
2857
|
+
right: number;
|
|
2858
|
+
left: number;
|
|
2859
|
+
bottom: number;
|
|
2860
|
+
color: string;
|
|
2861
|
+
fontSize: string;
|
|
2862
|
+
position: string;
|
|
2863
|
+
top: string;
|
|
2864
|
+
transform: string;
|
|
2865
|
+
textAlign: string;
|
|
2866
|
+
'& > p': {
|
|
2867
|
+
margin: number;
|
|
2868
|
+
position: string;
|
|
2869
|
+
top: string;
|
|
2870
|
+
left: string;
|
|
2871
|
+
transform: string;
|
|
2872
|
+
};
|
|
2873
|
+
};
|
|
2874
|
+
'& .SCMediaFile-slide': {
|
|
2875
|
+
height: number;
|
|
2876
|
+
bottom: string;
|
|
2877
|
+
overflow: string;
|
|
2878
|
+
fontSize: string;
|
|
2879
|
+
color: string;
|
|
2880
|
+
};
|
|
2881
|
+
'& .SCMediaFile-border': {
|
|
2882
|
+
position: string;
|
|
2883
|
+
border: string;
|
|
2884
|
+
'&:hover > div': {
|
|
2885
|
+
bottom: number;
|
|
2886
|
+
height: string;
|
|
2887
|
+
};
|
|
2888
|
+
'&:hover > div.animate-text': {
|
|
2889
|
+
top: string;
|
|
2890
|
+
};
|
|
2891
|
+
};
|
|
2892
|
+
'& .SCMediaFile-gallery': {
|
|
2893
|
+
cursor: string;
|
|
2894
|
+
};
|
|
2895
|
+
'& .SCMediaFile-title .MuiTypography-root': {
|
|
2896
|
+
color: string;
|
|
2897
|
+
backgroundColor: any;
|
|
2898
|
+
opacity: number;
|
|
2899
|
+
};
|
|
2900
|
+
'& .SCMediaFile-icon-file': {
|
|
2901
|
+
fontSize: number;
|
|
2902
|
+
position: string;
|
|
2903
|
+
top: number;
|
|
2904
|
+
};
|
|
2905
|
+
};
|
|
2906
|
+
lightboxRoot: ({ theme }: any) => {};
|
|
2907
|
+
previewRoot: ({ theme }: any) => {
|
|
2908
|
+
'& > div': {
|
|
2909
|
+
display: string;
|
|
2910
|
+
flexDirection: string;
|
|
2911
|
+
flexWrap: string;
|
|
2912
|
+
maxWidth: string;
|
|
2913
|
+
overflow: string;
|
|
2914
|
+
'-ms-overflow-style': string;
|
|
2915
|
+
scrollbarWidth: string;
|
|
2916
|
+
'&::-webkit-scrollbar': {
|
|
2917
|
+
display: string;
|
|
2918
|
+
};
|
|
2919
|
+
'& .SCMediaFile-media': {
|
|
2920
|
+
backgroundSize: string;
|
|
2921
|
+
backgroundPosition: string;
|
|
2922
|
+
position: string;
|
|
2923
|
+
borderRadius: number;
|
|
2924
|
+
margin: any;
|
|
2925
|
+
width: number;
|
|
2926
|
+
height: number;
|
|
2927
|
+
flexBasis: number;
|
|
2928
|
+
flexGrow: number;
|
|
2929
|
+
flexShrink: number;
|
|
2930
|
+
'& .SCMediaFile-title': {
|
|
2931
|
+
position: string;
|
|
2932
|
+
left: any;
|
|
2933
|
+
top: any;
|
|
2934
|
+
borderRadius: any;
|
|
2935
|
+
background: string;
|
|
2936
|
+
color: any;
|
|
2937
|
+
fontSize: string;
|
|
2938
|
+
padding: any;
|
|
2939
|
+
maxWidth: number;
|
|
2940
|
+
textOverflow: string;
|
|
2941
|
+
overflow: string;
|
|
2942
|
+
whiteSpace: string;
|
|
2943
|
+
};
|
|
2944
|
+
'& .SCMediaFile-delete': {
|
|
2945
|
+
position: string;
|
|
2946
|
+
right: any;
|
|
2947
|
+
top: any;
|
|
2948
|
+
};
|
|
2949
|
+
};
|
|
2950
|
+
'&:has(> :last-child:nth-of-type(1)) .SCMediaFile-media': {
|
|
2951
|
+
width: string;
|
|
2952
|
+
flexBasis: string;
|
|
2953
|
+
height: number;
|
|
2954
|
+
margin: any;
|
|
2955
|
+
'& .SCMediaFile-title': {
|
|
2956
|
+
fontSize: string;
|
|
2957
|
+
maxWidth: number;
|
|
2958
|
+
};
|
|
2959
|
+
};
|
|
2960
|
+
};
|
|
2961
|
+
};
|
|
2962
|
+
triggerRoot: ({ theme }: any) => {};
|
|
2963
|
+
triggerDrawerRoot: ({ theme }: any) => {
|
|
2964
|
+
zIndex: number;
|
|
2965
|
+
};
|
|
2966
|
+
triggerMenuRoot: ({ theme }: any) => {};
|
|
2967
|
+
};
|
|
2968
|
+
};
|
|
2969
|
+
SCMediaLink: {
|
|
2970
|
+
styleOverrides: {
|
|
2971
|
+
displayRoot: ({ theme }: any) => {
|
|
2972
|
+
'& .SCMediaLink-link': {
|
|
2973
|
+
position: string;
|
|
2974
|
+
backgroundColor: string;
|
|
2975
|
+
margin: any;
|
|
2976
|
+
padding: any;
|
|
2977
|
+
};
|
|
2978
|
+
'& .SCMediaLink-video': {
|
|
2979
|
+
margin: string;
|
|
2980
|
+
height: number;
|
|
2981
|
+
};
|
|
2982
|
+
'& .SCMediaLink-thumbnail': {
|
|
2983
|
+
[x: number]: {
|
|
2984
|
+
maxWidth: number;
|
|
2985
|
+
width: string;
|
|
2986
|
+
float: string;
|
|
2987
|
+
};
|
|
2988
|
+
border: string;
|
|
2989
|
+
borderRadius: number;
|
|
2990
|
+
paddingTop: any;
|
|
2991
|
+
margin: any;
|
|
2992
|
+
};
|
|
2993
|
+
'& .SCMediaLink-image': {
|
|
2994
|
+
backgroundSize: string;
|
|
2995
|
+
backgroundPosition: string;
|
|
2996
|
+
backgroundRepeat: string;
|
|
2997
|
+
backgroundColor: string;
|
|
2998
|
+
paddingBottom: number;
|
|
2999
|
+
};
|
|
3000
|
+
'& .SCMediaLink-snippet': {
|
|
3001
|
+
padding: any;
|
|
3002
|
+
'& .SCMediaLink-snippet-title': {};
|
|
3003
|
+
'& .SCMediaLink-snippet-description': {
|
|
3004
|
+
fontSize: string;
|
|
3005
|
+
};
|
|
3006
|
+
'& a': {
|
|
3007
|
+
fontSize: string;
|
|
3008
|
+
fontStyle: string;
|
|
3009
|
+
};
|
|
3010
|
+
};
|
|
3011
|
+
};
|
|
3012
|
+
layerRoot: ({ theme }: any) => {
|
|
3013
|
+
'& .SCMediaLink-content': {
|
|
3014
|
+
'& form button[type=submit]': {
|
|
3015
|
+
fontWeight: any;
|
|
3016
|
+
};
|
|
3017
|
+
};
|
|
3018
|
+
};
|
|
3019
|
+
previewRoot: ({ theme }: any) => {
|
|
3020
|
+
'& .SCMediaLink-media': {
|
|
3021
|
+
position: string;
|
|
3022
|
+
margin: any;
|
|
3023
|
+
'& .SCMediaLink-delete': {
|
|
3024
|
+
position: string;
|
|
3025
|
+
right: any;
|
|
3026
|
+
top: any;
|
|
3027
|
+
};
|
|
3028
|
+
};
|
|
3029
|
+
};
|
|
3030
|
+
triggerRoot: ({ theme }: any) => {};
|
|
3031
|
+
};
|
|
3032
|
+
};
|
|
2937
3033
|
SCNavigationSettingsIconButton: {
|
|
2938
3034
|
styleOverrides: {
|
|
2939
3035
|
menuRoot: ({ theme }: any) => {
|
|
@@ -3062,12 +3158,8 @@ declare const theme: {
|
|
|
3062
3158
|
whiteSpace: string;
|
|
3063
3159
|
};
|
|
3064
3160
|
};
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
SCNavigationToolbarMobileSkeleton: {
|
|
3068
|
-
styleOverrides: {
|
|
3069
|
-
root: ({ theme }: any) => {
|
|
3070
|
-
'& .SCNavigationToolbarMobileSkeleton-logo': {
|
|
3161
|
+
skeletonRoot: ({ theme }: any) => {
|
|
3162
|
+
'& .SCNavigationToolbarMobile-logo': {
|
|
3071
3163
|
width: number;
|
|
3072
3164
|
height: number;
|
|
3073
3165
|
};
|