@selfcommunity/react-theme-default 0.1.50-events.67 → 0.1.50-events.71

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.
@@ -93,6 +93,7 @@ declare const Component: {
93
93
  };
94
94
  '& .SCEventHeader-info': {
95
95
  marginTop: number;
96
+ marginLeft: any;
96
97
  };
97
98
  };
98
99
  };
@@ -28,7 +28,7 @@ const Component = {
28
28
  '& .SCEventHeader-name': {
29
29
  fontSize: '1.857rem',
30
30
  fontWeight: theme.typography.fontWeightBold,
31
- paddingLeft: theme.spacing(2),
31
+ paddingLeft: theme.spacing(2)
32
32
  },
33
33
  '& .SCEventHeader-visibility': {
34
34
  display: 'flex',
@@ -95,7 +95,8 @@ const Component = {
95
95
  }
96
96
  },
97
97
  '& .SCEventHeader-info': {
98
- marginTop: 60
98
+ marginTop: 60,
99
+ marginLeft: theme.spacing(2)
99
100
  }
100
101
  })
101
102
  }
@@ -0,0 +1,8 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: {
4
+ theme: any;
5
+ }) => {};
6
+ };
7
+ };
8
+ export default Component;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({})
6
+ }
7
+ };
8
+ exports.default = Component;
@@ -9,7 +9,7 @@ const Component = {
9
9
  flexDirection: 'row',
10
10
  justifyContent: 'flex-start',
11
11
  alignItems: 'flex-start',
12
- marginBottom: theme.padding(2),
12
+ marginBottom: theme.spacing(2),
13
13
  '& .SCRelatedEventsWidget-avatar-wrapper': {
14
14
  flexDirection: 'row',
15
15
  alignItems: 'center',
@@ -6846,6 +6846,7 @@ declare const theme: {
6846
6846
  };
6847
6847
  '& .SCEventHeader-info': {
6848
6848
  marginTop: number;
6849
+ marginLeft: any;
6849
6850
  };
6850
6851
  };
6851
6852
  };
@@ -7304,6 +7305,9 @@ declare const theme: {
7304
7305
  root: ({ theme }: {
7305
7306
  theme: any;
7306
7307
  }) => {
7308
+ /**
7309
+ * Style fragments - Imports - Start
7310
+ */
7307
7311
  '& .SCRelatedEventsWidget-content': {
7308
7312
  padding: string;
7309
7313
  '& .SCRelatedEventsWidget-header': {
@@ -7399,6 +7403,13 @@ declare const theme: {
7399
7403
  };
7400
7404
  };
7401
7405
  };
7406
+ SCInviteUserEventButton: {
7407
+ styleOverrides: {
7408
+ root: ({ theme }: {
7409
+ theme: any;
7410
+ }) => {};
7411
+ };
7412
+ };
7402
7413
  };
7403
7414
  selfcommunity: {
7404
7415
  user: {
package/lib/cjs/index.js CHANGED
@@ -102,6 +102,7 @@ const SCIncubatorDetail_1 = tslib_1.__importDefault(require("./components/SCIncu
102
102
  const SCIncubatorListWidget_1 = tslib_1.__importDefault(require("./components/SCIncubatorListWidget"));
103
103
  const SCIncubatorSuggestionWidget_1 = tslib_1.__importDefault(require("./components/SCIncubatorSuggestionWidget"));
104
104
  const SCInlineComposerWidget_1 = tslib_1.__importDefault(require("./components/SCInlineComposerWidget"));
105
+ const SCInviteUserEventButton_1 = tslib_1.__importDefault(require("./components/SCInviteUserEventButton"));
105
106
  const SCLanguageSwitcher_1 = tslib_1.__importDefault(require("./components/SCLanguageSwitcher"));
106
107
  const SCLightbox_1 = tslib_1.__importDefault(require("./components/SCLightbox"));
107
108
  const SCLoyaltyProgramDetailTemplate_1 = tslib_1.__importDefault(require("./components/SCLoyaltyProgramDetailTemplate"));
@@ -379,7 +380,8 @@ const theme = {
379
380
  SCCreateEventWidget: SCCreateEventWidget_1.default,
380
381
  SCSuggestedEventsWidget: SCSuggestedEventsWidget_1.default,
381
382
  SCEventMembersWidget: SCEventMembersWidget_1.default,
382
- SCRelatedEventsWidget: SCRelatedEventsWidget_1.default
383
+ SCRelatedEventsWidget: SCRelatedEventsWidget_1.default,
384
+ SCInviteUserEventButton: SCInviteUserEventButton_1.default
383
385
  },
384
386
  selfcommunity: {
385
387
  user: {
@@ -93,6 +93,7 @@ declare const Component: {
93
93
  };
94
94
  '& .SCEventHeader-info': {
95
95
  marginTop: number;
96
+ marginLeft: any;
96
97
  };
97
98
  };
98
99
  };
@@ -26,7 +26,7 @@ const Component = {
26
26
  '& .SCEventHeader-name': {
27
27
  fontSize: '1.857rem',
28
28
  fontWeight: theme.typography.fontWeightBold,
29
- paddingLeft: theme.spacing(2),
29
+ paddingLeft: theme.spacing(2)
30
30
  },
31
31
  '& .SCEventHeader-visibility': {
32
32
  display: 'flex',
@@ -93,7 +93,8 @@ const Component = {
93
93
  }
94
94
  },
95
95
  '& .SCEventHeader-info': {
96
- marginTop: 60
96
+ marginTop: 60,
97
+ marginLeft: theme.spacing(2)
97
98
  }
98
99
  })
99
100
  }
@@ -0,0 +1,8 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: {
4
+ theme: any;
5
+ }) => {};
6
+ };
7
+ };
8
+ export default Component;
@@ -0,0 +1,6 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({})
4
+ }
5
+ };
6
+ export default Component;
@@ -7,7 +7,7 @@ const Component = {
7
7
  flexDirection: 'row',
8
8
  justifyContent: 'flex-start',
9
9
  alignItems: 'flex-start',
10
- marginBottom: theme.padding(2),
10
+ marginBottom: theme.spacing(2),
11
11
  '& .SCRelatedEventsWidget-avatar-wrapper': {
12
12
  flexDirection: 'row',
13
13
  alignItems: 'center',
@@ -6846,6 +6846,7 @@ declare const theme: {
6846
6846
  };
6847
6847
  '& .SCEventHeader-info': {
6848
6848
  marginTop: number;
6849
+ marginLeft: any;
6849
6850
  };
6850
6851
  };
6851
6852
  };
