@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.
Files changed (44) hide show
  1. package/lib/cjs/components/SCCreateEventWidget.d.ts +56 -0
  2. package/lib/cjs/components/SCCreateEventWidget.js +54 -0
  3. package/lib/cjs/components/SCEvent.d.ts +137 -17
  4. package/lib/cjs/components/SCEvent.js +138 -18
  5. package/lib/cjs/components/SCEventActionsMenu.d.ts +26 -0
  6. package/lib/cjs/components/SCEventActionsMenu.js +28 -0
  7. package/lib/cjs/components/SCEventHeader.d.ts +10 -5
  8. package/lib/cjs/components/SCEventHeader.js +11 -20
  9. package/lib/cjs/components/SCEventInfoDetails.js +1 -1
  10. package/lib/cjs/components/SCEventPartecipantsButton.d.ts +21 -1
  11. package/lib/cjs/components/SCEventPartecipantsButton.js +20 -2
  12. package/lib/cjs/components/SCMediaEvent.d.ts +10 -0
  13. package/lib/cjs/components/SCMediaEvent.js +12 -0
  14. package/lib/cjs/components/SCMyEventsWidget.d.ts +11 -12
  15. package/lib/cjs/components/SCMyEventsWidget.js +9 -12
  16. package/lib/cjs/components/SCNotification.d.ts +15 -0
  17. package/lib/cjs/components/SCNotification.js +15 -0
  18. package/lib/cjs/components/SCSuggestedEventsWidget.d.ts +64 -0
  19. package/lib/cjs/components/SCSuggestedEventsWidget.js +62 -0
  20. package/lib/cjs/index.d.ts +352 -38
  21. package/lib/cjs/index.js +9 -1
  22. package/lib/esm/components/SCCreateEventWidget.d.ts +56 -0
  23. package/lib/esm/components/SCCreateEventWidget.js +52 -0
  24. package/lib/esm/components/SCEvent.d.ts +137 -17
  25. package/lib/esm/components/SCEvent.js +138 -18
  26. package/lib/esm/components/SCEventActionsMenu.d.ts +26 -0
  27. package/lib/esm/components/SCEventActionsMenu.js +26 -0
  28. package/lib/esm/components/SCEventHeader.d.ts +10 -5
  29. package/lib/esm/components/SCEventHeader.js +11 -20
  30. package/lib/esm/components/SCEventInfoDetails.js +1 -1
  31. package/lib/esm/components/SCEventPartecipantsButton.d.ts +21 -1
  32. package/lib/esm/components/SCEventPartecipantsButton.js +20 -2
  33. package/lib/esm/components/SCMediaEvent.d.ts +10 -0
  34. package/lib/esm/components/SCMediaEvent.js +10 -0
  35. package/lib/esm/components/SCMyEventsWidget.d.ts +11 -12
  36. package/lib/esm/components/SCMyEventsWidget.js +9 -12
  37. package/lib/esm/components/SCNotification.d.ts +15 -0
  38. package/lib/esm/components/SCNotification.js +15 -0
  39. package/lib/esm/components/SCSuggestedEventsWidget.d.ts +64 -0
  40. package/lib/esm/components/SCSuggestedEventsWidget.js +60 -0
  41. package/lib/esm/index.d.ts +352 -38
  42. package/lib/esm/index.js +9 -1
  43. package/lib/umd/react-theme-default.js +2 -2
  44. 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: {