@selfcommunity/react-theme-default 0.1.50-events.91 → 0.1.50-events.93

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.
@@ -49,9 +49,14 @@ declare const Component: {
49
49
  };
50
50
  };
51
51
  '& .SCEvent-preview-name-wrapper': {
52
+ marginTop: number;
52
53
  textDecoration: string;
53
54
  color: string;
54
- marginTop: number;
55
+ '& h5': {
56
+ whiteSpace: string;
57
+ overflow: string;
58
+ textOverflow: string;
59
+ };
55
60
  };
56
61
  };
57
62
  };
@@ -51,9 +51,14 @@ const Component = {
51
51
  }
52
52
  },
53
53
  '& .SCEvent-preview-name-wrapper': {
54
+ marginTop: 3,
54
55
  textDecoration: 'none',
55
56
  color: 'inherit',
56
- marginTop: 3
57
+ '& h5': {
58
+ whiteSpace: 'nowrap',
59
+ overflow: 'hidden',
60
+ textOverflow: 'ellipsis'
61
+ }
57
62
  }
58
63
  }
59
64
  }),
@@ -10,8 +10,9 @@ declare const Component: {
10
10
  backgroundColor: string;
11
11
  };
12
12
  '& .MuiAvatarGroup-avatar': {
13
- width: string;
14
- height: string;
13
+ width: any;
14
+ height: any;
15
+ fontSize: string;
15
16
  };
16
17
  '& .SCEventParticipantsButton-participants': {
17
18
  color: any;
@@ -10,8 +10,9 @@ const Component = {
10
10
  backgroundColor: 'unset'
11
11
  },
12
12
  '& .MuiAvatarGroup-avatar': {
13
- width: '24px',
14
- height: '24px'
13
+ width: theme.selfcommunity.user.avatar.sizeSmall,
14
+ height: theme.selfcommunity.user.avatar.sizeSmall,
15
+ fontSize: '0.8rem'
15
16
  },
16
17
  '& .SCEventParticipantsButton-participants': {
17
18
  color: theme.palette.grey[600]
@@ -11,13 +11,17 @@ declare const Component: {
11
11
  '& .SCEvents-item': {
12
12
  paddingTop: any;
13
13
  };
14
- '& .SCEvent-skeleton-root': {
15
- padding: any;
14
+ '& .SCEvents-item-skeleton': {
15
+ paddingTop: any;
16
16
  };
17
17
  '& .SCBaseItem-root': {
18
18
  display: string;
19
19
  justifyContent: string;
20
20
  };
21
+ '& .SCEvent-skeleton-preview-name': {
22
+ marginTop: number;
23
+ marginBottom: number;
24
+ };
21
25
  '& .SCEvent-skeleton-snippet .SCBaseItem-content': {
22
26
  maxWidth: string;
23
27
  };
@@ -13,13 +13,17 @@ const Component = {
13
13
  '& .SCEvents-item': {
14
14
  paddingTop: theme.spacing()
15
15
  },
16
- '& .SCEvent-skeleton-root': {
17
- padding: theme.spacing(0.5, 0, 0.5, 0)
16
+ '& .SCEvents-item-skeleton': {
17
+ paddingTop: theme.spacing()
18
18
  },
19
19
  '& .SCBaseItem-root': {
20
20
  display: 'flex',
21
21
  justifyContent: 'space-between'
22
22
  },
23
+ '& .SCEvent-skeleton-preview-name': {
24
+ marginTop: 6,
25
+ marginBottom: 6
26
+ },
23
27
  '& .SCEvent-skeleton-snippet .SCBaseItem-content': {
24
28
  maxWidth: '70%'
25
29
  }
@@ -12,7 +12,7 @@ const Component = {
12
12
  gap: theme.spacing(3),
13
13
  '& .SCMyEventsWidget-arrows': {
14
14
  width: '24px',
15
- height: '24px',
15
+ height: '24px'
16
16
  },
17
17
  '& .SCMyEventsWidget-action-button': {
18
18
  color: theme.palette.primary.main,
@@ -62,6 +62,13 @@ declare const Component: {
62
62
  color: any;
63
63
  };
64
64
  };
65
+ '& .SCEvent-skeleton-preview-name': {
66
+ marginTop: number;
67
+ marginBottom: number;
68
+ };
69
+ '& .SCEvent-skeleton-preview-actions': {
70
+ padding: number;
71
+ };
65
72
  };
66
73
  skeletonRoot: ({ theme }: {
67
74
  theme: any;
@@ -80,6 +87,9 @@ declare const Component: {
80
87
  padding: string;
81
88
  justifyContent: string;
82
89
  };
90
+ '& .SCEvent-skeleton-preview-actions': {
91
+ padding: number;
92
+ };
83
93
  };
84
94
  };
85
95
  };
@@ -30,7 +30,7 @@ const Component = {
30
30
  },
31
31
  '& p': {
32
32
  marginTop: 1,
33
- fontSize: '0.74rem'
33
+ fontSize: '0.70rem'
34
34
  }
35
35
  }
36
36
  }
@@ -61,6 +61,13 @@ const Component = {
61
61
  '& .SCSuggestedEventsWidget-actionButton': {
62
62
  color: theme.palette.primary.main
63
63
  }
64
+ },
65
+ '& .SCEvent-skeleton-preview-name': {
66
+ marginTop: 0,
67
+ marginBottom: 0
68
+ },
69
+ '& .SCEvent-skeleton-preview-actions': {
70
+ padding: 0
64
71
  }
65
72
  }),
66
73
  skeletonRoot: ({ theme }) => ({
@@ -77,6 +84,9 @@ const Component = {
77
84
  '& .SCSuggestedEventsWidget-actions': {
78
85
  padding: `0 ${theme.spacing()} ${theme.spacing()}`,
79
86
  justifyContent: 'center'
87
+ },
88
+ '& .SCEvent-skeleton-preview-actions': {
89
+ padding: 0
80
90
  }
81
91
  })
82
92
  }
@@ -2399,11 +2399,10 @@ declare const theme: {
2399
2399
  fontWeight: any;
2400
2400
  marginTop: any;
2401
2401
  marginBottom: number;
2402
- color: any;
2402
+ color: any; /**
2403
+ * Export default theme
2404
+ */
2403
2405
  '&:hover': {
2404
- /**
2405
- * Export default theme
2406
- */
2407
2406
  color: string;
2408
2407
  };
2409
2408
  };
@@ -6810,9 +6809,14 @@ declare const theme: {
6810
6809
  };
6811
6810
  };
