@selfcommunity/react-theme-default 0.1.50-events.44 → 0.1.50-events.47
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/SCCreateEventWidget.d.ts +56 -0
- package/lib/cjs/components/SCCreateEventWidget.js +54 -0
- package/lib/cjs/components/SCEvent.d.ts +137 -17
- package/lib/cjs/components/SCEvent.js +138 -18
- package/lib/cjs/components/SCEventActionsMenu.d.ts +26 -0
- package/lib/cjs/components/SCEventActionsMenu.js +28 -0
- package/lib/cjs/components/SCEventHeader.d.ts +10 -5
- package/lib/cjs/components/SCEventHeader.js +11 -20
- package/lib/cjs/components/SCEventInfoDetails.js +1 -1
- package/lib/cjs/components/SCEventPartecipantsButton.d.ts +21 -1
- package/lib/cjs/components/SCEventPartecipantsButton.js +20 -2
- package/lib/cjs/components/SCMediaEvent.d.ts +10 -0
- package/lib/cjs/components/SCMediaEvent.js +12 -0
- package/lib/cjs/components/SCMyEventsWidget.d.ts +11 -12
- package/lib/cjs/components/SCMyEventsWidget.js +9 -12
- package/lib/cjs/components/SCNotification.d.ts +15 -0
- package/lib/cjs/components/SCNotification.js +15 -0
- package/lib/cjs/components/SCSuggestedEventsWidget.d.ts +64 -0
- package/lib/cjs/components/SCSuggestedEventsWidget.js +62 -0
- package/lib/cjs/index.d.ts +352 -38
- package/lib/cjs/index.js +9 -1
- package/lib/esm/components/SCCreateEventWidget.d.ts +56 -0
- package/lib/esm/components/SCCreateEventWidget.js +52 -0
- package/lib/esm/components/SCEvent.d.ts +137 -17
- package/lib/esm/components/SCEvent.js +138 -18
- package/lib/esm/components/SCEventActionsMenu.d.ts +26 -0
- package/lib/esm/components/SCEventActionsMenu.js +26 -0
- package/lib/esm/components/SCEventHeader.d.ts +10 -5
- package/lib/esm/components/SCEventHeader.js +11 -20
- package/lib/esm/components/SCEventInfoDetails.js +1 -1
- package/lib/esm/components/SCEventPartecipantsButton.d.ts +21 -1
- package/lib/esm/components/SCEventPartecipantsButton.js +20 -2
- package/lib/esm/components/SCMediaEvent.d.ts +10 -0
- package/lib/esm/components/SCMediaEvent.js +10 -0
- package/lib/esm/components/SCMyEventsWidget.d.ts +11 -12
- package/lib/esm/components/SCMyEventsWidget.js +9 -12
- package/lib/esm/components/SCNotification.d.ts +15 -0
- package/lib/esm/components/SCNotification.js +15 -0
- package/lib/esm/components/SCSuggestedEventsWidget.d.ts +64 -0
- package/lib/esm/components/SCSuggestedEventsWidget.js +60 -0
- package/lib/esm/index.d.ts +352 -38
- package/lib/esm/index.js +9 -1
- package/lib/umd/react-theme-default.js +2 -2
- package/package.json +4 -4
package/lib/esm/index.js
CHANGED
|
@@ -52,6 +52,7 @@ import SCComposer from './components/SCComposer';
|
|
|
52
52
|
import SCConsentSolution from './components/SCConsentSolution';
|
|
53
53
|
import SCContributionActionsMenu from './components/SCContributionActionsMenu';
|
|
54
54
|
import SCCreateEventButton from './components/SCCreateEventButton';
|
|
55
|
+
import SCCreateEventWidget from './components/SCCreateEventWidget';
|
|
55
56
|
import SCCreateGroupButton from './components/SCCreateGroupButton';
|
|
56
57
|
import SCCustomAdv from './components/SCCustomAdv';
|
|
57
58
|
import SCCustomSnackMessage from './components/SCCustomSnackMessage';
|
|
@@ -61,6 +62,7 @@ import SCEditGroupButton from './components/SCEditGroupButton';
|
|
|
61
62
|
import SCEditor from './components/SCEditor';
|
|
62
63
|
import SCEmojiPicker from './components/SCEmojiPicker';
|
|
63
64
|
import SCEvent from './components/SCEvent';
|
|
65
|
+
import SCEventActionsMenu from './components/SCEventActionsMenu';
|
|
64
66
|
import SCEventForm from './components/SCEventForm';
|
|
65
67
|
import SCEventHeader from './components/SCEventHeader';
|
|
66
68
|
import SCEventInfoDetails from './components/SCEventInfoDetails';
|
|
@@ -103,6 +105,7 @@ import SCLoyaltyProgramWidget from './components/SCLoyaltyProgramWidget';
|
|
|
103
105
|
import SCMainFeedTemplate from './components/SCMainFeedTemplate';
|
|
104
106
|
import SCMediaFile from './components/SCMediaFile';
|
|
105
107
|
import SCMediaLink from './components/SCMediaLink';
|
|
108
|
+
import SCMediaEvent from './components/SCMediaEvent';
|
|
106
109
|
import SCMyEventsWidget from './components/SCMyEventsWidget';
|
|
107
110
|
import SCNavigationMenuIconButton from './components/SCNavigationMenuIconButton';
|
|
108
111
|
import SCNavigationSettingsIconButton from './components/SCNavigationSettingsIconButton';
|
|
@@ -127,6 +130,7 @@ import SCRelatedFeedObjectsWidget from './components/SCRelatedFeedObjectsWidget'
|
|
|
127
130
|
import SCScrollContainer from './components/SCScrollContainer';
|
|
128
131
|
import SCSearchAutocomplete from './components/SCSearchAutocomplete';
|
|
129
132
|
import SCSnippetNotifications from './components/SCSnippetNotifications';
|
|
133
|
+
import SCSuggestedEventsWidget from './components/SCSuggestedEventsWidget';
|
|
130
134
|
import SCToastNotifications from './components/SCToastNotifications';
|
|
131
135
|
import SCUser from './components/SCUser';
|
|
132
136
|
import SCUserActionIconButton from './components/SCUserActionIconButton';
|
|
@@ -274,6 +278,7 @@ const theme = {
|
|
|
274
278
|
SCLoyaltyProgramDetailTemplate,
|
|
275
279
|
SCMediaFile,
|
|
276
280
|
SCMediaLink,
|
|
281
|
+
SCMediaEvent,
|
|
277
282
|
SCNavigationSettingsIconButton,
|
|
278
283
|
SCDefaultHeaderContent,
|
|
279
284
|
SCNavigationToolbar,
|
|
@@ -356,6 +361,7 @@ const theme = {
|
|
|
356
361
|
SCCreateEventButton,
|
|
357
362
|
SCEventLocationWidget,
|
|
358
363
|
SCEvent,
|
|
364
|
+
SCEventActionsMenu,
|
|
359
365
|
SCEvents,
|
|
360
366
|
SCEventInviteButton,
|
|
361
367
|
SCEventHeader,
|
|
@@ -364,7 +370,9 @@ const theme = {
|
|
|
364
370
|
SCEventSubscribeButton,
|
|
365
371
|
SCEventPartecipantsButton,
|
|
366
372
|
SCMyEventsWidget,
|
|
367
|
-
SCCalendar
|
|
373
|
+
SCCalendar,
|
|
374
|
+
SCCreateEventWidget,
|
|
375
|
+
SCSuggestedEventsWidget
|
|
368
376
|
},
|
|
369
377
|
selfcommunity: {
|
|
370
378
|
user: {
|