@dytesdk/angular-ui-kit 2.3.0-staging.1 → 2.3.1-staging.1

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