@dytesdk/angular-ui-kit 2.4.0-staging.8 → 2.4.0

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