@selfcommunity/react-theme-default 0.5.0-alpha.15 → 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.
@@ -108,6 +108,7 @@ declare const Component: {
108
108
  attributesRoot: ({ theme }: any) => {
109
109
  '& .MuiChip-root': {
110
110
  marginRight: any;
111
+ marginTop: any;
111
112
  };
112
113
  };
113
114
  contentDiscussionRoot: ({ theme }: any) => {
@@ -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,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;
@@ -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
- marginBottom: string;
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': {
@@ -12405,6 +12410,15 @@ declare const theme: {
12405
12410
  };
12406
12411
  };
12407
12412
  };
12413
+ SCFooterWidget: {
12414
+ styleOverrides: {
12415
+ root: ({ theme }: any) => {
12416
+ '& .SCFooterWidget-content': {
12417
+ paddingBottom: any;
12418
+ };
12419
+ };
12420
+ };
12421
+ };
12408
12422
  };
12409
12423
  selfcommunity: {
12410
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: {
@@ -108,6 +108,7 @@ declare const Component: {
108
108
  attributesRoot: ({ theme }: any) => {
109
109
  '& .MuiChip-root': {
110
110
  marginRight: any;
111
+ marginTop: any;
111
112
  };
112
113
  };
113
114
  contentDiscussionRoot: ({ theme }: any) => {
@@ -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 }) => ({
@@ -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,10 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({
4
+ '& .SCFooterWidget-content': {
5
+ paddingBottom: theme.spacing(2.2)
6
+ }
7
+ })
8
+ }
9
+ };
10
+ export default Component;
@@ -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
- marginBottom: string;
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': {
@@ -12405,6 +12410,15 @@ declare const theme: {
12405
12410
  };
12406
12411
  };
12407
12412
  };
12413
+ SCFooterWidget: {
12414
+ styleOverrides: {
12415
+ root: ({ theme }: any) => {
12416
+ '& .SCFooterWidget-content': {
12417
+ paddingBottom: any;
12418
+ };
12419
+ };
12420
+ };
12421
+ };
12408
12422
  };
12409
12423
  selfcommunity: {
12410
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: {