@cloudflare/realtimekit-ui 1.0.0-staging.10 → 1.0.0-staging.12
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/dist/browser.js +1 -1
- package/dist/cjs/rtk-avatar_54.cjs.entry.js +5 -5
- package/dist/cjs/rtk-controlbar-button.cjs.entry.js +1 -1
- package/dist/cjs/rtk-ui-provider.cjs.entry.js +6 -6
- package/dist/collection/components/rtk-controlbar-button/rtk-controlbar-button.css +1 -0
- package/dist/collection/components/rtk-meeting/rtk-meeting.js +5 -5
- package/dist/collection/components/rtk-ui-provider/rtk-ui-provider.js +6 -6
- package/dist/components/{p-80bef3b5.js → p-5279fae9.js} +1 -1
- package/dist/components/{p-e4241aa9.js → p-56919690.js} +2 -2
- package/dist/components/{p-6acaa07e.js → p-bdbaa65b.js} +1 -1
- package/dist/components/rtk-ai-toggle.js +1 -1
- package/dist/components/rtk-breakout-rooms-toggle.js +1 -1
- package/dist/components/rtk-camera-toggle.js +1 -1
- package/dist/components/rtk-caption-toggle.js +1 -1
- package/dist/components/rtk-chat-toggle.js +1 -1
- package/dist/components/rtk-controlbar-button.js +1 -1
- package/dist/components/rtk-debugger-toggle.js +1 -1
- package/dist/components/rtk-fullscreen-toggle.js +1 -1
- package/dist/components/rtk-grid.js +3 -3
- package/dist/components/rtk-leave-button.js +1 -1
- package/dist/components/rtk-livestream-player.js +1 -1
- package/dist/components/rtk-livestream-toggle.js +1 -1
- package/dist/components/rtk-meeting.js +5 -5
- package/dist/components/rtk-mic-toggle.js +1 -1
- package/dist/components/rtk-more-toggle.js +1 -1
- package/dist/components/rtk-mute-all-button.js +1 -1
- package/dist/components/rtk-participants-toggle.js +1 -1
- package/dist/components/rtk-pip-toggle.js +1 -1
- package/dist/components/rtk-plugins-toggle.js +1 -1
- package/dist/components/rtk-polls-toggle.js +1 -1
- package/dist/components/rtk-recording-toggle.js +1 -1
- package/dist/components/rtk-screen-share-toggle.js +1 -1
- package/dist/components/rtk-settings-toggle.js +1 -1
- package/dist/components/rtk-stage-toggle.js +1 -1
- package/dist/components/rtk-ui-provider.js +6 -6
- package/dist/docs/docs-components.json +1 -1
- package/dist/esm/loader.js +12 -12
- package/dist/esm/rtk-avatar_54.entry.js +5 -5
- package/dist/esm/rtk-controlbar-button.entry.js +1 -1
- package/dist/esm/rtk-ui-provider.entry.js +6 -6
- package/dist/realtimekit-ui/{p-58e58de6.entry.js → p-59daa5d2.entry.js} +1 -1
- package/dist/realtimekit-ui/p-8cc2459d.entry.js +1 -0
- package/dist/realtimekit-ui/p-8dbe4de9.entry.js +1 -0
- package/dist/realtimekit-ui/realtimekit-ui.esm.js +1 -1
- package/package.json +1 -1
- package/dist/realtimekit-ui/p-3ed1c004.entry.js +0 -1
- package/dist/realtimekit-ui/p-e80cf367.entry.js +0 -1
|
@@ -66,6 +66,11 @@ const RtkUiProvider = class {
|
|
|
66
66
|
}, LEAVE_ROOM_TIMER);
|
|
67
67
|
}
|
|
68
68
|
};
|
|
69
|
+
this.handleChangingMeeting = (destinationMeetingId) => {
|
|
70
|
+
this.updateStates({
|
|
71
|
+
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
72
|
+
});
|
|
73
|
+
};
|
|
69
74
|
}
|
|
70
75
|
listenState(e) {
|
|
71
76
|
this.updateStates(e.detail);
|
|
@@ -142,13 +147,8 @@ const RtkUiProvider = class {
|
|
|
142
147
|
onSizeChange(newSize) {
|
|
143
148
|
uiStore.state.size = newSize;
|
|
144
149
|
}
|
|
145
|
-
handleChangingMeeting(destinationMeetingId) {
|
|
146
|
-
this.updateStates({
|
|
147
|
-
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
148
|
-
});
|
|
149
|
-
}
|
|
150
150
|
render() {
|
|
151
|
-
return h(Host, { key: '
|
|
151
|
+
return h(Host, { key: 'a421f032438ed827ad90bafeafa6c6029eea1bcb' }, this.noRenderUntilMeeting && !this.meeting ? null : h("slot", null));
|
|
152
152
|
}
|
|
153
153
|
get host() { return getElement(this); }
|
|
154
154
|
static get watchers() { return {
|