@selfcommunity/react-theme-default 0.2.0-live.54 → 0.2.0-live.56
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/SCLiveStream.d.ts +217 -0
- package/lib/cjs/components/SCLiveStream.js +219 -0
- package/lib/cjs/components/SCLiveStreamForm.d.ts +3 -0
- package/lib/cjs/components/SCLiveStreamForm.js +3 -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 +3 -3
- package/lib/cjs/components/SCLiveStreamRoom.js +4 -4
- package/lib/cjs/index.d.ts +236 -3
- package/lib/cjs/index.js +5 -1
- package/lib/esm/components/SCLiveStream.d.ts +217 -0
- package/lib/esm/components/SCLiveStream.js +217 -0
- package/lib/esm/components/SCLiveStreamForm.d.ts +3 -0
- package/lib/esm/components/SCLiveStreamForm.js +3 -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 +3 -3
- package/lib/esm/components/SCLiveStreamRoom.js +4 -4
- package/lib/esm/index.d.ts +236 -3
- package/lib/esm/index.js +5 -1
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +4 -4
package/lib/esm/index.js
CHANGED
|
@@ -139,8 +139,10 @@ import SCScrollContainer from './components/SCScrollContainer';
|
|
|
139
139
|
import SCSearchAutocomplete from './components/SCSearchAutocomplete';
|
|
140
140
|
import SCSnippetNotifications from './components/SCSnippetNotifications';
|
|
141
141
|
import SCSuggestedEventsWidget from './components/SCSuggestedEventsWidget';
|
|
142
|
+
import SCLiveStream from './components/SCLiveStream';
|
|
142
143
|
import SCCreateLiveStreamDialog from './components/SCLiveStreamDialog';
|
|
143
144
|
import SCLiveStreamForm from './components/SCLiveStreamForm';
|
|
145
|
+
import SCLiveStreamFormSettings from './components/SCLiveStreamFormSettings';
|
|
144
146
|
import SCLiveStreamRoom from './components/SCLiveStreamRoom';
|
|
145
147
|
import SCLiveStreamVideoConference from './components/SCLiveStreamVideoConference';
|
|
146
148
|
import SCToastNotifications from './components/SCToastNotifications';
|
|
@@ -393,10 +395,12 @@ const theme = {
|
|
|
393
395
|
SCVoteAudienceButton,
|
|
394
396
|
SCVoteButton,
|
|
395
397
|
SCWidget,
|
|
398
|
+
SCLiveStream,
|
|
396
399
|
SCCreateLiveStreamDialog,
|
|
397
400
|
SCLiveStreamForm,
|
|
401
|
+
SCLiveStreamFormSettings,
|
|
398
402
|
SCLiveStreamRoom,
|
|
399
|
-
SCLiveStreamVideoConference
|
|
403
|
+
SCLiveStreamVideoConference
|
|
400
404
|
},
|
|
401
405
|
selfcommunity: {
|
|
402
406
|
user: {
|