@selfcommunity/react-theme-default 0.5.0-alpha.15 → 0.5.0-alpha.17
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/SCComposer.d.ts +1 -0
- package/lib/cjs/components/SCComposer.js +2 -1
- 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/index.d.ts +17 -2
- package/lib/cjs/index.js +3 -1
- package/lib/esm/components/SCComposer.d.ts +1 -0
- package/lib/esm/components/SCComposer.js +2 -1
- 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/index.d.ts +17 -2
- package/lib/esm/index.js +3 -1
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -113,7 +113,8 @@ const Component = {
|
|
|
113
113
|
}),
|
|
114
114
|
attributesRoot: ({ theme }) => ({
|
|
115
115
|
'& .MuiChip-root': {
|
|
116
|
-
marginRight: theme.spacing(0.5)
|
|
116
|
+
marginRight: theme.spacing(0.5),
|
|
117
|
+
marginTop: theme.spacing(0.5)
|
|
117
118
|
}
|
|
118
119
|
}),
|
|
119
120
|
contentDiscussionRoot: ({ theme }) => ({
|
|
@@ -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;
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1433,6 +1433,7 @@ declare const theme: {
|
|
|
1433
1433
|
attributesRoot: ({ theme }: any) => {
|
|
1434
1434
|
'& .MuiChip-root': {
|
|
1435
1435
|
marginRight: any;
|
|
1436
|
+
marginTop: any;
|
|
1436
1437
|
};
|
|
1437
1438
|
};
|
|
1438
1439
|
contentDiscussionRoot: ({ theme }: any) => {
|
|
@@ -4391,8 +4392,12 @@ declare const theme: {
|
|
|
4391
4392
|
};
|
|
4392
4393
|
'& .SCCommentObject-skeleton-root': {
|
|
4393
4394
|
background: string;
|
|
4394
|
-
marginTop: number;
|
|
4395
|
-
|
|
4395
|
+
marginTop: number; /**
|
|
4396
|
+
* Style fragments - Imports - End
|
|
4397
|
+
*/
|
|
4398
|
+
marginBottom: string; /**
|
|
4399
|
+
* Style assets - Imports - Start
|
|
4400
|
+
*/
|
|
4396
4401
|
'& .SCBaseItem-text': {
|
|
4397
4402
|
'& .SCWidget-root': {
|
|
4398
4403
|
'& .MuiCardContent-root': {
|
|
@@ -4797,6 +4802,7 @@ declare const theme: {
|
|
|
4797
4802
|
display: string;
|
|
4798
4803
|
justifyContent: string;
|
|
4799
4804
|
flexDirection: string;
|
|
4805
|
+
flexWrap: string;
|
|
4800
4806
|
'& .SCFooter-item': {
|
|
4801
4807
|
padding: any;
|
|
4802
4808
|
color: any;
|
|
@@ -12405,6 +12411,15 @@ declare const theme: {
|
|
|
12405
12411
|
};
|
|
12406
12412
|
};
|
|
12407
12413
|
};
|
|
12414
|
+
SCFooterWidget: {
|
|
12415
|
+
styleOverrides: {
|
|
12416
|
+
root: ({ theme }: any) => {
|
|
12417
|
+
'& .SCFooterWidget-content': {
|
|
12418
|
+
paddingBottom: any;
|
|
12419
|
+
};
|
|
12420
|
+
};
|
|
12421
|
+
};
|
|
12422
|
+
};
|
|
12408
12423
|
};
|
|
12409
12424
|
selfcommunity: {
|
|
12410
12425
|
user: {
|
package/lib/cjs/index.js
CHANGED
|
@@ -222,6 +222,7 @@ const SCPaywallsConfigurator_1 = tslib_1.__importDefault(require("./components/S
|
|
|
222
222
|
const SCPdfPreview_1 = tslib_1.__importDefault(require("./components/SCPdfPreview"));
|
|
223
223
|
const SCPaymentOrders_1 = tslib_1.__importDefault(require("./components/SCPaymentOrders"));
|
|
224
224
|
const SCCheckoutHeaderInfoWidget_1 = tslib_1.__importDefault(require("./components/SCCheckoutHeaderInfoWidget"));
|
|
225
|
+
const SCFooterWidget_1 = tslib_1.__importDefault(require("./components/SCFooterWidget"));
|
|
225
226
|
/**
|
|
226
227
|
* Style fragments - Imports - End
|
|
227
228
|
*/
|
|
@@ -526,7 +527,8 @@ const theme = {
|
|
|
526
527
|
SCPaywallsConfigurator: SCPaywallsConfigurator_1.default,
|
|
527
528
|
SCPdfPreview: SCPdfPreview_1.default,
|
|
528
529
|
SCPaymentOrders: SCPaymentOrders_1.default,
|
|
529
|
-
SCCheckoutHeaderInfoWidget: SCCheckoutHeaderInfoWidget_1.default
|
|
530
|
+
SCCheckoutHeaderInfoWidget: SCCheckoutHeaderInfoWidget_1.default,
|
|
531
|
+
SCFooterWidget: SCFooterWidget_1.default
|
|
530
532
|
},
|
|
531
533
|
selfcommunity: {
|
|
532
534
|
user: {
|
|
@@ -111,7 +111,8 @@ const Component = {
|
|
|
111
111
|
}),
|
|
112
112
|
attributesRoot: ({ theme }) => ({
|
|
113
113
|
'& .MuiChip-root': {
|
|
114
|
-
marginRight: theme.spacing(0.5)
|
|
114
|
+
marginRight: theme.spacing(0.5),
|
|
115
|
+
marginTop: theme.spacing(0.5)
|
|
115
116
|
}
|
|
116
117
|
}),
|
|
117
118
|
contentDiscussionRoot: ({ theme }) => ({
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -1433,6 +1433,7 @@ declare const theme: {
|
|
|
1433
1433
|
attributesRoot: ({ theme }: any) => {
|
|
1434
1434
|
'& .MuiChip-root': {
|
|
1435
1435
|
marginRight: any;
|
|
1436
|
+
marginTop: any;
|
|
1436
1437
|
};
|
|
1437
1438
|
};
|
|
1438
1439
|
contentDiscussionRoot: ({ theme }: any) => {
|
|
@@ -4391,8 +4392,12 @@ declare const theme: {
|
|
|
4391
4392
|
};
|
|
4392
4393
|
'& .SCCommentObject-skeleton-root': {
|
|
4393
4394
|
background: string;
|
|
4394
|
-
marginTop: number;
|
|
4395
|
-
|
|
4395
|
+
marginTop: number; /**
|
|
4396
|
+
* Style fragments - Imports - End
|
|
4397
|
+
*/
|
|
4398
|
+
marginBottom: string; /**
|
|
4399
|
+
* Style assets - Imports - Start
|
|
4400
|
+
*/
|
|
4396
4401
|
'& .SCBaseItem-text': {
|
|
4397
4402
|
'& .SCWidget-root': {
|
|
4398
4403
|
'& .MuiCardContent-root': {
|
|
@@ -4797,6 +4802,7 @@ declare const theme: {
|
|
|
4797
4802
|
display: string;
|
|
4798
4803
|
justifyContent: string;
|
|
4799
4804
|
flexDirection: string;
|
|
4805
|
+
flexWrap: string;
|
|
4800
4806
|
'& .SCFooter-item': {
|
|
4801
4807
|
padding: any;
|
|
4802
4808
|
color: any;
|
|
@@ -12405,6 +12411,15 @@ declare const theme: {
|
|
|
12405
12411
|
};
|
|
12406
12412
|
};
|
|
12407
12413
|
};
|
|
12414
|
+
SCFooterWidget: {
|
|
12415
|
+
styleOverrides: {
|
|
12416
|
+
root: ({ theme }: any) => {
|
|
12417
|
+
'& .SCFooterWidget-content': {
|
|
12418
|
+
paddingBottom: any;
|
|
12419
|
+
};
|
|
12420
|
+
};
|
|
12421
|
+
};
|
|
12422
|
+
};
|
|
12408
12423
|
};
|
|
12409
12424
|
selfcommunity: {
|
|
12410
12425
|
user: {
|
package/lib/esm/index.js
CHANGED
|
@@ -218,6 +218,7 @@ import SCPaywallsConfigurator from './components/SCPaywallsConfigurator';
|
|
|
218
218
|
import SCPdfPreview from './components/SCPdfPreview';
|
|
219
219
|
import SCPaymentOrders from './components/SCPaymentOrders';
|
|
220
220
|
import SCCheckoutHeaderInfoWidget from './components/SCCheckoutHeaderInfoWidget';
|
|
221
|
+
import SCFooterWidget from './components/SCFooterWidget';
|
|
221
222
|
/**
|
|
222
223
|
* Style fragments - Imports - End
|
|
223
224
|
*/
|
|
@@ -514,7 +515,8 @@ const theme = {
|
|
|
514
515
|
SCPaywallsConfigurator,
|
|
515
516
|
SCPdfPreview,
|
|
516
517
|
SCPaymentOrders,
|
|
517
|
-
SCCheckoutHeaderInfoWidget
|
|
518
|
+
SCCheckoutHeaderInfoWidget,
|
|
519
|
+
SCFooterWidget
|
|
518
520
|
},
|
|
519
521
|
selfcommunity: {
|
|
520
522
|
user: {
|