@dytesdk/angular-ui-kit 2.1.0-staging.34 → 2.1.0-staging.35

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.
@@ -0,0 +1,3693 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
3
+ import { defineCustomElements } from '@dytesdk/ui-kit/loader';
4
+ import { __decorate } from 'tslib';
5
+ import { fromEvent } from 'rxjs';
6
+ export * from '@dytesdk/ui-kit';
7
+
8
+ /* eslint-disable */
9
+ const proxyInputs = (Cmp, inputs) => {
10
+ const Prototype = Cmp.prototype;
11
+ inputs.forEach(item => {
12
+ Object.defineProperty(Prototype, item, {
13
+ get() {
14
+ return this.el[item];
15
+ },
16
+ set(val) {
17
+ this.z.runOutsideAngular(() => (this.el[item] = val));
18
+ }
19
+ });
20
+ });
21
+ };
22
+ const proxyMethods = (Cmp, methods) => {
23
+ const Prototype = Cmp.prototype;
24
+ methods.forEach(methodName => {
25
+ Prototype[methodName] = function () {
26
+ const args = arguments;
27
+ return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
28
+ };
29
+ });
30
+ };
31
+ const proxyOutputs = (instance, el, events) => {
32
+ events.forEach(eventName => instance[eventName] = fromEvent(el, eventName));
33
+ };
34
+ const defineCustomElement = (tagName, customElement) => {
35
+ if (customElement !== undefined &&
36
+ typeof customElements !== 'undefined' &&
37
+ !customElements.get(tagName)) {
38
+ customElements.define(tagName, customElement);
39
+ }
40
+ };
41
+ // tslint:disable-next-line: only-arrow-functions
42
+ function ProxyCmp(opts) {
43
+ const decorator = function (cls) {
44
+ const { defineCustomElementFn, inputs, methods } = opts;
45
+ if (defineCustomElementFn !== undefined) {
46
+ defineCustomElementFn();
47
+ }
48
+ if (inputs) {
49
+ proxyInputs(cls, inputs);
50
+ }
51
+ if (methods) {
52
+ proxyMethods(cls, methods);
53
+ }
54
+ return cls;
55
+ };
56
+ return decorator;
57
+ }
58
+
59
+ let DyteAi = class DyteAi {
60
+ constructor(c, r, z) {
61
+ this.z = z;
62
+ c.detach();
63
+ this.el = r.nativeElement;
64
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
65
+ }
66
+ };
67
+ DyteAi.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAi, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
68
+ DyteAi.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteAi, selector: "dyte-ai", inputs: { config: "config", defaultSection: "defaultSection", iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t", view: "view" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
69
+ DyteAi = __decorate([
70
+ ProxyCmp({
71
+ defineCustomElementFn: undefined,
72
+ inputs: ['config', 'defaultSection', 'iconPack', 'meeting', 'size', 'states', 't', 'view']
73
+ })
74
+ ], DyteAi);
75
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAi, decorators: [{
76
+ type: Component,
77
+ args: [{
78
+ selector: 'dyte-ai',
79
+ changeDetection: ChangeDetectionStrategy.OnPush,
80
+ template: '<ng-content></ng-content>',
81
+ inputs: ['config', 'defaultSection', 'iconPack', 'meeting', 'size', 'states', 't', 'view']
82
+ }]
83
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
84
+ let DyteAiChat = class DyteAiChat {
85
+ constructor(c, r, z) {
86
+ this.z = z;
87
+ c.detach();
88
+ this.el = r.nativeElement;
89
+ }
90
+ };
91
+ DyteAiChat.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAiChat, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
92
+ DyteAiChat.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteAiChat, selector: "dyte-ai-chat", inputs: { t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
93
+ DyteAiChat = __decorate([
94
+ ProxyCmp({
95
+ defineCustomElementFn: undefined,
96
+ inputs: ['t']
97
+ })
98
+ ], DyteAiChat);
99
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAiChat, decorators: [{
100
+ type: Component,
101
+ args: [{
102
+ selector: 'dyte-ai-chat',
103
+ changeDetection: ChangeDetectionStrategy.OnPush,
104
+ template: '<ng-content></ng-content>',
105
+ inputs: ['t']
106
+ }]
107
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
108
+ let DyteAiHome = class DyteAiHome {
109
+ constructor(c, r, z) {
110
+ this.z = z;
111
+ c.detach();
112
+ this.el = r.nativeElement;
113
+ }
114
+ };
115
+ DyteAiHome.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAiHome, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
116
+ DyteAiHome.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteAiHome, selector: "dyte-ai-home", inputs: { initialMessages: "initialMessages", meeting: "meeting" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
117
+ DyteAiHome = __decorate([
118
+ ProxyCmp({
119
+ defineCustomElementFn: undefined,
120
+ inputs: ['initialMessages', 'meeting']
121
+ })
122
+ ], DyteAiHome);
123
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAiHome, decorators: [{
124
+ type: Component,
125
+ args: [{
126
+ selector: 'dyte-ai-home',
127
+ changeDetection: ChangeDetectionStrategy.OnPush,
128
+ template: '<ng-content></ng-content>',
129
+ inputs: ['initialMessages', 'meeting']
130
+ }]
131
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
132
+ let DyteAiToggle = class DyteAiToggle {
133
+ constructor(c, r, z) {
134
+ this.z = z;
135
+ c.detach();
136
+ this.el = r.nativeElement;
137
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
138
+ }
139
+ };
140
+ DyteAiToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAiToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
141
+ DyteAiToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteAiToggle, selector: "dyte-ai-toggle", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
142
+ DyteAiToggle = __decorate([
143
+ ProxyCmp({
144
+ defineCustomElementFn: undefined,
145
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
146
+ })
147
+ ], DyteAiToggle);
148
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAiToggle, decorators: [{
149
+ type: Component,
150
+ args: [{
151
+ selector: 'dyte-ai-toggle',
152
+ changeDetection: ChangeDetectionStrategy.OnPush,
153
+ template: '<ng-content></ng-content>',
154
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
155
+ }]
156
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
157
+ let DyteAiTranscriptions = class DyteAiTranscriptions {
158
+ constructor(c, r, z) {
159
+ this.z = z;
160
+ c.detach();
161
+ this.el = r.nativeElement;
162
+ }
163
+ };
164
+ DyteAiTranscriptions.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAiTranscriptions, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
165
+ DyteAiTranscriptions.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteAiTranscriptions, selector: "dyte-ai-transcriptions", inputs: { initialTranscriptions: "initialTranscriptions", meeting: "meeting", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
166
+ DyteAiTranscriptions = __decorate([
167
+ ProxyCmp({
168
+ defineCustomElementFn: undefined,
169
+ inputs: ['initialTranscriptions', 'meeting', 't']
170
+ })
171
+ ], DyteAiTranscriptions);
172
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAiTranscriptions, decorators: [{
173
+ type: Component,
174
+ args: [{
175
+ selector: 'dyte-ai-transcriptions',
176
+ changeDetection: ChangeDetectionStrategy.OnPush,
177
+ template: '<ng-content></ng-content>',
178
+ inputs: ['initialTranscriptions', 'meeting', 't']
179
+ }]
180
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
181
+ let DyteAudioGrid = class DyteAudioGrid {
182
+ constructor(c, r, z) {
183
+ this.z = z;
184
+ c.detach();
185
+ this.el = r.nativeElement;
186
+ }
187
+ };
188
+ DyteAudioGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAudioGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
189
+ DyteAudioGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteAudioGrid, selector: "dyte-audio-grid", inputs: { config: "config", hideSelf: "hideSelf", iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
190
+ DyteAudioGrid = __decorate([
191
+ ProxyCmp({
192
+ defineCustomElementFn: undefined,
193
+ inputs: ['config', 'hideSelf', 'iconPack', 'meeting', 'size', 'states', 't']
194
+ })
195
+ ], DyteAudioGrid);
196
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAudioGrid, decorators: [{
197
+ type: Component,
198
+ args: [{
199
+ selector: 'dyte-audio-grid',
200
+ changeDetection: ChangeDetectionStrategy.OnPush,
201
+ template: '<ng-content></ng-content>',
202
+ inputs: ['config', 'hideSelf', 'iconPack', 'meeting', 'size', 'states', 't']
203
+ }]
204
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
205
+ let DyteAudioTile = class DyteAudioTile {
206
+ constructor(c, r, z) {
207
+ this.z = z;
208
+ c.detach();
209
+ this.el = r.nativeElement;
210
+ }
211
+ };
212
+ DyteAudioTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAudioTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
213
+ DyteAudioTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteAudioTile, selector: "dyte-audio-tile", inputs: { config: "config", iconPack: "iconPack", meeting: "meeting", participant: "participant", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
214
+ DyteAudioTile = __decorate([
215
+ ProxyCmp({
216
+ defineCustomElementFn: undefined,
217
+ inputs: ['config', 'iconPack', 'meeting', 'participant', 'size', 'states', 't']
218
+ })
219
+ ], DyteAudioTile);
220
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAudioTile, decorators: [{
221
+ type: Component,
222
+ args: [{
223
+ selector: 'dyte-audio-tile',
224
+ changeDetection: ChangeDetectionStrategy.OnPush,
225
+ template: '<ng-content></ng-content>',
226
+ inputs: ['config', 'iconPack', 'meeting', 'participant', 'size', 'states', 't']
227
+ }]
228
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
229
+ let DyteAudioVisualizer = class DyteAudioVisualizer {
230
+ constructor(c, r, z) {
231
+ this.z = z;
232
+ c.detach();
233
+ this.el = r.nativeElement;
234
+ }
235
+ };
236
+ DyteAudioVisualizer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAudioVisualizer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
237
+ DyteAudioVisualizer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteAudioVisualizer, selector: "dyte-audio-visualizer", inputs: { hideMuted: "hideMuted", iconPack: "iconPack", isScreenShare: "isScreenShare", participant: "participant", size: "size", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
238
+ DyteAudioVisualizer = __decorate([
239
+ ProxyCmp({
240
+ defineCustomElementFn: undefined,
241
+ inputs: ['hideMuted', 'iconPack', 'isScreenShare', 'participant', 'size', 't', 'variant']
242
+ })
243
+ ], DyteAudioVisualizer);
244
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAudioVisualizer, decorators: [{
245
+ type: Component,
246
+ args: [{
247
+ selector: 'dyte-audio-visualizer',
248
+ changeDetection: ChangeDetectionStrategy.OnPush,
249
+ template: '<ng-content></ng-content>',
250
+ inputs: ['hideMuted', 'iconPack', 'isScreenShare', 'participant', 'size', 't', 'variant']
251
+ }]
252
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
253
+ let DyteAvatar = class DyteAvatar {
254
+ constructor(c, r, z) {
255
+ this.z = z;
256
+ c.detach();
257
+ this.el = r.nativeElement;
258
+ }
259
+ };
260
+ DyteAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
261
+ DyteAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteAvatar, selector: "dyte-avatar", inputs: { iconPack: "iconPack", participant: "participant", size: "size", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
262
+ DyteAvatar = __decorate([
263
+ ProxyCmp({
264
+ defineCustomElementFn: undefined,
265
+ inputs: ['iconPack', 'participant', 'size', 't', 'variant']
266
+ })
267
+ ], DyteAvatar);
268
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteAvatar, decorators: [{
269
+ type: Component,
270
+ args: [{
271
+ selector: 'dyte-avatar',
272
+ changeDetection: ChangeDetectionStrategy.OnPush,
273
+ template: '<ng-content></ng-content>',
274
+ inputs: ['iconPack', 'participant', 'size', 't', 'variant']
275
+ }]
276
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
277
+ let DyteBreakoutRoomManager = class DyteBreakoutRoomManager {
278
+ constructor(c, r, z) {
279
+ this.z = z;
280
+ c.detach();
281
+ this.el = r.nativeElement;
282
+ proxyOutputs(this, this.el, ['participantsAdd', 'participantDelete', 'roomJoin', 'delete', 'update']);
283
+ }
284
+ };
285
+ DyteBreakoutRoomManager.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteBreakoutRoomManager, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
286
+ DyteBreakoutRoomManager.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteBreakoutRoomManager, selector: "dyte-breakout-room-manager", inputs: { allowDelete: "allowDelete", assigningParticipants: "assigningParticipants", defaultExpanded: "defaultExpanded", iconPack: "iconPack", isDragMode: "isDragMode", meeting: "meeting", mode: "mode", room: "room", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
287
+ DyteBreakoutRoomManager = __decorate([
288
+ ProxyCmp({
289
+ defineCustomElementFn: undefined,
290
+ inputs: ['allowDelete', 'assigningParticipants', 'defaultExpanded', 'iconPack', 'isDragMode', 'meeting', 'mode', 'room', 'states', 't']
291
+ })
292
+ ], DyteBreakoutRoomManager);
293
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteBreakoutRoomManager, decorators: [{
294
+ type: Component,
295
+ args: [{
296
+ selector: 'dyte-breakout-room-manager',
297
+ changeDetection: ChangeDetectionStrategy.OnPush,
298
+ template: '<ng-content></ng-content>',
299
+ inputs: ['allowDelete', 'assigningParticipants', 'defaultExpanded', 'iconPack', 'isDragMode', 'meeting', 'mode', 'room', 'states', 't']
300
+ }]
301
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
302
+ let DyteBreakoutRoomParticipants = class DyteBreakoutRoomParticipants {
303
+ constructor(c, r, z) {
304
+ this.z = z;
305
+ c.detach();
306
+ this.el = r.nativeElement;
307
+ proxyOutputs(this, this.el, ['selectedParticipantsUpdate', 'allParticipantsToggleUpdate', 'participantsDragging']);
308
+ }
309
+ };
310
+ DyteBreakoutRoomParticipants.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteBreakoutRoomParticipants, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
311
+ DyteBreakoutRoomParticipants.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteBreakoutRoomParticipants, selector: "dyte-breakout-room-participants", inputs: { iconPack: "iconPack", meeting: "meeting", participantIds: "participantIds", selectedParticipantIds: "selectedParticipantIds", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
312
+ DyteBreakoutRoomParticipants = __decorate([
313
+ ProxyCmp({
314
+ defineCustomElementFn: undefined,
315
+ inputs: ['iconPack', 'meeting', 'participantIds', 'selectedParticipantIds', 't']
316
+ })
317
+ ], DyteBreakoutRoomParticipants);
318
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteBreakoutRoomParticipants, decorators: [{
319
+ type: Component,
320
+ args: [{
321
+ selector: 'dyte-breakout-room-participants',
322
+ changeDetection: ChangeDetectionStrategy.OnPush,
323
+ template: '<ng-content></ng-content>',
324
+ inputs: ['iconPack', 'meeting', 'participantIds', 'selectedParticipantIds', 't']
325
+ }]
326
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
327
+ let DyteBreakoutRoomsManager = class DyteBreakoutRoomsManager {
328
+ constructor(c, r, z) {
329
+ this.z = z;
330
+ c.detach();
331
+ this.el = r.nativeElement;
332
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
333
+ }
334
+ };
335
+ DyteBreakoutRoomsManager.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteBreakoutRoomsManager, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
336
+ DyteBreakoutRoomsManager.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteBreakoutRoomsManager, selector: "dyte-breakout-rooms-manager", inputs: { iconPack: "iconPack", meeting: "meeting", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
337
+ DyteBreakoutRoomsManager = __decorate([
338
+ ProxyCmp({
339
+ defineCustomElementFn: undefined,
340
+ inputs: ['iconPack', 'meeting', 'states', 't']
341
+ })
342
+ ], DyteBreakoutRoomsManager);
343
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteBreakoutRoomsManager, decorators: [{
344
+ type: Component,
345
+ args: [{
346
+ selector: 'dyte-breakout-rooms-manager',
347
+ changeDetection: ChangeDetectionStrategy.OnPush,
348
+ template: '<ng-content></ng-content>',
349
+ inputs: ['iconPack', 'meeting', 'states', 't']
350
+ }]
351
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
352
+ let DyteBreakoutRoomsToggle = class DyteBreakoutRoomsToggle {
353
+ constructor(c, r, z) {
354
+ this.z = z;
355
+ c.detach();
356
+ this.el = r.nativeElement;
357
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
358
+ }
359
+ };
360
+ DyteBreakoutRoomsToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteBreakoutRoomsToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
361
+ DyteBreakoutRoomsToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteBreakoutRoomsToggle, selector: "dyte-breakout-rooms-toggle", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
362
+ DyteBreakoutRoomsToggle = __decorate([
363
+ ProxyCmp({
364
+ defineCustomElementFn: undefined,
365
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
366
+ })
367
+ ], DyteBreakoutRoomsToggle);
368
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteBreakoutRoomsToggle, decorators: [{
369
+ type: Component,
370
+ args: [{
371
+ selector: 'dyte-breakout-rooms-toggle',
372
+ changeDetection: ChangeDetectionStrategy.OnPush,
373
+ template: '<ng-content></ng-content>',
374
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
375
+ }]
376
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
377
+ let DyteBroadcastMessageModal = class DyteBroadcastMessageModal {
378
+ constructor(c, r, z) {
379
+ this.z = z;
380
+ c.detach();
381
+ this.el = r.nativeElement;
382
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
383
+ }
384
+ };
385
+ DyteBroadcastMessageModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteBroadcastMessageModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
386
+ DyteBroadcastMessageModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteBroadcastMessageModal, selector: "dyte-broadcast-message-modal", inputs: { iconPack: "iconPack", meeting: "meeting", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
387
+ DyteBroadcastMessageModal = __decorate([
388
+ ProxyCmp({
389
+ defineCustomElementFn: undefined,
390
+ inputs: ['iconPack', 'meeting', 'states', 't']
391
+ })
392
+ ], DyteBroadcastMessageModal);
393
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteBroadcastMessageModal, decorators: [{
394
+ type: Component,
395
+ args: [{
396
+ selector: 'dyte-broadcast-message-modal',
397
+ changeDetection: ChangeDetectionStrategy.OnPush,
398
+ template: '<ng-content></ng-content>',
399
+ inputs: ['iconPack', 'meeting', 'states', 't']
400
+ }]
401
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
402
+ let DyteButton = class DyteButton {
403
+ constructor(c, r, z) {
404
+ this.z = z;
405
+ c.detach();
406
+ this.el = r.nativeElement;
407
+ }
408
+ };
409
+ DyteButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
410
+ DyteButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteButton, selector: "dyte-button", inputs: { disabled: "disabled", iconPack: "iconPack", kind: "kind", reverse: "reverse", size: "size", t: "t", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
411
+ DyteButton = __decorate([
412
+ ProxyCmp({
413
+ defineCustomElementFn: undefined,
414
+ inputs: ['disabled', 'iconPack', 'kind', 'reverse', 'size', 't', 'type', 'variant']
415
+ })
416
+ ], DyteButton);
417
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteButton, decorators: [{
418
+ type: Component,
419
+ args: [{
420
+ selector: 'dyte-button',
421
+ changeDetection: ChangeDetectionStrategy.OnPush,
422
+ template: '<ng-content></ng-content>',
423
+ inputs: ['disabled', 'iconPack', 'kind', 'reverse', 'size', 't', 'type', 'variant']
424
+ }]
425
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
426
+ let DyteCameraSelector = class DyteCameraSelector {
427
+ constructor(c, r, z) {
428
+ this.z = z;
429
+ c.detach();
430
+ this.el = r.nativeElement;
431
+ }
432
+ };
433
+ DyteCameraSelector.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteCameraSelector, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
434
+ DyteCameraSelector.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteCameraSelector, selector: "dyte-camera-selector", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
435
+ DyteCameraSelector = __decorate([
436
+ ProxyCmp({
437
+ defineCustomElementFn: undefined,
438
+ inputs: ['iconPack', 'meeting', 'size', 't', 'variant']
439
+ })
440
+ ], DyteCameraSelector);
441
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteCameraSelector, decorators: [{
442
+ type: Component,
443
+ args: [{
444
+ selector: 'dyte-camera-selector',
445
+ changeDetection: ChangeDetectionStrategy.OnPush,
446
+ template: '<ng-content></ng-content>',
447
+ inputs: ['iconPack', 'meeting', 'size', 't', 'variant']
448
+ }]
449
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
450
+ let DyteCameraToggle = class DyteCameraToggle {
451
+ constructor(c, r, z) {
452
+ this.z = z;
453
+ c.detach();
454
+ this.el = r.nativeElement;
455
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
456
+ }
457
+ };
458
+ DyteCameraToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteCameraToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
459
+ DyteCameraToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteCameraToggle, selector: "dyte-camera-toggle", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
460
+ DyteCameraToggle = __decorate([
461
+ ProxyCmp({
462
+ defineCustomElementFn: undefined,
463
+ inputs: ['iconPack', 'meeting', 'size', 't', 'variant']
464
+ })
465
+ ], DyteCameraToggle);
466
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteCameraToggle, decorators: [{
467
+ type: Component,
468
+ args: [{
469
+ selector: 'dyte-camera-toggle',
470
+ changeDetection: ChangeDetectionStrategy.OnPush,
471
+ template: '<ng-content></ng-content>',
472
+ inputs: ['iconPack', 'meeting', 'size', 't', 'variant']
473
+ }]
474
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
475
+ let DyteCaptionToggle = class DyteCaptionToggle {
476
+ constructor(c, r, z) {
477
+ this.z = z;
478
+ c.detach();
479
+ this.el = r.nativeElement;
480
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
481
+ }
482
+ };
483
+ DyteCaptionToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteCaptionToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
484
+ DyteCaptionToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteCaptionToggle, selector: "dyte-caption-toggle", inputs: { config: "config", iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
485
+ DyteCaptionToggle = __decorate([
486
+ ProxyCmp({
487
+ defineCustomElementFn: undefined,
488
+ inputs: ['config', 'iconPack', 'meeting', 'size', 'states', 't', 'variant']
489
+ })
490
+ ], DyteCaptionToggle);
491
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteCaptionToggle, decorators: [{
492
+ type: Component,
493
+ args: [{
494
+ selector: 'dyte-caption-toggle',
495
+ changeDetection: ChangeDetectionStrategy.OnPush,
496
+ template: '<ng-content></ng-content>',
497
+ inputs: ['config', 'iconPack', 'meeting', 'size', 'states', 't', 'variant']
498
+ }]
499
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
500
+ let DyteChannelCreator = class DyteChannelCreator {
501
+ constructor(c, r, z) {
502
+ this.z = z;
503
+ c.detach();
504
+ this.el = r.nativeElement;
505
+ proxyOutputs(this, this.el, ['dyteStateUpdate', 'switchChannel']);
506
+ }
507
+ };
508
+ DyteChannelCreator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChannelCreator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
509
+ DyteChannelCreator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteChannelCreator, selector: "dyte-channel-creator", inputs: { iconPack: "iconPack", meeting: "meeting", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
510
+ DyteChannelCreator = __decorate([
511
+ ProxyCmp({
512
+ defineCustomElementFn: undefined,
513
+ inputs: ['iconPack', 'meeting', 't']
514
+ })
515
+ ], DyteChannelCreator);
516
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChannelCreator, decorators: [{
517
+ type: Component,
518
+ args: [{
519
+ selector: 'dyte-channel-creator',
520
+ changeDetection: ChangeDetectionStrategy.OnPush,
521
+ template: '<ng-content></ng-content>',
522
+ inputs: ['iconPack', 'meeting', 't']
523
+ }]
524
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
525
+ let DyteChannelDetails = class DyteChannelDetails {
526
+ constructor(c, r, z) {
527
+ this.z = z;
528
+ c.detach();
529
+ this.el = r.nativeElement;
530
+ }
531
+ };
532
+ DyteChannelDetails.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChannelDetails, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
533
+ DyteChannelDetails.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteChannelDetails, selector: "dyte-channel-details", inputs: { channel: "channel", iconPack: "iconPack", members: "members", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
534
+ DyteChannelDetails = __decorate([
535
+ ProxyCmp({
536
+ defineCustomElementFn: undefined,
537
+ inputs: ['channel', 'iconPack', 'members', 't']
538
+ })
539
+ ], DyteChannelDetails);
540
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChannelDetails, decorators: [{
541
+ type: Component,
542
+ args: [{
543
+ selector: 'dyte-channel-details',
544
+ changeDetection: ChangeDetectionStrategy.OnPush,
545
+ template: '<ng-content></ng-content>',
546
+ inputs: ['channel', 'iconPack', 'members', 't']
547
+ }]
548
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
549
+ let DyteChannelHeader = class DyteChannelHeader {
550
+ constructor(c, r, z) {
551
+ this.z = z;
552
+ c.detach();
553
+ this.el = r.nativeElement;
554
+ proxyOutputs(this, this.el, ['search', 'searchDismissed', 'back']);
555
+ }
556
+ };
557
+ DyteChannelHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChannelHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
558
+ DyteChannelHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteChannelHeader, selector: "dyte-channel-header", inputs: { channel: "channel", iconPack: "iconPack", meeting: "meeting", showBackButton: "showBackButton", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
559
+ DyteChannelHeader = __decorate([
560
+ ProxyCmp({
561
+ defineCustomElementFn: undefined,
562
+ inputs: ['channel', 'iconPack', 'meeting', 'showBackButton', 't']
563
+ })
564
+ ], DyteChannelHeader);
565
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChannelHeader, decorators: [{
566
+ type: Component,
567
+ args: [{
568
+ selector: 'dyte-channel-header',
569
+ changeDetection: ChangeDetectionStrategy.OnPush,
570
+ template: '<ng-content></ng-content>',
571
+ inputs: ['channel', 'iconPack', 'meeting', 'showBackButton', 't']
572
+ }]
573
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
574
+ let DyteChannelSelectorUi = class DyteChannelSelectorUi {
575
+ constructor(c, r, z) {
576
+ this.z = z;
577
+ c.detach();
578
+ this.el = r.nativeElement;
579
+ proxyOutputs(this, this.el, ['channelChanged']);
580
+ }
581
+ };
582
+ DyteChannelSelectorUi.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChannelSelectorUi, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
583
+ DyteChannelSelectorUi.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteChannelSelectorUi, selector: "dyte-channel-selector-ui", inputs: { channels: "channels", iconPack: "iconPack", selectedChannelId: "selectedChannelId", showRecentMessage: "showRecentMessage", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
584
+ DyteChannelSelectorUi = __decorate([
585
+ ProxyCmp({
586
+ defineCustomElementFn: undefined,
587
+ inputs: ['channels', 'iconPack', 'selectedChannelId', 'showRecentMessage', 't']
588
+ })
589
+ ], DyteChannelSelectorUi);
590
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChannelSelectorUi, decorators: [{
591
+ type: Component,
592
+ args: [{
593
+ selector: 'dyte-channel-selector-ui',
594
+ changeDetection: ChangeDetectionStrategy.OnPush,
595
+ template: '<ng-content></ng-content>',
596
+ inputs: ['channels', 'iconPack', 'selectedChannelId', 'showRecentMessage', 't']
597
+ }]
598
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
599
+ let DyteChannelSelectorView = class DyteChannelSelectorView {
600
+ constructor(c, r, z) {
601
+ this.z = z;
602
+ c.detach();
603
+ this.el = r.nativeElement;
604
+ proxyOutputs(this, this.el, ['channelChange']);
605
+ }
606
+ };
607
+ DyteChannelSelectorView.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChannelSelectorView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
608
+ DyteChannelSelectorView.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteChannelSelectorView, selector: "dyte-channel-selector-view", inputs: { channels: "channels", disableSearch: "disableSearch", hideAvatar: "hideAvatar", iconPack: "iconPack", selectedChannelId: "selectedChannelId", t: "t", viewAs: "viewAs" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
609
+ DyteChannelSelectorView = __decorate([
610
+ ProxyCmp({
611
+ defineCustomElementFn: undefined,
612
+ inputs: ['channels', 'disableSearch', 'hideAvatar', 'iconPack', 'selectedChannelId', 't', 'viewAs']
613
+ })
614
+ ], DyteChannelSelectorView);
615
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChannelSelectorView, decorators: [{
616
+ type: Component,
617
+ args: [{
618
+ selector: 'dyte-channel-selector-view',
619
+ changeDetection: ChangeDetectionStrategy.OnPush,
620
+ template: '<ng-content></ng-content>',
621
+ inputs: ['channels', 'disableSearch', 'hideAvatar', 'iconPack', 'selectedChannelId', 't', 'viewAs']
622
+ }]
623
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
624
+ let DyteChat = class DyteChat {
625
+ constructor(c, r, z) {
626
+ this.z = z;
627
+ c.detach();
628
+ this.el = r.nativeElement;
629
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
630
+ }
631
+ };
632
+ DyteChat.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChat, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
633
+ DyteChat.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteChat, selector: "dyte-chat", inputs: { config: "config", disablePrivateChat: "disablePrivateChat", displayFilter: "displayFilter", iconPack: "iconPack", meeting: "meeting", privatePresetFilter: "privatePresetFilter", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
634
+ DyteChat = __decorate([
635
+ ProxyCmp({
636
+ defineCustomElementFn: undefined,
637
+ inputs: ['config', 'disablePrivateChat', 'displayFilter', 'iconPack', 'meeting', 'privatePresetFilter', 'size', 't']
638
+ })
639
+ ], DyteChat);
640
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChat, decorators: [{
641
+ type: Component,
642
+ args: [{
643
+ selector: 'dyte-chat',
644
+ changeDetection: ChangeDetectionStrategy.OnPush,
645
+ template: '<ng-content></ng-content>',
646
+ inputs: ['config', 'disablePrivateChat', 'displayFilter', 'iconPack', 'meeting', 'privatePresetFilter', 'size', 't']
647
+ }]
648
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
649
+ let DyteChatComposerUi = class DyteChatComposerUi {
650
+ constructor(c, r, z) {
651
+ this.z = z;
652
+ c.detach();
653
+ this.el = r.nativeElement;
654
+ proxyOutputs(this, this.el, ['dyteNewMessage', 'dyteEditMessage', 'dyteEditCancelled']);
655
+ }
656
+ };
657
+ DyteChatComposerUi.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChatComposerUi, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
658
+ DyteChatComposerUi.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteChatComposerUi, selector: "dyte-chat-composer-ui", inputs: { canSendFiles: "canSendFiles", canSendTextMessage: "canSendTextMessage", channelId: "channelId", disableEmojiPicker: "disableEmojiPicker", iconPack: "iconPack", members: "members", prefill: "prefill", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
659
+ DyteChatComposerUi = __decorate([
660
+ ProxyCmp({
661
+ defineCustomElementFn: undefined,
662
+ inputs: ['canSendFiles', 'canSendTextMessage', 'channelId', 'disableEmojiPicker', 'iconPack', 'members', 'prefill', 'size', 't']
663
+ })
664
+ ], DyteChatComposerUi);
665
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChatComposerUi, decorators: [{
666
+ type: Component,
667
+ args: [{
668
+ selector: 'dyte-chat-composer-ui',
669
+ changeDetection: ChangeDetectionStrategy.OnPush,
670
+ template: '<ng-content></ng-content>',
671
+ inputs: ['canSendFiles', 'canSendTextMessage', 'channelId', 'disableEmojiPicker', 'iconPack', 'members', 'prefill', 'size', 't']
672
+ }]
673
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
674
+ let DyteChatComposerView = class DyteChatComposerView {
675
+ constructor(c, r, z) {
676
+ this.z = z;
677
+ c.detach();
678
+ this.el = r.nativeElement;
679
+ proxyOutputs(this, this.el, ['newMessage', 'editMessage', 'editCancel', 'quotedMessageDismiss']);
680
+ }
681
+ };
682
+ DyteChatComposerView.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChatComposerView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
683
+ DyteChatComposerView.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteChatComposerView, selector: "dyte-chat-composer-view", inputs: { canSendFiles: "canSendFiles", canSendTextMessage: "canSendTextMessage", disableEmojiPicker: "disableEmojiPicker", iconPack: "iconPack", inputTextPlaceholder: "inputTextPlaceholder", isEditing: "isEditing", maxLength: "maxLength", message: "message", quotedMessage: "quotedMessage", rateLimits: "rateLimits", storageKey: "storageKey", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
684
+ DyteChatComposerView = __decorate([
685
+ ProxyCmp({
686
+ defineCustomElementFn: undefined,
687
+ inputs: ['canSendFiles', 'canSendTextMessage', 'disableEmojiPicker', 'iconPack', 'inputTextPlaceholder', 'isEditing', 'maxLength', 'message', 'quotedMessage', 'rateLimits', 'storageKey', 't']
688
+ })
689
+ ], DyteChatComposerView);
690
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChatComposerView, decorators: [{
691
+ type: Component,
692
+ args: [{
693
+ selector: 'dyte-chat-composer-view',
694
+ changeDetection: ChangeDetectionStrategy.OnPush,
695
+ template: '<ng-content></ng-content>',
696
+ inputs: ['canSendFiles', 'canSendTextMessage', 'disableEmojiPicker', 'iconPack', 'inputTextPlaceholder', 'isEditing', 'maxLength', 'message', 'quotedMessage', 'rateLimits', 'storageKey', 't']
697
+ }]
698
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
699
+ let DyteChatMessage = class DyteChatMessage {
700
+ constructor(c, r, z) {
701
+ this.z = z;
702
+ c.detach();
703
+ this.el = r.nativeElement;
704
+ proxyOutputs(this, this.el, ['edit', 'reply', 'pin', 'delete']);
705
+ }
706
+ };
707
+ DyteChatMessage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChatMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
708
+ DyteChatMessage.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteChatMessage, selector: "dyte-chat-message", inputs: { alignRight: "alignRight", canDelete: "canDelete", canEdit: "canEdit", canPin: "canPin", canReply: "canReply", child: "child", disableControls: "disableControls", hideAvatar: "hideAvatar", iconPack: "iconPack", isContinued: "isContinued", isSelf: "isSelf", isUnread: "isUnread", leftAlign: "leftAlign", message: "message", senderDisplayPicture: "senderDisplayPicture", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
709
+ DyteChatMessage = __decorate([
710
+ ProxyCmp({
711
+ defineCustomElementFn: undefined,
712
+ inputs: ['alignRight', 'canDelete', 'canEdit', 'canPin', 'canReply', 'child', 'disableControls', 'hideAvatar', 'iconPack', 'isContinued', 'isSelf', 'isUnread', 'leftAlign', 'message', 'senderDisplayPicture', 'size', 't']
713
+ })
714
+ ], DyteChatMessage);
715
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChatMessage, decorators: [{
716
+ type: Component,
717
+ args: [{
718
+ selector: 'dyte-chat-message',
719
+ changeDetection: ChangeDetectionStrategy.OnPush,
720
+ template: '<ng-content></ng-content>',
721
+ inputs: ['alignRight', 'canDelete', 'canEdit', 'canPin', 'canReply', 'child', 'disableControls', 'hideAvatar', 'iconPack', 'isContinued', 'isSelf', 'isUnread', 'leftAlign', 'message', 'senderDisplayPicture', 'size', 't']
722
+ }]
723
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
724
+ let DyteChatMessagesUi = class DyteChatMessagesUi {
725
+ constructor(c, r, z) {
726
+ this.z = z;
727
+ c.detach();
728
+ this.el = r.nativeElement;
729
+ proxyOutputs(this, this.el, ['pinMessage', 'dyteStateUpdate']);
730
+ }
731
+ };
732
+ DyteChatMessagesUi.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChatMessagesUi, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
733
+ DyteChatMessagesUi.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteChatMessagesUi, selector: "dyte-chat-messages-ui", inputs: { canPinMessages: "canPinMessages", iconPack: "iconPack", messages: "messages", selectedGroup: "selectedGroup", selfUserId: "selfUserId", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
734
+ DyteChatMessagesUi = __decorate([
735
+ ProxyCmp({
736
+ defineCustomElementFn: undefined,
737
+ inputs: ['canPinMessages', 'iconPack', 'messages', 'selectedGroup', 'selfUserId', 'size', 't']
738
+ })
739
+ ], DyteChatMessagesUi);
740
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChatMessagesUi, decorators: [{
741
+ type: Component,
742
+ args: [{
743
+ selector: 'dyte-chat-messages-ui',
744
+ changeDetection: ChangeDetectionStrategy.OnPush,
745
+ template: '<ng-content></ng-content>',
746
+ inputs: ['canPinMessages', 'iconPack', 'messages', 'selectedGroup', 'selfUserId', 'size', 't']
747
+ }]
748
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
749
+ let DyteChatMessagesUiPaginated = class DyteChatMessagesUiPaginated {
750
+ constructor(c, r, z) {
751
+ this.z = z;
752
+ c.detach();
753
+ this.el = r.nativeElement;
754
+ proxyOutputs(this, this.el, ['editMessageInit', 'pinMessage', 'deleteMessage', 'dyteStateUpdate']);
755
+ }
756
+ };
757
+ DyteChatMessagesUiPaginated.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChatMessagesUiPaginated, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
758
+ DyteChatMessagesUiPaginated.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteChatMessagesUiPaginated, selector: "dyte-chat-messages-ui-paginated", inputs: { iconPack: "iconPack", leftAlign: "leftAlign", meeting: "meeting", selectedChannel: "selectedChannel", selectedChannelId: "selectedChannelId", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
759
+ DyteChatMessagesUiPaginated = __decorate([
760
+ ProxyCmp({
761
+ defineCustomElementFn: undefined,
762
+ inputs: ['iconPack', 'leftAlign', 'meeting', 'selectedChannel', 'selectedChannelId', 'size', 't']
763
+ })
764
+ ], DyteChatMessagesUiPaginated);
765
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChatMessagesUiPaginated, decorators: [{
766
+ type: Component,
767
+ args: [{
768
+ selector: 'dyte-chat-messages-ui-paginated',
769
+ changeDetection: ChangeDetectionStrategy.OnPush,
770
+ template: '<ng-content></ng-content>',
771
+ inputs: ['iconPack', 'leftAlign', 'meeting', 'selectedChannel', 'selectedChannelId', 'size', 't']
772
+ }]
773
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
774
+ let DyteChatSearchResults = class DyteChatSearchResults {
775
+ constructor(c, r, z) {
776
+ this.z = z;
777
+ c.detach();
778
+ this.el = r.nativeElement;
779
+ }
780
+ };
781
+ DyteChatSearchResults.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChatSearchResults, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
782
+ DyteChatSearchResults.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteChatSearchResults, selector: "dyte-chat-search-results", inputs: { channelId: "channelId", iconPack: "iconPack", meeting: "meeting", query: "query", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
783
+ DyteChatSearchResults = __decorate([
784
+ ProxyCmp({
785
+ defineCustomElementFn: undefined,
786
+ inputs: ['channelId', 'iconPack', 'meeting', 'query', 't']
787
+ })
788
+ ], DyteChatSearchResults);
789
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChatSearchResults, decorators: [{
790
+ type: Component,
791
+ args: [{
792
+ selector: 'dyte-chat-search-results',
793
+ changeDetection: ChangeDetectionStrategy.OnPush,
794
+ template: '<ng-content></ng-content>',
795
+ inputs: ['channelId', 'iconPack', 'meeting', 'query', 't']
796
+ }]
797
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
798
+ let DyteChatSelectorUi = class DyteChatSelectorUi {
799
+ constructor(c, r, z) {
800
+ this.z = z;
801
+ c.detach();
802
+ this.el = r.nativeElement;
803
+ proxyOutputs(this, this.el, ['dyteChatGroupChanged']);
804
+ }
805
+ };
806
+ DyteChatSelectorUi.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChatSelectorUi, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
807
+ DyteChatSelectorUi.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteChatSelectorUi, selector: "dyte-chat-selector-ui", inputs: { groups: "groups", iconPack: "iconPack", selectedGroupId: "selectedGroupId", selfUserId: "selfUserId", t: "t", unreadCounts: "unreadCounts" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
808
+ DyteChatSelectorUi = __decorate([
809
+ ProxyCmp({
810
+ defineCustomElementFn: undefined,
811
+ inputs: ['groups', 'iconPack', 'selectedGroupId', 'selfUserId', 't', 'unreadCounts']
812
+ })
813
+ ], DyteChatSelectorUi);
814
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChatSelectorUi, decorators: [{
815
+ type: Component,
816
+ args: [{
817
+ selector: 'dyte-chat-selector-ui',
818
+ changeDetection: ChangeDetectionStrategy.OnPush,
819
+ template: '<ng-content></ng-content>',
820
+ inputs: ['groups', 'iconPack', 'selectedGroupId', 'selfUserId', 't', 'unreadCounts']
821
+ }]
822
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
823
+ let DyteChatToggle = class DyteChatToggle {
824
+ constructor(c, r, z) {
825
+ this.z = z;
826
+ c.detach();
827
+ this.el = r.nativeElement;
828
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
829
+ }
830
+ };
831
+ DyteChatToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChatToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
832
+ DyteChatToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteChatToggle, selector: "dyte-chat-toggle", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
833
+ DyteChatToggle = __decorate([
834
+ ProxyCmp({
835
+ defineCustomElementFn: undefined,
836
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
837
+ })
838
+ ], DyteChatToggle);
839
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteChatToggle, decorators: [{
840
+ type: Component,
841
+ args: [{
842
+ selector: 'dyte-chat-toggle',
843
+ changeDetection: ChangeDetectionStrategy.OnPush,
844
+ template: '<ng-content></ng-content>',
845
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
846
+ }]
847
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
848
+ let DyteClock = class DyteClock {
849
+ constructor(c, r, z) {
850
+ this.z = z;
851
+ c.detach();
852
+ this.el = r.nativeElement;
853
+ }
854
+ };
855
+ DyteClock.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteClock, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
856
+ DyteClock.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteClock, selector: "dyte-clock", inputs: { iconPack: "iconPack", meeting: "meeting", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
857
+ DyteClock = __decorate([
858
+ ProxyCmp({
859
+ defineCustomElementFn: undefined,
860
+ inputs: ['iconPack', 'meeting', 't']
861
+ })
862
+ ], DyteClock);
863
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteClock, decorators: [{
864
+ type: Component,
865
+ args: [{
866
+ selector: 'dyte-clock',
867
+ changeDetection: ChangeDetectionStrategy.OnPush,
868
+ template: '<ng-content></ng-content>',
869
+ inputs: ['iconPack', 'meeting', 't']
870
+ }]
871
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
872
+ let DyteConfirmationModal = class DyteConfirmationModal {
873
+ constructor(c, r, z) {
874
+ this.z = z;
875
+ c.detach();
876
+ this.el = r.nativeElement;
877
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
878
+ }
879
+ };
880
+ DyteConfirmationModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteConfirmationModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
881
+ DyteConfirmationModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteConfirmationModal, selector: "dyte-confirmation-modal", inputs: { iconPack: "iconPack", meeting: "meeting", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
882
+ DyteConfirmationModal = __decorate([
883
+ ProxyCmp({
884
+ defineCustomElementFn: undefined,
885
+ inputs: ['iconPack', 'meeting', 'states', 't']
886
+ })
887
+ ], DyteConfirmationModal);
888
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteConfirmationModal, decorators: [{
889
+ type: Component,
890
+ args: [{
891
+ selector: 'dyte-confirmation-modal',
892
+ changeDetection: ChangeDetectionStrategy.OnPush,
893
+ template: '<ng-content></ng-content>',
894
+ inputs: ['iconPack', 'meeting', 'states', 't']
895
+ }]
896
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
897
+ let DyteControlbar = class DyteControlbar {
898
+ constructor(c, r, z) {
899
+ this.z = z;
900
+ c.detach();
901
+ this.el = r.nativeElement;
902
+ }
903
+ };
904
+ DyteControlbar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteControlbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
905
+ DyteControlbar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteControlbar, selector: "dyte-controlbar", inputs: { config: "config", disableRender: "disableRender", iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
906
+ DyteControlbar = __decorate([
907
+ ProxyCmp({
908
+ defineCustomElementFn: undefined,
909
+ inputs: ['config', 'disableRender', 'iconPack', 'meeting', 'size', 'states', 't', 'variant']
910
+ })
911
+ ], DyteControlbar);
912
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteControlbar, decorators: [{
913
+ type: Component,
914
+ args: [{
915
+ selector: 'dyte-controlbar',
916
+ changeDetection: ChangeDetectionStrategy.OnPush,
917
+ template: '<ng-content></ng-content>',
918
+ inputs: ['config', 'disableRender', 'iconPack', 'meeting', 'size', 'states', 't', 'variant']
919
+ }]
920
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
921
+ let DyteControlbarButton = class DyteControlbarButton {
922
+ constructor(c, r, z) {
923
+ this.z = z;
924
+ c.detach();
925
+ this.el = r.nativeElement;
926
+ }
927
+ };
928
+ DyteControlbarButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteControlbarButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
929
+ DyteControlbarButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteControlbarButton, selector: "dyte-controlbar-button", inputs: { brandIcon: "brandIcon", disabled: "disabled", icon: "icon", iconPack: "iconPack", isLoading: "isLoading", label: "label", showWarning: "showWarning", size: "size", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
930
+ DyteControlbarButton = __decorate([
931
+ ProxyCmp({
932
+ defineCustomElementFn: undefined,
933
+ inputs: ['brandIcon', 'disabled', 'icon', 'iconPack', 'isLoading', 'label', 'showWarning', 'size', 't', 'variant']
934
+ })
935
+ ], DyteControlbarButton);
936
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteControlbarButton, decorators: [{
937
+ type: Component,
938
+ args: [{
939
+ selector: 'dyte-controlbar-button',
940
+ changeDetection: ChangeDetectionStrategy.OnPush,
941
+ template: '<ng-content></ng-content>',
942
+ inputs: ['brandIcon', 'disabled', 'icon', 'iconPack', 'isLoading', 'label', 'showWarning', 'size', 't', 'variant']
943
+ }]
944
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
945
+ let DyteCounter = class DyteCounter {
946
+ constructor(c, r, z) {
947
+ this.z = z;
948
+ c.detach();
949
+ this.el = r.nativeElement;
950
+ proxyOutputs(this, this.el, ['valueChange']);
951
+ }
952
+ };
953
+ DyteCounter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteCounter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
954
+ DyteCounter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteCounter, selector: "dyte-counter", inputs: { iconPack: "iconPack", minValue: "minValue", size: "size", t: "t", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
955
+ DyteCounter = __decorate([
956
+ ProxyCmp({
957
+ defineCustomElementFn: undefined,
958
+ inputs: ['iconPack', 'minValue', 'size', 't', 'value']
959
+ })
960
+ ], DyteCounter);
961
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteCounter, decorators: [{
962
+ type: Component,
963
+ args: [{
964
+ selector: 'dyte-counter',
965
+ changeDetection: ChangeDetectionStrategy.OnPush,
966
+ template: '<ng-content></ng-content>',
967
+ inputs: ['iconPack', 'minValue', 'size', 't', 'value']
968
+ }]
969
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
970
+ let DyteDebugger = class DyteDebugger {
971
+ constructor(c, r, z) {
972
+ this.z = z;
973
+ c.detach();
974
+ this.el = r.nativeElement;
975
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
976
+ }
977
+ };
978
+ DyteDebugger.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDebugger, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
979
+ DyteDebugger.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteDebugger, selector: "dyte-debugger", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
980
+ DyteDebugger = __decorate([
981
+ ProxyCmp({
982
+ defineCustomElementFn: undefined,
983
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't']
984
+ })
985
+ ], DyteDebugger);
986
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDebugger, decorators: [{
987
+ type: Component,
988
+ args: [{
989
+ selector: 'dyte-debugger',
990
+ changeDetection: ChangeDetectionStrategy.OnPush,
991
+ template: '<ng-content></ng-content>',
992
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't']
993
+ }]
994
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
995
+ let DyteDebuggerAudio = class DyteDebuggerAudio {
996
+ constructor(c, r, z) {
997
+ this.z = z;
998
+ c.detach();
999
+ this.el = r.nativeElement;
1000
+ }
1001
+ };
1002
+ DyteDebuggerAudio.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDebuggerAudio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1003
+ DyteDebuggerAudio.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteDebuggerAudio, selector: "dyte-debugger-audio", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1004
+ DyteDebuggerAudio = __decorate([
1005
+ ProxyCmp({
1006
+ defineCustomElementFn: undefined,
1007
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't']
1008
+ })
1009
+ ], DyteDebuggerAudio);
1010
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDebuggerAudio, decorators: [{
1011
+ type: Component,
1012
+ args: [{
1013
+ selector: 'dyte-debugger-audio',
1014
+ changeDetection: ChangeDetectionStrategy.OnPush,
1015
+ template: '<ng-content></ng-content>',
1016
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't']
1017
+ }]
1018
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1019
+ let DyteDebuggerScreenshare = class DyteDebuggerScreenshare {
1020
+ constructor(c, r, z) {
1021
+ this.z = z;
1022
+ c.detach();
1023
+ this.el = r.nativeElement;
1024
+ }
1025
+ };
1026
+ DyteDebuggerScreenshare.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDebuggerScreenshare, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1027
+ DyteDebuggerScreenshare.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteDebuggerScreenshare, selector: "dyte-debugger-screenshare", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1028
+ DyteDebuggerScreenshare = __decorate([
1029
+ ProxyCmp({
1030
+ defineCustomElementFn: undefined,
1031
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't']
1032
+ })
1033
+ ], DyteDebuggerScreenshare);
1034
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDebuggerScreenshare, decorators: [{
1035
+ type: Component,
1036
+ args: [{
1037
+ selector: 'dyte-debugger-screenshare',
1038
+ changeDetection: ChangeDetectionStrategy.OnPush,
1039
+ template: '<ng-content></ng-content>',
1040
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't']
1041
+ }]
1042
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1043
+ let DyteDebuggerSystem = class DyteDebuggerSystem {
1044
+ constructor(c, r, z) {
1045
+ this.z = z;
1046
+ c.detach();
1047
+ this.el = r.nativeElement;
1048
+ }
1049
+ };
1050
+ DyteDebuggerSystem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDebuggerSystem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1051
+ DyteDebuggerSystem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteDebuggerSystem, selector: "dyte-debugger-system", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1052
+ DyteDebuggerSystem = __decorate([
1053
+ ProxyCmp({
1054
+ defineCustomElementFn: undefined,
1055
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't']
1056
+ })
1057
+ ], DyteDebuggerSystem);
1058
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDebuggerSystem, decorators: [{
1059
+ type: Component,
1060
+ args: [{
1061
+ selector: 'dyte-debugger-system',
1062
+ changeDetection: ChangeDetectionStrategy.OnPush,
1063
+ template: '<ng-content></ng-content>',
1064
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't']
1065
+ }]
1066
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1067
+ let DyteDebuggerToggle = class DyteDebuggerToggle {
1068
+ constructor(c, r, z) {
1069
+ this.z = z;
1070
+ c.detach();
1071
+ this.el = r.nativeElement;
1072
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
1073
+ }
1074
+ };
1075
+ DyteDebuggerToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDebuggerToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1076
+ DyteDebuggerToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteDebuggerToggle, selector: "dyte-debugger-toggle", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1077
+ DyteDebuggerToggle = __decorate([
1078
+ ProxyCmp({
1079
+ defineCustomElementFn: undefined,
1080
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
1081
+ })
1082
+ ], DyteDebuggerToggle);
1083
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDebuggerToggle, decorators: [{
1084
+ type: Component,
1085
+ args: [{
1086
+ selector: 'dyte-debugger-toggle',
1087
+ changeDetection: ChangeDetectionStrategy.OnPush,
1088
+ template: '<ng-content></ng-content>',
1089
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
1090
+ }]
1091
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1092
+ let DyteDebuggerVideo = class DyteDebuggerVideo {
1093
+ constructor(c, r, z) {
1094
+ this.z = z;
1095
+ c.detach();
1096
+ this.el = r.nativeElement;
1097
+ }
1098
+ };
1099
+ DyteDebuggerVideo.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDebuggerVideo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1100
+ DyteDebuggerVideo.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteDebuggerVideo, selector: "dyte-debugger-video", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1101
+ DyteDebuggerVideo = __decorate([
1102
+ ProxyCmp({
1103
+ defineCustomElementFn: undefined,
1104
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't']
1105
+ })
1106
+ ], DyteDebuggerVideo);
1107
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDebuggerVideo, decorators: [{
1108
+ type: Component,
1109
+ args: [{
1110
+ selector: 'dyte-debugger-video',
1111
+ changeDetection: ChangeDetectionStrategy.OnPush,
1112
+ template: '<ng-content></ng-content>',
1113
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't']
1114
+ }]
1115
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1116
+ let DyteDialog = class DyteDialog {
1117
+ constructor(c, r, z) {
1118
+ this.z = z;
1119
+ c.detach();
1120
+ this.el = r.nativeElement;
1121
+ proxyOutputs(this, this.el, ['dyteDialogClose']);
1122
+ }
1123
+ };
1124
+ DyteDialog.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1125
+ DyteDialog.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteDialog, selector: "dyte-dialog", inputs: { config: "config", disableEscapeKey: "disableEscapeKey", hideCloseButton: "hideCloseButton", iconPack: "iconPack", meeting: "meeting", open: "open", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1126
+ DyteDialog = __decorate([
1127
+ ProxyCmp({
1128
+ defineCustomElementFn: undefined,
1129
+ inputs: ['config', 'disableEscapeKey', 'hideCloseButton', 'iconPack', 'meeting', 'open', 'size', 'states', 't']
1130
+ })
1131
+ ], DyteDialog);
1132
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDialog, decorators: [{
1133
+ type: Component,
1134
+ args: [{
1135
+ selector: 'dyte-dialog',
1136
+ changeDetection: ChangeDetectionStrategy.OnPush,
1137
+ template: '<ng-content></ng-content>',
1138
+ inputs: ['config', 'disableEscapeKey', 'hideCloseButton', 'iconPack', 'meeting', 'open', 'size', 'states', 't']
1139
+ }]
1140
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1141
+ let DyteDialogManager = class DyteDialogManager {
1142
+ constructor(c, r, z) {
1143
+ this.z = z;
1144
+ c.detach();
1145
+ this.el = r.nativeElement;
1146
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
1147
+ }
1148
+ };
1149
+ DyteDialogManager.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDialogManager, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1150
+ DyteDialogManager.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteDialogManager, selector: "dyte-dialog-manager", inputs: { config: "config", iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1151
+ DyteDialogManager = __decorate([
1152
+ ProxyCmp({
1153
+ defineCustomElementFn: undefined,
1154
+ inputs: ['config', 'iconPack', 'meeting', 'size', 'states', 't']
1155
+ })
1156
+ ], DyteDialogManager);
1157
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDialogManager, decorators: [{
1158
+ type: Component,
1159
+ args: [{
1160
+ selector: 'dyte-dialog-manager',
1161
+ changeDetection: ChangeDetectionStrategy.OnPush,
1162
+ template: '<ng-content></ng-content>',
1163
+ inputs: ['config', 'iconPack', 'meeting', 'size', 'states', 't']
1164
+ }]
1165
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1166
+ let DyteDraftAttachmentView = class DyteDraftAttachmentView {
1167
+ constructor(c, r, z) {
1168
+ this.z = z;
1169
+ c.detach();
1170
+ this.el = r.nativeElement;
1171
+ proxyOutputs(this, this.el, ['deleteAttachment']);
1172
+ }
1173
+ };
1174
+ DyteDraftAttachmentView.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDraftAttachmentView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1175
+ DyteDraftAttachmentView.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteDraftAttachmentView, selector: "dyte-draft-attachment-view", inputs: { attachment: "attachment", iconPack: "iconPack", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1176
+ DyteDraftAttachmentView = __decorate([
1177
+ ProxyCmp({
1178
+ defineCustomElementFn: undefined,
1179
+ inputs: ['attachment', 'iconPack', 't']
1180
+ })
1181
+ ], DyteDraftAttachmentView);
1182
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteDraftAttachmentView, decorators: [{
1183
+ type: Component,
1184
+ args: [{
1185
+ selector: 'dyte-draft-attachment-view',
1186
+ changeDetection: ChangeDetectionStrategy.OnPush,
1187
+ template: '<ng-content></ng-content>',
1188
+ inputs: ['attachment', 'iconPack', 't']
1189
+ }]
1190
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1191
+ let DyteEmojiPicker = class DyteEmojiPicker {
1192
+ constructor(c, r, z) {
1193
+ this.z = z;
1194
+ c.detach();
1195
+ this.el = r.nativeElement;
1196
+ proxyOutputs(this, this.el, ['pickerClose', 'dyteEmojiClicked']);
1197
+ }
1198
+ };
1199
+ DyteEmojiPicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteEmojiPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1200
+ DyteEmojiPicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteEmojiPicker, selector: "dyte-emoji-picker", inputs: { iconPack: "iconPack", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1201
+ DyteEmojiPicker = __decorate([
1202
+ ProxyCmp({
1203
+ defineCustomElementFn: undefined,
1204
+ inputs: ['iconPack', 't']
1205
+ })
1206
+ ], DyteEmojiPicker);
1207
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteEmojiPicker, decorators: [{
1208
+ type: Component,
1209
+ args: [{
1210
+ selector: 'dyte-emoji-picker',
1211
+ changeDetection: ChangeDetectionStrategy.OnPush,
1212
+ template: '<ng-content></ng-content>',
1213
+ inputs: ['iconPack', 't']
1214
+ }]
1215
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1216
+ let DyteEmojiPickerButton = class DyteEmojiPickerButton {
1217
+ constructor(c, r, z) {
1218
+ this.z = z;
1219
+ c.detach();
1220
+ this.el = r.nativeElement;
1221
+ }
1222
+ };
1223
+ DyteEmojiPickerButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteEmojiPickerButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1224
+ DyteEmojiPickerButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteEmojiPickerButton, selector: "dyte-emoji-picker-button", inputs: { iconPack: "iconPack", isActive: "isActive", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1225
+ DyteEmojiPickerButton = __decorate([
1226
+ ProxyCmp({
1227
+ defineCustomElementFn: undefined,
1228
+ inputs: ['iconPack', 'isActive', 't']
1229
+ })
1230
+ ], DyteEmojiPickerButton);
1231
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteEmojiPickerButton, decorators: [{
1232
+ type: Component,
1233
+ args: [{
1234
+ selector: 'dyte-emoji-picker-button',
1235
+ changeDetection: ChangeDetectionStrategy.OnPush,
1236
+ template: '<ng-content></ng-content>',
1237
+ inputs: ['iconPack', 'isActive', 't']
1238
+ }]
1239
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1240
+ let DyteEndedScreen = class DyteEndedScreen {
1241
+ constructor(c, r, z) {
1242
+ this.z = z;
1243
+ c.detach();
1244
+ this.el = r.nativeElement;
1245
+ }
1246
+ };
1247
+ DyteEndedScreen.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteEndedScreen, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1248
+ DyteEndedScreen.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteEndedScreen, selector: "dyte-ended-screen", inputs: { config: "config", iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1249
+ DyteEndedScreen = __decorate([
1250
+ ProxyCmp({
1251
+ defineCustomElementFn: undefined,
1252
+ inputs: ['config', 'iconPack', 'meeting', 'size', 'states', 't']
1253
+ })
1254
+ ], DyteEndedScreen);
1255
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteEndedScreen, decorators: [{
1256
+ type: Component,
1257
+ args: [{
1258
+ selector: 'dyte-ended-screen',
1259
+ changeDetection: ChangeDetectionStrategy.OnPush,
1260
+ template: '<ng-content></ng-content>',
1261
+ inputs: ['config', 'iconPack', 'meeting', 'size', 'states', 't']
1262
+ }]
1263
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1264
+ let DyteFileDropzone = class DyteFileDropzone {
1265
+ constructor(c, r, z) {
1266
+ this.z = z;
1267
+ c.detach();
1268
+ this.el = r.nativeElement;
1269
+ proxyOutputs(this, this.el, ['dropCallback']);
1270
+ }
1271
+ };
1272
+ DyteFileDropzone.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteFileDropzone, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1273
+ DyteFileDropzone.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteFileDropzone, selector: "dyte-file-dropzone", inputs: { hostEl: "hostEl", iconPack: "iconPack", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1274
+ DyteFileDropzone = __decorate([
1275
+ ProxyCmp({
1276
+ defineCustomElementFn: undefined,
1277
+ inputs: ['hostEl', 'iconPack', 't']
1278
+ })
1279
+ ], DyteFileDropzone);
1280
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteFileDropzone, decorators: [{
1281
+ type: Component,
1282
+ args: [{
1283
+ selector: 'dyte-file-dropzone',
1284
+ changeDetection: ChangeDetectionStrategy.OnPush,
1285
+ template: '<ng-content></ng-content>',
1286
+ inputs: ['hostEl', 'iconPack', 't']
1287
+ }]
1288
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1289
+ let DyteFileMessage = class DyteFileMessage {
1290
+ constructor(c, r, z) {
1291
+ this.z = z;
1292
+ c.detach();
1293
+ this.el = r.nativeElement;
1294
+ }
1295
+ };
1296
+ DyteFileMessage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteFileMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1297
+ DyteFileMessage.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteFileMessage, selector: "dyte-file-message", inputs: { iconPack: "iconPack", isContinued: "isContinued", message: "message", now: "now", showBubble: "showBubble", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1298
+ DyteFileMessage = __decorate([
1299
+ ProxyCmp({
1300
+ defineCustomElementFn: undefined,
1301
+ inputs: ['iconPack', 'isContinued', 'message', 'now', 'showBubble', 't']
1302
+ })
1303
+ ], DyteFileMessage);
1304
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteFileMessage, decorators: [{
1305
+ type: Component,
1306
+ args: [{
1307
+ selector: 'dyte-file-message',
1308
+ changeDetection: ChangeDetectionStrategy.OnPush,
1309
+ template: '<ng-content></ng-content>',
1310
+ inputs: ['iconPack', 'isContinued', 'message', 'now', 'showBubble', 't']
1311
+ }]
1312
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1313
+ let DyteFileMessageView = class DyteFileMessageView {
1314
+ constructor(c, r, z) {
1315
+ this.z = z;
1316
+ c.detach();
1317
+ this.el = r.nativeElement;
1318
+ }
1319
+ };
1320
+ DyteFileMessageView.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteFileMessageView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1321
+ DyteFileMessageView.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteFileMessageView, selector: "dyte-file-message-view", inputs: { iconPack: "iconPack", name: "name", size: "size", t: "t", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1322
+ DyteFileMessageView = __decorate([
1323
+ ProxyCmp({
1324
+ defineCustomElementFn: undefined,
1325
+ inputs: ['iconPack', 'name', 'size', 't', 'url']
1326
+ })
1327
+ ], DyteFileMessageView);
1328
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteFileMessageView, decorators: [{
1329
+ type: Component,
1330
+ args: [{
1331
+ selector: 'dyte-file-message-view',
1332
+ changeDetection: ChangeDetectionStrategy.OnPush,
1333
+ template: '<ng-content></ng-content>',
1334
+ inputs: ['iconPack', 'name', 'size', 't', 'url']
1335
+ }]
1336
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1337
+ let DyteFilePickerButton = class DyteFilePickerButton {
1338
+ constructor(c, r, z) {
1339
+ this.z = z;
1340
+ c.detach();
1341
+ this.el = r.nativeElement;
1342
+ proxyOutputs(this, this.el, ['fileChange']);
1343
+ }
1344
+ };
1345
+ DyteFilePickerButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteFilePickerButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1346
+ DyteFilePickerButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteFilePickerButton, selector: "dyte-file-picker-button", inputs: { filter: "filter", icon: "icon", iconPack: "iconPack", label: "label", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1347
+ DyteFilePickerButton = __decorate([
1348
+ ProxyCmp({
1349
+ defineCustomElementFn: undefined,
1350
+ inputs: ['filter', 'icon', 'iconPack', 'label', 't']
1351
+ })
1352
+ ], DyteFilePickerButton);
1353
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteFilePickerButton, decorators: [{
1354
+ type: Component,
1355
+ args: [{
1356
+ selector: 'dyte-file-picker-button',
1357
+ changeDetection: ChangeDetectionStrategy.OnPush,
1358
+ template: '<ng-content></ng-content>',
1359
+ inputs: ['filter', 'icon', 'iconPack', 'label', 't']
1360
+ }]
1361
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1362
+ let DyteFullscreenToggle = class DyteFullscreenToggle {
1363
+ constructor(c, r, z) {
1364
+ this.z = z;
1365
+ c.detach();
1366
+ this.el = r.nativeElement;
1367
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
1368
+ }
1369
+ };
1370
+ DyteFullscreenToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteFullscreenToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1371
+ DyteFullscreenToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteFullscreenToggle, selector: "dyte-fullscreen-toggle", inputs: { iconPack: "iconPack", size: "size", states: "states", t: "t", targetElement: "targetElement", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1372
+ DyteFullscreenToggle = __decorate([
1373
+ ProxyCmp({
1374
+ defineCustomElementFn: undefined,
1375
+ inputs: ['iconPack', 'size', 'states', 't', 'targetElement', 'variant']
1376
+ })
1377
+ ], DyteFullscreenToggle);
1378
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteFullscreenToggle, decorators: [{
1379
+ type: Component,
1380
+ args: [{
1381
+ selector: 'dyte-fullscreen-toggle',
1382
+ changeDetection: ChangeDetectionStrategy.OnPush,
1383
+ template: '<ng-content></ng-content>',
1384
+ inputs: ['iconPack', 'size', 'states', 't', 'targetElement', 'variant']
1385
+ }]
1386
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1387
+ let DyteGrid = class DyteGrid {
1388
+ constructor(c, r, z) {
1389
+ this.z = z;
1390
+ c.detach();
1391
+ this.el = r.nativeElement;
1392
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
1393
+ }
1394
+ };
1395
+ DyteGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1396
+ DyteGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteGrid, selector: "dyte-grid", inputs: { aspectRatio: "aspectRatio", config: "config", gap: "gap", gridSize: "gridSize", iconPack: "iconPack", layout: "layout", meeting: "meeting", overrides: "overrides", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1397
+ DyteGrid = __decorate([
1398
+ ProxyCmp({
1399
+ defineCustomElementFn: undefined,
1400
+ inputs: ['aspectRatio', 'config', 'gap', 'gridSize', 'iconPack', 'layout', 'meeting', 'overrides', 'size', 'states', 't']
1401
+ })
1402
+ ], DyteGrid);
1403
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteGrid, decorators: [{
1404
+ type: Component,
1405
+ args: [{
1406
+ selector: 'dyte-grid',
1407
+ changeDetection: ChangeDetectionStrategy.OnPush,
1408
+ template: '<ng-content></ng-content>',
1409
+ inputs: ['aspectRatio', 'config', 'gap', 'gridSize', 'iconPack', 'layout', 'meeting', 'overrides', 'size', 'states', 't']
1410
+ }]
1411
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1412
+ let DyteGridPagination = class DyteGridPagination {
1413
+ constructor(c, r, z) {
1414
+ this.z = z;
1415
+ c.detach();
1416
+ this.el = r.nativeElement;
1417
+ }
1418
+ };
1419
+ DyteGridPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteGridPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1420
+ DyteGridPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteGridPagination, selector: "dyte-grid-pagination", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1421
+ DyteGridPagination = __decorate([
1422
+ ProxyCmp({
1423
+ defineCustomElementFn: undefined,
1424
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
1425
+ })
1426
+ ], DyteGridPagination);
1427
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteGridPagination, decorators: [{
1428
+ type: Component,
1429
+ args: [{
1430
+ selector: 'dyte-grid-pagination',
1431
+ changeDetection: ChangeDetectionStrategy.OnPush,
1432
+ template: '<ng-content></ng-content>',
1433
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
1434
+ }]
1435
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1436
+ let DyteHeader = class DyteHeader {
1437
+ constructor(c, r, z) {
1438
+ this.z = z;
1439
+ c.detach();
1440
+ this.el = r.nativeElement;
1441
+ }
1442
+ };
1443
+ DyteHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1444
+ DyteHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteHeader, selector: "dyte-header", inputs: { config: "config", disableRender: "disableRender", iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1445
+ DyteHeader = __decorate([
1446
+ ProxyCmp({
1447
+ defineCustomElementFn: undefined,
1448
+ inputs: ['config', 'disableRender', 'iconPack', 'meeting', 'size', 'states', 't', 'variant']
1449
+ })
1450
+ ], DyteHeader);
1451
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteHeader, decorators: [{
1452
+ type: Component,
1453
+ args: [{
1454
+ selector: 'dyte-header',
1455
+ changeDetection: ChangeDetectionStrategy.OnPush,
1456
+ template: '<ng-content></ng-content>',
1457
+ inputs: ['config', 'disableRender', 'iconPack', 'meeting', 'size', 'states', 't', 'variant']
1458
+ }]
1459
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1460
+ let DyteIcon = class DyteIcon {
1461
+ constructor(c, r, z) {
1462
+ this.z = z;
1463
+ c.detach();
1464
+ this.el = r.nativeElement;
1465
+ }
1466
+ };
1467
+ DyteIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1468
+ DyteIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteIcon, selector: "dyte-icon", inputs: { icon: "icon", iconPack: "iconPack", size: "size", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1469
+ DyteIcon = __decorate([
1470
+ ProxyCmp({
1471
+ defineCustomElementFn: undefined,
1472
+ inputs: ['icon', 'iconPack', 'size', 't', 'variant']
1473
+ })
1474
+ ], DyteIcon);
1475
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteIcon, decorators: [{
1476
+ type: Component,
1477
+ args: [{
1478
+ selector: 'dyte-icon',
1479
+ changeDetection: ChangeDetectionStrategy.OnPush,
1480
+ template: '<ng-content></ng-content>',
1481
+ inputs: ['icon', 'iconPack', 'size', 't', 'variant']
1482
+ }]
1483
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1484
+ let DyteIdleScreen = class DyteIdleScreen {
1485
+ constructor(c, r, z) {
1486
+ this.z = z;
1487
+ c.detach();
1488
+ this.el = r.nativeElement;
1489
+ }
1490
+ };
1491
+ DyteIdleScreen.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteIdleScreen, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1492
+ DyteIdleScreen.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteIdleScreen, selector: "dyte-idle-screen", inputs: { config: "config", iconPack: "iconPack", meeting: "meeting", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1493
+ DyteIdleScreen = __decorate([
1494
+ ProxyCmp({
1495
+ defineCustomElementFn: undefined,
1496
+ inputs: ['config', 'iconPack', 'meeting', 't']
1497
+ })
1498
+ ], DyteIdleScreen);
1499
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteIdleScreen, decorators: [{
1500
+ type: Component,
1501
+ args: [{
1502
+ selector: 'dyte-idle-screen',
1503
+ changeDetection: ChangeDetectionStrategy.OnPush,
1504
+ template: '<ng-content></ng-content>',
1505
+ inputs: ['config', 'iconPack', 'meeting', 't']
1506
+ }]
1507
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1508
+ let DyteImageMessage = class DyteImageMessage {
1509
+ constructor(c, r, z) {
1510
+ this.z = z;
1511
+ c.detach();
1512
+ this.el = r.nativeElement;
1513
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
1514
+ }
1515
+ };
1516
+ DyteImageMessage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteImageMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1517
+ DyteImageMessage.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteImageMessage, selector: "dyte-image-message", inputs: { iconPack: "iconPack", isContinued: "isContinued", message: "message", now: "now", showBubble: "showBubble", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1518
+ DyteImageMessage = __decorate([
1519
+ ProxyCmp({
1520
+ defineCustomElementFn: undefined,
1521
+ inputs: ['iconPack', 'isContinued', 'message', 'now', 'showBubble', 't']
1522
+ })
1523
+ ], DyteImageMessage);
1524
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteImageMessage, decorators: [{
1525
+ type: Component,
1526
+ args: [{
1527
+ selector: 'dyte-image-message',
1528
+ changeDetection: ChangeDetectionStrategy.OnPush,
1529
+ template: '<ng-content></ng-content>',
1530
+ inputs: ['iconPack', 'isContinued', 'message', 'now', 'showBubble', 't']
1531
+ }]
1532
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1533
+ let DyteImageMessageView = class DyteImageMessageView {
1534
+ constructor(c, r, z) {
1535
+ this.z = z;
1536
+ c.detach();
1537
+ this.el = r.nativeElement;
1538
+ proxyOutputs(this, this.el, ['preview']);
1539
+ }
1540
+ };
1541
+ DyteImageMessageView.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteImageMessageView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1542
+ DyteImageMessageView.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteImageMessageView, selector: "dyte-image-message-view", inputs: { iconPack: "iconPack", t: "t", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1543
+ DyteImageMessageView = __decorate([
1544
+ ProxyCmp({
1545
+ defineCustomElementFn: undefined,
1546
+ inputs: ['iconPack', 't', 'url']
1547
+ })
1548
+ ], DyteImageMessageView);
1549
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteImageMessageView, decorators: [{
1550
+ type: Component,
1551
+ args: [{
1552
+ selector: 'dyte-image-message-view',
1553
+ changeDetection: ChangeDetectionStrategy.OnPush,
1554
+ template: '<ng-content></ng-content>',
1555
+ inputs: ['iconPack', 't', 'url']
1556
+ }]
1557
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1558
+ let DyteImageViewer = class DyteImageViewer {
1559
+ constructor(c, r, z) {
1560
+ this.z = z;
1561
+ c.detach();
1562
+ this.el = r.nativeElement;
1563
+ proxyOutputs(this, this.el, ['close']);
1564
+ }
1565
+ };
1566
+ DyteImageViewer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteImageViewer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1567
+ DyteImageViewer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteImageViewer, selector: "dyte-image-viewer", inputs: { iconPack: "iconPack", image: "image", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1568
+ DyteImageViewer = __decorate([
1569
+ ProxyCmp({
1570
+ defineCustomElementFn: undefined,
1571
+ inputs: ['iconPack', 'image', 'size', 't']
1572
+ })
1573
+ ], DyteImageViewer);
1574
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteImageViewer, decorators: [{
1575
+ type: Component,
1576
+ args: [{
1577
+ selector: 'dyte-image-viewer',
1578
+ changeDetection: ChangeDetectionStrategy.OnPush,
1579
+ template: '<ng-content></ng-content>',
1580
+ inputs: ['iconPack', 'image', 'size', 't']
1581
+ }]
1582
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1583
+ let DyteInformationTooltip = class DyteInformationTooltip {
1584
+ constructor(c, r, z) {
1585
+ this.z = z;
1586
+ c.detach();
1587
+ this.el = r.nativeElement;
1588
+ }
1589
+ };
1590
+ DyteInformationTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteInformationTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1591
+ DyteInformationTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteInformationTooltip, selector: "dyte-information-tooltip", inputs: { iconPack: "iconPack" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1592
+ DyteInformationTooltip = __decorate([
1593
+ ProxyCmp({
1594
+ defineCustomElementFn: undefined,
1595
+ inputs: ['iconPack']
1596
+ })
1597
+ ], DyteInformationTooltip);
1598
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteInformationTooltip, decorators: [{
1599
+ type: Component,
1600
+ args: [{
1601
+ selector: 'dyte-information-tooltip',
1602
+ changeDetection: ChangeDetectionStrategy.OnPush,
1603
+ template: '<ng-content></ng-content>',
1604
+ inputs: ['iconPack']
1605
+ }]
1606
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1607
+ let DyteJoinStage = class DyteJoinStage {
1608
+ constructor(c, r, z) {
1609
+ this.z = z;
1610
+ c.detach();
1611
+ this.el = r.nativeElement;
1612
+ proxyOutputs(this, this.el, ['dyteStateUpdate', 'dyteJoinStage', 'dyteLeaveStage']);
1613
+ }
1614
+ };
1615
+ DyteJoinStage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteJoinStage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1616
+ DyteJoinStage.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteJoinStage, selector: "dyte-join-stage", inputs: { config: "config", dataConfig: "dataConfig", iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1617
+ DyteJoinStage = __decorate([
1618
+ ProxyCmp({
1619
+ defineCustomElementFn: undefined,
1620
+ inputs: ['config', 'dataConfig', 'iconPack', 'meeting', 'size', 'states', 't']
1621
+ })
1622
+ ], DyteJoinStage);
1623
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteJoinStage, decorators: [{
1624
+ type: Component,
1625
+ args: [{
1626
+ selector: 'dyte-join-stage',
1627
+ changeDetection: ChangeDetectionStrategy.OnPush,
1628
+ template: '<ng-content></ng-content>',
1629
+ inputs: ['config', 'dataConfig', 'iconPack', 'meeting', 'size', 'states', 't']
1630
+ }]
1631
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1632
+ let DyteLeaveButton = class DyteLeaveButton {
1633
+ constructor(c, r, z) {
1634
+ this.z = z;
1635
+ c.detach();
1636
+ this.el = r.nativeElement;
1637
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
1638
+ }
1639
+ };
1640
+ DyteLeaveButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteLeaveButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1641
+ DyteLeaveButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteLeaveButton, selector: "dyte-leave-button", inputs: { iconPack: "iconPack", size: "size", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1642
+ DyteLeaveButton = __decorate([
1643
+ ProxyCmp({
1644
+ defineCustomElementFn: undefined,
1645
+ inputs: ['iconPack', 'size', 't', 'variant']
1646
+ })
1647
+ ], DyteLeaveButton);
1648
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteLeaveButton, decorators: [{
1649
+ type: Component,
1650
+ args: [{
1651
+ selector: 'dyte-leave-button',
1652
+ changeDetection: ChangeDetectionStrategy.OnPush,
1653
+ template: '<ng-content></ng-content>',
1654
+ inputs: ['iconPack', 'size', 't', 'variant']
1655
+ }]
1656
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1657
+ let DyteLeaveMeeting = class DyteLeaveMeeting {
1658
+ constructor(c, r, z) {
1659
+ this.z = z;
1660
+ c.detach();
1661
+ this.el = r.nativeElement;
1662
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
1663
+ }
1664
+ };
1665
+ DyteLeaveMeeting.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteLeaveMeeting, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1666
+ DyteLeaveMeeting.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteLeaveMeeting, selector: "dyte-leave-meeting", inputs: { iconPack: "iconPack", meeting: "meeting", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1667
+ DyteLeaveMeeting = __decorate([
1668
+ ProxyCmp({
1669
+ defineCustomElementFn: undefined,
1670
+ inputs: ['iconPack', 'meeting', 'states', 't']
1671
+ })
1672
+ ], DyteLeaveMeeting);
1673
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteLeaveMeeting, decorators: [{
1674
+ type: Component,
1675
+ args: [{
1676
+ selector: 'dyte-leave-meeting',
1677
+ changeDetection: ChangeDetectionStrategy.OnPush,
1678
+ template: '<ng-content></ng-content>',
1679
+ inputs: ['iconPack', 'meeting', 'states', 't']
1680
+ }]
1681
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1682
+ let DyteLivestreamIndicator = class DyteLivestreamIndicator {
1683
+ constructor(c, r, z) {
1684
+ this.z = z;
1685
+ c.detach();
1686
+ this.el = r.nativeElement;
1687
+ }
1688
+ };
1689
+ DyteLivestreamIndicator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteLivestreamIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1690
+ DyteLivestreamIndicator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteLivestreamIndicator, selector: "dyte-livestream-indicator", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1691
+ DyteLivestreamIndicator = __decorate([
1692
+ ProxyCmp({
1693
+ defineCustomElementFn: undefined,
1694
+ inputs: ['iconPack', 'meeting', 'size', 't']
1695
+ })
1696
+ ], DyteLivestreamIndicator);
1697
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteLivestreamIndicator, decorators: [{
1698
+ type: Component,
1699
+ args: [{
1700
+ selector: 'dyte-livestream-indicator',
1701
+ changeDetection: ChangeDetectionStrategy.OnPush,
1702
+ template: '<ng-content></ng-content>',
1703
+ inputs: ['iconPack', 'meeting', 'size', 't']
1704
+ }]
1705
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1706
+ let DyteLivestreamPlayer = class DyteLivestreamPlayer {
1707
+ constructor(c, r, z) {
1708
+ this.z = z;
1709
+ c.detach();
1710
+ this.el = r.nativeElement;
1711
+ proxyOutputs(this, this.el, ['dyteAPIError']);
1712
+ }
1713
+ };
1714
+ DyteLivestreamPlayer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteLivestreamPlayer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1715
+ DyteLivestreamPlayer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteLivestreamPlayer, selector: "dyte-livestream-player", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1716
+ DyteLivestreamPlayer = __decorate([
1717
+ ProxyCmp({
1718
+ defineCustomElementFn: undefined,
1719
+ inputs: ['iconPack', 'meeting', 'size', 't']
1720
+ })
1721
+ ], DyteLivestreamPlayer);
1722
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteLivestreamPlayer, decorators: [{
1723
+ type: Component,
1724
+ args: [{
1725
+ selector: 'dyte-livestream-player',
1726
+ changeDetection: ChangeDetectionStrategy.OnPush,
1727
+ template: '<ng-content></ng-content>',
1728
+ inputs: ['iconPack', 'meeting', 'size', 't']
1729
+ }]
1730
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1731
+ let DyteLivestreamToggle = class DyteLivestreamToggle {
1732
+ constructor(c, r, z) {
1733
+ this.z = z;
1734
+ c.detach();
1735
+ this.el = r.nativeElement;
1736
+ proxyOutputs(this, this.el, ['dyteStateUpdate', 'dyteAPIError']);
1737
+ }
1738
+ };
1739
+ DyteLivestreamToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteLivestreamToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1740
+ DyteLivestreamToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteLivestreamToggle, selector: "dyte-livestream-toggle", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1741
+ DyteLivestreamToggle = __decorate([
1742
+ ProxyCmp({
1743
+ defineCustomElementFn: undefined,
1744
+ inputs: ['iconPack', 'meeting', 'size', 't', 'variant']
1745
+ })
1746
+ ], DyteLivestreamToggle);
1747
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteLivestreamToggle, decorators: [{
1748
+ type: Component,
1749
+ args: [{
1750
+ selector: 'dyte-livestream-toggle',
1751
+ changeDetection: ChangeDetectionStrategy.OnPush,
1752
+ template: '<ng-content></ng-content>',
1753
+ inputs: ['iconPack', 'meeting', 'size', 't', 'variant']
1754
+ }]
1755
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1756
+ let DyteLogo = class DyteLogo {
1757
+ constructor(c, r, z) {
1758
+ this.z = z;
1759
+ c.detach();
1760
+ this.el = r.nativeElement;
1761
+ }
1762
+ };
1763
+ DyteLogo.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteLogo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1764
+ DyteLogo.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteLogo, selector: "dyte-logo", inputs: { config: "config", logoUrl: "logoUrl", meeting: "meeting", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1765
+ DyteLogo = __decorate([
1766
+ ProxyCmp({
1767
+ defineCustomElementFn: undefined,
1768
+ inputs: ['config', 'logoUrl', 'meeting', 't']
1769
+ })
1770
+ ], DyteLogo);
1771
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteLogo, decorators: [{
1772
+ type: Component,
1773
+ args: [{
1774
+ selector: 'dyte-logo',
1775
+ changeDetection: ChangeDetectionStrategy.OnPush,
1776
+ template: '<ng-content></ng-content>',
1777
+ inputs: ['config', 'logoUrl', 'meeting', 't']
1778
+ }]
1779
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1780
+ let DyteMarkdownView = class DyteMarkdownView {
1781
+ constructor(c, r, z) {
1782
+ this.z = z;
1783
+ c.detach();
1784
+ this.el = r.nativeElement;
1785
+ }
1786
+ };
1787
+ DyteMarkdownView.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMarkdownView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1788
+ DyteMarkdownView.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteMarkdownView, selector: "dyte-markdown-view", inputs: { maxLength: "maxLength", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1789
+ DyteMarkdownView = __decorate([
1790
+ ProxyCmp({
1791
+ defineCustomElementFn: undefined,
1792
+ inputs: ['maxLength', 'text']
1793
+ })
1794
+ ], DyteMarkdownView);
1795
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMarkdownView, decorators: [{
1796
+ type: Component,
1797
+ args: [{
1798
+ selector: 'dyte-markdown-view',
1799
+ changeDetection: ChangeDetectionStrategy.OnPush,
1800
+ template: '<ng-content></ng-content>',
1801
+ inputs: ['maxLength', 'text']
1802
+ }]
1803
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1804
+ let DyteMeeting = class DyteMeeting {
1805
+ constructor(c, r, z) {
1806
+ this.z = z;
1807
+ c.detach();
1808
+ this.el = r.nativeElement;
1809
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
1810
+ }
1811
+ };
1812
+ DyteMeeting.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMeeting, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1813
+ DyteMeeting.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteMeeting, selector: "dyte-meeting", inputs: { applyDesignSystem: "applyDesignSystem", config: "config", gridLayout: "gridLayout", iconPackUrl: "iconPackUrl", leaveOnUnmount: "leaveOnUnmount", loadConfigFromPreset: "loadConfigFromPreset", meeting: "meeting", mode: "mode", showSetupScreen: "showSetupScreen", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1814
+ DyteMeeting = __decorate([
1815
+ ProxyCmp({
1816
+ defineCustomElementFn: undefined,
1817
+ inputs: ['applyDesignSystem', 'config', 'gridLayout', 'iconPackUrl', 'leaveOnUnmount', 'loadConfigFromPreset', 'meeting', 'mode', 'showSetupScreen', 'size', 't']
1818
+ })
1819
+ ], DyteMeeting);
1820
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMeeting, decorators: [{
1821
+ type: Component,
1822
+ args: [{
1823
+ selector: 'dyte-meeting',
1824
+ changeDetection: ChangeDetectionStrategy.OnPush,
1825
+ template: '<ng-content></ng-content>',
1826
+ inputs: ['applyDesignSystem', 'config', 'gridLayout', 'iconPackUrl', 'leaveOnUnmount', 'loadConfigFromPreset', 'meeting', 'mode', 'showSetupScreen', 'size', 't']
1827
+ }]
1828
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1829
+ let DyteMeetingTitle = class DyteMeetingTitle {
1830
+ constructor(c, r, z) {
1831
+ this.z = z;
1832
+ c.detach();
1833
+ this.el = r.nativeElement;
1834
+ }
1835
+ };
1836
+ DyteMeetingTitle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMeetingTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1837
+ DyteMeetingTitle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteMeetingTitle, selector: "dyte-meeting-title", inputs: { iconPack: "iconPack", meeting: "meeting", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1838
+ DyteMeetingTitle = __decorate([
1839
+ ProxyCmp({
1840
+ defineCustomElementFn: undefined,
1841
+ inputs: ['iconPack', 'meeting', 't']
1842
+ })
1843
+ ], DyteMeetingTitle);
1844
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMeetingTitle, decorators: [{
1845
+ type: Component,
1846
+ args: [{
1847
+ selector: 'dyte-meeting-title',
1848
+ changeDetection: ChangeDetectionStrategy.OnPush,
1849
+ template: '<ng-content></ng-content>',
1850
+ inputs: ['iconPack', 'meeting', 't']
1851
+ }]
1852
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1853
+ let DyteMenu = class DyteMenu {
1854
+ constructor(c, r, z) {
1855
+ this.z = z;
1856
+ c.detach();
1857
+ this.el = r.nativeElement;
1858
+ }
1859
+ };
1860
+ DyteMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1861
+ DyteMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteMenu, selector: "dyte-menu", inputs: { iconPack: "iconPack", offset: "offset", placement: "placement", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1862
+ DyteMenu = __decorate([
1863
+ ProxyCmp({
1864
+ defineCustomElementFn: undefined,
1865
+ inputs: ['iconPack', 'offset', 'placement', 'size', 't']
1866
+ })
1867
+ ], DyteMenu);
1868
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMenu, decorators: [{
1869
+ type: Component,
1870
+ args: [{
1871
+ selector: 'dyte-menu',
1872
+ changeDetection: ChangeDetectionStrategy.OnPush,
1873
+ template: '<ng-content></ng-content>',
1874
+ inputs: ['iconPack', 'offset', 'placement', 'size', 't']
1875
+ }]
1876
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1877
+ let DyteMenuItem = class DyteMenuItem {
1878
+ constructor(c, r, z) {
1879
+ this.z = z;
1880
+ c.detach();
1881
+ this.el = r.nativeElement;
1882
+ }
1883
+ };
1884
+ DyteMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1885
+ DyteMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteMenuItem, selector: "dyte-menu-item", inputs: { iconPack: "iconPack", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1886
+ DyteMenuItem = __decorate([
1887
+ ProxyCmp({
1888
+ defineCustomElementFn: undefined,
1889
+ inputs: ['iconPack', 'size', 't']
1890
+ })
1891
+ ], DyteMenuItem);
1892
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMenuItem, decorators: [{
1893
+ type: Component,
1894
+ args: [{
1895
+ selector: 'dyte-menu-item',
1896
+ changeDetection: ChangeDetectionStrategy.OnPush,
1897
+ template: '<ng-content></ng-content>',
1898
+ inputs: ['iconPack', 'size', 't']
1899
+ }]
1900
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1901
+ let DyteMenuList = class DyteMenuList {
1902
+ constructor(c, r, z) {
1903
+ this.z = z;
1904
+ c.detach();
1905
+ this.el = r.nativeElement;
1906
+ }
1907
+ };
1908
+ DyteMenuList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMenuList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1909
+ DyteMenuList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteMenuList, selector: "dyte-menu-list", inputs: { iconPack: "iconPack", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1910
+ DyteMenuList = __decorate([
1911
+ ProxyCmp({
1912
+ defineCustomElementFn: undefined,
1913
+ inputs: ['iconPack', 't']
1914
+ })
1915
+ ], DyteMenuList);
1916
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMenuList, decorators: [{
1917
+ type: Component,
1918
+ args: [{
1919
+ selector: 'dyte-menu-list',
1920
+ changeDetection: ChangeDetectionStrategy.OnPush,
1921
+ template: '<ng-content></ng-content>',
1922
+ inputs: ['iconPack', 't']
1923
+ }]
1924
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1925
+ let DyteMessageListView = class DyteMessageListView {
1926
+ constructor(c, r, z) {
1927
+ this.z = z;
1928
+ c.detach();
1929
+ this.el = r.nativeElement;
1930
+ }
1931
+ };
1932
+ DyteMessageListView.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMessageListView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1933
+ DyteMessageListView.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteMessageListView, selector: "dyte-message-list-view", inputs: { estimateItemSize: "estimateItemSize", iconPack: "iconPack", loadMore: "loadMore", messages: "messages", renderer: "renderer", visibleItemsCount: "visibleItemsCount" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1934
+ DyteMessageListView = __decorate([
1935
+ ProxyCmp({
1936
+ defineCustomElementFn: undefined,
1937
+ inputs: ['estimateItemSize', 'iconPack', 'loadMore', 'messages', 'renderer', 'visibleItemsCount']
1938
+ })
1939
+ ], DyteMessageListView);
1940
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMessageListView, decorators: [{
1941
+ type: Component,
1942
+ args: [{
1943
+ selector: 'dyte-message-list-view',
1944
+ changeDetection: ChangeDetectionStrategy.OnPush,
1945
+ template: '<ng-content></ng-content>',
1946
+ inputs: ['estimateItemSize', 'iconPack', 'loadMore', 'messages', 'renderer', 'visibleItemsCount']
1947
+ }]
1948
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1949
+ let DyteMessageView = class DyteMessageView {
1950
+ constructor(c, r, z) {
1951
+ this.z = z;
1952
+ c.detach();
1953
+ this.el = r.nativeElement;
1954
+ proxyOutputs(this, this.el, ['action']);
1955
+ }
1956
+ };
1957
+ DyteMessageView.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMessageView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1958
+ DyteMessageView.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteMessageView, selector: "dyte-message-view", inputs: { actions: "actions", authorName: "authorName", avatarUrl: "avatarUrl", hideAuthorName: "hideAuthorName", hideAvatar: "hideAvatar", hideMetadata: "hideMetadata", iconPack: "iconPack", time: "time", variant: "variant", viewType: "viewType" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1959
+ DyteMessageView = __decorate([
1960
+ ProxyCmp({
1961
+ defineCustomElementFn: undefined,
1962
+ inputs: ['actions', 'authorName', 'avatarUrl', 'hideAuthorName', 'hideAvatar', 'hideMetadata', 'iconPack', 'time', 'variant', 'viewType']
1963
+ })
1964
+ ], DyteMessageView);
1965
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMessageView, decorators: [{
1966
+ type: Component,
1967
+ args: [{
1968
+ selector: 'dyte-message-view',
1969
+ changeDetection: ChangeDetectionStrategy.OnPush,
1970
+ template: '<ng-content></ng-content>',
1971
+ inputs: ['actions', 'authorName', 'avatarUrl', 'hideAuthorName', 'hideAvatar', 'hideMetadata', 'iconPack', 'time', 'variant', 'viewType']
1972
+ }]
1973
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1974
+ let DyteMicToggle = class DyteMicToggle {
1975
+ constructor(c, r, z) {
1976
+ this.z = z;
1977
+ c.detach();
1978
+ this.el = r.nativeElement;
1979
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
1980
+ }
1981
+ };
1982
+ DyteMicToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMicToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1983
+ DyteMicToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteMicToggle, selector: "dyte-mic-toggle", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1984
+ DyteMicToggle = __decorate([
1985
+ ProxyCmp({
1986
+ defineCustomElementFn: undefined,
1987
+ inputs: ['iconPack', 'meeting', 'size', 't', 'variant']
1988
+ })
1989
+ ], DyteMicToggle);
1990
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMicToggle, decorators: [{
1991
+ type: Component,
1992
+ args: [{
1993
+ selector: 'dyte-mic-toggle',
1994
+ changeDetection: ChangeDetectionStrategy.OnPush,
1995
+ template: '<ng-content></ng-content>',
1996
+ inputs: ['iconPack', 'meeting', 'size', 't', 'variant']
1997
+ }]
1998
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1999
+ let DyteMicrophoneSelector = class DyteMicrophoneSelector {
2000
+ constructor(c, r, z) {
2001
+ this.z = z;
2002
+ c.detach();
2003
+ this.el = r.nativeElement;
2004
+ }
2005
+ };
2006
+ DyteMicrophoneSelector.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMicrophoneSelector, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2007
+ DyteMicrophoneSelector.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteMicrophoneSelector, selector: "dyte-microphone-selector", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2008
+ DyteMicrophoneSelector = __decorate([
2009
+ ProxyCmp({
2010
+ defineCustomElementFn: undefined,
2011
+ inputs: ['iconPack', 'meeting', 'size', 't', 'variant']
2012
+ })
2013
+ ], DyteMicrophoneSelector);
2014
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMicrophoneSelector, decorators: [{
2015
+ type: Component,
2016
+ args: [{
2017
+ selector: 'dyte-microphone-selector',
2018
+ changeDetection: ChangeDetectionStrategy.OnPush,
2019
+ template: '<ng-content></ng-content>',
2020
+ inputs: ['iconPack', 'meeting', 'size', 't', 'variant']
2021
+ }]
2022
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2023
+ let DyteMixedGrid = class DyteMixedGrid {
2024
+ constructor(c, r, z) {
2025
+ this.z = z;
2026
+ c.detach();
2027
+ this.el = r.nativeElement;
2028
+ }
2029
+ };
2030
+ DyteMixedGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMixedGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2031
+ DyteMixedGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteMixedGrid, selector: "dyte-mixed-grid", inputs: { aspectRatio: "aspectRatio", config: "config", gap: "gap", gridSize: "gridSize", iconPack: "iconPack", layout: "layout", meeting: "meeting", participants: "participants", pinnedParticipants: "pinnedParticipants", plugins: "plugins", screenShareParticipants: "screenShareParticipants", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2032
+ DyteMixedGrid = __decorate([
2033
+ ProxyCmp({
2034
+ defineCustomElementFn: undefined,
2035
+ inputs: ['aspectRatio', 'config', 'gap', 'gridSize', 'iconPack', 'layout', 'meeting', 'participants', 'pinnedParticipants', 'plugins', 'screenShareParticipants', 'size', 'states', 't']
2036
+ })
2037
+ ], DyteMixedGrid);
2038
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMixedGrid, decorators: [{
2039
+ type: Component,
2040
+ args: [{
2041
+ selector: 'dyte-mixed-grid',
2042
+ changeDetection: ChangeDetectionStrategy.OnPush,
2043
+ template: '<ng-content></ng-content>',
2044
+ inputs: ['aspectRatio', 'config', 'gap', 'gridSize', 'iconPack', 'layout', 'meeting', 'participants', 'pinnedParticipants', 'plugins', 'screenShareParticipants', 'size', 'states', 't']
2045
+ }]
2046
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2047
+ let DyteMoreToggle = class DyteMoreToggle {
2048
+ constructor(c, r, z) {
2049
+ this.z = z;
2050
+ c.detach();
2051
+ this.el = r.nativeElement;
2052
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
2053
+ }
2054
+ };
2055
+ DyteMoreToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMoreToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2056
+ DyteMoreToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteMoreToggle, selector: "dyte-more-toggle", inputs: { iconPack: "iconPack", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2057
+ DyteMoreToggle = __decorate([
2058
+ ProxyCmp({
2059
+ defineCustomElementFn: undefined,
2060
+ inputs: ['iconPack', 'size', 'states', 't']
2061
+ })
2062
+ ], DyteMoreToggle);
2063
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMoreToggle, decorators: [{
2064
+ type: Component,
2065
+ args: [{
2066
+ selector: 'dyte-more-toggle',
2067
+ changeDetection: ChangeDetectionStrategy.OnPush,
2068
+ template: '<ng-content></ng-content>',
2069
+ inputs: ['iconPack', 'size', 'states', 't']
2070
+ }]
2071
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2072
+ let DyteMuteAllButton = class DyteMuteAllButton {
2073
+ constructor(c, r, z) {
2074
+ this.z = z;
2075
+ c.detach();
2076
+ this.el = r.nativeElement;
2077
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
2078
+ }
2079
+ };
2080
+ DyteMuteAllButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMuteAllButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2081
+ DyteMuteAllButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteMuteAllButton, selector: "dyte-mute-all-button", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2082
+ DyteMuteAllButton = __decorate([
2083
+ ProxyCmp({
2084
+ defineCustomElementFn: undefined,
2085
+ inputs: ['iconPack', 'meeting', 'size', 't', 'variant']
2086
+ })
2087
+ ], DyteMuteAllButton);
2088
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMuteAllButton, decorators: [{
2089
+ type: Component,
2090
+ args: [{
2091
+ selector: 'dyte-mute-all-button',
2092
+ changeDetection: ChangeDetectionStrategy.OnPush,
2093
+ template: '<ng-content></ng-content>',
2094
+ inputs: ['iconPack', 'meeting', 'size', 't', 'variant']
2095
+ }]
2096
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2097
+ let DyteMuteAllConfirmation = class DyteMuteAllConfirmation {
2098
+ constructor(c, r, z) {
2099
+ this.z = z;
2100
+ c.detach();
2101
+ this.el = r.nativeElement;
2102
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
2103
+ }
2104
+ };
2105
+ DyteMuteAllConfirmation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMuteAllConfirmation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2106
+ DyteMuteAllConfirmation.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteMuteAllConfirmation, selector: "dyte-mute-all-confirmation", inputs: { iconPack: "iconPack", meeting: "meeting", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2107
+ DyteMuteAllConfirmation = __decorate([
2108
+ ProxyCmp({
2109
+ defineCustomElementFn: undefined,
2110
+ inputs: ['iconPack', 'meeting', 'states', 't']
2111
+ })
2112
+ ], DyteMuteAllConfirmation);
2113
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteMuteAllConfirmation, decorators: [{
2114
+ type: Component,
2115
+ args: [{
2116
+ selector: 'dyte-mute-all-confirmation',
2117
+ changeDetection: ChangeDetectionStrategy.OnPush,
2118
+ template: '<ng-content></ng-content>',
2119
+ inputs: ['iconPack', 'meeting', 'states', 't']
2120
+ }]
2121
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2122
+ let DyteNameTag = class DyteNameTag {
2123
+ constructor(c, r, z) {
2124
+ this.z = z;
2125
+ c.detach();
2126
+ this.el = r.nativeElement;
2127
+ }
2128
+ };
2129
+ DyteNameTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteNameTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2130
+ DyteNameTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteNameTag, selector: "dyte-name-tag", inputs: { iconPack: "iconPack", isScreenShare: "isScreenShare", meeting: "meeting", participant: "participant", size: "size", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2131
+ DyteNameTag = __decorate([
2132
+ ProxyCmp({
2133
+ defineCustomElementFn: undefined,
2134
+ inputs: ['iconPack', 'isScreenShare', 'meeting', 'participant', 'size', 't', 'variant']
2135
+ })
2136
+ ], DyteNameTag);
2137
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteNameTag, decorators: [{
2138
+ type: Component,
2139
+ args: [{
2140
+ selector: 'dyte-name-tag',
2141
+ changeDetection: ChangeDetectionStrategy.OnPush,
2142
+ template: '<ng-content></ng-content>',
2143
+ inputs: ['iconPack', 'isScreenShare', 'meeting', 'participant', 'size', 't', 'variant']
2144
+ }]
2145
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2146
+ let DyteNetworkIndicator = class DyteNetworkIndicator {
2147
+ constructor(c, r, z) {
2148
+ this.z = z;
2149
+ c.detach();
2150
+ this.el = r.nativeElement;
2151
+ }
2152
+ };
2153
+ DyteNetworkIndicator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteNetworkIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2154
+ DyteNetworkIndicator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteNetworkIndicator, selector: "dyte-network-indicator", inputs: { iconPack: "iconPack", isScreenShare: "isScreenShare", meeting: "meeting", participant: "participant", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2155
+ DyteNetworkIndicator = __decorate([
2156
+ ProxyCmp({
2157
+ defineCustomElementFn: undefined,
2158
+ inputs: ['iconPack', 'isScreenShare', 'meeting', 'participant', 't']
2159
+ })
2160
+ ], DyteNetworkIndicator);
2161
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteNetworkIndicator, decorators: [{
2162
+ type: Component,
2163
+ args: [{
2164
+ selector: 'dyte-network-indicator',
2165
+ changeDetection: ChangeDetectionStrategy.OnPush,
2166
+ template: '<ng-content></ng-content>',
2167
+ inputs: ['iconPack', 'isScreenShare', 'meeting', 'participant', 't']
2168
+ }]
2169
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2170
+ let DyteNotification = class DyteNotification {
2171
+ constructor(c, r, z) {
2172
+ this.z = z;
2173
+ c.detach();
2174
+ this.el = r.nativeElement;
2175
+ proxyOutputs(this, this.el, ['dyteNotificationDismiss']);
2176
+ }
2177
+ };
2178
+ DyteNotification.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2179
+ DyteNotification.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteNotification, selector: "dyte-notification", inputs: { iconPack: "iconPack", notification: "notification", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2180
+ DyteNotification = __decorate([
2181
+ ProxyCmp({
2182
+ defineCustomElementFn: undefined,
2183
+ inputs: ['iconPack', 'notification', 'size', 't']
2184
+ })
2185
+ ], DyteNotification);
2186
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteNotification, decorators: [{
2187
+ type: Component,
2188
+ args: [{
2189
+ selector: 'dyte-notification',
2190
+ changeDetection: ChangeDetectionStrategy.OnPush,
2191
+ template: '<ng-content></ng-content>',
2192
+ inputs: ['iconPack', 'notification', 'size', 't']
2193
+ }]
2194
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2195
+ let DyteNotifications = class DyteNotifications {
2196
+ constructor(c, r, z) {
2197
+ this.z = z;
2198
+ c.detach();
2199
+ this.el = r.nativeElement;
2200
+ }
2201
+ };
2202
+ DyteNotifications.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteNotifications, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2203
+ DyteNotifications.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteNotifications, selector: "dyte-notifications", inputs: { config: "config", iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2204
+ DyteNotifications = __decorate([
2205
+ ProxyCmp({
2206
+ defineCustomElementFn: undefined,
2207
+ inputs: ['config', 'iconPack', 'meeting', 'size', 'states', 't']
2208
+ })
2209
+ ], DyteNotifications);
2210
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteNotifications, decorators: [{
2211
+ type: Component,
2212
+ args: [{
2213
+ selector: 'dyte-notifications',
2214
+ changeDetection: ChangeDetectionStrategy.OnPush,
2215
+ template: '<ng-content></ng-content>',
2216
+ inputs: ['config', 'iconPack', 'meeting', 'size', 'states', 't']
2217
+ }]
2218
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2219
+ let DyteOverlayModal = class DyteOverlayModal {
2220
+ constructor(c, r, z) {
2221
+ this.z = z;
2222
+ c.detach();
2223
+ this.el = r.nativeElement;
2224
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
2225
+ }
2226
+ };
2227
+ DyteOverlayModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteOverlayModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2228
+ DyteOverlayModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteOverlayModal, selector: "dyte-overlay-modal", inputs: { iconPack: "iconPack", meeting: "meeting", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2229
+ DyteOverlayModal = __decorate([
2230
+ ProxyCmp({
2231
+ defineCustomElementFn: undefined,
2232
+ inputs: ['iconPack', 'meeting', 'states', 't']
2233
+ })
2234
+ ], DyteOverlayModal);
2235
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteOverlayModal, decorators: [{
2236
+ type: Component,
2237
+ args: [{
2238
+ selector: 'dyte-overlay-modal',
2239
+ changeDetection: ChangeDetectionStrategy.OnPush,
2240
+ template: '<ng-content></ng-content>',
2241
+ inputs: ['iconPack', 'meeting', 'states', 't']
2242
+ }]
2243
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2244
+ let DytePaginatedList = class DytePaginatedList {
2245
+ constructor(c, r, z) {
2246
+ this.z = z;
2247
+ c.detach();
2248
+ this.el = r.nativeElement;
2249
+ }
2250
+ };
2251
+ DytePaginatedList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePaginatedList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2252
+ DytePaginatedList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DytePaginatedList, selector: "dyte-paginated-list", inputs: { autoScroll: "autoScroll", createNodes: "createNodes", emptyListLabel: "emptyListLabel", fetchData: "fetchData", iconPack: "iconPack", pageSize: "pageSize", pagesAllowed: "pagesAllowed", selectedItemId: "selectedItemId", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2253
+ DytePaginatedList = __decorate([
2254
+ ProxyCmp({
2255
+ defineCustomElementFn: undefined,
2256
+ inputs: ['autoScroll', 'createNodes', 'emptyListLabel', 'fetchData', 'iconPack', 'pageSize', 'pagesAllowed', 'selectedItemId', 't'],
2257
+ methods: ['onNewNode', 'onNodeDelete', 'onNodeUpdate']
2258
+ })
2259
+ ], DytePaginatedList);
2260
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePaginatedList, decorators: [{
2261
+ type: Component,
2262
+ args: [{
2263
+ selector: 'dyte-paginated-list',
2264
+ changeDetection: ChangeDetectionStrategy.OnPush,
2265
+ template: '<ng-content></ng-content>',
2266
+ inputs: ['autoScroll', 'createNodes', 'emptyListLabel', 'fetchData', 'iconPack', 'pageSize', 'pagesAllowed', 'selectedItemId', 't']
2267
+ }]
2268
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2269
+ let DyteParticipant = class DyteParticipant {
2270
+ constructor(c, r, z) {
2271
+ this.z = z;
2272
+ c.detach();
2273
+ this.el = r.nativeElement;
2274
+ proxyOutputs(this, this.el, ['dyteSendNotification']);
2275
+ }
2276
+ };
2277
+ DyteParticipant.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipant, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2278
+ DyteParticipant.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteParticipant, selector: "dyte-participant", inputs: { config: "config", iconPack: "iconPack", meeting: "meeting", participant: "participant", t: "t", view: "view" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2279
+ DyteParticipant = __decorate([
2280
+ ProxyCmp({
2281
+ defineCustomElementFn: undefined,
2282
+ inputs: ['config', 'iconPack', 'meeting', 'participant', 't', 'view']
2283
+ })
2284
+ ], DyteParticipant);
2285
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipant, decorators: [{
2286
+ type: Component,
2287
+ args: [{
2288
+ selector: 'dyte-participant',
2289
+ changeDetection: ChangeDetectionStrategy.OnPush,
2290
+ template: '<ng-content></ng-content>',
2291
+ inputs: ['config', 'iconPack', 'meeting', 'participant', 't', 'view']
2292
+ }]
2293
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2294
+ let DyteParticipantCount = class DyteParticipantCount {
2295
+ constructor(c, r, z) {
2296
+ this.z = z;
2297
+ c.detach();
2298
+ this.el = r.nativeElement;
2299
+ }
2300
+ };
2301
+ DyteParticipantCount.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantCount, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2302
+ DyteParticipantCount.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteParticipantCount, selector: "dyte-participant-count", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2303
+ DyteParticipantCount = __decorate([
2304
+ ProxyCmp({
2305
+ defineCustomElementFn: undefined,
2306
+ inputs: ['iconPack', 'meeting', 'size', 't']
2307
+ })
2308
+ ], DyteParticipantCount);
2309
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantCount, decorators: [{
2310
+ type: Component,
2311
+ args: [{
2312
+ selector: 'dyte-participant-count',
2313
+ changeDetection: ChangeDetectionStrategy.OnPush,
2314
+ template: '<ng-content></ng-content>',
2315
+ inputs: ['iconPack', 'meeting', 'size', 't']
2316
+ }]
2317
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2318
+ let DyteParticipantSetup = class DyteParticipantSetup {
2319
+ constructor(c, r, z) {
2320
+ this.z = z;
2321
+ c.detach();
2322
+ this.el = r.nativeElement;
2323
+ }
2324
+ };
2325
+ DyteParticipantSetup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantSetup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2326
+ DyteParticipantSetup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteParticipantSetup, selector: "dyte-participant-setup", inputs: { config: "config", iconPack: "iconPack", isPreview: "isPreview", nameTagPosition: "nameTagPosition", participant: "participant", size: "size", states: "states", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2327
+ DyteParticipantSetup = __decorate([
2328
+ ProxyCmp({
2329
+ defineCustomElementFn: undefined,
2330
+ inputs: ['config', 'iconPack', 'isPreview', 'nameTagPosition', 'participant', 'size', 'states', 't', 'variant']
2331
+ })
2332
+ ], DyteParticipantSetup);
2333
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantSetup, decorators: [{
2334
+ type: Component,
2335
+ args: [{
2336
+ selector: 'dyte-participant-setup',
2337
+ changeDetection: ChangeDetectionStrategy.OnPush,
2338
+ template: '<ng-content></ng-content>',
2339
+ inputs: ['config', 'iconPack', 'isPreview', 'nameTagPosition', 'participant', 'size', 'states', 't', 'variant']
2340
+ }]
2341
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2342
+ let DyteParticipantTile = class DyteParticipantTile {
2343
+ constructor(c, r, z) {
2344
+ this.z = z;
2345
+ c.detach();
2346
+ this.el = r.nativeElement;
2347
+ proxyOutputs(this, this.el, ['tileLoad', 'tileUnload']);
2348
+ }
2349
+ };
2350
+ DyteParticipantTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2351
+ DyteParticipantTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteParticipantTile, selector: "dyte-participant-tile", inputs: { config: "config", iconPack: "iconPack", isPreview: "isPreview", meeting: "meeting", nameTagPosition: "nameTagPosition", participant: "participant", size: "size", states: "states", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2352
+ DyteParticipantTile = __decorate([
2353
+ ProxyCmp({
2354
+ defineCustomElementFn: undefined,
2355
+ inputs: ['config', 'iconPack', 'isPreview', 'meeting', 'nameTagPosition', 'participant', 'size', 'states', 't', 'variant']
2356
+ })
2357
+ ], DyteParticipantTile);
2358
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantTile, decorators: [{
2359
+ type: Component,
2360
+ args: [{
2361
+ selector: 'dyte-participant-tile',
2362
+ changeDetection: ChangeDetectionStrategy.OnPush,
2363
+ template: '<ng-content></ng-content>',
2364
+ inputs: ['config', 'iconPack', 'isPreview', 'meeting', 'nameTagPosition', 'participant', 'size', 'states', 't', 'variant']
2365
+ }]
2366
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2367
+ let DyteParticipants = class DyteParticipants {
2368
+ constructor(c, r, z) {
2369
+ this.z = z;
2370
+ c.detach();
2371
+ this.el = r.nativeElement;
2372
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
2373
+ }
2374
+ };
2375
+ DyteParticipants.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipants, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2376
+ DyteParticipants.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteParticipants, selector: "dyte-participants", inputs: { config: "config", defaultParticipantsTabId: "defaultParticipantsTabId", iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2377
+ DyteParticipants = __decorate([
2378
+ ProxyCmp({
2379
+ defineCustomElementFn: undefined,
2380
+ inputs: ['config', 'defaultParticipantsTabId', 'iconPack', 'meeting', 'size', 'states', 't']
2381
+ })
2382
+ ], DyteParticipants);
2383
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipants, decorators: [{
2384
+ type: Component,
2385
+ args: [{
2386
+ selector: 'dyte-participants',
2387
+ changeDetection: ChangeDetectionStrategy.OnPush,
2388
+ template: '<ng-content></ng-content>',
2389
+ inputs: ['config', 'defaultParticipantsTabId', 'iconPack', 'meeting', 'size', 'states', 't']
2390
+ }]
2391
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2392
+ let DyteParticipantsAudio = class DyteParticipantsAudio {
2393
+ constructor(c, r, z) {
2394
+ this.z = z;
2395
+ c.detach();
2396
+ this.el = r.nativeElement;
2397
+ proxyOutputs(this, this.el, ['dialogClose']);
2398
+ }
2399
+ };
2400
+ DyteParticipantsAudio.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantsAudio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2401
+ DyteParticipantsAudio.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteParticipantsAudio, selector: "dyte-participants-audio", inputs: { iconPack: "iconPack", meeting: "meeting", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2402
+ DyteParticipantsAudio = __decorate([
2403
+ ProxyCmp({
2404
+ defineCustomElementFn: undefined,
2405
+ inputs: ['iconPack', 'meeting', 't']
2406
+ })
2407
+ ], DyteParticipantsAudio);
2408
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantsAudio, decorators: [{
2409
+ type: Component,
2410
+ args: [{
2411
+ selector: 'dyte-participants-audio',
2412
+ changeDetection: ChangeDetectionStrategy.OnPush,
2413
+ template: '<ng-content></ng-content>',
2414
+ inputs: ['iconPack', 'meeting', 't']
2415
+ }]
2416
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2417
+ let DyteParticipantsStageList = class DyteParticipantsStageList {
2418
+ constructor(c, r, z) {
2419
+ this.z = z;
2420
+ c.detach();
2421
+ this.el = r.nativeElement;
2422
+ }
2423
+ };
2424
+ DyteParticipantsStageList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantsStageList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2425
+ DyteParticipantsStageList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteParticipantsStageList, selector: "dyte-participants-stage-list", inputs: { config: "config", hideHeader: "hideHeader", iconPack: "iconPack", meeting: "meeting", search: "search", size: "size", t: "t", view: "view" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2426
+ DyteParticipantsStageList = __decorate([
2427
+ ProxyCmp({
2428
+ defineCustomElementFn: undefined,
2429
+ inputs: ['config', 'hideHeader', 'iconPack', 'meeting', 'search', 'size', 't', 'view']
2430
+ })
2431
+ ], DyteParticipantsStageList);
2432
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantsStageList, decorators: [{
2433
+ type: Component,
2434
+ args: [{
2435
+ selector: 'dyte-participants-stage-list',
2436
+ changeDetection: ChangeDetectionStrategy.OnPush,
2437
+ template: '<ng-content></ng-content>',
2438
+ inputs: ['config', 'hideHeader', 'iconPack', 'meeting', 'search', 'size', 't', 'view']
2439
+ }]
2440
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2441
+ let DyteParticipantsStageQueue = class DyteParticipantsStageQueue {
2442
+ constructor(c, r, z) {
2443
+ this.z = z;
2444
+ c.detach();
2445
+ this.el = r.nativeElement;
2446
+ }
2447
+ };
2448
+ DyteParticipantsStageQueue.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantsStageQueue, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2449
+ DyteParticipantsStageQueue.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteParticipantsStageQueue, selector: "dyte-participants-stage-queue", inputs: { config: "config", iconPack: "iconPack", meeting: "meeting", size: "size", t: "t", view: "view" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2450
+ DyteParticipantsStageQueue = __decorate([
2451
+ ProxyCmp({
2452
+ defineCustomElementFn: undefined,
2453
+ inputs: ['config', 'iconPack', 'meeting', 'size', 't', 'view']
2454
+ })
2455
+ ], DyteParticipantsStageQueue);
2456
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantsStageQueue, decorators: [{
2457
+ type: Component,
2458
+ args: [{
2459
+ selector: 'dyte-participants-stage-queue',
2460
+ changeDetection: ChangeDetectionStrategy.OnPush,
2461
+ template: '<ng-content></ng-content>',
2462
+ inputs: ['config', 'iconPack', 'meeting', 'size', 't', 'view']
2463
+ }]
2464
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2465
+ let DyteParticipantsToggle = class DyteParticipantsToggle {
2466
+ constructor(c, r, z) {
2467
+ this.z = z;
2468
+ c.detach();
2469
+ this.el = r.nativeElement;
2470
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
2471
+ }
2472
+ };
2473
+ DyteParticipantsToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantsToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2474
+ DyteParticipantsToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteParticipantsToggle, selector: "dyte-participants-toggle", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2475
+ DyteParticipantsToggle = __decorate([
2476
+ ProxyCmp({
2477
+ defineCustomElementFn: undefined,
2478
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
2479
+ })
2480
+ ], DyteParticipantsToggle);
2481
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantsToggle, decorators: [{
2482
+ type: Component,
2483
+ args: [{
2484
+ selector: 'dyte-participants-toggle',
2485
+ changeDetection: ChangeDetectionStrategy.OnPush,
2486
+ template: '<ng-content></ng-content>',
2487
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
2488
+ }]
2489
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2490
+ let DyteParticipantsViewerList = class DyteParticipantsViewerList {
2491
+ constructor(c, r, z) {
2492
+ this.z = z;
2493
+ c.detach();
2494
+ this.el = r.nativeElement;
2495
+ }
2496
+ };
2497
+ DyteParticipantsViewerList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantsViewerList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2498
+ DyteParticipantsViewerList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteParticipantsViewerList, selector: "dyte-participants-viewer-list", inputs: { config: "config", hideHeader: "hideHeader", iconPack: "iconPack", meeting: "meeting", search: "search", size: "size", t: "t", view: "view" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2499
+ DyteParticipantsViewerList = __decorate([
2500
+ ProxyCmp({
2501
+ defineCustomElementFn: undefined,
2502
+ inputs: ['config', 'hideHeader', 'iconPack', 'meeting', 'search', 'size', 't', 'view']
2503
+ })
2504
+ ], DyteParticipantsViewerList);
2505
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantsViewerList, decorators: [{
2506
+ type: Component,
2507
+ args: [{
2508
+ selector: 'dyte-participants-viewer-list',
2509
+ changeDetection: ChangeDetectionStrategy.OnPush,
2510
+ template: '<ng-content></ng-content>',
2511
+ inputs: ['config', 'hideHeader', 'iconPack', 'meeting', 'search', 'size', 't', 'view']
2512
+ }]
2513
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2514
+ let DyteParticipantsWaitingList = class DyteParticipantsWaitingList {
2515
+ constructor(c, r, z) {
2516
+ this.z = z;
2517
+ c.detach();
2518
+ this.el = r.nativeElement;
2519
+ }
2520
+ };
2521
+ DyteParticipantsWaitingList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantsWaitingList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2522
+ DyteParticipantsWaitingList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteParticipantsWaitingList, selector: "dyte-participants-waiting-list", inputs: { config: "config", iconPack: "iconPack", meeting: "meeting", size: "size", t: "t", view: "view" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2523
+ DyteParticipantsWaitingList = __decorate([
2524
+ ProxyCmp({
2525
+ defineCustomElementFn: undefined,
2526
+ inputs: ['config', 'iconPack', 'meeting', 'size', 't', 'view']
2527
+ })
2528
+ ], DyteParticipantsWaitingList);
2529
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteParticipantsWaitingList, decorators: [{
2530
+ type: Component,
2531
+ args: [{
2532
+ selector: 'dyte-participants-waiting-list',
2533
+ changeDetection: ChangeDetectionStrategy.OnPush,
2534
+ template: '<ng-content></ng-content>',
2535
+ inputs: ['config', 'iconPack', 'meeting', 'size', 't', 'view']
2536
+ }]
2537
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2538
+ let DytePermissionsMessage = class DytePermissionsMessage {
2539
+ constructor(c, r, z) {
2540
+ this.z = z;
2541
+ c.detach();
2542
+ this.el = r.nativeElement;
2543
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
2544
+ }
2545
+ };
2546
+ DytePermissionsMessage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePermissionsMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2547
+ DytePermissionsMessage.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DytePermissionsMessage, selector: "dyte-permissions-message", inputs: { iconPack: "iconPack", meeting: "meeting", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2548
+ DytePermissionsMessage = __decorate([
2549
+ ProxyCmp({
2550
+ defineCustomElementFn: undefined,
2551
+ inputs: ['iconPack', 'meeting', 'states', 't']
2552
+ })
2553
+ ], DytePermissionsMessage);
2554
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePermissionsMessage, decorators: [{
2555
+ type: Component,
2556
+ args: [{
2557
+ selector: 'dyte-permissions-message',
2558
+ changeDetection: ChangeDetectionStrategy.OnPush,
2559
+ template: '<ng-content></ng-content>',
2560
+ inputs: ['iconPack', 'meeting', 'states', 't']
2561
+ }]
2562
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2563
+ let DytePipToggle = class DytePipToggle {
2564
+ constructor(c, r, z) {
2565
+ this.z = z;
2566
+ c.detach();
2567
+ this.el = r.nativeElement;
2568
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
2569
+ }
2570
+ };
2571
+ DytePipToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePipToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2572
+ DytePipToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DytePipToggle, selector: "dyte-pip-toggle", inputs: { config: "config", iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2573
+ DytePipToggle = __decorate([
2574
+ ProxyCmp({
2575
+ defineCustomElementFn: undefined,
2576
+ inputs: ['config', 'iconPack', 'meeting', 'size', 'states', 't', 'variant']
2577
+ })
2578
+ ], DytePipToggle);
2579
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePipToggle, decorators: [{
2580
+ type: Component,
2581
+ args: [{
2582
+ selector: 'dyte-pip-toggle',
2583
+ changeDetection: ChangeDetectionStrategy.OnPush,
2584
+ template: '<ng-content></ng-content>',
2585
+ inputs: ['config', 'iconPack', 'meeting', 'size', 'states', 't', 'variant']
2586
+ }]
2587
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2588
+ let DytePluginMain = class DytePluginMain {
2589
+ constructor(c, r, z) {
2590
+ this.z = z;
2591
+ c.detach();
2592
+ this.el = r.nativeElement;
2593
+ }
2594
+ };
2595
+ DytePluginMain.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePluginMain, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2596
+ DytePluginMain.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DytePluginMain, selector: "dyte-plugin-main", inputs: { iconPack: "iconPack", meeting: "meeting", plugin: "plugin", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2597
+ DytePluginMain = __decorate([
2598
+ ProxyCmp({
2599
+ defineCustomElementFn: undefined,
2600
+ inputs: ['iconPack', 'meeting', 'plugin', 't']
2601
+ })
2602
+ ], DytePluginMain);
2603
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePluginMain, decorators: [{
2604
+ type: Component,
2605
+ args: [{
2606
+ selector: 'dyte-plugin-main',
2607
+ changeDetection: ChangeDetectionStrategy.OnPush,
2608
+ template: '<ng-content></ng-content>',
2609
+ inputs: ['iconPack', 'meeting', 'plugin', 't']
2610
+ }]
2611
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2612
+ let DytePlugins = class DytePlugins {
2613
+ constructor(c, r, z) {
2614
+ this.z = z;
2615
+ c.detach();
2616
+ this.el = r.nativeElement;
2617
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
2618
+ }
2619
+ };
2620
+ DytePlugins.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePlugins, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2621
+ DytePlugins.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DytePlugins, selector: "dyte-plugins", inputs: { config: "config", iconPack: "iconPack", meeting: "meeting", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2622
+ DytePlugins = __decorate([
2623
+ ProxyCmp({
2624
+ defineCustomElementFn: undefined,
2625
+ inputs: ['config', 'iconPack', 'meeting', 'size', 't']
2626
+ })
2627
+ ], DytePlugins);
2628
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePlugins, decorators: [{
2629
+ type: Component,
2630
+ args: [{
2631
+ selector: 'dyte-plugins',
2632
+ changeDetection: ChangeDetectionStrategy.OnPush,
2633
+ template: '<ng-content></ng-content>',
2634
+ inputs: ['config', 'iconPack', 'meeting', 'size', 't']
2635
+ }]
2636
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2637
+ let DytePluginsToggle = class DytePluginsToggle {
2638
+ constructor(c, r, z) {
2639
+ this.z = z;
2640
+ c.detach();
2641
+ this.el = r.nativeElement;
2642
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
2643
+ }
2644
+ };
2645
+ DytePluginsToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePluginsToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2646
+ DytePluginsToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DytePluginsToggle, selector: "dyte-plugins-toggle", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2647
+ DytePluginsToggle = __decorate([
2648
+ ProxyCmp({
2649
+ defineCustomElementFn: undefined,
2650
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
2651
+ })
2652
+ ], DytePluginsToggle);
2653
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePluginsToggle, decorators: [{
2654
+ type: Component,
2655
+ args: [{
2656
+ selector: 'dyte-plugins-toggle',
2657
+ changeDetection: ChangeDetectionStrategy.OnPush,
2658
+ template: '<ng-content></ng-content>',
2659
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
2660
+ }]
2661
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2662
+ let DytePoll = class DytePoll {
2663
+ constructor(c, r, z) {
2664
+ this.z = z;
2665
+ c.detach();
2666
+ this.el = r.nativeElement;
2667
+ proxyOutputs(this, this.el, ['dyteVotePoll']);
2668
+ }
2669
+ };
2670
+ DytePoll.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePoll, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2671
+ DytePoll.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DytePoll, selector: "dyte-poll", inputs: { iconPack: "iconPack", permissions: "permissions", poll: "poll", self: "self", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2672
+ DytePoll = __decorate([
2673
+ ProxyCmp({
2674
+ defineCustomElementFn: undefined,
2675
+ inputs: ['iconPack', 'permissions', 'poll', 'self', 't']
2676
+ })
2677
+ ], DytePoll);
2678
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePoll, decorators: [{
2679
+ type: Component,
2680
+ args: [{
2681
+ selector: 'dyte-poll',
2682
+ changeDetection: ChangeDetectionStrategy.OnPush,
2683
+ template: '<ng-content></ng-content>',
2684
+ inputs: ['iconPack', 'permissions', 'poll', 'self', 't']
2685
+ }]
2686
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2687
+ let DytePollForm = class DytePollForm {
2688
+ constructor(c, r, z) {
2689
+ this.z = z;
2690
+ c.detach();
2691
+ this.el = r.nativeElement;
2692
+ proxyOutputs(this, this.el, ['dyteCreatePoll']);
2693
+ }
2694
+ };
2695
+ DytePollForm.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePollForm, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2696
+ DytePollForm.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DytePollForm, selector: "dyte-poll-form", inputs: { iconPack: "iconPack", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2697
+ DytePollForm = __decorate([
2698
+ ProxyCmp({
2699
+ defineCustomElementFn: undefined,
2700
+ inputs: ['iconPack', 't']
2701
+ })
2702
+ ], DytePollForm);
2703
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePollForm, decorators: [{
2704
+ type: Component,
2705
+ args: [{
2706
+ selector: 'dyte-poll-form',
2707
+ changeDetection: ChangeDetectionStrategy.OnPush,
2708
+ template: '<ng-content></ng-content>',
2709
+ inputs: ['iconPack', 't']
2710
+ }]
2711
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2712
+ let DytePolls = class DytePolls {
2713
+ constructor(c, r, z) {
2714
+ this.z = z;
2715
+ c.detach();
2716
+ this.el = r.nativeElement;
2717
+ }
2718
+ };
2719
+ DytePolls.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePolls, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2720
+ DytePolls.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DytePolls, selector: "dyte-polls", inputs: { config: "config", iconPack: "iconPack", meeting: "meeting", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2721
+ DytePolls = __decorate([
2722
+ ProxyCmp({
2723
+ defineCustomElementFn: undefined,
2724
+ inputs: ['config', 'iconPack', 'meeting', 'size', 't']
2725
+ })
2726
+ ], DytePolls);
2727
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePolls, decorators: [{
2728
+ type: Component,
2729
+ args: [{
2730
+ selector: 'dyte-polls',
2731
+ changeDetection: ChangeDetectionStrategy.OnPush,
2732
+ template: '<ng-content></ng-content>',
2733
+ inputs: ['config', 'iconPack', 'meeting', 'size', 't']
2734
+ }]
2735
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2736
+ let DytePollsToggle = class DytePollsToggle {
2737
+ constructor(c, r, z) {
2738
+ this.z = z;
2739
+ c.detach();
2740
+ this.el = r.nativeElement;
2741
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
2742
+ }
2743
+ };
2744
+ DytePollsToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePollsToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2745
+ DytePollsToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DytePollsToggle, selector: "dyte-polls-toggle", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2746
+ DytePollsToggle = __decorate([
2747
+ ProxyCmp({
2748
+ defineCustomElementFn: undefined,
2749
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
2750
+ })
2751
+ ], DytePollsToggle);
2752
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DytePollsToggle, decorators: [{
2753
+ type: Component,
2754
+ args: [{
2755
+ selector: 'dyte-polls-toggle',
2756
+ changeDetection: ChangeDetectionStrategy.OnPush,
2757
+ template: '<ng-content></ng-content>',
2758
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
2759
+ }]
2760
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2761
+ let DyteRecordingIndicator = class DyteRecordingIndicator {
2762
+ constructor(c, r, z) {
2763
+ this.z = z;
2764
+ c.detach();
2765
+ this.el = r.nativeElement;
2766
+ }
2767
+ };
2768
+ DyteRecordingIndicator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteRecordingIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2769
+ DyteRecordingIndicator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteRecordingIndicator, selector: "dyte-recording-indicator", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2770
+ DyteRecordingIndicator = __decorate([
2771
+ ProxyCmp({
2772
+ defineCustomElementFn: undefined,
2773
+ inputs: ['iconPack', 'meeting', 'size', 't']
2774
+ })
2775
+ ], DyteRecordingIndicator);
2776
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteRecordingIndicator, decorators: [{
2777
+ type: Component,
2778
+ args: [{
2779
+ selector: 'dyte-recording-indicator',
2780
+ changeDetection: ChangeDetectionStrategy.OnPush,
2781
+ template: '<ng-content></ng-content>',
2782
+ inputs: ['iconPack', 'meeting', 'size', 't']
2783
+ }]
2784
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2785
+ let DyteRecordingToggle = class DyteRecordingToggle {
2786
+ constructor(c, r, z) {
2787
+ this.z = z;
2788
+ c.detach();
2789
+ this.el = r.nativeElement;
2790
+ proxyOutputs(this, this.el, ['dyteAPIError']);
2791
+ }
2792
+ };
2793
+ DyteRecordingToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteRecordingToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2794
+ DyteRecordingToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteRecordingToggle, selector: "dyte-recording-toggle", inputs: { disabled: "disabled", iconPack: "iconPack", meeting: "meeting", size: "size", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2795
+ DyteRecordingToggle = __decorate([
2796
+ ProxyCmp({
2797
+ defineCustomElementFn: undefined,
2798
+ inputs: ['disabled', 'iconPack', 'meeting', 'size', 't', 'variant']
2799
+ })
2800
+ ], DyteRecordingToggle);
2801
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteRecordingToggle, decorators: [{
2802
+ type: Component,
2803
+ args: [{
2804
+ selector: 'dyte-recording-toggle',
2805
+ changeDetection: ChangeDetectionStrategy.OnPush,
2806
+ template: '<ng-content></ng-content>',
2807
+ inputs: ['disabled', 'iconPack', 'meeting', 'size', 't', 'variant']
2808
+ }]
2809
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2810
+ let DyteScreenShareToggle = class DyteScreenShareToggle {
2811
+ constructor(c, r, z) {
2812
+ this.z = z;
2813
+ c.detach();
2814
+ this.el = r.nativeElement;
2815
+ proxyOutputs(this, this.el, ['dyteStateUpdate', 'dyteAPIError']);
2816
+ }
2817
+ };
2818
+ DyteScreenShareToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteScreenShareToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2819
+ DyteScreenShareToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteScreenShareToggle, selector: "dyte-screen-share-toggle", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2820
+ DyteScreenShareToggle = __decorate([
2821
+ ProxyCmp({
2822
+ defineCustomElementFn: undefined,
2823
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
2824
+ })
2825
+ ], DyteScreenShareToggle);
2826
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteScreenShareToggle, decorators: [{
2827
+ type: Component,
2828
+ args: [{
2829
+ selector: 'dyte-screen-share-toggle',
2830
+ changeDetection: ChangeDetectionStrategy.OnPush,
2831
+ template: '<ng-content></ng-content>',
2832
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
2833
+ }]
2834
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2835
+ let DyteScreenshareView = class DyteScreenshareView {
2836
+ constructor(c, r, z) {
2837
+ this.z = z;
2838
+ c.detach();
2839
+ this.el = r.nativeElement;
2840
+ proxyOutputs(this, this.el, ['dyteStateUpdate', 'screensharePlay']);
2841
+ }
2842
+ };
2843
+ DyteScreenshareView.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteScreenshareView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2844
+ DyteScreenshareView.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteScreenshareView, selector: "dyte-screenshare-view", inputs: { hideFullScreenButton: "hideFullScreenButton", iconPack: "iconPack", meeting: "meeting", nameTagPosition: "nameTagPosition", participant: "participant", size: "size", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2845
+ DyteScreenshareView = __decorate([
2846
+ ProxyCmp({
2847
+ defineCustomElementFn: undefined,
2848
+ inputs: ['hideFullScreenButton', 'iconPack', 'meeting', 'nameTagPosition', 'participant', 'size', 't', 'variant']
2849
+ })
2850
+ ], DyteScreenshareView);
2851
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteScreenshareView, decorators: [{
2852
+ type: Component,
2853
+ args: [{
2854
+ selector: 'dyte-screenshare-view',
2855
+ changeDetection: ChangeDetectionStrategy.OnPush,
2856
+ template: '<ng-content></ng-content>',
2857
+ inputs: ['hideFullScreenButton', 'iconPack', 'meeting', 'nameTagPosition', 'participant', 'size', 't', 'variant']
2858
+ }]
2859
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2860
+ let DyteSettings = class DyteSettings {
2861
+ constructor(c, r, z) {
2862
+ this.z = z;
2863
+ c.detach();
2864
+ this.el = r.nativeElement;
2865
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
2866
+ }
2867
+ };
2868
+ DyteSettings.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSettings, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2869
+ DyteSettings.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteSettings, selector: "dyte-settings", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2870
+ DyteSettings = __decorate([
2871
+ ProxyCmp({
2872
+ defineCustomElementFn: undefined,
2873
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't']
2874
+ })
2875
+ ], DyteSettings);
2876
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSettings, decorators: [{
2877
+ type: Component,
2878
+ args: [{
2879
+ selector: 'dyte-settings',
2880
+ changeDetection: ChangeDetectionStrategy.OnPush,
2881
+ template: '<ng-content></ng-content>',
2882
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't']
2883
+ }]
2884
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2885
+ let DyteSettingsAudio = class DyteSettingsAudio {
2886
+ constructor(c, r, z) {
2887
+ this.z = z;
2888
+ c.detach();
2889
+ this.el = r.nativeElement;
2890
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
2891
+ }
2892
+ };
2893
+ DyteSettingsAudio.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSettingsAudio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2894
+ DyteSettingsAudio.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteSettingsAudio, selector: "dyte-settings-audio", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2895
+ DyteSettingsAudio = __decorate([
2896
+ ProxyCmp({
2897
+ defineCustomElementFn: undefined,
2898
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't']
2899
+ })
2900
+ ], DyteSettingsAudio);
2901
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSettingsAudio, decorators: [{
2902
+ type: Component,
2903
+ args: [{
2904
+ selector: 'dyte-settings-audio',
2905
+ changeDetection: ChangeDetectionStrategy.OnPush,
2906
+ template: '<ng-content></ng-content>',
2907
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't']
2908
+ }]
2909
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2910
+ let DyteSettingsToggle = class DyteSettingsToggle {
2911
+ constructor(c, r, z) {
2912
+ this.z = z;
2913
+ c.detach();
2914
+ this.el = r.nativeElement;
2915
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
2916
+ }
2917
+ };
2918
+ DyteSettingsToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSettingsToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2919
+ DyteSettingsToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteSettingsToggle, selector: "dyte-settings-toggle", inputs: { iconPack: "iconPack", size: "size", states: "states", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2920
+ DyteSettingsToggle = __decorate([
2921
+ ProxyCmp({
2922
+ defineCustomElementFn: undefined,
2923
+ inputs: ['iconPack', 'size', 'states', 't', 'variant']
2924
+ })
2925
+ ], DyteSettingsToggle);
2926
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSettingsToggle, decorators: [{
2927
+ type: Component,
2928
+ args: [{
2929
+ selector: 'dyte-settings-toggle',
2930
+ changeDetection: ChangeDetectionStrategy.OnPush,
2931
+ template: '<ng-content></ng-content>',
2932
+ inputs: ['iconPack', 'size', 'states', 't', 'variant']
2933
+ }]
2934
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2935
+ let DyteSettingsVideo = class DyteSettingsVideo {
2936
+ constructor(c, r, z) {
2937
+ this.z = z;
2938
+ c.detach();
2939
+ this.el = r.nativeElement;
2940
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
2941
+ }
2942
+ };
2943
+ DyteSettingsVideo.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSettingsVideo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2944
+ DyteSettingsVideo.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteSettingsVideo, selector: "dyte-settings-video", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2945
+ DyteSettingsVideo = __decorate([
2946
+ ProxyCmp({
2947
+ defineCustomElementFn: undefined,
2948
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't']
2949
+ })
2950
+ ], DyteSettingsVideo);
2951
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSettingsVideo, decorators: [{
2952
+ type: Component,
2953
+ args: [{
2954
+ selector: 'dyte-settings-video',
2955
+ changeDetection: ChangeDetectionStrategy.OnPush,
2956
+ template: '<ng-content></ng-content>',
2957
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't']
2958
+ }]
2959
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2960
+ let DyteSetupScreen = class DyteSetupScreen {
2961
+ constructor(c, r, z) {
2962
+ this.z = z;
2963
+ c.detach();
2964
+ this.el = r.nativeElement;
2965
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
2966
+ }
2967
+ };
2968
+ DyteSetupScreen.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSetupScreen, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2969
+ DyteSetupScreen.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteSetupScreen, selector: "dyte-setup-screen", inputs: { config: "config", iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2970
+ DyteSetupScreen = __decorate([
2971
+ ProxyCmp({
2972
+ defineCustomElementFn: undefined,
2973
+ inputs: ['config', 'iconPack', 'meeting', 'size', 'states', 't']
2974
+ })
2975
+ ], DyteSetupScreen);
2976
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSetupScreen, decorators: [{
2977
+ type: Component,
2978
+ args: [{
2979
+ selector: 'dyte-setup-screen',
2980
+ changeDetection: ChangeDetectionStrategy.OnPush,
2981
+ template: '<ng-content></ng-content>',
2982
+ inputs: ['config', 'iconPack', 'meeting', 'size', 'states', 't']
2983
+ }]
2984
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2985
+ let DyteSidebar = class DyteSidebar {
2986
+ constructor(c, r, z) {
2987
+ this.z = z;
2988
+ c.detach();
2989
+ this.el = r.nativeElement;
2990
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
2991
+ }
2992
+ };
2993
+ DyteSidebar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSidebar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2994
+ DyteSidebar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteSidebar, selector: "dyte-sidebar", inputs: { config: "config", defaultSection: "defaultSection", enabledSections: "enabledSections", iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t", view: "view" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2995
+ DyteSidebar = __decorate([
2996
+ ProxyCmp({
2997
+ defineCustomElementFn: undefined,
2998
+ inputs: ['config', 'defaultSection', 'enabledSections', 'iconPack', 'meeting', 'size', 'states', 't', 'view']
2999
+ })
3000
+ ], DyteSidebar);
3001
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSidebar, decorators: [{
3002
+ type: Component,
3003
+ args: [{
3004
+ selector: 'dyte-sidebar',
3005
+ changeDetection: ChangeDetectionStrategy.OnPush,
3006
+ template: '<ng-content></ng-content>',
3007
+ inputs: ['config', 'defaultSection', 'enabledSections', 'iconPack', 'meeting', 'size', 'states', 't', 'view']
3008
+ }]
3009
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3010
+ let DyteSidebarUi = class DyteSidebarUi {
3011
+ constructor(c, r, z) {
3012
+ this.z = z;
3013
+ c.detach();
3014
+ this.el = r.nativeElement;
3015
+ proxyOutputs(this, this.el, ['tabChange', 'sidebarClose']);
3016
+ }
3017
+ };
3018
+ DyteSidebarUi.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSidebarUi, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3019
+ DyteSidebarUi.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteSidebarUi, selector: "dyte-sidebar-ui", inputs: { currentTab: "currentTab", hideCloseAction: "hideCloseAction", hideHeader: "hideHeader", iconPack: "iconPack", t: "t", tabs: "tabs", view: "view" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3020
+ DyteSidebarUi = __decorate([
3021
+ ProxyCmp({
3022
+ defineCustomElementFn: undefined,
3023
+ inputs: ['currentTab', 'hideCloseAction', 'hideHeader', 'iconPack', 't', 'tabs', 'view']
3024
+ })
3025
+ ], DyteSidebarUi);
3026
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSidebarUi, decorators: [{
3027
+ type: Component,
3028
+ args: [{
3029
+ selector: 'dyte-sidebar-ui',
3030
+ changeDetection: ChangeDetectionStrategy.OnPush,
3031
+ template: '<ng-content></ng-content>',
3032
+ inputs: ['currentTab', 'hideCloseAction', 'hideHeader', 'iconPack', 't', 'tabs', 'view']
3033
+ }]
3034
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3035
+ let DyteSimpleGrid = class DyteSimpleGrid {
3036
+ constructor(c, r, z) {
3037
+ this.z = z;
3038
+ c.detach();
3039
+ this.el = r.nativeElement;
3040
+ }
3041
+ };
3042
+ DyteSimpleGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSimpleGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3043
+ DyteSimpleGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteSimpleGrid, selector: "dyte-simple-grid", inputs: { aspectRatio: "aspectRatio", config: "config", gap: "gap", iconPack: "iconPack", meeting: "meeting", participants: "participants", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3044
+ DyteSimpleGrid = __decorate([
3045
+ ProxyCmp({
3046
+ defineCustomElementFn: undefined,
3047
+ inputs: ['aspectRatio', 'config', 'gap', 'iconPack', 'meeting', 'participants', 'size', 'states', 't']
3048
+ })
3049
+ ], DyteSimpleGrid);
3050
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSimpleGrid, decorators: [{
3051
+ type: Component,
3052
+ args: [{
3053
+ selector: 'dyte-simple-grid',
3054
+ changeDetection: ChangeDetectionStrategy.OnPush,
3055
+ template: '<ng-content></ng-content>',
3056
+ inputs: ['aspectRatio', 'config', 'gap', 'iconPack', 'meeting', 'participants', 'size', 'states', 't']
3057
+ }]
3058
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3059
+ let DyteSpeakerSelector = class DyteSpeakerSelector {
3060
+ constructor(c, r, z) {
3061
+ this.z = z;
3062
+ c.detach();
3063
+ this.el = r.nativeElement;
3064
+ }
3065
+ };
3066
+ DyteSpeakerSelector.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSpeakerSelector, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3067
+ DyteSpeakerSelector.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteSpeakerSelector, selector: "dyte-speaker-selector", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", states: "states", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3068
+ DyteSpeakerSelector = __decorate([
3069
+ ProxyCmp({
3070
+ defineCustomElementFn: undefined,
3071
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
3072
+ })
3073
+ ], DyteSpeakerSelector);
3074
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSpeakerSelector, decorators: [{
3075
+ type: Component,
3076
+ args: [{
3077
+ selector: 'dyte-speaker-selector',
3078
+ changeDetection: ChangeDetectionStrategy.OnPush,
3079
+ template: '<ng-content></ng-content>',
3080
+ inputs: ['iconPack', 'meeting', 'size', 'states', 't', 'variant']
3081
+ }]
3082
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3083
+ let DyteSpinner = class DyteSpinner {
3084
+ constructor(c, r, z) {
3085
+ this.z = z;
3086
+ c.detach();
3087
+ this.el = r.nativeElement;
3088
+ }
3089
+ };
3090
+ DyteSpinner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3091
+ DyteSpinner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteSpinner, selector: "dyte-spinner", inputs: { iconPack: "iconPack", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3092
+ DyteSpinner = __decorate([
3093
+ ProxyCmp({
3094
+ defineCustomElementFn: undefined,
3095
+ inputs: ['iconPack', 'size', 't']
3096
+ })
3097
+ ], DyteSpinner);
3098
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSpinner, decorators: [{
3099
+ type: Component,
3100
+ args: [{
3101
+ selector: 'dyte-spinner',
3102
+ changeDetection: ChangeDetectionStrategy.OnPush,
3103
+ template: '<ng-content></ng-content>',
3104
+ inputs: ['iconPack', 'size', 't']
3105
+ }]
3106
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3107
+ let DyteSpotlightGrid = class DyteSpotlightGrid {
3108
+ constructor(c, r, z) {
3109
+ this.z = z;
3110
+ c.detach();
3111
+ this.el = r.nativeElement;
3112
+ }
3113
+ };
3114
+ DyteSpotlightGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSpotlightGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3115
+ DyteSpotlightGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteSpotlightGrid, selector: "dyte-spotlight-grid", inputs: { aspectRatio: "aspectRatio", config: "config", gap: "gap", gridSize: "gridSize", iconPack: "iconPack", layout: "layout", meeting: "meeting", participants: "participants", pinnedParticipants: "pinnedParticipants", size: "size", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3116
+ DyteSpotlightGrid = __decorate([
3117
+ ProxyCmp({
3118
+ defineCustomElementFn: undefined,
3119
+ inputs: ['aspectRatio', 'config', 'gap', 'gridSize', 'iconPack', 'layout', 'meeting', 'participants', 'pinnedParticipants', 'size', 'states', 't']
3120
+ })
3121
+ ], DyteSpotlightGrid);
3122
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSpotlightGrid, decorators: [{
3123
+ type: Component,
3124
+ args: [{
3125
+ selector: 'dyte-spotlight-grid',
3126
+ changeDetection: ChangeDetectionStrategy.OnPush,
3127
+ template: '<ng-content></ng-content>',
3128
+ inputs: ['aspectRatio', 'config', 'gap', 'gridSize', 'iconPack', 'layout', 'meeting', 'participants', 'pinnedParticipants', 'size', 'states', 't']
3129
+ }]
3130
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3131
+ let DyteSpotlightIndicator = class DyteSpotlightIndicator {
3132
+ constructor(c, r, z) {
3133
+ this.z = z;
3134
+ c.detach();
3135
+ this.el = r.nativeElement;
3136
+ }
3137
+ };
3138
+ DyteSpotlightIndicator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSpotlightIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3139
+ DyteSpotlightIndicator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteSpotlightIndicator, selector: "dyte-spotlight-indicator", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3140
+ DyteSpotlightIndicator = __decorate([
3141
+ ProxyCmp({
3142
+ defineCustomElementFn: undefined,
3143
+ inputs: ['iconPack', 'meeting', 'size', 't']
3144
+ })
3145
+ ], DyteSpotlightIndicator);
3146
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSpotlightIndicator, decorators: [{
3147
+ type: Component,
3148
+ args: [{
3149
+ selector: 'dyte-spotlight-indicator',
3150
+ changeDetection: ChangeDetectionStrategy.OnPush,
3151
+ template: '<ng-content></ng-content>',
3152
+ inputs: ['iconPack', 'meeting', 'size', 't']
3153
+ }]
3154
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3155
+ let DyteStage = class DyteStage {
3156
+ constructor(c, r, z) {
3157
+ this.z = z;
3158
+ c.detach();
3159
+ this.el = r.nativeElement;
3160
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
3161
+ }
3162
+ };
3163
+ DyteStage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteStage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3164
+ DyteStage.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteStage, selector: "dyte-stage", inputs: { iconPack: "iconPack", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3165
+ DyteStage = __decorate([
3166
+ ProxyCmp({
3167
+ defineCustomElementFn: undefined,
3168
+ inputs: ['iconPack', 't']
3169
+ })
3170
+ ], DyteStage);
3171
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteStage, decorators: [{
3172
+ type: Component,
3173
+ args: [{
3174
+ selector: 'dyte-stage',
3175
+ changeDetection: ChangeDetectionStrategy.OnPush,
3176
+ template: '<ng-content></ng-content>',
3177
+ inputs: ['iconPack', 't']
3178
+ }]
3179
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3180
+ let DyteStageToggle = class DyteStageToggle {
3181
+ constructor(c, r, z) {
3182
+ this.z = z;
3183
+ c.detach();
3184
+ this.el = r.nativeElement;
3185
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
3186
+ }
3187
+ };
3188
+ DyteStageToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteStageToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3189
+ DyteStageToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteStageToggle, selector: "dyte-stage-toggle", inputs: { iconPack: "iconPack", meeting: "meeting", size: "size", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3190
+ DyteStageToggle = __decorate([
3191
+ ProxyCmp({
3192
+ defineCustomElementFn: undefined,
3193
+ inputs: ['iconPack', 'meeting', 'size', 't', 'variant']
3194
+ })
3195
+ ], DyteStageToggle);
3196
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteStageToggle, decorators: [{
3197
+ type: Component,
3198
+ args: [{
3199
+ selector: 'dyte-stage-toggle',
3200
+ changeDetection: ChangeDetectionStrategy.OnPush,
3201
+ template: '<ng-content></ng-content>',
3202
+ inputs: ['iconPack', 'meeting', 'size', 't', 'variant']
3203
+ }]
3204
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3205
+ let DyteSwitch = class DyteSwitch {
3206
+ constructor(c, r, z) {
3207
+ this.z = z;
3208
+ c.detach();
3209
+ this.el = r.nativeElement;
3210
+ proxyOutputs(this, this.el, ['dyteChange']);
3211
+ }
3212
+ };
3213
+ DyteSwitch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3214
+ DyteSwitch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteSwitch, selector: "dyte-switch", inputs: { checked: "checked", disabled: "disabled", iconPack: "iconPack", readonly: "readonly", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3215
+ DyteSwitch = __decorate([
3216
+ ProxyCmp({
3217
+ defineCustomElementFn: undefined,
3218
+ inputs: ['checked', 'disabled', 'iconPack', 'readonly', 't']
3219
+ })
3220
+ ], DyteSwitch);
3221
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteSwitch, decorators: [{
3222
+ type: Component,
3223
+ args: [{
3224
+ selector: 'dyte-switch',
3225
+ changeDetection: ChangeDetectionStrategy.OnPush,
3226
+ template: '<ng-content></ng-content>',
3227
+ inputs: ['checked', 'disabled', 'iconPack', 'readonly', 't']
3228
+ }]
3229
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3230
+ let DyteTabBar = class DyteTabBar {
3231
+ constructor(c, r, z) {
3232
+ this.z = z;
3233
+ c.detach();
3234
+ this.el = r.nativeElement;
3235
+ proxyOutputs(this, this.el, ['tabChange']);
3236
+ }
3237
+ };
3238
+ DyteTabBar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteTabBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3239
+ DyteTabBar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteTabBar, selector: "dyte-tab-bar", inputs: { activeTab: "activeTab", config: "config", iconPack: "iconPack", layout: "layout", meeting: "meeting", size: "size", states: "states", t: "t", tabs: "tabs" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3240
+ DyteTabBar = __decorate([
3241
+ ProxyCmp({
3242
+ defineCustomElementFn: undefined,
3243
+ inputs: ['activeTab', 'config', 'iconPack', 'layout', 'meeting', 'size', 'states', 't', 'tabs']
3244
+ })
3245
+ ], DyteTabBar);
3246
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteTabBar, decorators: [{
3247
+ type: Component,
3248
+ args: [{
3249
+ selector: 'dyte-tab-bar',
3250
+ changeDetection: ChangeDetectionStrategy.OnPush,
3251
+ template: '<ng-content></ng-content>',
3252
+ inputs: ['activeTab', 'config', 'iconPack', 'layout', 'meeting', 'size', 'states', 't', 'tabs']
3253
+ }]
3254
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3255
+ let DyteTextComposerView = class DyteTextComposerView {
3256
+ constructor(c, r, z) {
3257
+ this.z = z;
3258
+ c.detach();
3259
+ this.el = r.nativeElement;
3260
+ proxyOutputs(this, this.el, ['textChange']);
3261
+ }
3262
+ };
3263
+ DyteTextComposerView.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteTextComposerView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3264
+ DyteTextComposerView.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteTextComposerView, selector: "dyte-text-composer-view", inputs: { disabled: "disabled", iconPack: "iconPack", keyDownHandler: "keyDownHandler", maxLength: "maxLength", placeholder: "placeholder", rateLimitBreached: "rateLimitBreached", t: "t", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3265
+ DyteTextComposerView = __decorate([
3266
+ ProxyCmp({
3267
+ defineCustomElementFn: undefined,
3268
+ inputs: ['disabled', 'iconPack', 'keyDownHandler', 'maxLength', 'placeholder', 'rateLimitBreached', 't', 'value'],
3269
+ methods: ['setText']
3270
+ })
3271
+ ], DyteTextComposerView);
3272
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteTextComposerView, decorators: [{
3273
+ type: Component,
3274
+ args: [{
3275
+ selector: 'dyte-text-composer-view',
3276
+ changeDetection: ChangeDetectionStrategy.OnPush,
3277
+ template: '<ng-content></ng-content>',
3278
+ inputs: ['disabled', 'iconPack', 'keyDownHandler', 'maxLength', 'placeholder', 'rateLimitBreached', 't', 'value']
3279
+ }]
3280
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3281
+ let DyteTextField = class DyteTextField {
3282
+ constructor(c, r, z) {
3283
+ this.z = z;
3284
+ c.detach();
3285
+ this.el = r.nativeElement;
3286
+ proxyOutputs(this, this.el, ['dyteStateUpdate']);
3287
+ }
3288
+ };
3289
+ DyteTextField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteTextField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3290
+ DyteTextField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteTextField, selector: "dyte-text-field", inputs: { disabled: "disabled", iconPack: "iconPack", placeholder: "placeholder", t: "t", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3291
+ DyteTextField = __decorate([
3292
+ ProxyCmp({
3293
+ defineCustomElementFn: undefined,
3294
+ inputs: ['disabled', 'iconPack', 'placeholder', 't', 'type']
3295
+ })
3296
+ ], DyteTextField);
3297
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteTextField, decorators: [{
3298
+ type: Component,
3299
+ args: [{
3300
+ selector: 'dyte-text-field',
3301
+ changeDetection: ChangeDetectionStrategy.OnPush,
3302
+ template: '<ng-content></ng-content>',
3303
+ inputs: ['disabled', 'iconPack', 'placeholder', 't', 'type']
3304
+ }]
3305
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3306
+ let DyteTextMessage = class DyteTextMessage {
3307
+ constructor(c, r, z) {
3308
+ this.z = z;
3309
+ c.detach();
3310
+ this.el = r.nativeElement;
3311
+ }
3312
+ };
3313
+ DyteTextMessage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteTextMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3314
+ DyteTextMessage.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteTextMessage, selector: "dyte-text-message", inputs: { iconPack: "iconPack", isContinued: "isContinued", message: "message", now: "now", showBubble: "showBubble", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3315
+ DyteTextMessage = __decorate([
3316
+ ProxyCmp({
3317
+ defineCustomElementFn: undefined,
3318
+ inputs: ['iconPack', 'isContinued', 'message', 'now', 'showBubble', 't']
3319
+ })
3320
+ ], DyteTextMessage);
3321
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteTextMessage, decorators: [{
3322
+ type: Component,
3323
+ args: [{
3324
+ selector: 'dyte-text-message',
3325
+ changeDetection: ChangeDetectionStrategy.OnPush,
3326
+ template: '<ng-content></ng-content>',
3327
+ inputs: ['iconPack', 'isContinued', 'message', 'now', 'showBubble', 't']
3328
+ }]
3329
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3330
+ let DyteTextMessageView = class DyteTextMessageView {
3331
+ constructor(c, r, z) {
3332
+ this.z = z;
3333
+ c.detach();
3334
+ this.el = r.nativeElement;
3335
+ }
3336
+ };
3337
+ DyteTextMessageView.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteTextMessageView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3338
+ DyteTextMessageView.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteTextMessageView, selector: "dyte-text-message-view", inputs: { isMarkdown: "isMarkdown", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3339
+ DyteTextMessageView = __decorate([
3340
+ ProxyCmp({
3341
+ defineCustomElementFn: undefined,
3342
+ inputs: ['isMarkdown', 'text']
3343
+ })
3344
+ ], DyteTextMessageView);
3345
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteTextMessageView, decorators: [{
3346
+ type: Component,
3347
+ args: [{
3348
+ selector: 'dyte-text-message-view',
3349
+ changeDetection: ChangeDetectionStrategy.OnPush,
3350
+ template: '<ng-content></ng-content>',
3351
+ inputs: ['isMarkdown', 'text']
3352
+ }]
3353
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3354
+ let DyteTooltip = class DyteTooltip {
3355
+ constructor(c, r, z) {
3356
+ this.z = z;
3357
+ c.detach();
3358
+ this.el = r.nativeElement;
3359
+ proxyOutputs(this, this.el, ['dyteOpenChange']);
3360
+ }
3361
+ };
3362
+ DyteTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3363
+ DyteTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteTooltip, selector: "dyte-tooltip", inputs: { delay: "delay", disabled: "disabled", iconPack: "iconPack", kind: "kind", label: "label", open: "open", placement: "placement", size: "size", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3364
+ DyteTooltip = __decorate([
3365
+ ProxyCmp({
3366
+ defineCustomElementFn: undefined,
3367
+ inputs: ['delay', 'disabled', 'iconPack', 'kind', 'label', 'open', 'placement', 'size', 't', 'variant']
3368
+ })
3369
+ ], DyteTooltip);
3370
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteTooltip, decorators: [{
3371
+ type: Component,
3372
+ args: [{
3373
+ selector: 'dyte-tooltip',
3374
+ changeDetection: ChangeDetectionStrategy.OnPush,
3375
+ template: '<ng-content></ng-content>',
3376
+ inputs: ['delay', 'disabled', 'iconPack', 'kind', 'label', 'open', 'placement', 'size', 't', 'variant']
3377
+ }]
3378
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3379
+ let DyteTranscript = class DyteTranscript {
3380
+ constructor(c, r, z) {
3381
+ this.z = z;
3382
+ c.detach();
3383
+ this.el = r.nativeElement;
3384
+ proxyOutputs(this, this.el, ['dyteTranscriptDismiss']);
3385
+ }
3386
+ };
3387
+ DyteTranscript.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteTranscript, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3388
+ DyteTranscript.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteTranscript, selector: "dyte-transcript", inputs: { t: "t", transcript: "transcript" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3389
+ DyteTranscript = __decorate([
3390
+ ProxyCmp({
3391
+ defineCustomElementFn: undefined,
3392
+ inputs: ['t', 'transcript']
3393
+ })
3394
+ ], DyteTranscript);
3395
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteTranscript, decorators: [{
3396
+ type: Component,
3397
+ args: [{
3398
+ selector: 'dyte-transcript',
3399
+ changeDetection: ChangeDetectionStrategy.OnPush,
3400
+ template: '<ng-content></ng-content>',
3401
+ inputs: ['t', 'transcript']
3402
+ }]
3403
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3404
+ let DyteTranscripts = class DyteTranscripts {
3405
+ constructor(c, r, z) {
3406
+ this.z = z;
3407
+ c.detach();
3408
+ this.el = r.nativeElement;
3409
+ }
3410
+ };
3411
+ DyteTranscripts.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteTranscripts, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3412
+ DyteTranscripts.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteTranscripts, selector: "dyte-transcripts", inputs: { config: "config", meeting: "meeting", states: "states", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3413
+ DyteTranscripts = __decorate([
3414
+ ProxyCmp({
3415
+ defineCustomElementFn: undefined,
3416
+ inputs: ['config', 'meeting', 'states', 't']
3417
+ })
3418
+ ], DyteTranscripts);
3419
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteTranscripts, decorators: [{
3420
+ type: Component,
3421
+ args: [{
3422
+ selector: 'dyte-transcripts',
3423
+ changeDetection: ChangeDetectionStrategy.OnPush,
3424
+ template: '<ng-content></ng-content>',
3425
+ inputs: ['config', 'meeting', 'states', 't']
3426
+ }]
3427
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3428
+ let DyteUiProvider = class DyteUiProvider {
3429
+ constructor(c, r, z) {
3430
+ this.z = z;
3431
+ c.detach();
3432
+ this.el = r.nativeElement;
3433
+ }
3434
+ };
3435
+ DyteUiProvider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteUiProvider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3436
+ DyteUiProvider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteUiProvider, selector: "dyte-ui-provider", inputs: { applyDesignSystem: "applyDesignSystem", config: "config", iconPackUrl: "iconPackUrl", joinRoom: "joinRoom", loadConfigFromPreset: "loadConfigFromPreset", meeting: "meeting", size: "size", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3437
+ DyteUiProvider = __decorate([
3438
+ ProxyCmp({
3439
+ defineCustomElementFn: undefined,
3440
+ inputs: ['applyDesignSystem', 'config', 'iconPackUrl', 'joinRoom', 'loadConfigFromPreset', 'meeting', 'size', 't']
3441
+ })
3442
+ ], DyteUiProvider);
3443
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteUiProvider, decorators: [{
3444
+ type: Component,
3445
+ args: [{
3446
+ selector: 'dyte-ui-provider',
3447
+ changeDetection: ChangeDetectionStrategy.OnPush,
3448
+ template: '<ng-content></ng-content>',
3449
+ inputs: ['applyDesignSystem', 'config', 'iconPackUrl', 'joinRoom', 'loadConfigFromPreset', 'meeting', 'size', 't']
3450
+ }]
3451
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3452
+ let DyteViewerCount = class DyteViewerCount {
3453
+ constructor(c, r, z) {
3454
+ this.z = z;
3455
+ c.detach();
3456
+ this.el = r.nativeElement;
3457
+ }
3458
+ };
3459
+ DyteViewerCount.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteViewerCount, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3460
+ DyteViewerCount.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteViewerCount, selector: "dyte-viewer-count", inputs: { iconPack: "iconPack", meeting: "meeting", t: "t", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3461
+ DyteViewerCount = __decorate([
3462
+ ProxyCmp({
3463
+ defineCustomElementFn: undefined,
3464
+ inputs: ['iconPack', 'meeting', 't', 'variant']
3465
+ })
3466
+ ], DyteViewerCount);
3467
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteViewerCount, decorators: [{
3468
+ type: Component,
3469
+ args: [{
3470
+ selector: 'dyte-viewer-count',
3471
+ changeDetection: ChangeDetectionStrategy.OnPush,
3472
+ template: '<ng-content></ng-content>',
3473
+ inputs: ['iconPack', 'meeting', 't', 'variant']
3474
+ }]
3475
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3476
+ let DyteVirtualizedParticipantList = class DyteVirtualizedParticipantList {
3477
+ constructor(c, r, z) {
3478
+ this.z = z;
3479
+ c.detach();
3480
+ this.el = r.nativeElement;
3481
+ }
3482
+ };
3483
+ DyteVirtualizedParticipantList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteVirtualizedParticipantList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3484
+ DyteVirtualizedParticipantList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteVirtualizedParticipantList, selector: "dyte-virtualized-participant-list", inputs: { bufferedItemsCount: "bufferedItemsCount", emptyListElement: "emptyListElement", itemHeight: "itemHeight", items: "items", renderItem: "renderItem" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3485
+ DyteVirtualizedParticipantList = __decorate([
3486
+ ProxyCmp({
3487
+ defineCustomElementFn: undefined,
3488
+ inputs: ['bufferedItemsCount', 'emptyListElement', 'itemHeight', 'items', 'renderItem']
3489
+ })
3490
+ ], DyteVirtualizedParticipantList);
3491
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteVirtualizedParticipantList, decorators: [{
3492
+ type: Component,
3493
+ args: [{
3494
+ selector: 'dyte-virtualized-participant-list',
3495
+ changeDetection: ChangeDetectionStrategy.OnPush,
3496
+ template: '<ng-content></ng-content>',
3497
+ inputs: ['bufferedItemsCount', 'emptyListElement', 'itemHeight', 'items', 'renderItem']
3498
+ }]
3499
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3500
+ let DyteWaitingScreen = class DyteWaitingScreen {
3501
+ constructor(c, r, z) {
3502
+ this.z = z;
3503
+ c.detach();
3504
+ this.el = r.nativeElement;
3505
+ }
3506
+ };
3507
+ DyteWaitingScreen.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteWaitingScreen, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3508
+ DyteWaitingScreen.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DyteWaitingScreen, selector: "dyte-waiting-screen", inputs: { config: "config", iconPack: "iconPack", meeting: "meeting", t: "t" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3509
+ DyteWaitingScreen = __decorate([
3510
+ ProxyCmp({
3511
+ defineCustomElementFn: undefined,
3512
+ inputs: ['config', 'iconPack', 'meeting', 't']
3513
+ })
3514
+ ], DyteWaitingScreen);
3515
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteWaitingScreen, decorators: [{
3516
+ type: Component,
3517
+ args: [{
3518
+ selector: 'dyte-waiting-screen',
3519
+ changeDetection: ChangeDetectionStrategy.OnPush,
3520
+ template: '<ng-content></ng-content>',
3521
+ inputs: ['config', 'iconPack', 'meeting', 't']
3522
+ }]
3523
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
3524
+
3525
+ const DIRECTIVES = [
3526
+ DyteAi,
3527
+ DyteAiChat,
3528
+ DyteAiHome,
3529
+ DyteAiToggle,
3530
+ DyteAiTranscriptions,
3531
+ DyteAudioGrid,
3532
+ DyteAudioTile,
3533
+ DyteAudioVisualizer,
3534
+ DyteAvatar,
3535
+ DyteBreakoutRoomManager,
3536
+ DyteBreakoutRoomParticipants,
3537
+ DyteBreakoutRoomsManager,
3538
+ DyteBreakoutRoomsToggle,
3539
+ DyteBroadcastMessageModal,
3540
+ DyteButton,
3541
+ DyteCameraSelector,
3542
+ DyteCameraToggle,
3543
+ DyteCaptionToggle,
3544
+ DyteChannelCreator,
3545
+ DyteChannelDetails,
3546
+ DyteChannelHeader,
3547
+ DyteChannelSelectorUi,
3548
+ DyteChannelSelectorView,
3549
+ DyteChat,
3550
+ DyteChatComposerUi,
3551
+ DyteChatComposerView,
3552
+ DyteChatMessage,
3553
+ DyteChatMessagesUi,
3554
+ DyteChatMessagesUiPaginated,
3555
+ DyteChatSearchResults,
3556
+ DyteChatSelectorUi,
3557
+ DyteChatToggle,
3558
+ DyteClock,
3559
+ DyteConfirmationModal,
3560
+ DyteControlbar,
3561
+ DyteControlbarButton,
3562
+ DyteCounter,
3563
+ DyteDebugger,
3564
+ DyteDebuggerAudio,
3565
+ DyteDebuggerScreenshare,
3566
+ DyteDebuggerSystem,
3567
+ DyteDebuggerToggle,
3568
+ DyteDebuggerVideo,
3569
+ DyteDialog,
3570
+ DyteDialogManager,
3571
+ DyteDraftAttachmentView,
3572
+ DyteEmojiPicker,
3573
+ DyteEmojiPickerButton,
3574
+ DyteEndedScreen,
3575
+ DyteFileDropzone,
3576
+ DyteFileMessage,
3577
+ DyteFileMessageView,
3578
+ DyteFilePickerButton,
3579
+ DyteFullscreenToggle,
3580
+ DyteGrid,
3581
+ DyteGridPagination,
3582
+ DyteHeader,
3583
+ DyteIcon,
3584
+ DyteIdleScreen,
3585
+ DyteImageMessage,
3586
+ DyteImageMessageView,
3587
+ DyteImageViewer,
3588
+ DyteInformationTooltip,
3589
+ DyteJoinStage,
3590
+ DyteLeaveButton,
3591
+ DyteLeaveMeeting,
3592
+ DyteLivestreamIndicator,
3593
+ DyteLivestreamPlayer,
3594
+ DyteLivestreamToggle,
3595
+ DyteLogo,
3596
+ DyteMarkdownView,
3597
+ DyteMeeting,
3598
+ DyteMeetingTitle,
3599
+ DyteMenu,
3600
+ DyteMenuItem,
3601
+ DyteMenuList,
3602
+ DyteMessageListView,
3603
+ DyteMessageView,
3604
+ DyteMicToggle,
3605
+ DyteMicrophoneSelector,
3606
+ DyteMixedGrid,
3607
+ DyteMoreToggle,
3608
+ DyteMuteAllButton,
3609
+ DyteMuteAllConfirmation,
3610
+ DyteNameTag,
3611
+ DyteNetworkIndicator,
3612
+ DyteNotification,
3613
+ DyteNotifications,
3614
+ DyteOverlayModal,
3615
+ DytePaginatedList,
3616
+ DyteParticipant,
3617
+ DyteParticipantCount,
3618
+ DyteParticipantSetup,
3619
+ DyteParticipantTile,
3620
+ DyteParticipants,
3621
+ DyteParticipantsAudio,
3622
+ DyteParticipantsStageList,
3623
+ DyteParticipantsStageQueue,
3624
+ DyteParticipantsToggle,
3625
+ DyteParticipantsViewerList,
3626
+ DyteParticipantsWaitingList,
3627
+ DytePermissionsMessage,
3628
+ DytePipToggle,
3629
+ DytePluginMain,
3630
+ DytePlugins,
3631
+ DytePluginsToggle,
3632
+ DytePoll,
3633
+ DytePollForm,
3634
+ DytePolls,
3635
+ DytePollsToggle,
3636
+ DyteRecordingIndicator,
3637
+ DyteRecordingToggle,
3638
+ DyteScreenShareToggle,
3639
+ DyteScreenshareView,
3640
+ DyteSettings,
3641
+ DyteSettingsAudio,
3642
+ DyteSettingsToggle,
3643
+ DyteSettingsVideo,
3644
+ DyteSetupScreen,
3645
+ DyteSidebar,
3646
+ DyteSidebarUi,
3647
+ DyteSimpleGrid,
3648
+ DyteSpeakerSelector,
3649
+ DyteSpinner,
3650
+ DyteSpotlightGrid,
3651
+ DyteSpotlightIndicator,
3652
+ DyteStage,
3653
+ DyteStageToggle,
3654
+ DyteSwitch,
3655
+ DyteTabBar,
3656
+ DyteTextComposerView,
3657
+ DyteTextField,
3658
+ DyteTextMessage,
3659
+ DyteTextMessageView,
3660
+ DyteTooltip,
3661
+ DyteTranscript,
3662
+ DyteTranscripts,
3663
+ DyteUiProvider,
3664
+ DyteViewerCount,
3665
+ DyteVirtualizedParticipantList,
3666
+ DyteWaitingScreen
3667
+ ];
3668
+
3669
+ defineCustomElements(window);
3670
+ class DyteComponentsModule {
3671
+ }
3672
+ DyteComponentsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3673
+ DyteComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteComponentsModule, declarations: [DyteAi, DyteAiChat, DyteAiHome, DyteAiToggle, DyteAiTranscriptions, DyteAudioGrid, DyteAudioTile, DyteAudioVisualizer, DyteAvatar, DyteBreakoutRoomManager, DyteBreakoutRoomParticipants, DyteBreakoutRoomsManager, DyteBreakoutRoomsToggle, DyteBroadcastMessageModal, DyteButton, DyteCameraSelector, DyteCameraToggle, DyteCaptionToggle, DyteChannelCreator, DyteChannelDetails, DyteChannelHeader, DyteChannelSelectorUi, DyteChannelSelectorView, DyteChat, DyteChatComposerUi, DyteChatComposerView, DyteChatMessage, DyteChatMessagesUi, DyteChatMessagesUiPaginated, DyteChatSearchResults, DyteChatSelectorUi, DyteChatToggle, DyteClock, DyteConfirmationModal, DyteControlbar, DyteControlbarButton, DyteCounter, DyteDebugger, DyteDebuggerAudio, DyteDebuggerScreenshare, DyteDebuggerSystem, DyteDebuggerToggle, DyteDebuggerVideo, DyteDialog, DyteDialogManager, DyteDraftAttachmentView, DyteEmojiPicker, DyteEmojiPickerButton, DyteEndedScreen, DyteFileDropzone, DyteFileMessage, DyteFileMessageView, DyteFilePickerButton, DyteFullscreenToggle, DyteGrid, DyteGridPagination, DyteHeader, DyteIcon, DyteIdleScreen, DyteImageMessage, DyteImageMessageView, DyteImageViewer, DyteInformationTooltip, DyteJoinStage, DyteLeaveButton, DyteLeaveMeeting, DyteLivestreamIndicator, DyteLivestreamPlayer, DyteLivestreamToggle, DyteLogo, DyteMarkdownView, DyteMeeting, DyteMeetingTitle, DyteMenu, DyteMenuItem, DyteMenuList, DyteMessageListView, DyteMessageView, DyteMicToggle, DyteMicrophoneSelector, DyteMixedGrid, DyteMoreToggle, DyteMuteAllButton, DyteMuteAllConfirmation, DyteNameTag, DyteNetworkIndicator, DyteNotification, DyteNotifications, DyteOverlayModal, DytePaginatedList, DyteParticipant, DyteParticipantCount, DyteParticipantSetup, DyteParticipantTile, DyteParticipants, DyteParticipantsAudio, DyteParticipantsStageList, DyteParticipantsStageQueue, DyteParticipantsToggle, DyteParticipantsViewerList, DyteParticipantsWaitingList, DytePermissionsMessage, DytePipToggle, DytePluginMain, DytePlugins, DytePluginsToggle, DytePoll, DytePollForm, DytePolls, DytePollsToggle, DyteRecordingIndicator, DyteRecordingToggle, DyteScreenShareToggle, DyteScreenshareView, DyteSettings, DyteSettingsAudio, DyteSettingsToggle, DyteSettingsVideo, DyteSetupScreen, DyteSidebar, DyteSidebarUi, DyteSimpleGrid, DyteSpeakerSelector, DyteSpinner, DyteSpotlightGrid, DyteSpotlightIndicator, DyteStage, DyteStageToggle, DyteSwitch, DyteTabBar, DyteTextComposerView, DyteTextField, DyteTextMessage, DyteTextMessageView, DyteTooltip, DyteTranscript, DyteTranscripts, DyteUiProvider, DyteViewerCount, DyteVirtualizedParticipantList, DyteWaitingScreen], exports: [DyteAi, DyteAiChat, DyteAiHome, DyteAiToggle, DyteAiTranscriptions, DyteAudioGrid, DyteAudioTile, DyteAudioVisualizer, DyteAvatar, DyteBreakoutRoomManager, DyteBreakoutRoomParticipants, DyteBreakoutRoomsManager, DyteBreakoutRoomsToggle, DyteBroadcastMessageModal, DyteButton, DyteCameraSelector, DyteCameraToggle, DyteCaptionToggle, DyteChannelCreator, DyteChannelDetails, DyteChannelHeader, DyteChannelSelectorUi, DyteChannelSelectorView, DyteChat, DyteChatComposerUi, DyteChatComposerView, DyteChatMessage, DyteChatMessagesUi, DyteChatMessagesUiPaginated, DyteChatSearchResults, DyteChatSelectorUi, DyteChatToggle, DyteClock, DyteConfirmationModal, DyteControlbar, DyteControlbarButton, DyteCounter, DyteDebugger, DyteDebuggerAudio, DyteDebuggerScreenshare, DyteDebuggerSystem, DyteDebuggerToggle, DyteDebuggerVideo, DyteDialog, DyteDialogManager, DyteDraftAttachmentView, DyteEmojiPicker, DyteEmojiPickerButton, DyteEndedScreen, DyteFileDropzone, DyteFileMessage, DyteFileMessageView, DyteFilePickerButton, DyteFullscreenToggle, DyteGrid, DyteGridPagination, DyteHeader, DyteIcon, DyteIdleScreen, DyteImageMessage, DyteImageMessageView, DyteImageViewer, DyteInformationTooltip, DyteJoinStage, DyteLeaveButton, DyteLeaveMeeting, DyteLivestreamIndicator, DyteLivestreamPlayer, DyteLivestreamToggle, DyteLogo, DyteMarkdownView, DyteMeeting, DyteMeetingTitle, DyteMenu, DyteMenuItem, DyteMenuList, DyteMessageListView, DyteMessageView, DyteMicToggle, DyteMicrophoneSelector, DyteMixedGrid, DyteMoreToggle, DyteMuteAllButton, DyteMuteAllConfirmation, DyteNameTag, DyteNetworkIndicator, DyteNotification, DyteNotifications, DyteOverlayModal, DytePaginatedList, DyteParticipant, DyteParticipantCount, DyteParticipantSetup, DyteParticipantTile, DyteParticipants, DyteParticipantsAudio, DyteParticipantsStageList, DyteParticipantsStageQueue, DyteParticipantsToggle, DyteParticipantsViewerList, DyteParticipantsWaitingList, DytePermissionsMessage, DytePipToggle, DytePluginMain, DytePlugins, DytePluginsToggle, DytePoll, DytePollForm, DytePolls, DytePollsToggle, DyteRecordingIndicator, DyteRecordingToggle, DyteScreenShareToggle, DyteScreenshareView, DyteSettings, DyteSettingsAudio, DyteSettingsToggle, DyteSettingsVideo, DyteSetupScreen, DyteSidebar, DyteSidebarUi, DyteSimpleGrid, DyteSpeakerSelector, DyteSpinner, DyteSpotlightGrid, DyteSpotlightIndicator, DyteStage, DyteStageToggle, DyteSwitch, DyteTabBar, DyteTextComposerView, DyteTextField, DyteTextMessage, DyteTextMessageView, DyteTooltip, DyteTranscript, DyteTranscripts, DyteUiProvider, DyteViewerCount, DyteVirtualizedParticipantList, DyteWaitingScreen] });
3674
+ DyteComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteComponentsModule, imports: [[]] });
3675
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DyteComponentsModule, decorators: [{
3676
+ type: NgModule,
3677
+ args: [{
3678
+ declarations: [...DIRECTIVES],
3679
+ imports: [],
3680
+ exports: [...DIRECTIVES],
3681
+ }]
3682
+ }] });
3683
+
3684
+ /*
3685
+ * Public API Surface of components
3686
+ */
3687
+
3688
+ /**
3689
+ * Generated bundle index. Do not edit.
3690
+ */
3691
+
3692
+ export { DIRECTIVES, DyteAi, DyteAiChat, DyteAiHome, DyteAiToggle, DyteAiTranscriptions, DyteAudioGrid, DyteAudioTile, DyteAudioVisualizer, DyteAvatar, DyteBreakoutRoomManager, DyteBreakoutRoomParticipants, DyteBreakoutRoomsManager, DyteBreakoutRoomsToggle, DyteBroadcastMessageModal, DyteButton, DyteCameraSelector, DyteCameraToggle, DyteCaptionToggle, DyteChannelCreator, DyteChannelDetails, DyteChannelHeader, DyteChannelSelectorUi, DyteChannelSelectorView, DyteChat, DyteChatComposerUi, DyteChatComposerView, DyteChatMessage, DyteChatMessagesUi, DyteChatMessagesUiPaginated, DyteChatSearchResults, DyteChatSelectorUi, DyteChatToggle, DyteClock, DyteComponentsModule, DyteConfirmationModal, DyteControlbar, DyteControlbarButton, DyteCounter, DyteDebugger, DyteDebuggerAudio, DyteDebuggerScreenshare, DyteDebuggerSystem, DyteDebuggerToggle, DyteDebuggerVideo, DyteDialog, DyteDialogManager, DyteDraftAttachmentView, DyteEmojiPicker, DyteEmojiPickerButton, DyteEndedScreen, DyteFileDropzone, DyteFileMessage, DyteFileMessageView, DyteFilePickerButton, DyteFullscreenToggle, DyteGrid, DyteGridPagination, DyteHeader, DyteIcon, DyteIdleScreen, DyteImageMessage, DyteImageMessageView, DyteImageViewer, DyteInformationTooltip, DyteJoinStage, DyteLeaveButton, DyteLeaveMeeting, DyteLivestreamIndicator, DyteLivestreamPlayer, DyteLivestreamToggle, DyteLogo, DyteMarkdownView, DyteMeeting, DyteMeetingTitle, DyteMenu, DyteMenuItem, DyteMenuList, DyteMessageListView, DyteMessageView, DyteMicToggle, DyteMicrophoneSelector, DyteMixedGrid, DyteMoreToggle, DyteMuteAllButton, DyteMuteAllConfirmation, DyteNameTag, DyteNetworkIndicator, DyteNotification, DyteNotifications, DyteOverlayModal, DytePaginatedList, DyteParticipant, DyteParticipantCount, DyteParticipantSetup, DyteParticipantTile, DyteParticipants, DyteParticipantsAudio, DyteParticipantsStageList, DyteParticipantsStageQueue, DyteParticipantsToggle, DyteParticipantsViewerList, DyteParticipantsWaitingList, DytePermissionsMessage, DytePipToggle, DytePluginMain, DytePlugins, DytePluginsToggle, DytePoll, DytePollForm, DytePolls, DytePollsToggle, DyteRecordingIndicator, DyteRecordingToggle, DyteScreenShareToggle, DyteScreenshareView, DyteSettings, DyteSettingsAudio, DyteSettingsToggle, DyteSettingsVideo, DyteSetupScreen, DyteSidebar, DyteSidebarUi, DyteSimpleGrid, DyteSpeakerSelector, DyteSpinner, DyteSpotlightGrid, DyteSpotlightIndicator, DyteStage, DyteStageToggle, DyteSwitch, DyteTabBar, DyteTextComposerView, DyteTextField, DyteTextMessage, DyteTextMessageView, DyteTooltip, DyteTranscript, DyteTranscripts, DyteUiProvider, DyteViewerCount, DyteVirtualizedParticipantList, DyteWaitingScreen };
3693
+ //# sourceMappingURL=dytesdk-angular-ui-kit.mjs.map