@dytesdk/angular-ui-kit 2.1.0-staging.2 → 2.1.0-staging.21

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