@selfcommunity/react-theme-default 0.5.0-alpha.8 → 0.5.0-mui7.22

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.
Files changed (42) hide show
  1. package/lib/cjs/components/MuiAutocomplete.d.ts +2 -3
  2. package/lib/cjs/components/MuiSelect.d.ts +1 -2
  3. package/lib/cjs/components/MuiTooltip.d.ts +5 -0
  4. package/lib/cjs/components/MuiTooltip.js +5 -0
  5. package/lib/cjs/components/SCCategoryHeader.d.ts +4 -0
  6. package/lib/cjs/components/SCCategoryHeader.js +4 -0
  7. package/lib/cjs/components/SCComposer.d.ts +8 -5
  8. package/lib/cjs/components/SCComposer.js +11 -5
  9. package/lib/cjs/components/SCFeedObject.d.ts +10 -0
  10. package/lib/cjs/components/SCFeedObject.js +10 -0
  11. package/lib/cjs/components/SCFooter.d.ts +1 -0
  12. package/lib/cjs/components/SCFooter.js +1 -0
  13. package/lib/cjs/components/SCFooterWidget.d.ts +10 -0
  14. package/lib/cjs/components/SCFooterWidget.js +12 -0
  15. package/lib/cjs/components/SCMediaFile.d.ts +6 -7
  16. package/lib/cjs/components/SCMediaFile.js +7 -8
  17. package/lib/cjs/components/SCUserAutocomplete.d.ts +18 -0
  18. package/lib/cjs/components/SCUserAutocomplete.js +20 -0
  19. package/lib/cjs/index.d.ts +67 -22
  20. package/lib/cjs/index.js +5 -1
  21. package/lib/esm/components/MuiAutocomplete.d.ts +2 -3
  22. package/lib/esm/components/MuiSelect.d.ts +1 -2
  23. package/lib/esm/components/MuiTooltip.d.ts +5 -0
  24. package/lib/esm/components/MuiTooltip.js +5 -0
  25. package/lib/esm/components/SCCategoryHeader.d.ts +4 -0
  26. package/lib/esm/components/SCCategoryHeader.js +4 -0
  27. package/lib/esm/components/SCComposer.d.ts +8 -5
  28. package/lib/esm/components/SCComposer.js +11 -5
  29. package/lib/esm/components/SCFeedObject.d.ts +10 -0
  30. package/lib/esm/components/SCFeedObject.js +10 -0
  31. package/lib/esm/components/SCFooter.d.ts +1 -0
  32. package/lib/esm/components/SCFooter.js +1 -0
  33. package/lib/esm/components/SCFooterWidget.d.ts +10 -0
  34. package/lib/esm/components/SCFooterWidget.js +10 -0
  35. package/lib/esm/components/SCMediaFile.d.ts +6 -7
  36. package/lib/esm/components/SCMediaFile.js +7 -8
  37. package/lib/esm/components/SCUserAutocomplete.d.ts +18 -0
  38. package/lib/esm/components/SCUserAutocomplete.js +18 -0
  39. package/lib/esm/index.d.ts +67 -22
  40. package/lib/esm/index.js +5 -1
  41. package/lib/umd/react-theme-default.js +1 -1
  42. 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;
@@ -1,9 +1,8 @@
1
- /// <reference types="react" />
2
1
  declare const Component: {
3
2
  defaultProps: {
4
3
  IconComponent: ({ className }: {
5
4
  className: any;
6
- }) => JSX.Element;
5
+ }) => import("react/jsx-runtime").JSX.Element;
7
6
  };
8
7
  };
9
8
  export default Component;
@@ -2,5 +2,10 @@ declare const Component: {
2
2
  defaultProps: {
3
3
  enterDelay: number;
4
4
  };
5
+ styleOverrides: {
6
+ tooltip: ({ theme }: any) => {
7
+ borderRadius: any;
8
+ };
9
+ };
5
10
  };
6
11
  export default Component;
@@ -3,6 +3,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const Component = {
4
4
  defaultProps: {
5
5
  enterDelay: 500
6
+ },
7
+ styleOverrides: {
8
+ tooltip: ({ theme }) => ({
9
+ borderRadius: theme.spacing(0.5)
10
+ })
6
11
  }
7
12
  };
8
13
  exports.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
- justifyContent: string;
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
- overflowY: 'hidden'
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
- justifyContent: 'center'
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
  }
