@selfcommunity/react-theme-default 0.4.5-alpha.1 → 0.4.5-alpha.3
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/SCEventInfoDetails.d.ts +3 -0
- package/lib/cjs/components/SCEventInfoDetails.js +3 -0
- package/lib/cjs/components/SCFeedObject.d.ts +1 -0
- package/lib/cjs/components/SCFeedObject.js +3 -2
- package/lib/cjs/components/SCLiveStream.d.ts +218 -0
- package/lib/cjs/components/SCLiveStream.js +220 -0
- package/lib/cjs/components/SCLiveStreamDialog.d.ts +16 -0
- package/lib/cjs/components/SCLiveStreamDialog.js +18 -0
- package/lib/cjs/components/SCLiveStreamForm.d.ts +27 -0
- package/lib/cjs/components/SCLiveStreamForm.js +29 -0
- package/lib/cjs/components/SCLiveStreamFormSettings.d.ts +15 -0
- package/lib/cjs/components/SCLiveStreamFormSettings.js +17 -0
- package/lib/cjs/components/SCLiveStreamInfoDetails.d.ts +43 -0
- package/lib/cjs/components/SCLiveStreamInfoDetails.js +43 -0
- package/lib/cjs/components/SCLiveStreamRoom.d.ts +113 -0
- package/lib/cjs/components/SCLiveStreamRoom.js +115 -0
- package/lib/cjs/components/SCLiveStreamSelector.d.ts +71 -0
- package/lib/cjs/components/SCLiveStreamSelector.js +75 -0
- package/lib/cjs/components/SCLiveStreamVideoConference.d.ts +27 -0
- package/lib/cjs/components/SCLiveStreamVideoConference.js +29 -0
- package/lib/cjs/components/SCNavigationMenuDrawer.d.ts +3 -0
- package/lib/cjs/components/SCNavigationMenuDrawer.js +3 -0
- package/lib/cjs/components/SCNotification.d.ts +27 -0
- package/lib/cjs/components/SCNotification.js +27 -0
- package/lib/cjs/components/SCUpScalingTierBadge.d.ts +13 -0
- package/lib/cjs/components/SCUpScalingTierBadge.js +15 -0
- package/lib/cjs/components/SCUserLiveStreamWidget.d.ts +101 -0
- package/lib/cjs/components/SCUserLiveStreamWidget.js +97 -0
- package/lib/cjs/index.d.ts +762 -94
- package/lib/cjs/index.js +21 -1
- package/lib/esm/components/SCEventInfoDetails.d.ts +3 -0
- package/lib/esm/components/SCEventInfoDetails.js +3 -0
- package/lib/esm/components/SCFeedObject.d.ts +1 -0
- package/lib/esm/components/SCFeedObject.js +3 -2
- package/lib/esm/components/SCLiveStream.d.ts +218 -0
- package/lib/esm/components/SCLiveStream.js +218 -0
- package/lib/esm/components/SCLiveStreamDialog.d.ts +16 -0
- package/lib/esm/components/SCLiveStreamDialog.js +16 -0
- package/lib/esm/components/SCLiveStreamForm.d.ts +27 -0
- package/lib/esm/components/SCLiveStreamForm.js +27 -0
- package/lib/esm/components/SCLiveStreamFormSettings.d.ts +15 -0
- package/lib/esm/components/SCLiveStreamFormSettings.js +15 -0
- package/lib/esm/components/SCLiveStreamInfoDetails.d.ts +43 -0
- package/lib/esm/components/SCLiveStreamInfoDetails.js +41 -0
- package/lib/esm/components/SCLiveStreamRoom.d.ts +113 -0
- package/lib/esm/components/SCLiveStreamRoom.js +113 -0
- package/lib/esm/components/SCLiveStreamSelector.d.ts +71 -0
- package/lib/esm/components/SCLiveStreamSelector.js +73 -0
- package/lib/esm/components/SCLiveStreamVideoConference.d.ts +27 -0
- package/lib/esm/components/SCLiveStreamVideoConference.js +27 -0
- package/lib/esm/components/SCNavigationMenuDrawer.d.ts +3 -0
- package/lib/esm/components/SCNavigationMenuDrawer.js +3 -0
- package/lib/esm/components/SCNotification.d.ts +27 -0
- package/lib/esm/components/SCNotification.js +27 -0
- package/lib/esm/components/SCUpScalingTierBadge.d.ts +13 -0
- package/lib/esm/components/SCUpScalingTierBadge.js +13 -0
- package/lib/esm/components/SCUserLiveStreamWidget.d.ts +101 -0
- package/lib/esm/components/SCUserLiveStreamWidget.js +95 -0
- package/lib/esm/index.d.ts +762 -94
- package/lib/esm/index.js +21 -1
- package/lib/umd/react-theme-default.js +1 -19
- package/package.json +123 -117
package/lib/esm/index.js
CHANGED
|
@@ -140,6 +140,16 @@ import SCScrollContainer from './components/SCScrollContainer';
|
|
|
140
140
|
import SCSearchAutocomplete from './components/SCSearchAutocomplete';
|
|
141
141
|
import SCSnippetNotifications from './components/SCSnippetNotifications';
|
|
142
142
|
import SCSuggestedEventsWidget from './components/SCSuggestedEventsWidget';
|
|
143
|
+
import SCLiveStream from './components/SCLiveStream';
|
|
144
|
+
import SCCreateLiveStreamDialog from './components/SCLiveStreamDialog';
|
|
145
|
+
import SCLiveStreamSelector from './components/SCLiveStreamSelector';
|
|
146
|
+
import SCLiveStreamForm from './components/SCLiveStreamForm';
|
|
147
|
+
import SCLiveStreamFormSettings from './components/SCLiveStreamFormSettings';
|
|
148
|
+
import SCLiveStreamRoom from './components/SCLiveStreamRoom';
|
|
149
|
+
import SCLiveStreamVideoConference from './components/SCLiveStreamVideoConference';
|
|
150
|
+
import SCLiveStreamInfoDetails from './components/SCLiveStreamInfoDetails';
|
|
151
|
+
import SCUpScalingTierBadge from './components/SCUpScalingTierBadge';
|
|
152
|
+
import SCUserLiveStreamWidget from './components/SCUserLiveStreamWidget';
|
|
143
153
|
import SCToastNotifications from './components/SCToastNotifications';
|
|
144
154
|
import SCUser from './components/SCUser';
|
|
145
155
|
import SCUserActionIconButton from './components/SCUserActionIconButton';
|
|
@@ -396,6 +406,7 @@ const theme = {
|
|
|
396
406
|
SCEventSubscribeButton,
|
|
397
407
|
SCEventParticipantsButton,
|
|
398
408
|
SCMyEventsWidget,
|
|
409
|
+
SCEventMediaWidget,
|
|
399
410
|
SCCalendar,
|
|
400
411
|
SCCreateEventWidget,
|
|
401
412
|
SCSuggestedEventsWidget,
|
|
@@ -404,7 +415,16 @@ const theme = {
|
|
|
404
415
|
SCVoteAudienceButton,
|
|
405
416
|
SCVoteButton,
|
|
406
417
|
SCWidget,
|
|
407
|
-
|
|
418
|
+
SCLiveStream,
|
|
419
|
+
SCLiveStreamInfoDetails,
|
|
420
|
+
SCUpScalingTierBadge,
|
|
421
|
+
SCUserLiveStreamWidget,
|
|
422
|
+
SCCreateLiveStreamDialog,
|
|
423
|
+
SCLiveStreamSelector,
|
|
424
|
+
SCLiveStreamForm,
|
|
425
|
+
SCLiveStreamFormSettings,
|
|
426
|
+
SCLiveStreamRoom,
|
|
427
|
+
SCLiveStreamVideoConference
|
|
408
428
|
},
|
|
409
429
|
selfcommunity: {
|
|
410
430
|
user: {
|