@dytesdk/angular-ui-kit 3.0.5 → 3.0.6

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