@selfcommunity/react-theme-default 0.1.50-events.92 → 0.1.50-events.95
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/SCEvent.d.ts +5 -0
- package/lib/cjs/components/SCEvent.js +5 -0
- package/lib/cjs/components/SCEvents.js +2 -2
- package/lib/cjs/index.d.ts +8 -11
- package/lib/cjs/index.js +2 -4
- package/lib/esm/components/SCEvent.d.ts +5 -0
- package/lib/esm/components/SCEvent.js +5 -0
- package/lib/esm/components/SCEvents.js +2 -2
- package/lib/esm/index.d.ts +8 -11
- package/lib/esm/index.js +2 -4
- package/lib/umd/react-theme-default.js +2 -2
- package/package.json +4 -4
- package/lib/cjs/components/SCInviteUserEventButton.d.ts +0 -8
- package/lib/cjs/components/SCInviteUserEventButton.js +0 -8
- package/lib/esm/components/SCInviteUserEventButton.d.ts +0 -8
- package/lib/esm/components/SCInviteUserEventButton.js +0 -6
|
@@ -42,6 +42,11 @@ declare const Component: {
|
|
|
42
42
|
};
|
|
43
43
|
'& .SCEvent-preview-content': {
|
|
44
44
|
padding: string;
|
|
45
|
+
'& .SCEventInfoDetails-icon-text-wrapper': {
|
|
46
|
+
'& .MuiTypography-root': {
|
|
47
|
+
fontSize: string;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
45
50
|
'& .SCEvent-detail-user': {
|
|
46
51
|
marginTop: string;
|
|
47
52
|
'& .SCBaseItemButton-text': {
|
|
@@ -44,6 +44,11 @@ const Component = {
|
|
|
44
44
|
},
|
|
45
45
|
'& .SCEvent-preview-content': {
|
|
46
46
|
padding: `${theme.spacing()} !important`,
|
|
47
|
+
'& .SCEventInfoDetails-icon-text-wrapper': {
|
|
48
|
+
'& .MuiTypography-root': {
|
|
49
|
+
fontSize: '0.8rem'
|
|
50
|
+
}
|
|
51
|
+
},
|
|
47
52
|
'& .SCEvent-detail-user': {
|
|
48
53
|
marginTop: '14px',
|
|
49
54
|
'& .SCBaseItemButton-text': {
|
|
@@ -11,10 +11,10 @@ const Component = {
|
|
|
11
11
|
'& .SCEvents-events': {
|
|
12
12
|
marginTop: theme.spacing(2),
|
|
13
13
|
'& .SCEvents-item': {
|
|
14
|
-
paddingTop: theme.spacing()
|
|
14
|
+
paddingTop: theme.spacing(2)
|
|
15
15
|
},
|
|
16
16
|
'& .SCEvents-item-skeleton': {
|
|
17
|
-
paddingTop: theme.spacing()
|
|
17
|
+
paddingTop: theme.spacing(2)
|
|
18
18
|
},
|
|
19
19
|
'& .SCBaseItem-root': {
|
|
20
20
|
display: 'flex',
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -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
|
};
|
|
@@ -6803,6 +6802,11 @@ declare const theme: {
|
|
|
6803
6802
|
};
|
|
6804
6803
|
'& .SCEvent-preview-content': {
|
|
6805
6804
|
padding: string;
|
|
6805
|
+
'& .SCEventInfoDetails-icon-text-wrapper': {
|
|
6806
|
+
'& .MuiTypography-root': {
|
|
6807
|
+
fontSize: string;
|
|
6808
|
+
};
|
|
6809
|
+
};
|
|
6806
6810
|
'& .SCEvent-detail-user': {
|
|
6807
6811
|
marginTop: string;
|
|
6808
6812
|
'& .SCBaseItemButton-text': {
|
|
@@ -7793,13 +7797,6 @@ declare const theme: {
|
|
|
7793
7797
|
};
|
|
7794
7798
|
};
|
|
7795
7799
|
};
|
|
7796
|
-
SCInviteUserEventButton: {
|
|
7797
|
-
styleOverrides: {
|
|
7798
|
-
root: ({ theme }: {
|
|
7799
|
-
theme: any;
|
|
7800
|
-
}) => {};
|
|
7801
|
-
};
|
|
7802
|
-
};
|
|
7803
7800
|
SCVoteAudienceButton: {
|
|
7804
7801
|
styleOverrides: {
|
|
7805
7802
|
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
|
|
@@ -42,6 +42,11 @@ declare const Component: {
|
|
|
42
42
|
};
|
|
43
43
|
'& .SCEvent-preview-content': {
|
|
44
44
|
padding: string;
|
|
45
|
+
'& .SCEventInfoDetails-icon-text-wrapper': {
|
|
46
|
+
'& .MuiTypography-root': {
|
|
47
|
+
fontSize: string;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
45
50
|
'& .SCEvent-detail-user': {
|
|
46
51
|
marginTop: string;
|
|
47
52
|
'& .SCBaseItemButton-text': {
|
|
@@ -42,6 +42,11 @@ const Component = {
|
|
|
42
42
|
},
|
|
43
43
|
'& .SCEvent-preview-content': {
|
|
44
44
|
padding: `${theme.spacing()} !important`,
|
|
45
|
+
'& .SCEventInfoDetails-icon-text-wrapper': {
|
|
46
|
+
'& .MuiTypography-root': {
|
|
47
|
+
fontSize: '0.8rem'
|
|
48
|
+
}
|
|
49
|
+
},
|
|
45
50
|
'& .SCEvent-detail-user': {
|
|
46
51
|
marginTop: '14px',
|
|
47
52
|
'& .SCBaseItemButton-text': {
|
|
@@ -9,10 +9,10 @@ const Component = {
|
|
|
9
9
|
'& .SCEvents-events': {
|
|
10
10
|
marginTop: theme.spacing(2),
|
|
11
11
|
'& .SCEvents-item': {
|
|
12
|
-
paddingTop: theme.spacing()
|
|
12
|
+
paddingTop: theme.spacing(2)
|
|
13
13
|
},
|
|
14
14
|
'& .SCEvents-item-skeleton': {
|
|
15
|
-
paddingTop: theme.spacing()
|
|
15
|
+
paddingTop: theme.spacing(2)
|
|
16
16
|
},
|
|
17
17
|
'& .SCBaseItem-root': {
|
|
18
18
|
display: 'flex',
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -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
|
};
|
|
@@ -6803,6 +6802,11 @@ declare const theme: {
|
|
|
6803
6802
|
};
|
|
6804
6803
|
'& .SCEvent-preview-content': {
|
|
6805
6804
|
padding: string;
|
|
6805
|
+
'& .SCEventInfoDetails-icon-text-wrapper': {
|
|
6806
|
+
'& .MuiTypography-root': {
|
|
6807
|
+
fontSize: string;
|
|
6808
|
+
};
|
|
6809
|
+
};
|
|
6806
6810
|
'& .SCEvent-detail-user': {
|
|
6807
6811
|
marginTop: string;
|
|
6808
6812
|
'& .SCBaseItemButton-text': {
|
|
@@ -7793,13 +7797,6 @@ declare const theme: {
|
|
|
7793
7797
|
};
|
|
7794
7798
|
};
|
|
7795
7799
|
};
|
|
7796
|
-
SCInviteUserEventButton: {
|
|
7797
|
-
styleOverrides: {
|
|
7798
|
-
root: ({ theme }: {
|
|
7799
|
-
theme: any;
|
|
7800
|
-
}) => {};
|
|
7801
|
-
};
|
|
7802
|
-
};
|
|
7803
7800
|
SCVoteAudienceButton: {
|
|
7804
7801
|
styleOverrides: {
|
|
7805
7802
|
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
|