@@ -7304,6 +7305,9 @@ declare const theme: {
7304
7305
  root: ({ theme }: {
7305
7306
  theme: any;
7306
7307
  }) => {
7308
+ /**
7309
+ * Style fragments - Imports - Start
7310
+ */
7307
7311
  '& .SCRelatedEventsWidget-content': {
7308
7312
  padding: string;
7309
7313
  '& .SCRelatedEventsWidget-header': {
@@ -7399,6 +7403,13 @@ declare const theme: {
7399
7403
  };
7400
7404
  };
7401
7405
  };
7406
+ SCInviteUserEventButton: {
7407
+ styleOverrides: {
7408
+ root: ({ theme }: {
7409
+ theme: any;
7410
+ }) => {};
7411
+ };
7412
+ };
7402
7413
  };
7403
7414
  selfcommunity: {
7404
7415
  user: {
package/lib/esm/index.js CHANGED
@@ -99,6 +99,7 @@ import SCIncubatorDetail from './components/SCIncubatorDetail';
99
99
  import SCIncubatorListWidget from './components/SCIncubatorListWidget';
100
100
  import SCIncubatorSuggestionWidget from './components/SCIncubatorSuggestionWidget';
101
101
  import SCInlineComposerWidget from './components/SCInlineComposerWidget';
102
+ import SCInviteUserEventButton from './components/SCInviteUserEventButton';
102
103
  import SCLanguageSwitcher from './components/SCLanguageSwitcher';
103
104
  import SCLightbox from './components/SCLightbox';
104
105
  import SCLoyaltyProgramDetailTemplate from './components/SCLoyaltyProgramDetailTemplate';
@@ -376,7 +377,8 @@ const theme = {
376
377
  SCCreateEventWidget,
377
378
  SCSuggestedEventsWidget,
378
379
  SCEventMembersWidget,
379
- SCRelatedEventsWidget
380
+ SCRelatedEventsWidget,
381
+ SCInviteUserEventButton
380
382
  },
381
383
  selfcommunity: {
382
384
  user: {