@@ -9,6 +9,7 @@ declare const Component: {
9
9
  display: string;
10
10
  justifyContent: string;
11
11
  flexDirection: string;
12
+ flexWrap: string;
12
13
  '& .SCFooter-item': {
13
14
  padding: any;
14
15
  color: any;
@@ -11,6 +11,7 @@ const Component = {
11
11
  display: 'flex',
12
12
  justifyContent: 'center',
13
13
  flexDirection: 'row',
14
+ flexWrap: 'wrap',
14
15
  '& .SCFooter-item': {
15
16
  padding: theme.spacing(0.5, 1),
16
17
  color: theme.palette.text.primary
@@ -0,0 +1,10 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ '& .SCFooterWidget-content': {
5
+ paddingBottom: any;
6
+ };
7
+ };
8
+ };
9
+ };
10
+ export default Component;
@@ -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;
@@ -1,9 +1,6 @@
1
1
  declare const Component: {
2
2
  styleOverrides: {
3
3
  displayRoot: ({ theme }: any) => {
4
- [x: number]: {
5
- minHeight: number;
6
- };
7
4
  textAlign: string;
8
5
  margin: string;
9
6
  width: string;
@@ -165,15 +162,17 @@ declare const Component: {
165
162
  docRoot: ({ theme }: {
166
163
  theme: any;
167
164
  }) => {
168
- borderRadius: string;
169
165
  border: string;
166
+ borderRadius: string;
170
167
  padding: any;
171
168
  flexDirection: string;
172
169
  gap: string;
173
- '& .SCMediaFile-image': {
174
- width: string;
175
- height: string;
170
+ '& .SCMediaFile-image-wrapper': {
176
171
  flexShrink: number;
172
+ padding: number;
173
+ '&:hover': {
174
+ backgroundColor: string;
175
+ };
177
176
  };
178
177
  '& .SCMediaFile-text-wrapper': {
179
178
  [x: number]: {
@@ -8,9 +8,6 @@ const Component = {
8
8
  width: '100%',
9
9
  position: 'relative',
10
10
  gap: theme.spacing(2),
11
- [theme.breakpoints.down('md')]: {
12
- minHeight: 170
13
- },
14
11
  '& .SCMediaFile-background': {
15
12
  backgroundSize: 'cover !important',
16
13
  backgroundPosition: 'center !important',
@@ -165,15 +162,17 @@ const Component = {
165
162
  }),
166
163
  triggerMenuRoot: () => ({}),
167
164
  docRoot: ({ theme }) => ({
168
- borderRadius: '10px',
169
165
  border: '1px solid #DDD',
166
+ borderRadius: '10px',
170
167
  padding: theme.spacing(1),
171
168
  flexDirection: 'row',
172
169
  gap: '8px',
173
- '& .SCMediaFile-image': {
174
- width: '50px',
175
- height: '50px',
176
- flexShrink: 0
170
+ '& .SCMediaFile-image-wrapper': {
171
+ flexShrink: 0,
172
+ padding: 0,
173
+ '&:hover': {
174
+ backgroundColor: 'unset'
175
+ }
177
176
  },
178
177
  '& .SCMediaFile-text-wrapper': {
179
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;
@@ -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
- justifyContent: string;
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;
@@ -6496,9 +6519,6 @@ declare const theme: {
6496
6519
  SCMediaFile: {
6497
6520
  styleOverrides: {
6498
6521
  displayRoot: ({ theme }: any) => {
6499
- [x: number]: {
6500
- minHeight: number;
6501
- };
6502
6522
  textAlign: string;
6503
6523
  margin: string;
6504
6524
  width: string;
@@ -6660,15 +6680,17 @@ declare const theme: {
6660
6680
  docRoot: ({ theme }: {
6661
6681
  theme: any;
6662
6682
  }) => {
6663
- borderRadius: string;
6664
6683
  border: string;
6684
+ borderRadius: string;
6665
6685
  padding: any;
6666
6686
  flexDirection: string;
6667
6687
  gap: string;
6668
- '& .SCMediaFile-image': {
6669
- width: string;
6670
- height: string;
6688
+ '& .SCMediaFile-image-wrapper': {
6671
6689
  flexShrink: number;
6690
+ padding: number;
6691
+ '&:hover': {
6692
+ backgroundColor: string;
6693
+ };
6672
6694
  };
6673
6695
  '& .SCMediaFile-text-wrapper': {
6674
6696
  [x: number]: {
@@ -8036,9 +8058,6 @@ declare const theme: {
8036
8058
  alignItems: string;
8037
8059
  marginRight: any;
8038
8060
  '& .MuiIcon-root': {
8039
- /**
8040
- * Style assets - Imports - Start
8041
- */
8042
8061
  margin: any;
8043
8062
  };
8044
8063
  };
@@ -9038,6 +9057,23 @@ declare const theme: {
9038
9057
  };
9039
9058
  };
9040
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
+ };
9041
9077
  SCUserCategoriesFollowedWidget: {
9042
9078
  styleOverrides: {
9043
9079
  root: ({ theme }: any) => {};
@@ -12366,6 +12402,15 @@ declare const theme: {
12366
12402
  };
12367
12403
  };
12368
12404
  };
12405
+ SCFooterWidget: {
12406
+ styleOverrides: {
12407
+ root: ({ theme }: any) => {
12408
+ '& .SCFooterWidget-content': {
12409
+ paddingBottom: any;
12410
+ };
12411
+ };
12412
+ };
12413
+ };
12369
12414
  };
12370
12415
  selfcommunity: {
12371
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;
@@ -1,9 +1,8 @@
1
- /// <reference types="react" />
2
1
  declare const Component: {
3
2
  defaultProps: {
4
3
  IconComponent: ({ className }: {
5
4
  className: any;
6
- }) => JSX.Element;
5
+ }) => import("react/jsx-runtime").JSX.Element;
7
6
  };
8
7
  };
9
8
  export default Component;
@@ -2,5 +2,10 @@ declare const Component: {
2
2
  defaultProps: {
3
3
  enterDelay: number;
4
4
  };
5
+ styleOverrides: {
6
+ tooltip: ({ theme }: any) => {
7
+ borderRadius: any;
8
+ };
9
+ };
5
10
  };
6
11
  export default Component;
@@ -1,6 +1,11 @@
1
1
  const Component = {
2
2
  defaultProps: {
3
3
  enterDelay: 500
4
+ },
5
+ styleOverrides: {
6
+ tooltip: ({ theme }) => ({
7
+ borderRadius: theme.spacing(0.5)
8
+ })
4
9
  }
5
10
  };
6
11
  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),