@selfcommunity/react-theme-default 0.5.0-alpha.9 → 0.5.0-mui7.23
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/MuiAutocomplete.d.ts +2 -3
- package/lib/cjs/components/MuiSelect.d.ts +1 -2
- package/lib/cjs/components/MuiTooltip.d.ts +5 -0
- package/lib/cjs/components/MuiTooltip.js +5 -0
- package/lib/cjs/components/SCCategoryHeader.d.ts +4 -0
- package/lib/cjs/components/SCCategoryHeader.js +4 -0
- package/lib/cjs/components/SCComposer.d.ts +8 -5
- package/lib/cjs/components/SCComposer.js +11 -5
- package/lib/cjs/components/SCFeedObject.d.ts +10 -0
- package/lib/cjs/components/SCFeedObject.js +10 -0
- package/lib/cjs/components/SCFooter.d.ts +1 -0
- package/lib/cjs/components/SCFooter.js +1 -0
- package/lib/cjs/components/SCFooterWidget.d.ts +10 -0
- package/lib/cjs/components/SCFooterWidget.js +12 -0
- package/lib/cjs/components/SCMediaFile.d.ts +6 -4
- package/lib/cjs/components/SCMediaFile.js +7 -5
- package/lib/cjs/components/SCUserAutocomplete.d.ts +18 -0
- package/lib/cjs/components/SCUserAutocomplete.js +20 -0
- package/lib/cjs/index.d.ts +67 -19
- package/lib/cjs/index.js +5 -1
- package/lib/esm/components/MuiAutocomplete.d.ts +2 -3
- package/lib/esm/components/MuiSelect.d.ts +1 -2
- package/lib/esm/components/MuiTooltip.d.ts +5 -0
- package/lib/esm/components/MuiTooltip.js +5 -0
- package/lib/esm/components/SCCategoryHeader.d.ts +4 -0
- package/lib/esm/components/SCCategoryHeader.js +4 -0
- package/lib/esm/components/SCComposer.d.ts +8 -5
- package/lib/esm/components/SCComposer.js +11 -5
- package/lib/esm/components/SCFeedObject.d.ts +10 -0
- package/lib/esm/components/SCFeedObject.js +10 -0
- package/lib/esm/components/SCFooter.d.ts +1 -0
- package/lib/esm/components/SCFooter.js +1 -0
- package/lib/esm/components/SCFooterWidget.d.ts +10 -0
- package/lib/esm/components/SCFooterWidget.js +10 -0
- package/lib/esm/components/SCMediaFile.d.ts +6 -4
- package/lib/esm/components/SCMediaFile.js +7 -5
- package/lib/esm/components/SCUserAutocomplete.d.ts +18 -0
- package/lib/esm/components/SCUserAutocomplete.js +18 -0
- package/lib/esm/index.d.ts +67 -19
- package/lib/esm/index.js +5 -1
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +10 -11
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const Component: {
|
|
3
2
|
defaultProps: {
|
|
4
|
-
clearIcon: JSX.Element;
|
|
5
|
-
popupIcon: JSX.Element;
|
|
3
|
+
clearIcon: import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
popupIcon: import("react/jsx-runtime").JSX.Element;
|
|
6
5
|
};
|
|
7
6
|
};
|
|
8
7
|
export default Component;
|
|
@@ -43,6 +43,10 @@ declare const Component: {
|
|
|
43
43
|
fontWeight: any;
|
|
44
44
|
marginBottom: string;
|
|
45
45
|
};
|
|
46
|
+
'& .SCCategoryHeader-tags': {
|
|
47
|
+
display: string;
|
|
48
|
+
justifyContent: string;
|
|
49
|
+
};
|
|
46
50
|
'& .SCCategoryHeader-followed, & .SCCategoryHeader-action': {
|
|
47
51
|
textAlign: string;
|
|
48
52
|
marginBottom: any;
|
|
@@ -45,6 +45,10 @@ const Component = {
|
|
|
45
45
|
fontWeight: theme.typography.fontWeightMedium,
|
|
46
46
|
marginBottom: `${theme.spacing(0)} !important`
|
|
47
47
|
},
|
|
48
|
+
'& .SCCategoryHeader-tags': {
|
|
49
|
+
display: 'flex',
|
|
50
|
+
justifyContent: 'center'
|
|
51
|
+
},
|
|
48
52
|
'& .SCCategoryHeader-followed, & .SCCategoryHeader-action': {
|
|
49
53
|
textAlign: 'center',
|
|
50
54
|
marginBottom: theme.spacing(2),
|
|
@@ -45,9 +45,6 @@ declare const Component: {
|
|
|
45
45
|
};
|
|
46
46
|
};
|
|
47
47
|
'& .MuiDialogContent-root': {
|
|
48
|
-
[x: number]: {
|
|
49
|
-
overflowY: string;
|
|
50
|
-
};
|
|
51
48
|
margin: string;
|
|
52
49
|
padding: any;
|
|
53
50
|
height: string;
|
|
@@ -79,7 +76,8 @@ declare const Component: {
|
|
|
79
76
|
bottom: any;
|
|
80
77
|
left: number;
|
|
81
78
|
right: number;
|
|
82
|
-
|
|
79
|
+
display: string;
|
|
80
|
+
margin: string;
|
|
83
81
|
};
|
|
84
82
|
'& .MuiDialogActions-root': {
|
|
85
83
|
position: string;
|
|
@@ -108,7 +106,12 @@ declare const Component: {
|
|
|
108
106
|
};
|
|
109
107
|
};
|
|
110
108
|
};
|
|
111
|
-
attributesRoot: () => {
|
|
109
|
+
attributesRoot: ({ theme }: any) => {
|
|
110
|
+
'& .MuiChip-root': {
|
|
111
|
+
marginRight: any;
|
|
112
|
+
marginTop: any;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
112
115
|
contentDiscussionRoot: ({ theme }: any) => {
|
|
113
116
|
'& .SCComposer-content-discussion-title': {
|
|
114
117
|
'& .MuiInputBase-root': {
|
|
@@ -37,9 +37,9 @@ const Component = {
|
|
|
37
37
|
margin: '45px 0',
|
|
38
38
|
padding: theme.spacing(1, 2),
|
|
39
39
|
height: `calc(100% - 45px - 45px - ${theme.spacing(2)})`,
|
|
40
|
-
[theme.breakpoints.up('md')]: {
|
|
41
|
-
|
|
42
|
-
},
|
|
40
|
+
// [theme.breakpoints.up('md')]: {
|
|
41
|
+
// overflowY: 'hidden'
|
|
42
|
+
// },
|
|
43
43
|
'& .SCEditor-root': {
|
|
44
44
|
padding: theme.spacing(1, 0),
|
|
45
45
|
marginBottom: theme.spacing(3),
|
|
@@ -68,7 +68,8 @@ const Component = {
|
|
|
68
68
|
bottom: theme.spacing(7),
|
|
69
69
|
left: 0,
|
|
70
70
|
right: 0,
|
|
71
|
-
|
|
71
|
+
display: 'inline-table',
|
|
72
|
+
margin: 'auto'
|
|
72
73
|
},
|
|
73
74
|
'& .MuiDialogActions-root': {
|
|
74
75
|
position: 'absolute',
|
|
@@ -111,7 +112,12 @@ const Component = {
|
|
|
111
112
|
}
|
|
112
113
|
}
|
|
113
114
|
}),
|
|
114
|
-
attributesRoot: () => ({
|
|
115
|
+
attributesRoot: ({ theme }) => ({
|
|
116
|
+
'& .MuiChip-root': {
|
|
117
|
+
marginRight: theme.spacing(0.5),
|
|
118
|
+
marginTop: theme.spacing(0.5)
|
|
119
|
+
}
|
|
120
|
+
}),
|
|
115
121
|
contentDiscussionRoot: ({ theme }) => ({
|
|
116
122
|
'& .SCComposer-content-discussion-title': {
|
|
117
123
|
'& .MuiInputBase-root': {
|
|
@@ -143,6 +143,15 @@ declare const Component: {
|
|
|
143
143
|
opacity: number;
|
|
144
144
|
};
|
|
145
145
|
};
|
|
146
|
+
'& .SCFeedObject-new': {
|
|
147
|
+
color: any;
|
|
148
|
+
backgroundColor: string;
|
|
149
|
+
padding: string;
|
|
150
|
+
borderRadius: string;
|
|
151
|
+
marginRight: string;
|
|
152
|
+
fontSize: string;
|
|
153
|
+
fontWeight: number;
|
|
154
|
+
};
|
|
146
155
|
'&.SCFeedObject-preview, &.SCFeedObject-detail, &.SCFeedObject-search, &.SCFeedObject-share': {
|
|
147
156
|
[x: number]: {
|
|
148
157
|
borderRadius: any;
|
|
@@ -335,6 +344,7 @@ declare const Component: {
|
|
|
335
344
|
};
|
|
336
345
|
};
|
|
337
346
|
'& .SCFeedObject-medias-section': {
|
|
347
|
+
padding: any;
|
|
338
348
|
'& .SCFeedObjectMediaPreview-root': {
|
|
339
349
|
margin: any;
|
|
340
350
|
};
|
|
@@ -146,6 +146,15 @@ const Component = {
|
|
|
146
146
|
opacity: 1
|
|
147
147
|
}
|
|
148
148
|
},
|
|
149
|
+
'& .SCFeedObject-new': {
|
|
150
|
+
color: theme.palette.common.white,
|
|
151
|
+
backgroundColor: '#fa0501',
|
|
152
|
+
padding: '0 3px',
|
|
153
|
+
borderRadius: '3px',
|
|
154
|
+
marginRight: '3px',
|
|
155
|
+
fontSize: '10px',
|
|
156
|
+
fontWeight: 600
|
|
157
|
+
},
|
|
149
158
|
'&.SCFeedObject-preview, &.SCFeedObject-detail, &.SCFeedObject-search, &.SCFeedObject-share': {
|
|
150
159
|
border: `0 none`,
|
|
151
160
|
boxShadow: '0px 0px 10px rgba(0, 0, 0, 0.1)',
|
|
@@ -338,6 +347,7 @@ const Component = {
|
|
|
338
347
|
}
|
|
339
348
|
},
|
|
340
349
|
'& .SCFeedObject-medias-section': {
|
|
350
|
+
padding: theme.spacing(1, 0),
|
|
341
351
|
'& .SCFeedObjectMediaPreview-root': {
|
|
342
352
|
margin: theme.spacing(0, 1)
|
|
343
353
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const Component = {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: ({ theme }) => ({
|
|
6
|
+
'& .SCFooterWidget-content': {
|
|
7
|
+
paddingBottom: theme.spacing(2.2)
|
|
8
|
+
}
|
|
9
|
+
})
|
|
10
|
+
}
|
|
11
|
+
};
|
|
12
|
+
exports.default = Component;
|
|
@@ -162,15 +162,17 @@ declare const Component: {
|
|
|
162
162
|
docRoot: ({ theme }: {
|
|
163
163
|
theme: any;
|
|
164
164
|
}) => {
|
|
165
|
-
borderRadius: string;
|
|
166
165
|
border: string;
|
|
166
|
+
borderRadius: string;
|
|
167
167
|
padding: any;
|
|
168
168
|
flexDirection: string;
|
|
169
169
|
gap: string;
|
|
170
|
-
'& .SCMediaFile-image': {
|
|
171
|
-
width: string;
|
|
172
|
-
height: string;
|
|
170
|
+
'& .SCMediaFile-image-wrapper': {
|
|
173
171
|
flexShrink: number;
|
|
172
|
+
padding: number;
|
|
173
|
+
'&:hover': {
|
|
174
|
+
backgroundColor: string;
|
|
175
|
+
};
|
|
174
176
|
};
|
|
175
177
|
'& .SCMediaFile-text-wrapper': {
|
|
176
178
|
[x: number]: {
|
|
@@ -162,15 +162,17 @@ const Component = {
|
|
|
162
162
|
}),
|
|
163
163
|
triggerMenuRoot: () => ({}),
|
|
164
164
|
docRoot: ({ theme }) => ({
|
|
165
|
-
borderRadius: '10px',
|
|
166
165
|
border: '1px solid #DDD',
|
|
166
|
+
borderRadius: '10px',
|
|
167
167
|
padding: theme.spacing(1),
|
|
168
168
|
flexDirection: 'row',
|
|
169
169
|
gap: '8px',
|
|
170
|
-
'& .SCMediaFile-image': {
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
170
|
+
'& .SCMediaFile-image-wrapper': {
|
|
171
|
+
flexShrink: 0,
|
|
172
|
+
padding: 0,
|
|
173
|
+
'&:hover': {
|
|
174
|
+
backgroundColor: 'unset'
|
|
175
|
+
}
|
|
174
176
|
},
|
|
175
177
|
'& .SCMediaFile-text-wrapper': {
|
|
176
178
|
gap: '4px',
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare const Component: {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }: any) => {
|
|
4
|
+
'& .SCUserAutocomplete-info': {
|
|
5
|
+
[x: number]: {
|
|
6
|
+
alignItems: string;
|
|
7
|
+
};
|
|
8
|
+
marginTop: any;
|
|
9
|
+
display: string;
|
|
10
|
+
'& .MuiIcon-root': {
|
|
11
|
+
marginRight: any;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
autocompleteRoot: ({ theme }: any) => {};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const Component = {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: ({ theme }) => ({
|
|
6
|
+
'& .SCUserAutocomplete-info': {
|
|
7
|
+
marginTop: theme.spacing(3),
|
|
8
|
+
display: 'flex',
|
|
9
|
+
[theme.breakpoints.up('sm')]: {
|
|
10
|
+
alignItems: 'center'
|
|
11
|
+
},
|
|
12
|
+
'& .MuiIcon-root': {
|
|
13
|
+
marginRight: theme.spacing(0.5)
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}),
|
|
17
|
+
autocompleteRoot: ({ theme }) => ({})
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
exports.default = Component;
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import './fonts/community-icons.css';
|
|
3
2
|
import './styles/reset.css';
|
|
4
3
|
/**
|
|
@@ -78,8 +77,8 @@ declare const theme: {
|
|
|
78
77
|
};
|
|
79
78
|
MuiAutocomplete: {
|
|
80
79
|
defaultProps: {
|
|
81
|
-
clearIcon: JSX.Element;
|
|
82
|
-
popupIcon: JSX.Element;
|
|
80
|
+
clearIcon: import("react/jsx-runtime").JSX.Element;
|
|
81
|
+
popupIcon: import("react/jsx-runtime").JSX.Element;
|
|
83
82
|
};
|
|
84
83
|
};
|
|
85
84
|
MuiAvatar: {
|
|
@@ -225,13 +224,18 @@ declare const theme: {
|
|
|
225
224
|
defaultProps: {
|
|
226
225
|
IconComponent: ({ className }: {
|
|
227
226
|
className: any;
|
|
228
|
-
}) => JSX.Element;
|
|
227
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
229
228
|
};
|
|
230
229
|
};
|
|
231
230
|
MuiTooltip: {
|
|
232
231
|
defaultProps: {
|
|
233
232
|
enterDelay: number;
|
|
234
233
|
};
|
|
234
|
+
styleOverrides: {
|
|
235
|
+
tooltip: ({ theme }: any) => {
|
|
236
|
+
borderRadius: any;
|
|
237
|
+
};
|
|
238
|
+
};
|
|
235
239
|
};
|
|
236
240
|
SCAccordionLessons: {
|
|
237
241
|
styleOverrides: {
|
|
@@ -898,6 +902,10 @@ declare const theme: {
|
|
|
898
902
|
fontWeight: any;
|
|
899
903
|
marginBottom: string;
|
|
900
904
|
};
|
|
905
|
+
'& .SCCategoryHeader-tags': {
|
|
906
|
+
display: string;
|
|
907
|
+
justifyContent: string;
|
|
908
|
+
};
|
|
901
909
|
'& .SCCategoryHeader-followed, & .SCCategoryHeader-action': {
|
|
902
910
|
textAlign: string;
|
|
903
911
|
marginBottom: any;
|
|
@@ -1370,9 +1378,6 @@ declare const theme: {
|
|
|
1370
1378
|
};
|
|
1371
1379
|
};
|
|
1372
1380
|
'& .MuiDialogContent-root': {
|
|
1373
|
-
[x: number]: {
|
|
1374
|
-
overflowY: string;
|
|
1375
|
-
};
|
|
1376
1381
|
margin: string;
|
|
1377
1382
|
padding: any;
|
|
1378
1383
|
height: string;
|
|
@@ -1404,7 +1409,8 @@ declare const theme: {
|
|
|
1404
1409
|
bottom: any;
|
|
1405
1410
|
left: number;
|
|
1406
1411
|
right: number;
|
|
1407
|
-
|
|
1412
|
+
display: string;
|
|
1413
|
+
margin: string;
|
|
1408
1414
|
};
|
|
1409
1415
|
'& .MuiDialogActions-root': {
|
|
1410
1416
|
position: string;
|
|
@@ -1433,7 +1439,12 @@ declare const theme: {
|
|
|
1433
1439
|
};
|
|
1434
1440
|
};
|
|
1435
1441
|
};
|
|
1436
|
-
attributesRoot: () => {
|
|
1442
|
+
attributesRoot: ({ theme }: any) => {
|
|
1443
|
+
'& .MuiChip-root': {
|
|
1444
|
+
marginRight: any;
|
|
1445
|
+
marginTop: any;
|
|
1446
|
+
};
|
|
1447
|
+
};
|
|
1437
1448
|
contentDiscussionRoot: ({ theme }: any) => {
|
|
1438
1449
|
'& .SCComposer-content-discussion-title': {
|
|
1439
1450
|
'& .MuiInputBase-root': {
|
|
@@ -4086,6 +4097,15 @@ declare const theme: {
|
|
|
4086
4097
|
opacity: number;
|
|
4087
4098
|
};
|
|
4088
4099
|
};
|
|
4100
|
+
'& .SCFeedObject-new': {
|
|
4101
|
+
color: any;
|
|
4102
|
+
backgroundColor: string;
|
|
4103
|
+
padding: string;
|
|
4104
|
+
borderRadius: string;
|
|
4105
|
+
marginRight: string;
|
|
4106
|
+
fontSize: string;
|
|
4107
|
+
fontWeight: number;
|
|
4108
|
+
};
|
|
4089
4109
|
'&.SCFeedObject-preview, &.SCFeedObject-detail, &.SCFeedObject-search, &.SCFeedObject-share': {
|
|
4090
4110
|
[x: number]: {
|
|
4091
4111
|
borderRadius: any;
|
|
@@ -4278,6 +4298,7 @@ declare const theme: {
|
|
|
4278
4298
|
};
|
|
4279
4299
|
};
|
|
4280
4300
|
'& .SCFeedObject-medias-section': {
|
|
4301
|
+
padding: any;
|
|
4281
4302
|
'& .SCFeedObjectMediaPreview-root': {
|
|
4282
4303
|
margin: any;
|
|
4283
4304
|
};
|
|
@@ -4382,6 +4403,9 @@ declare const theme: {
|
|
|
4382
4403
|
'& .SCCommentObject-skeleton-root': {
|
|
4383
4404
|
background: string;
|
|
4384
4405
|
marginTop: number;
|
|
4406
|
+
/**
|
|
4407
|
+
* Style assets - Imports - Start
|
|
4408
|
+
*/
|
|
4385
4409
|
marginBottom: string;
|
|
4386
4410
|
'& .SCBaseItem-text': {
|
|
4387
4411
|
'& .SCWidget-root': {
|
|
@@ -4406,9 +4430,7 @@ declare const theme: {
|
|
|
4406
4430
|
};
|
|
4407
4431
|
};
|
|
4408
4432
|
};
|
|
4409
|
-
};
|
|
4410
|
-
* Export default theme
|
|
4411
|
-
*/
|
|
4433
|
+
};
|
|
4412
4434
|
};
|
|
4413
4435
|
};
|
|
4414
4436
|
'&.SCFeedObject-snippet': {
|
|
@@ -4789,6 +4811,7 @@ declare const theme: {
|
|
|
4789
4811
|
display: string;
|
|
4790
4812
|
justifyContent: string;
|
|
4791
4813
|
flexDirection: string;
|
|
4814
|
+
flexWrap: string;
|
|
4792
4815
|
'& .SCFooter-item': {
|
|
4793
4816
|
padding: any;
|
|
4794
4817
|
color: any;
|
|
@@ -6657,15 +6680,17 @@ declare const theme: {
|
|
|
6657
6680
|
docRoot: ({ theme }: {
|
|
6658
6681
|
theme: any;
|
|
6659
6682
|
}) => {
|
|
6660
|
-
borderRadius: string;
|
|
6661
6683
|
border: string;
|
|
6684
|
+
borderRadius: string;
|
|
6662
6685
|
padding: any;
|
|
6663
6686
|
flexDirection: string;
|
|
6664
6687
|
gap: string;
|
|
6665
|
-
'& .SCMediaFile-image': {
|
|
6666
|
-
width: string;
|
|
6667
|
-
height: string;
|
|
6688
|
+
'& .SCMediaFile-image-wrapper': {
|
|
6668
6689
|
flexShrink: number;
|
|
6690
|
+
padding: number;
|
|
6691
|
+
'&:hover': {
|
|
6692
|
+
backgroundColor: string;
|
|
6693
|
+
};
|
|
6669
6694
|
};
|
|
6670
6695
|
'& .SCMediaFile-text-wrapper': {
|
|
6671
6696
|
[x: number]: {
|
|
@@ -8033,9 +8058,6 @@ declare const theme: {
|
|
|
8033
8058
|
alignItems: string;
|
|
8034
8059
|
marginRight: any;
|
|
8035
8060
|
'& .MuiIcon-root': {
|
|
8036
|
-
/**
|
|
8037
|
-
* Style assets - Imports - Start
|
|
8038
|
-
*/
|
|
8039
8061
|
margin: any;
|
|
8040
8062
|
};
|
|
8041
8063
|
};
|
|
@@ -9035,6 +9057,23 @@ declare const theme: {
|
|
|
9035
9057
|
};
|
|
9036
9058
|
};
|
|
9037
9059
|
};
|
|
9060
|
+
SCUserAutocomplete: {
|
|
9061
|
+
styleOverrides: {
|
|
9062
|
+
root: ({ theme }: any) => {
|
|
9063
|
+
'& .SCUserAutocomplete-info': {
|
|
9064
|
+
[x: number]: {
|
|
9065
|
+
alignItems: string;
|
|
9066
|
+
};
|
|
9067
|
+
marginTop: any;
|
|
9068
|
+
display: string;
|
|
9069
|
+
'& .MuiIcon-root': {
|
|
9070
|
+
marginRight: any;
|
|
9071
|
+
};
|
|
9072
|
+
};
|
|
9073
|
+
};
|
|
9074
|
+
autocompleteRoot: ({ theme }: any) => {};
|
|
9075
|
+
};
|
|
9076
|
+
};
|
|
9038
9077
|
SCUserCategoriesFollowedWidget: {
|
|
9039
9078
|
styleOverrides: {
|
|
9040
9079
|
root: ({ theme }: any) => {};
|
|
@@ -12363,6 +12402,15 @@ declare const theme: {
|
|
|
12363
12402
|
};
|
|
12364
12403
|
};
|
|
12365
12404
|
};
|
|
12405
|
+
SCFooterWidget: {
|
|
12406
|
+
styleOverrides: {
|
|
12407
|
+
root: ({ theme }: any) => {
|
|
12408
|
+
'& .SCFooterWidget-content': {
|
|
12409
|
+
paddingBottom: any;
|
|
12410
|
+
};
|
|
12411
|
+
};
|
|
12412
|
+
};
|
|
12413
|
+
};
|
|
12366
12414
|
};
|
|
12367
12415
|
selfcommunity: {
|
|
12368
12416
|
user: {
|
package/lib/cjs/index.js
CHANGED
|
@@ -187,6 +187,7 @@ const SCToastNotifications_1 = tslib_1.__importDefault(require("./components/SCT
|
|
|
187
187
|
const SCUser_1 = tslib_1.__importDefault(require("./components/SCUser"));
|
|
188
188
|
const SCUserActionIconButton_1 = tslib_1.__importDefault(require("./components/SCUserActionIconButton"));
|
|
189
189
|
const SCUserAvatar_1 = tslib_1.__importDefault(require("./components/SCUserAvatar"));
|
|
190
|
+
const SCUserAutocomplete_1 = tslib_1.__importDefault(require("./components/SCUserAutocomplete"));
|
|
190
191
|
const SCUserCategoriesFollowedWidget_1 = tslib_1.__importDefault(require("./components/SCUserCategoriesFollowedWidget"));
|
|
191
192
|
const SCUserConnectionsRequestsSentWidget_1 = tslib_1.__importDefault(require("./components/SCUserConnectionsRequestsSentWidget"));
|
|
192
193
|
const SCUserConnectionsRequestsWidget_1 = tslib_1.__importDefault(require("./components/SCUserConnectionsRequestsWidget"));
|
|
@@ -221,6 +222,7 @@ const SCPaywallsConfigurator_1 = tslib_1.__importDefault(require("./components/S
|
|
|
221
222
|
const SCPdfPreview_1 = tslib_1.__importDefault(require("./components/SCPdfPreview"));
|
|
222
223
|
const SCPaymentOrders_1 = tslib_1.__importDefault(require("./components/SCPaymentOrders"));
|
|
223
224
|
const SCCheckoutHeaderInfoWidget_1 = tslib_1.__importDefault(require("./components/SCCheckoutHeaderInfoWidget"));
|
|
225
|
+
const SCFooterWidget_1 = tslib_1.__importDefault(require("./components/SCFooterWidget"));
|
|
224
226
|
/**
|
|
225
227
|
* Style fragments - Imports - End
|
|
226
228
|
*/
|
|
@@ -458,6 +460,7 @@ const theme = {
|
|
|
458
460
|
SCUser: SCUser_1.default,
|
|
459
461
|
SCUserActionIconButton: SCUserActionIconButton_1.default,
|
|
460
462
|
SCUserAvatar: SCUserAvatar_1.default,
|
|
463
|
+
SCUserAutocomplete: SCUserAutocomplete_1.default,
|
|
461
464
|
SCUserCategoriesFollowedWidget: SCUserCategoriesFollowedWidget_1.default,
|
|
462
465
|
SCUserConnectionsRequestsSentWidget: SCUserConnectionsRequestsSentWidget_1.default,
|
|
463
466
|
SCUserConnectionsRequestsWidget: SCUserConnectionsRequestsWidget_1.default,
|
|
@@ -524,7 +527,8 @@ const theme = {
|
|
|
524
527
|
SCPaywallsConfigurator: SCPaywallsConfigurator_1.default,
|
|
525
528
|
SCPdfPreview: SCPdfPreview_1.default,
|
|
526
529
|
SCPaymentOrders: SCPaymentOrders_1.default,
|
|
527
|
-
SCCheckoutHeaderInfoWidget: SCCheckoutHeaderInfoWidget_1.default
|
|
530
|
+
SCCheckoutHeaderInfoWidget: SCCheckoutHeaderInfoWidget_1.default,
|
|
531
|
+
SCFooterWidget: SCFooterWidget_1.default
|
|
528
532
|
},
|
|
529
533
|
selfcommunity: {
|
|
530
534
|
user: {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const Component: {
|
|
3
2
|
defaultProps: {
|
|
4
|
-
clearIcon: JSX.Element;
|
|
5
|
-
popupIcon: JSX.Element;
|
|
3
|
+
clearIcon: import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
popupIcon: import("react/jsx-runtime").JSX.Element;
|
|
6
5
|
};
|
|
7
6
|
};
|
|
8
7
|
export default Component;
|
|
@@ -43,6 +43,10 @@ declare const Component: {
|
|
|
43
43
|
fontWeight: any;
|
|
44
44
|
marginBottom: string;
|
|
45
45
|
};
|
|
46
|
+
'& .SCCategoryHeader-tags': {
|
|
47
|
+
display: string;
|
|
48
|
+
justifyContent: string;
|
|
49
|
+
};
|
|
46
50
|
'& .SCCategoryHeader-followed, & .SCCategoryHeader-action': {
|
|
47
51
|
textAlign: string;
|
|
48
52
|
marginBottom: any;
|
|
@@ -43,6 +43,10 @@ const Component = {
|
|
|
43
43
|
fontWeight: theme.typography.fontWeightMedium,
|
|
44
44
|
marginBottom: `${theme.spacing(0)} !important`
|
|
45
45
|
},
|
|
46
|
+
'& .SCCategoryHeader-tags': {
|
|
47
|
+
display: 'flex',
|
|
48
|
+
justifyContent: 'center'
|
|
49
|
+
},
|
|
46
50
|
'& .SCCategoryHeader-followed, & .SCCategoryHeader-action': {
|
|
47
51
|
textAlign: 'center',
|
|
48
52
|
marginBottom: theme.spacing(2),
|
|
@@ -45,9 +45,6 @@ declare const Component: {
|
|
|
45
45
|
};
|
|
46
46
|
};
|
|
47
47
|
'& .MuiDialogContent-root': {
|
|
48
|
-
[x: number]: {
|
|
49
|
-
overflowY: string;
|
|
50
|
-
};
|
|
51
48
|
margin: string;
|
|
52
49
|
padding: any;
|
|
53
50
|
height: string;
|
|
@@ -79,7 +76,8 @@ declare const Component: {
|
|
|
79
76
|
bottom: any;
|
|
80
77
|
left: number;
|
|
81
78
|
right: number;
|
|
82
|
-
|
|
79
|
+
display: string;
|
|
80
|
+
margin: string;
|
|
83
81
|
};
|
|
84
82
|
'& .MuiDialogActions-root': {
|
|
85
83
|
position: string;
|
|
@@ -108,7 +106,12 @@ declare const Component: {
|
|
|
108
106
|
};
|
|
109
107
|
};
|
|
110
108
|
};
|
|
111
|
-
attributesRoot: () => {
|
|
109
|
+
attributesRoot: ({ theme }: any) => {
|
|
110
|
+
'& .MuiChip-root': {
|
|
111
|
+
marginRight: any;
|
|
112
|
+
marginTop: any;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
112
115
|
contentDiscussionRoot: ({ theme }: any) => {
|
|
113
116
|
'& .SCComposer-content-discussion-title': {
|
|
114
117
|
'& .MuiInputBase-root': {
|