@cloudflare/realtimekit-ui 1.0.0-staging.11 → 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-ui-provider.cjs.entry.js +6 -6
- 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/rtk-meeting.js +5 -5
- package/dist/components/rtk-ui-provider.js +6 -6
- package/dist/docs/docs-components.json +1 -1
- package/dist/esm/loader.js +11 -11
- package/dist/esm/rtk-avatar_54.entry.js +5 -5
- 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-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-e80cf367.entry.js +0 -1
|
@@ -4498,6 +4498,11 @@ const RtkMeeting = class {
|
|
|
4498
4498
|
this.gridLayout = 'row';
|
|
4499
4499
|
/** Icon pack */
|
|
4500
4500
|
this.iconPack = uiStore.defaultIconPack;
|
|
4501
|
+
this.handleChangingMeeting = (destinationMeetingId) => {
|
|
4502
|
+
this.updateStates({
|
|
4503
|
+
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiStore.uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
4504
|
+
});
|
|
4505
|
+
};
|
|
4501
4506
|
}
|
|
4502
4507
|
connectedCallback() {
|
|
4503
4508
|
var _a;
|
|
@@ -4591,11 +4596,6 @@ const RtkMeeting = class {
|
|
|
4591
4596
|
listenState(e) {
|
|
4592
4597
|
this.updateStates(e.detail);
|
|
4593
4598
|
}
|
|
4594
|
-
handleChangingMeeting(destinationMeetingId) {
|
|
4595
|
-
this.updateStates({
|
|
4596
|
-
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiStore.uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
4597
|
-
});
|
|
4598
|
-
}
|
|
4599
4599
|
handleResize() {
|
|
4600
4600
|
this.size = size.getSize(this.host.clientWidth);
|
|
4601
4601
|
}
|
|
@@ -70,6 +70,11 @@ const RtkUiProvider = class {
|
|
|
70
70
|
}, LEAVE_ROOM_TIMER);
|
|
71
71
|
}
|
|
72
72
|
};
|
|
73
|
+
this.handleChangingMeeting = (destinationMeetingId) => {
|
|
74
|
+
this.updateStates({
|
|
75
|
+
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiStore.uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
76
|
+
});
|
|
77
|
+
};
|
|
73
78
|
}
|
|
74
79
|
listenState(e) {
|
|
75
80
|
this.updateStates(e.detail);
|
|
@@ -146,13 +151,8 @@ const RtkUiProvider = class {
|
|
|
146
151
|
onSizeChange(newSize) {
|
|
147
152
|
uiStore.uiStore.state.size = newSize;
|
|
148
153
|
}
|
|
149
|
-
handleChangingMeeting(destinationMeetingId) {
|
|
150
|
-
this.updateStates({
|
|
151
|
-
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiStore.uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
152
|
-
});
|
|
153
|
-
}
|
|
154
154
|
render() {
|
|
155
|
-
return index.h(index.Host, { key: '
|
|
155
|
+
return index.h(index.Host, { key: 'a421f032438ed827ad90bafeafa6c6029eea1bcb' }, this.noRenderUntilMeeting && !this.meeting ? null : index.h("slot", null));
|
|
156
156
|
}
|
|
157
157
|
get host() { return index.getElement(this); }
|
|
158
158
|
static get watchers() { return {
|
|
@@ -76,6 +76,11 @@ export class RtkMeeting {
|
|
|
76
76
|
this.gridLayout = 'row';
|
|
77
77
|
/** Icon pack */
|
|
78
78
|
this.iconPack = defaultIconPack;
|
|
79
|
+
this.handleChangingMeeting = (destinationMeetingId) => {
|
|
80
|
+
this.updateStates({
|
|
81
|
+
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
82
|
+
});
|
|
83
|
+
};
|
|
79
84
|
}
|
|
80
85
|
connectedCallback() {
|
|
81
86
|
var _a;
|
|
@@ -169,11 +174,6 @@ export class RtkMeeting {
|
|
|
169
174
|
listenState(e) {
|
|
170
175
|
this.updateStates(e.detail);
|
|
171
176
|
}
|
|
172
|
-
handleChangingMeeting(destinationMeetingId) {
|
|
173
|
-
this.updateStates({
|
|
174
|
-
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
175
|
-
});
|
|
176
|
-
}
|
|
177
177
|
handleResize() {
|
|
178
178
|
this.size = getSize(this.host.clientWidth);
|
|
179
179
|
}
|
|
@@ -59,6 +59,11 @@ export class RtkUiProvider {
|
|
|
59
59
|
}, LEAVE_ROOM_TIMER);
|
|
60
60
|
}
|
|
61
61
|
};
|
|
62
|
+
this.handleChangingMeeting = (destinationMeetingId) => {
|
|
63
|
+
this.updateStates({
|
|
64
|
+
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
65
|
+
});
|
|
66
|
+
};
|
|
62
67
|
}
|
|
63
68
|
listenState(e) {
|
|
64
69
|
this.updateStates(e.detail);
|
|
@@ -135,13 +140,8 @@ export class RtkUiProvider {
|
|
|
135
140
|
onSizeChange(newSize) {
|
|
136
141
|
uiStore.state.size = newSize;
|
|
137
142
|
}
|
|
138
|
-
handleChangingMeeting(destinationMeetingId) {
|
|
139
|
-
this.updateStates({
|
|
140
|
-
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
141
|
-
});
|
|
142
|
-
}
|
|
143
143
|
render() {
|
|
144
|
-
return h(Host, { key: '
|
|
144
|
+
return h(Host, { key: 'a421f032438ed827ad90bafeafa6c6029eea1bcb' }, this.noRenderUntilMeeting && !this.meeting ? null : h("slot", null));
|
|
145
145
|
}
|
|
146
146
|
static get is() { return "rtk-ui-provider"; }
|
|
147
147
|
static get originalStyleUrls() {
|
|
@@ -126,6 +126,11 @@ const RtkMeeting$1 = /*@__PURE__*/ proxyCustomElement(class RtkMeeting extends H
|
|
|
126
126
|
this.gridLayout = 'row';
|
|
127
127
|
/** Icon pack */
|
|
128
128
|
this.iconPack = defaultIconPack;
|
|
129
|
+
this.handleChangingMeeting = (destinationMeetingId) => {
|
|
130
|
+
this.updateStates({
|
|
131
|
+
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
132
|
+
});
|
|
133
|
+
};
|
|
129
134
|
}
|
|
130
135
|
connectedCallback() {
|
|
131
136
|
var _a;
|
|
@@ -219,11 +224,6 @@ const RtkMeeting$1 = /*@__PURE__*/ proxyCustomElement(class RtkMeeting extends H
|
|
|
219
224
|
listenState(e) {
|
|
220
225
|
this.updateStates(e.detail);
|
|
221
226
|
}
|
|
222
|
-
handleChangingMeeting(destinationMeetingId) {
|
|
223
|
-
this.updateStates({
|
|
224
|
-
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
225
|
-
});
|
|
226
|
-
}
|
|
227
227
|
handleResize() {
|
|
228
228
|
this.size = getSize(this.host.clientWidth);
|
|
229
229
|
}
|
|
@@ -66,6 +66,11 @@ const RtkUiProvider$1 = /*@__PURE__*/ proxyCustomElement(class RtkUiProvider ext
|
|
|
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$1 = /*@__PURE__*/ proxyCustomElement(class RtkUiProvider ext
|
|
|
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 this; }
|
|
154
154
|
static get watchers() { return {
|
package/dist/esm/loader.js
CHANGED
|
@@ -14296,6 +14296,11 @@ const RtkMeeting = class {
|
|
|
14296
14296
|
this.gridLayout = 'row';
|
|
14297
14297
|
/** Icon pack */
|
|
14298
14298
|
this.iconPack = defaultIconPack;
|
|
14299
|
+
this.handleChangingMeeting = (destinationMeetingId) => {
|
|
14300
|
+
this.updateStates({
|
|
14301
|
+
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
14302
|
+
});
|
|
14303
|
+
};
|
|
14299
14304
|
}
|
|
14300
14305
|
connectedCallback() {
|
|
14301
14306
|
var _a;
|
|
@@ -14389,11 +14394,6 @@ const RtkMeeting = class {
|
|
|
14389
14394
|
listenState(e) {
|
|
14390
14395
|
this.updateStates(e.detail);
|
|
14391
14396
|
}
|
|
14392
|
-
handleChangingMeeting(destinationMeetingId) {
|
|
14393
|
-
this.updateStates({
|
|
14394
|
-
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
14395
|
-
});
|
|
14396
|
-
}
|
|
14397
14397
|
handleResize() {
|
|
14398
14398
|
this.size = getSize(this.host.clientWidth);
|
|
14399
14399
|
}
|
|
@@ -24167,6 +24167,11 @@ const RtkUiProvider = class {
|
|
|
24167
24167
|
}, LEAVE_ROOM_TIMER);
|
|
24168
24168
|
}
|
|
24169
24169
|
};
|
|
24170
|
+
this.handleChangingMeeting = (destinationMeetingId) => {
|
|
24171
|
+
this.updateStates({
|
|
24172
|
+
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
24173
|
+
});
|
|
24174
|
+
};
|
|
24170
24175
|
}
|
|
24171
24176
|
listenState(e) {
|
|
24172
24177
|
this.updateStates(e.detail);
|
|
@@ -24243,13 +24248,8 @@ const RtkUiProvider = class {
|
|
|
24243
24248
|
onSizeChange(newSize) {
|
|
24244
24249
|
uiStore.state.size = newSize;
|
|
24245
24250
|
}
|
|
24246
|
-
handleChangingMeeting(destinationMeetingId) {
|
|
24247
|
-
this.updateStates({
|
|
24248
|
-
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
24249
|
-
});
|
|
24250
|
-
}
|
|
24251
24251
|
render() {
|
|
24252
|
-
return h(Host, { key: '
|
|
24252
|
+
return h(Host, { key: 'a421f032438ed827ad90bafeafa6c6029eea1bcb' }, this.noRenderUntilMeeting && !this.meeting ? null : h("slot", null));
|
|
24253
24253
|
}
|
|
24254
24254
|
get host() { return getElement(this); }
|
|
24255
24255
|
static get watchers() { return {
|
|
@@ -4494,6 +4494,11 @@ const RtkMeeting = class {
|
|
|
4494
4494
|
this.gridLayout = 'row';
|
|
4495
4495
|
/** Icon pack */
|
|
4496
4496
|
this.iconPack = defaultIconPack;
|
|
4497
|
+
this.handleChangingMeeting = (destinationMeetingId) => {
|
|
4498
|
+
this.updateStates({
|
|
4499
|
+
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
4500
|
+
});
|
|
4501
|
+
};
|
|
4497
4502
|
}
|
|
4498
4503
|
connectedCallback() {
|
|
4499
4504
|
var _a;
|
|
@@ -4587,11 +4592,6 @@ const RtkMeeting = class {
|
|
|
4587
4592
|
listenState(e) {
|
|
4588
4593
|
this.updateStates(e.detail);
|
|
4589
4594
|
}
|
|
4590
|
-
handleChangingMeeting(destinationMeetingId) {
|
|
4591
|
-
this.updateStates({
|
|
4592
|
-
activeBreakoutRoomsManager: Object.assign(Object.assign({}, uiState.states.activeBreakoutRoomsManager), { destinationMeetingId }),
|
|
4593
|
-
});
|
|
4594
|
-
}
|
|
4595
4595
|
handleResize() {
|
|
4596
4596
|
this.size = getSize(this.host.clientWidth);
|
|
4597
4597
|
}
|
|
@@ -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 {
|