@selfcommunity/react-theme-default 0.5.0-alpha.14 → 0.5.0-alpha.16
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 +6 -1
- package/lib/cjs/components/SCComposer.js +6 -1
- package/lib/cjs/components/SCFooterWidget.d.ts +10 -0
- package/lib/cjs/components/SCFooterWidget.js +12 -0
- package/lib/cjs/index.d.ts +21 -3
- package/lib/cjs/index.js +3 -1
- package/lib/esm/components/SCComposer.d.ts +6 -1
- package/lib/esm/components/SCComposer.js +6 -1
- package/lib/esm/components/SCFooterWidget.d.ts +10 -0
- package/lib/esm/components/SCFooterWidget.js +10 -0
- package/lib/esm/index.d.ts +21 -3
- package/lib/esm/index.js +3 -1
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -105,7 +105,12 @@ declare const Component: {
|
|
|
105
105
|
};
|
|
106
106
|
};
|
|
107
107
|
};
|
|
108
|
-
attributesRoot: () => {
|
|
108
|
+
attributesRoot: ({ theme }: any) => {
|
|
109
|
+
'& .MuiChip-root': {
|
|
110
|
+
marginRight: any;
|
|
111
|
+
marginTop: any;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
109
114
|
contentDiscussionRoot: ({ theme }: any) => {
|
|
110
115
|
'& .SCComposer-content-discussion-title': {
|
|
111
116
|
'& .MuiInputBase-root': {
|
|
@@ -111,7 +111,12 @@ const Component = {
|
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
113
|
}),
|
|
114
|
-
attributesRoot: () => ({
|
|
114
|
+
attributesRoot: ({ theme }) => ({
|
|
115
|
+
'& .MuiChip-root': {
|
|
116
|
+
marginRight: theme.spacing(0.5),
|
|
117
|
+
marginTop: theme.spacing(0.5)
|
|
118
|
+
}
|
|
119
|
+
}),
|
|
115
120
|
contentDiscussionRoot: ({ theme }) => ({
|
|
116
121
|
'& .SCComposer-content-discussion-title': {
|
|
117
122
|
'& .MuiInputBase-root': {
|
|
@@ -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
|
@@ -1430,7 +1430,12 @@ declare const theme: {
|
|
|
1430
1430
|
};
|
|
1431
1431
|
};
|
|
1432
1432
|
};
|
|
1433
|
-
attributesRoot: () => {
|
|
1433
|
+
attributesRoot: ({ theme }: any) => {
|
|
1434
|
+
'& .MuiChip-root': {
|
|
1435
|
+
marginRight: any;
|
|
1436
|
+
marginTop: any;
|
|
1437
|
+
};
|
|
1438
|
+
};
|
|
1434
1439
|
contentDiscussionRoot: ({ theme }: any) => {
|
|
1435
1440
|
'& .SCComposer-content-discussion-title': {
|
|
1436
1441
|
'& .MuiInputBase-root': {
|
|
@@ -4387,8 +4392,12 @@ declare const theme: {
|
|
|
4387
4392
|
};
|
|
4388
4393
|
'& .SCCommentObject-skeleton-root': {
|
|
4389
4394
|
background: string;
|
|
4390
|
-
marginTop: number;
|
|
4391
|
-
|
|
4395
|
+
marginTop: number; /**
|
|
4396
|
+
* Style fragments - Imports - End
|
|
4397
|
+
*/
|
|
4398
|
+
marginBottom: string; /**
|
|
4399
|
+
* Style assets - Imports - Start
|
|
4400
|
+
*/
|
|
4392
4401
|
'& .SCBaseItem-text': {
|
|
4393
4402
|
'& .SCWidget-root': {
|
|
4394
4403
|
'& .MuiCardContent-root': {
|
|
@@ -12401,6 +12410,15 @@ declare const theme: {
|
|
|
12401
12410
|
};
|
|
12402
12411
|
};
|
|
12403
12412
|
};
|
|
12413
|
+
SCFooterWidget: {
|
|
12414
|
+
styleOverrides: {
|
|
12415
|
+
root: ({ theme }: any) => {
|
|
12416
|
+
'& .SCFooterWidget-content': {
|
|
12417
|
+
paddingBottom: any;
|
|
12418
|
+
};
|
|
12419
|
+
};
|
|
12420
|
+
};
|
|
12421
|
+
};
|
|
12404
12422
|
};
|
|
12405
12423
|
selfcommunity: {
|
|
12406
12424
|
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: {
|
|
@@ -105,7 +105,12 @@ declare const Component: {
|
|
|
105
105
|
};
|
|
106
106
|
};
|
|
107
107
|
};
|
|
108
|
-
attributesRoot: () => {
|
|
108
|
+
attributesRoot: ({ theme }: any) => {
|
|
109
|
+
'& .MuiChip-root': {
|
|
110
|
+
marginRight: any;
|
|
111
|
+
marginTop: any;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
109
114
|
contentDiscussionRoot: ({ theme }: any) => {
|
|
110
115
|
'& .SCComposer-content-discussion-title': {
|
|
111
116
|
'& .MuiInputBase-root': {
|
|
@@ -109,7 +109,12 @@ const Component = {
|
|
|
109
109
|
}
|
|
110
110
|
}
|
|
111
111
|
}),
|
|
112
|
-
attributesRoot: () => ({
|
|
112
|
+
attributesRoot: ({ theme }) => ({
|
|
113
|
+
'& .MuiChip-root': {
|
|
114
|
+
marginRight: theme.spacing(0.5),
|
|
115
|
+
marginTop: theme.spacing(0.5)
|
|
116
|
+
}
|
|
117
|
+
}),
|
|
113
118
|
contentDiscussionRoot: ({ theme }) => ({
|
|
114
119
|
'& .SCComposer-content-discussion-title': {
|
|
115
120
|
'& .MuiInputBase-root': {
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -1430,7 +1430,12 @@ declare const theme: {
|
|
|
1430
1430
|
};
|
|
1431
1431
|
};
|
|
1432
1432
|
};
|
|
1433
|
-
attributesRoot: () => {
|
|
1433
|
+
attributesRoot: ({ theme }: any) => {
|
|
1434
|
+
'& .MuiChip-root': {
|
|
1435
|
+
marginRight: any;
|
|
1436
|
+
marginTop: any;
|
|
1437
|
+
};
|
|
1438
|
+
};
|
|
1434
1439
|
contentDiscussionRoot: ({ theme }: any) => {
|
|
1435
1440
|
'& .SCComposer-content-discussion-title': {
|
|
1436
1441
|
'& .MuiInputBase-root': {
|
|
@@ -4387,8 +4392,12 @@ declare const theme: {
|
|
|
4387
4392
|
};
|
|
4388
4393
|
'& .SCCommentObject-skeleton-root': {
|
|
4389
4394
|
background: string;
|
|
4390
|
-
marginTop: number;
|
|
4391
|
-
|
|
4395
|
+
marginTop: number; /**
|
|
4396
|
+
* Style fragments - Imports - End
|
|
4397
|
+
*/
|
|
4398
|
+
marginBottom: string; /**
|
|
4399
|
+
* Style assets - Imports - Start
|
|
4400
|
+
*/
|
|
4392
4401
|
'& .SCBaseItem-text': {
|
|
4393
4402
|
'& .SCWidget-root': {
|
|
4394
4403
|
'& .MuiCardContent-root': {
|
|
@@ -12401,6 +12410,15 @@ declare const theme: {
|
|
|
12401
12410
|
};
|
|
12402
12411
|
};
|
|
12403
12412
|
};
|
|
12413
|
+
SCFooterWidget: {
|
|
12414
|
+
styleOverrides: {
|
|
12415
|
+
root: ({ theme }: any) => {
|
|
12416
|
+
'& .SCFooterWidget-content': {
|
|
12417
|
+
paddingBottom: any;
|
|
12418
|
+
};
|
|
12419
|
+
};
|
|
12420
|
+
};
|
|
12421
|
+
};
|
|
12404
12422
|
};
|
|
12405
12423
|
selfcommunity: {
|
|
12406
12424
|
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: {
|