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