@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.
Files changed (47) hide show
  1. package/dist/browser.js +1 -1
  2. package/dist/cjs/rtk-avatar_54.cjs.entry.js +5 -5
  3. package/dist/cjs/rtk-controlbar-button.cjs.entry.js +1 -1
  4. package/dist/cjs/rtk-ui-provider.cjs.entry.js +6 -6
  5. package/dist/collection/components/rtk-controlbar-button/rtk-controlbar-button.css +1 -0
  6. package/dist/collection/components/rtk-meeting/rtk-meeting.js +5 -5
  7. package/dist/collection/components/rtk-ui-provider/rtk-ui-provider.js +6 -6
  8. package/dist/components/{p-80bef3b5.js → p-5279fae9.js} +1 -1
  9. package/dist/components/{p-e4241aa9.js → p-56919690.js} +2 -2
  10. package/dist/components/{p-6acaa07e.js → p-bdbaa65b.js} +1 -1
  11. package/dist/components/rtk-ai-toggle.js +1 -1
  12. package/dist/components/rtk-breakout-rooms-toggle.js +1 -1
  13. package/dist/components/rtk-camera-toggle.js +1 -1
  14. package/dist/components/rtk-caption-toggle.js +1 -1
  15. package/dist/components/rtk-chat-toggle.js +1 -1
  16. package/dist/components/rtk-controlbar-button.js +1 -1
  17. package/dist/components/rtk-debugger-toggle.js +1 -1
  18. package/dist/components/rtk-fullscreen-toggle.js +1 -1
  19. package/dist/components/rtk-grid.js +3 -3
  20. package/dist/components/rtk-leave-button.js +1 -1
  21. package/dist/components/rtk-livestream-player.js +1 -1
  22. package/dist/components/rtk-livestream-toggle.js +1 -1
  23. package/dist/components/rtk-meeting.js +5 -5
  24. package/dist/components/rtk-mic-toggle.js +1 -1
  25. package/dist/components/rtk-more-toggle.js +1 -1
  26. package/dist/components/rtk-mute-all-button.js +1 -1
  27. package/dist/components/rtk-participants-toggle.js +1 -1
  28. package/dist/components/rtk-pip-toggle.js +1 -1
  29. package/dist/components/rtk-plugins-toggle.js +1 -1
  30. package/dist/components/rtk-polls-toggle.js +1 -1
  31. package/dist/components/rtk-recording-toggle.js +1 -1
  32. package/dist/components/rtk-screen-share-toggle.js +1 -1
  33. package/dist/components/rtk-settings-toggle.js +1 -1
  34. package/dist/components/rtk-stage-toggle.js +1 -1
  35. package/dist/components/rtk-ui-provider.js +6 -6
  36. package/dist/docs/docs-components.json +1 -1
  37. package/dist/esm/loader.js +12 -12
  38. package/dist/esm/rtk-avatar_54.entry.js +5 -5
  39. package/dist/esm/rtk-controlbar-button.entry.js +1 -1
  40. package/dist/esm/rtk-ui-provider.entry.js +6 -6
  41. package/dist/realtimekit-ui/{p-58e58de6.entry.js → p-59daa5d2.entry.js} +1 -1
  42. package/dist/realtimekit-ui/p-8cc2459d.entry.js +1 -0
  43. package/dist/realtimekit-ui/p-8dbe4de9.entry.js +1 -0
  44. package/dist/realtimekit-ui/realtimekit-ui.esm.js +1 -1
  45. package/package.json +1 -1
  46. package/dist/realtimekit-ui/p-3ed1c004.entry.js +0 -1
  47. 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: '4c5b692de4bf1486e1c17ab6f9d61684705cfa95' }, this.noRenderUntilMeeting && !this.meeting ? null : h("slot", null));
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 {