6812
6811
  '& .SCEvent-preview-name-wrapper': {
6812
+ marginTop: number;
6813
6813
  textDecoration: string;
6814
6814
  color: string;
6815
- marginTop: number;
6815
+ '& h5': {
6816
+ whiteSpace: string;
6817
+ overflow: string;
6818
+ textOverflow: string;
6819
+ };
6816
6820
  };
6817
6821
  };
6818
6822
  };
@@ -6964,13 +6968,17 @@ declare const theme: {
6964
6968
  '& .SCEvents-item': {
6965
6969
  paddingTop: any;
6966
6970
  };
6967
- '& .SCEvent-skeleton-root': {
6968
- padding: any;
6971
+ '& .SCEvents-item-skeleton': {
6972
+ paddingTop: any;
6969
6973
  };
6970
6974
  '& .SCBaseItem-root': {
6971
6975
  display: string;
6972
6976
  justifyContent: string;
6973
6977
  };
6978
+ '& .SCEvent-skeleton-preview-name': {
6979
+ marginTop: number;
6980
+ marginBottom: number;
6981
+ };
6974
6982
  '& .SCEvent-skeleton-snippet .SCBaseItem-content': {
6975
6983
  maxWidth: string;
6976
6984
  };
@@ -7378,8 +7386,9 @@ declare const theme: {
7378
7386
  backgroundColor: string;
7379
7387
  };
7380
7388
  '& .MuiAvatarGroup-avatar': {
7381
- width: string;
7382
- height: string;
7389
+ width: any;
7390
+ height: any;
7391
+ fontSize: string;
7383
7392
  };
7384
7393
  '& .SCEventParticipantsButton-participants': {
7385
7394
  color: any;
@@ -7520,9 +7529,6 @@ declare const theme: {
7520
7529
  root: ({ theme }: {
7521
7530
  theme: any;
7522
7531
  }) => {
7523
- /**
7524
- * Style fragments - Imports - Start
7525
- */
7526
7532
  '& .SCSuggestedEventsWidget-content': {
7527
7533
  padding: string;
7528
7534
  '& .SCSuggestedEventsWidget-title': {
@@ -7582,6 +7588,13 @@ declare const theme: {
7582
7588
  color: any;
7583
7589
  };
7584
7590
  };
7591
+ '& .SCEvent-skeleton-preview-name': {
7592
+ marginTop: number;
7593
+ marginBottom: number;
7594
+ };
7595
+ '& .SCEvent-skeleton-preview-actions': {
7596
+ padding: number;
7597
+ };
7585
7598
  };
7586
7599
  skeletonRoot: ({ theme }: {
7587
7600
  theme: any;
@@ -7600,6 +7613,9 @@ declare const theme: {
7600
7613
  padding: string;
7601
7614
  justifyContent: string;
7602
7615
  };
7616
+ '& .SCEvent-skeleton-preview-actions': {
7617
+ padding: number;
7618
+ };
7603
7619
  };
7604
7620
  };
7605
7621
  };
@@ -7776,13 +7792,6 @@ declare const theme: {
7776
7792
  };
7777
7793
  };
7778
7794
  };
7779
- SCInviteUserEventButton: {
7780
- styleOverrides: {
7781
- root: ({ theme }: {
7782
- theme: any;
7783
- }) => {};
7784
- };
7785
- };
7786
7795
  SCVoteAudienceButton: {
7787
7796
  styleOverrides: {
7788
7797
  root: ({ theme }: any) => {
package/lib/cjs/index.js CHANGED
@@ -94,15 +94,14 @@ const SCGroupInvitedWidget_1 = tslib_1.__importDefault(require("./components/SCG
94
94
  const SCGroupMembersButton_1 = tslib_1.__importDefault(require("./components/SCGroupMembersButton"));
95
95
  const SCGroupMembersWidget_1 = tslib_1.__importDefault(require("./components/SCGroupMembersWidget"));
96
96
  const SCGroupRequestsWidget_1 = tslib_1.__importDefault(require("./components/SCGroupRequestsWidget"));
97
+ const SCGroups_1 = tslib_1.__importDefault(require("./components/SCGroups"));
97
98
  const SCGroupSettingsIconButton_1 = tslib_1.__importDefault(require("./components/SCGroupSettingsIconButton"));
98
99
  const SCGroupTemplate_1 = tslib_1.__importDefault(require("./components/SCGroupTemplate"));
99
- const SCGroups_1 = tslib_1.__importDefault(require("./components/SCGroups"));
100
100
  const SCIncubator_1 = tslib_1.__importDefault(require("./components/SCIncubator"));
101
101
  const SCIncubatorDetail_1 = tslib_1.__importDefault(require("./components/SCIncubatorDetail"));
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"));
106
105
  const SCLanguageSwitcher_1 = tslib_1.__importDefault(require("./components/SCLanguageSwitcher"));
107
106
  const SCLightbox_1 = tslib_1.__importDefault(require("./components/SCLightbox"));
108
107
  const SCLoyaltyProgramDetailTemplate_1 = tslib_1.__importDefault(require("./components/SCLoyaltyProgramDetailTemplate"));
@@ -131,9 +130,9 @@ const SCPrivateMessageSnippetItem_1 = tslib_1.__importDefault(require("./compone
131
130
  const SCPrivateMessageSnippets_1 = tslib_1.__importDefault(require("./components/SCPrivateMessageSnippets"));
132
131
  const SCPrivateMessageThread_1 = tslib_1.__importDefault(require("./components/SCPrivateMessageThread"));
133
132
  const SCPrivateMessageThreadItem_1 = tslib_1.__importDefault(require("./components/SCPrivateMessageThreadItem"));
133
+ const SCProgressBar_1 = tslib_1.__importDefault(require("./components/SCProgressBar"));
134
134
  const SCReactionAction_1 = tslib_1.__importDefault(require("./components/SCReactionAction"));
135
135
  const SCRelatedEventsWidget_1 = tslib_1.__importDefault(require("./components/SCRelatedEventsWidget"));
136
- const SCProgressBar_1 = tslib_1.__importDefault(require("./components/SCProgressBar"));
137
136
  const SCRelatedFeedObjectsWidget_1 = tslib_1.__importDefault(require("./components/SCRelatedFeedObjectsWidget"));
138
137
  const SCScrollContainer_1 = tslib_1.__importDefault(require("./components/SCScrollContainer"));
139
138
  const SCSearchAutocomplete_1 = tslib_1.__importDefault(require("./components/SCSearchAutocomplete"));
@@ -382,7 +381,6 @@ const theme = {
382
381
  SCSuggestedEventsWidget: SCSuggestedEventsWidget_1.default,
383
382
  SCEventMembersWidget: SCEventMembersWidget_1.default,
384
383
  SCRelatedEventsWidget: SCRelatedEventsWidget_1.default,
385
- SCInviteUserEventButton: SCInviteUserEventButton_1.default,
386
384
  SCVoteAudienceButton: SCVoteAudienceButton_1.default,
387
385
  SCVoteButton: SCVoteButton_1.default,
388
386
  SCWidget: SCWidget_1.default
@@ -49,9 +49,14 @@ declare const Component: {
49
49
  };
50
50
  };
51
51
  '& .SCEvent-preview-name-wrapper': {
52
+ marginTop: number;
52
53
  textDecoration: string;
53
54
  color: string;
54
- marginTop: number;
55
+ '& h5': {
56
+ whiteSpace: string;
57
+ overflow: string;
58
+ textOverflow: string;
59
+ };
55
60
  };
56
61
  };
57
62
  };
@@ -49,9 +49,14 @@ const Component = {
49
49
  }
50
50
  },
51
51
  '& .SCEvent-preview-name-wrapper': {
52
+ marginTop: 3,
52
53
  textDecoration: 'none',
53
54
  color: 'inherit',
54
- marginTop: 3
55
+ '& h5': {
56
+ whiteSpace: 'nowrap',
57
+ overflow: 'hidden',
58
+ textOverflow: 'ellipsis'
59
+ }
55
60
  }
56
61
  }
57
62
  }),
@@ -10,8 +10,9 @@ declare const Component: {
10
10
  backgroundColor: string;
11
11
  };
12
12
  '& .MuiAvatarGroup-avatar': {
13
- width: string;
14
- height: string;
13
+ width: any;
14
+ height: any;
15
+ fontSize: string;
15
16
  };
16
17
  '& .SCEventParticipantsButton-participants': {
17
18
  color: any;
@@ -8,8 +8,9 @@ const Component = {
8
8
  backgroundColor: 'unset'
9
9
  },
10
10
  '& .MuiAvatarGroup-avatar': {
11
- width: '24px',
12
- height: '24px'
11
+ width: theme.selfcommunity.user.avatar.sizeSmall,
12
+ height: theme.selfcommunity.user.avatar.sizeSmall,
13
+ fontSize: '0.8rem'
13
14
  },
14
15
  '& .SCEventParticipantsButton-participants': {
15
16
  color: theme.palette.grey[600]
@@ -11,13 +11,17 @@ declare const Component: {
11
11
  '& .SCEvents-item': {
12
12
  paddingTop: any;
13
13
  };
14
- '& .SCEvent-skeleton-root': {
15
- padding: any;
14
+ '& .SCEvents-item-skeleton': {
15
+ paddingTop: any;
16
16
  };
17
17
  '& .SCBaseItem-root': {
18
18
  display: string;
19
19
  justifyContent: string;
20
20
  };
21
+ '& .SCEvent-skeleton-preview-name': {
22
+ marginTop: number;
23
+ marginBottom: number;
24
+ };
21
25
  '& .SCEvent-skeleton-snippet .SCBaseItem-content': {
22
26
  maxWidth: string;
23
27
  };
@@ -11,13 +11,17 @@ const Component = {
11
11
  '& .SCEvents-item': {
12
12
  paddingTop: theme.spacing()
13
13
  },
14
- '& .SCEvent-skeleton-root': {
15
- padding: theme.spacing(0.5, 0, 0.5, 0)
14
+ '& .SCEvents-item-skeleton': {
15
+ paddingTop: theme.spacing()
16
16
  },
17
17
  '& .SCBaseItem-root': {
18
18
  display: 'flex',
19
19
  justifyContent: 'space-between'
20
20
  },
21
+ '& .SCEvent-skeleton-preview-name': {
22
+ marginTop: 6,
23
+ marginBottom: 6
24
+ },
21
25
  '& .SCEvent-skeleton-snippet .SCBaseItem-content': {
22
26
  maxWidth: '70%'
23
27
  }
@@ -10,7 +10,7 @@ const Component = {
10
10
  gap: theme.spacing(3),
11
11
  '& .SCMyEventsWidget-arrows': {
12
12
  width: '24px',
13
- height: '24px',
13
+ height: '24px'
14
14
  },
15
15
  '& .SCMyEventsWidget-action-button': {
16
16
  color: theme.palette.primary.main,
@@ -62,6 +62,13 @@ declare const Component: {
62
62
  color: any;
63
63
  };
64
64
  };
65
+ '& .SCEvent-skeleton-preview-name': {
66
+ marginTop: number;
67
+ marginBottom: number;
68
+ };
69
+ '& .SCEvent-skeleton-preview-actions': {
70
+ padding: number;
71
+ };
65
72
  };
66
73
  skeletonRoot: ({ theme }: {
67
74
  theme: any;
@@ -80,6 +87,9 @@ declare const Component: {
80
87
  padding: string;
81
88
  justifyContent: string;
82
89
  };
90
+ '& .SCEvent-skeleton-preview-actions': {
91
+ padding: number;
92
+ };
83
93
  };
84
94
  };
85
95
  };
@@ -28,7 +28,7 @@ const Component = {
28
28
  },
29
29
  '& p': {
30
30
  marginTop: 1,
31
- fontSize: '0.74rem'
31
+ fontSize: '0.70rem'
32
32
  }
33
33
  }
34
34
  }
@@ -59,6 +59,13 @@ const Component = {
59
59
  '& .SCSuggestedEventsWidget-actionButton': {
60
60
  color: theme.palette.primary.main
61
61
  }
62
+ },
63
+ '& .SCEvent-skeleton-preview-name': {
64
+ marginTop: 0,
65
+ marginBottom: 0
66
+ },
67
+ '& .SCEvent-skeleton-preview-actions': {
68
+ padding: 0
62
69
  }
63
70
  }),
64
71
  skeletonRoot: ({ theme }) => ({
@@ -75,6 +82,9 @@ const Component = {
75
82
  '& .SCSuggestedEventsWidget-actions': {
76
83
  padding: `0 ${theme.spacing()} ${theme.spacing()}`,
77
84
  justifyContent: 'center'
85
+ },
86
+ '& .SCEvent-skeleton-preview-actions': {
87
+ padding: 0
78
88
  }
79
89
  })
80
90
  }
@@ -2399,11 +2399,10 @@ declare const theme: {
2399
2399
  fontWeight: any;
2400
2400
  marginTop: any;
2401
2401
  marginBottom: number;
2402
- color: any;
2402
+ color: any; /**
2403
+ * Export default theme
2404
+ */
2403
2405
  '&:hover': {
2404
- /**
2405
- * Export default theme
2406
- */
2407
2406
  color: string;
2408
2407
  };
2409
2408
  };
@@ -6810,9 +6809,14 @@ declare const theme: {
6810
6809
  };
6811
6810
  };
6812
6811
  '& .SCEvent-preview-name-wrapper': {
6812
+ marginTop: number;
6813
6813
  textDecoration: string;
6814
6814
  color: string;
6815
- marginTop: number;
6815
+ '& h5': {
6816
+ whiteSpace: string;
6817
+ overflow: string;
6818
+ textOverflow: string;
6819
+ };
6816
6820
  };
6817
6821
  };
6818
6822
  };
@@ -6964,13 +6968,17 @@ declare const theme: {
6964
6968
  '& .SCEvents-item': {
6965
6969
  paddingTop: any;
6966
6970
  };
6967
- '& .SCEvent-skeleton-root': {
6968
- padding: any;
6971
+ '& .SCEvents-item-skeleton': {
6972
+ paddingTop: any;
6969
6973
  };
6970
6974
  '& .SCBaseItem-root': {
6971
6975
  display: string;
6972
6976
  justifyContent: string;
6973
6977
  };
6978
+ '& .SCEvent-skeleton-preview-name': {
6979
+ marginTop: number;
6980
+ marginBottom: number;
6981
+ };
6974
6982
  '& .SCEvent-skeleton-snippet .SCBaseItem-content': {
6975
6983
  maxWidth: string;
6976
6984
  };
@@ -7378,8 +7386,9 @@ declare const theme: {
7378
7386
  backgroundColor: string;
7379
7387
  };
7380
7388
  '& .MuiAvatarGroup-avatar': {
7381
- width: string;
7382
- height: string;
7389
+ width: any;
7390
+ height: any;
7391
+ fontSize: string;
7383
7392
  };
7384
7393
  '& .SCEventParticipantsButton-participants': {
7385
7394
  color: any;
@@ -7520,9 +7529,6 @@ declare const theme: {
7520
7529
  root: ({ theme }: {
7521
7530
  theme: any;
7522
7531
  }) => {
7523
- /**
7524
- * Style fragments - Imports - Start
7525
- */
7526
7532
  '& .SCSuggestedEventsWidget-content': {
7527
7533
  padding: string;
7528
7534
  '& .SCSuggestedEventsWidget-title': {
@@ -7582,6 +7588,13 @@ declare const theme: {
7582
7588
  color: any;
7583
7589
  };
7584
7590
  };
7591
+ '& .SCEvent-skeleton-preview-name': {
7592
+ marginTop: number;
7593
+ marginBottom: number;
7594
+ };
7595
+ '& .SCEvent-skeleton-preview-actions': {
7596
+ padding: number;
7597
+ };
7585
7598
  };
7586
7599
  skeletonRoot: ({ theme }: {
7587
7600
  theme: any;
@@ -7600,6 +7613,9 @@ declare const theme: {
7600
7613
  padding: string;
7601
7614
  justifyContent: string;
7602
7615
  };
7616
+ '& .SCEvent-skeleton-preview-actions': {
7617
+ padding: number;
7618
+ };
7603
7619
  };
7604
7620
  };
7605
7621
  };
@@ -7776,13 +7792,6 @@ declare const theme: {
7776
7792
  };
7777
7793
  };
7778
7794
  };
7779
- SCInviteUserEventButton: {
7780
- styleOverrides: {
7781
- root: ({ theme }: {
7782
- theme: any;
7783
- }) => {};
7784
- };
7785
- };
7786
7795
  SCVoteAudienceButton: {
7787
7796
  styleOverrides: {
7788
7797
  root: ({ theme }: any) => {
package/lib/esm/index.js CHANGED
@@ -91,15 +91,14 @@ import SCGroupInvitedWidget from './components/SCGroupInvitedWidget';
91
91
  import SCGroupMembersButton from './components/SCGroupMembersButton';
92
92
  import SCGroupMembersWidget from './components/SCGroupMembersWidget';
93
93
  import SCGroupRequestsWidget from './components/SCGroupRequestsWidget';
94
+ import SCGroups from './components/SCGroups';
94
95
  import SCGroupSettingsIconButton from './components/SCGroupSettingsIconButton';
95
96
  import SCGroupTemplate from './components/SCGroupTemplate';
96
- import SCGroups from './components/SCGroups';
97
97
  import SCIncubator from './components/SCIncubator';
98
98
  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';
103
102
  import SCLanguageSwitcher from './components/SCLanguageSwitcher';
104
103
  import SCLightbox from './components/SCLightbox';
105
104
  import SCLoyaltyProgramDetailTemplate from './components/SCLoyaltyProgramDetailTemplate';
@@ -128,9 +127,9 @@ import SCPrivateMessageSnippetItem from './components/SCPrivateMessageSnippetIte
128
127
  import SCPrivateMessageSnippets from './components/SCPrivateMessageSnippets';
129
128
  import SCPrivateMessageThread from './components/SCPrivateMessageThread';
130
129
  import SCPrivateMessageThreadItem from './components/SCPrivateMessageThreadItem';
130
+ import SCProgressBar from './components/SCProgressBar';
131
131
  import SCReactionAction from './components/SCReactionAction';
132
132
  import SCRelatedEventsWidget from './components/SCRelatedEventsWidget';
133
- import SCProgressBar from './components/SCProgressBar';
134
133
  import SCRelatedFeedObjectsWidget from './components/SCRelatedFeedObjectsWidget';
135
134
  import SCScrollContainer from './components/SCScrollContainer';
136
135
  import SCSearchAutocomplete from './components/SCSearchAutocomplete';
@@ -379,7 +378,6 @@ const theme = {
379
378
  SCSuggestedEventsWidget,
380
379
  SCEventMembersWidget,
381
380
  SCRelatedEventsWidget,
382
- SCInviteUserEventButton,
383
381
  SCVoteAudienceButton,
384
382
  SCVoteButton,
385
383
  SCWidget