@selfcommunity/react-theme-default 0.4.5-alpha.1 → 0.4.5-alpha.10
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/SCComposer.d.ts +36 -8
- package/lib/cjs/components/SCComposer.js +37 -9
- package/lib/cjs/components/SCCreateLiveStreamButton.d.ts +12 -0
- package/lib/cjs/components/SCCreateLiveStreamButton.js +14 -0
- package/lib/cjs/components/SCEventInfoDetails.d.ts +3 -0
- package/lib/cjs/components/SCEventInfoDetails.js +3 -0
- package/lib/cjs/components/SCFeedObject.d.ts +3 -3
- package/lib/cjs/components/SCFeedObject.js +5 -5
- package/lib/cjs/components/SCFeedObjectDetailTemplate.d.ts +11 -0
- package/lib/cjs/components/SCFeedObjectDetailTemplate.js +12 -1
- 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 +29 -0
- package/lib/cjs/components/SCLiveStreamVideoConference.js +31 -0
- package/lib/cjs/components/SCNavigationMenuDrawer.d.ts +4 -0
- package/lib/cjs/components/SCNavigationMenuDrawer.js +4 -0
- package/lib/cjs/components/SCNotification.d.ts +27 -0
- package/lib/cjs/components/SCNotification.js +27 -0
- package/lib/cjs/components/SCPrivateMessageThreadItem.d.ts +2 -0
- package/lib/cjs/components/SCPrivateMessageThreadItem.js +2 -1
- 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 +828 -106
- package/lib/cjs/index.js +23 -1
- package/lib/esm/components/SCComposer.d.ts +36 -8
- package/lib/esm/components/SCComposer.js +37 -9
- package/lib/esm/components/SCCreateLiveStreamButton.d.ts +12 -0
- package/lib/esm/components/SCCreateLiveStreamButton.js +12 -0
- package/lib/esm/components/SCEventInfoDetails.d.ts +3 -0
- package/lib/esm/components/SCEventInfoDetails.js +3 -0
- package/lib/esm/components/SCFeedObject.d.ts +3 -3
- package/lib/esm/components/SCFeedObject.js +5 -5
- package/lib/esm/components/SCFeedObjectDetailTemplate.d.ts +11 -0
- package/lib/esm/components/SCFeedObjectDetailTemplate.js +12 -1
- 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 +29 -0
- package/lib/esm/components/SCLiveStreamVideoConference.js +29 -0
- package/lib/esm/components/SCNavigationMenuDrawer.d.ts +4 -0
- package/lib/esm/components/SCNavigationMenuDrawer.js +4 -0
- package/lib/esm/components/SCNotification.d.ts +27 -0
- package/lib/esm/components/SCNotification.js +27 -0
- package/lib/esm/components/SCPrivateMessageThreadItem.d.ts +2 -0
- package/lib/esm/components/SCPrivateMessageThreadItem.js +2 -1
- 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 +828 -106
- package/lib/esm/index.js +23 -1
- package/lib/umd/react-theme-default.js +1 -19
- package/package.json +123 -117
package/lib/esm/index.js
CHANGED
|
@@ -140,6 +140,17 @@ 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 SCCreateLiveStreamButton from './components/SCCreateLiveStreamButton';
|
|
145
|
+
import SCCreateLiveStreamDialog from './components/SCLiveStreamDialog';
|
|
146
|
+
import SCLiveStreamSelector from './components/SCLiveStreamSelector';
|
|
147
|
+
import SCLiveStreamForm from './components/SCLiveStreamForm';
|
|
148
|
+
import SCLiveStreamFormSettings from './components/SCLiveStreamFormSettings';
|
|
149
|
+
import SCLiveStreamRoom from './components/SCLiveStreamRoom';
|
|
150
|
+
import SCLiveStreamVideoConference from './components/SCLiveStreamVideoConference';
|
|
151
|
+
import SCLiveStreamInfoDetails from './components/SCLiveStreamInfoDetails';
|
|
152
|
+
import SCUpScalingTierBadge from './components/SCUpScalingTierBadge';
|
|
153
|
+
import SCUserLiveStreamWidget from './components/SCUserLiveStreamWidget';
|
|
143
154
|
import SCToastNotifications from './components/SCToastNotifications';
|
|
144
155
|
import SCUser from './components/SCUser';
|
|
145
156
|
import SCUserActionIconButton from './components/SCUserActionIconButton';
|
|
@@ -396,6 +407,7 @@ const theme = {
|
|
|
396
407
|
SCEventSubscribeButton,
|
|
397
408
|
SCEventParticipantsButton,
|
|
398
409
|
SCMyEventsWidget,
|
|
410
|
+
SCEventMediaWidget,
|
|
399
411
|
SCCalendar,
|
|
400
412
|
SCCreateEventWidget,
|
|
401
413
|
SCSuggestedEventsWidget,
|
|
@@ -404,7 +416,17 @@ const theme = {
|
|
|
404
416
|
SCVoteAudienceButton,
|
|
405
417
|
SCVoteButton,
|
|
406
418
|
SCWidget,
|
|
407
|
-
|
|
419
|
+
SCLiveStream,
|
|
420
|
+
SCLiveStreamInfoDetails,
|
|
421
|
+
SCUpScalingTierBadge,
|
|
422
|
+
SCUserLiveStreamWidget,
|
|
423
|
+
SCCreateLiveStreamButton,
|
|
424
|
+
SCCreateLiveStreamDialog,
|
|
425
|
+
SCLiveStreamSelector,
|
|
426
|
+
SCLiveStreamForm,
|
|
427
|
+
SCLiveStreamFormSettings,
|
|
428
|
+
SCLiveStreamRoom,
|
|
429
|
+
SCLiveStreamVideoConference
|
|
408
430
|
},
|
|
409
431
|
selfcommunity: {
|
|
410
432
|
user: {
|