@teranga-ds/angular 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +111 -0
- package/dist/teranga-ds-angular/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +59 -0
- package/dist/teranga-ds-angular/esm2022/lib/stencil-generated/components.mjs +2189 -0
- package/dist/teranga-ds-angular/esm2022/lib/stencil-generated/index.mjs +83 -0
- package/dist/teranga-ds-angular/esm2022/public-api.mjs +5 -0
- package/dist/teranga-ds-angular/esm2022/teranga-ds-angular.mjs +5 -0
- package/dist/teranga-ds-angular/fesm2022/teranga-ds-angular.mjs +2259 -0
- package/dist/teranga-ds-angular/fesm2022/teranga-ds-angular.mjs.map +1 -0
- package/dist/teranga-ds-angular/index.d.ts +5 -0
- package/dist/teranga-ds-angular/lib/stencil-generated/angular-component-lib/utils.d.ts +9 -0
- package/dist/teranga-ds-angular/lib/stencil-generated/components.d.ts +800 -0
- package/dist/teranga-ds-angular/lib/stencil-generated/index.d.ts +2 -0
- package/dist/teranga-ds-angular/public-api.d.ts +1 -0
- package/package.json +65 -0
|
@@ -0,0 +1,2259 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
3
|
+
import { fromEvent } from 'rxjs';
|
|
4
|
+
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
/* tslint:disable */
|
|
7
|
+
const proxyInputs = (Cmp, inputs) => {
|
|
8
|
+
const Prototype = Cmp.prototype;
|
|
9
|
+
inputs.forEach((item) => {
|
|
10
|
+
Object.defineProperty(Prototype, item, {
|
|
11
|
+
get() {
|
|
12
|
+
return this.el[item];
|
|
13
|
+
},
|
|
14
|
+
set(val) {
|
|
15
|
+
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
16
|
+
},
|
|
17
|
+
/**
|
|
18
|
+
* In the event that proxyInputs is called
|
|
19
|
+
* multiple times re-defining these inputs
|
|
20
|
+
* will cause an error to be thrown. As a result
|
|
21
|
+
* we set configurable: true to indicate these
|
|
22
|
+
* properties can be changed.
|
|
23
|
+
*/
|
|
24
|
+
configurable: true,
|
|
25
|
+
});
|
|
26
|
+
});
|
|
27
|
+
};
|
|
28
|
+
const proxyMethods = (Cmp, methods) => {
|
|
29
|
+
const Prototype = Cmp.prototype;
|
|
30
|
+
methods.forEach((methodName) => {
|
|
31
|
+
Prototype[methodName] = function () {
|
|
32
|
+
const args = arguments;
|
|
33
|
+
return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
|
|
34
|
+
};
|
|
35
|
+
});
|
|
36
|
+
};
|
|
37
|
+
const proxyOutputs = (instance, el, events) => {
|
|
38
|
+
events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
|
|
39
|
+
};
|
|
40
|
+
const defineCustomElement = (tagName, customElement) => {
|
|
41
|
+
if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
|
|
42
|
+
customElements.define(tagName, customElement);
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
// tslint:disable-next-line: only-arrow-functions
|
|
46
|
+
function ProxyCmp(opts) {
|
|
47
|
+
const decorator = function (cls) {
|
|
48
|
+
const { defineCustomElementFn, inputs, methods } = opts;
|
|
49
|
+
if (defineCustomElementFn !== undefined) {
|
|
50
|
+
defineCustomElementFn();
|
|
51
|
+
}
|
|
52
|
+
if (inputs) {
|
|
53
|
+
proxyInputs(cls, inputs);
|
|
54
|
+
}
|
|
55
|
+
if (methods) {
|
|
56
|
+
proxyMethods(cls, methods);
|
|
57
|
+
}
|
|
58
|
+
return cls;
|
|
59
|
+
};
|
|
60
|
+
return decorator;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
64
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
65
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
66
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
67
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
68
|
+
};
|
|
69
|
+
let TgActivityFeed = class TgActivityFeed {
|
|
70
|
+
z;
|
|
71
|
+
el;
|
|
72
|
+
constructor(c, r, z) {
|
|
73
|
+
this.z = z;
|
|
74
|
+
c.detach();
|
|
75
|
+
this.el = r.nativeElement;
|
|
76
|
+
}
|
|
77
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgActivityFeed, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
78
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgActivityFeed, selector: "tg-activity-feed", inputs: { items: "items", maxItems: "maxItems" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
79
|
+
};
|
|
80
|
+
TgActivityFeed = __decorate([
|
|
81
|
+
ProxyCmp({
|
|
82
|
+
inputs: ['items', 'maxItems']
|
|
83
|
+
})
|
|
84
|
+
], TgActivityFeed);
|
|
85
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgActivityFeed, decorators: [{
|
|
86
|
+
type: Component,
|
|
87
|
+
args: [{
|
|
88
|
+
selector: 'tg-activity-feed',
|
|
89
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
90
|
+
template: '<ng-content></ng-content>',
|
|
91
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
92
|
+
inputs: ['items', 'maxItems'],
|
|
93
|
+
}]
|
|
94
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
95
|
+
let TgActivityStream = class TgActivityStream {
|
|
96
|
+
z;
|
|
97
|
+
el;
|
|
98
|
+
constructor(c, r, z) {
|
|
99
|
+
this.z = z;
|
|
100
|
+
c.detach();
|
|
101
|
+
this.el = r.nativeElement;
|
|
102
|
+
}
|
|
103
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgActivityStream, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
104
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgActivityStream, selector: "tg-activity-stream", inputs: { events: "events", live: "live" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
105
|
+
};
|
|
106
|
+
TgActivityStream = __decorate([
|
|
107
|
+
ProxyCmp({
|
|
108
|
+
inputs: ['events', 'live']
|
|
109
|
+
})
|
|
110
|
+
], TgActivityStream);
|
|
111
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgActivityStream, decorators: [{
|
|
112
|
+
type: Component,
|
|
113
|
+
args: [{
|
|
114
|
+
selector: 'tg-activity-stream',
|
|
115
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
116
|
+
template: '<ng-content></ng-content>',
|
|
117
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
118
|
+
inputs: ['events', 'live'],
|
|
119
|
+
}]
|
|
120
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
121
|
+
let TgAiFeedback = class TgAiFeedback {
|
|
122
|
+
z;
|
|
123
|
+
el;
|
|
124
|
+
constructor(c, r, z) {
|
|
125
|
+
this.z = z;
|
|
126
|
+
c.detach();
|
|
127
|
+
this.el = r.nativeElement;
|
|
128
|
+
proxyOutputs(this, this.el, ['tgFeedback']);
|
|
129
|
+
}
|
|
130
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgAiFeedback, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
131
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgAiFeedback, selector: "tg-ai-feedback", inputs: { question: "question" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
132
|
+
};
|
|
133
|
+
TgAiFeedback = __decorate([
|
|
134
|
+
ProxyCmp({
|
|
135
|
+
inputs: ['question']
|
|
136
|
+
})
|
|
137
|
+
], TgAiFeedback);
|
|
138
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgAiFeedback, decorators: [{
|
|
139
|
+
type: Component,
|
|
140
|
+
args: [{
|
|
141
|
+
selector: 'tg-ai-feedback',
|
|
142
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
143
|
+
template: '<ng-content></ng-content>',
|
|
144
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
145
|
+
inputs: ['question'],
|
|
146
|
+
}]
|
|
147
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
148
|
+
let TgAiInsightCard = class TgAiInsightCard {
|
|
149
|
+
z;
|
|
150
|
+
el;
|
|
151
|
+
constructor(c, r, z) {
|
|
152
|
+
this.z = z;
|
|
153
|
+
c.detach();
|
|
154
|
+
this.el = r.nativeElement;
|
|
155
|
+
}
|
|
156
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgAiInsightCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
157
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgAiInsightCard, selector: "tg-ai-insight-card", inputs: { confidence: "confidence", heading: "heading", icon: "icon", insight: "insight", source: "source", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
158
|
+
};
|
|
159
|
+
TgAiInsightCard = __decorate([
|
|
160
|
+
ProxyCmp({
|
|
161
|
+
inputs: ['confidence', 'heading', 'icon', 'insight', 'source', 'variant']
|
|
162
|
+
})
|
|
163
|
+
], TgAiInsightCard);
|
|
164
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgAiInsightCard, decorators: [{
|
|
165
|
+
type: Component,
|
|
166
|
+
args: [{
|
|
167
|
+
selector: 'tg-ai-insight-card',
|
|
168
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
169
|
+
template: '<ng-content></ng-content>',
|
|
170
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
171
|
+
inputs: ['confidence', 'heading', 'icon', 'insight', 'source', 'variant'],
|
|
172
|
+
}]
|
|
173
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
174
|
+
let TgAlert = class TgAlert {
|
|
175
|
+
z;
|
|
176
|
+
el;
|
|
177
|
+
constructor(c, r, z) {
|
|
178
|
+
this.z = z;
|
|
179
|
+
c.detach();
|
|
180
|
+
this.el = r.nativeElement;
|
|
181
|
+
proxyOutputs(this, this.el, ['tgDismiss']);
|
|
182
|
+
}
|
|
183
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
184
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgAlert, selector: "tg-alert", inputs: { alertTitle: "alertTitle", dismissible: "dismissible", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
185
|
+
};
|
|
186
|
+
TgAlert = __decorate([
|
|
187
|
+
ProxyCmp({
|
|
188
|
+
inputs: ['alertTitle', 'dismissible', 'variant']
|
|
189
|
+
})
|
|
190
|
+
], TgAlert);
|
|
191
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgAlert, decorators: [{
|
|
192
|
+
type: Component,
|
|
193
|
+
args: [{
|
|
194
|
+
selector: 'tg-alert',
|
|
195
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
196
|
+
template: '<ng-content></ng-content>',
|
|
197
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
198
|
+
inputs: ['alertTitle', 'dismissible', 'variant'],
|
|
199
|
+
}]
|
|
200
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
201
|
+
let TgAudioPlayer = class TgAudioPlayer {
|
|
202
|
+
z;
|
|
203
|
+
el;
|
|
204
|
+
constructor(c, r, z) {
|
|
205
|
+
this.z = z;
|
|
206
|
+
c.detach();
|
|
207
|
+
this.el = r.nativeElement;
|
|
208
|
+
}
|
|
209
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgAudioPlayer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
210
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgAudioPlayer, selector: "tg-audio-player", inputs: { artist: "artist", heading: "heading", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
211
|
+
};
|
|
212
|
+
TgAudioPlayer = __decorate([
|
|
213
|
+
ProxyCmp({
|
|
214
|
+
inputs: ['artist', 'heading', 'src']
|
|
215
|
+
})
|
|
216
|
+
], TgAudioPlayer);
|
|
217
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgAudioPlayer, decorators: [{
|
|
218
|
+
type: Component,
|
|
219
|
+
args: [{
|
|
220
|
+
selector: 'tg-audio-player',
|
|
221
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
222
|
+
template: '<ng-content></ng-content>',
|
|
223
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
224
|
+
inputs: ['artist', 'heading', 'src'],
|
|
225
|
+
}]
|
|
226
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
227
|
+
let TgAutocomplete = class TgAutocomplete {
|
|
228
|
+
z;
|
|
229
|
+
el;
|
|
230
|
+
constructor(c, r, z) {
|
|
231
|
+
this.z = z;
|
|
232
|
+
c.detach();
|
|
233
|
+
this.el = r.nativeElement;
|
|
234
|
+
proxyOutputs(this, this.el, ['tgChange', 'tgSearch']);
|
|
235
|
+
}
|
|
236
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgAutocomplete, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
237
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgAutocomplete, selector: "tg-autocomplete", inputs: { disabled: "disabled", invalid: "invalid", label: "label", loading: "loading", minChars: "minChars", placeholder: "placeholder", size: "size", suggestions: "suggestions", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
238
|
+
};
|
|
239
|
+
TgAutocomplete = __decorate([
|
|
240
|
+
ProxyCmp({
|
|
241
|
+
inputs: ['disabled', 'invalid', 'label', 'loading', 'minChars', 'placeholder', 'size', 'suggestions', 'value']
|
|
242
|
+
})
|
|
243
|
+
], TgAutocomplete);
|
|
244
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgAutocomplete, decorators: [{
|
|
245
|
+
type: Component,
|
|
246
|
+
args: [{
|
|
247
|
+
selector: 'tg-autocomplete',
|
|
248
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
249
|
+
template: '<ng-content></ng-content>',
|
|
250
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
251
|
+
inputs: ['disabled', 'invalid', 'label', 'loading', 'minChars', 'placeholder', 'size', 'suggestions', 'value'],
|
|
252
|
+
}]
|
|
253
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
254
|
+
let TgAvatar = class TgAvatar {
|
|
255
|
+
z;
|
|
256
|
+
el;
|
|
257
|
+
constructor(c, r, z) {
|
|
258
|
+
this.z = z;
|
|
259
|
+
c.detach();
|
|
260
|
+
this.el = r.nativeElement;
|
|
261
|
+
}
|
|
262
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
263
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgAvatar, selector: "tg-avatar", inputs: { alt: "alt", name: "name", size: "size", square: "square", src: "src", status: "status", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
264
|
+
};
|
|
265
|
+
TgAvatar = __decorate([
|
|
266
|
+
ProxyCmp({
|
|
267
|
+
inputs: ['alt', 'name', 'size', 'square', 'src', 'status', 'variant']
|
|
268
|
+
})
|
|
269
|
+
], TgAvatar);
|
|
270
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgAvatar, decorators: [{
|
|
271
|
+
type: Component,
|
|
272
|
+
args: [{
|
|
273
|
+
selector: 'tg-avatar',
|
|
274
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
275
|
+
template: '<ng-content></ng-content>',
|
|
276
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
277
|
+
inputs: ['alt', 'name', 'size', 'square', 'src', 'status', 'variant'],
|
|
278
|
+
}]
|
|
279
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
280
|
+
let TgBadge = class TgBadge {
|
|
281
|
+
z;
|
|
282
|
+
el;
|
|
283
|
+
constructor(c, r, z) {
|
|
284
|
+
this.z = z;
|
|
285
|
+
c.detach();
|
|
286
|
+
this.el = r.nativeElement;
|
|
287
|
+
}
|
|
288
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
289
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgBadge, selector: "tg-badge", inputs: { outlined: "outlined", pill: "pill", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
290
|
+
};
|
|
291
|
+
TgBadge = __decorate([
|
|
292
|
+
ProxyCmp({
|
|
293
|
+
inputs: ['outlined', 'pill', 'size', 'variant']
|
|
294
|
+
})
|
|
295
|
+
], TgBadge);
|
|
296
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgBadge, decorators: [{
|
|
297
|
+
type: Component,
|
|
298
|
+
args: [{
|
|
299
|
+
selector: 'tg-badge',
|
|
300
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
301
|
+
template: '<ng-content></ng-content>',
|
|
302
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
303
|
+
inputs: ['outlined', 'pill', 'size', 'variant'],
|
|
304
|
+
}]
|
|
305
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
306
|
+
let TgBottomNav = class TgBottomNav {
|
|
307
|
+
z;
|
|
308
|
+
el;
|
|
309
|
+
constructor(c, r, z) {
|
|
310
|
+
this.z = z;
|
|
311
|
+
c.detach();
|
|
312
|
+
this.el = r.nativeElement;
|
|
313
|
+
proxyOutputs(this, this.el, ['tgNavigate']);
|
|
314
|
+
}
|
|
315
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgBottomNav, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
316
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgBottomNav, selector: "tg-bottom-nav", inputs: { active: "active", items: "items" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
317
|
+
};
|
|
318
|
+
TgBottomNav = __decorate([
|
|
319
|
+
ProxyCmp({
|
|
320
|
+
inputs: ['active', 'items']
|
|
321
|
+
})
|
|
322
|
+
], TgBottomNav);
|
|
323
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgBottomNav, decorators: [{
|
|
324
|
+
type: Component,
|
|
325
|
+
args: [{
|
|
326
|
+
selector: 'tg-bottom-nav',
|
|
327
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
328
|
+
template: '<ng-content></ng-content>',
|
|
329
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
330
|
+
inputs: ['active', 'items'],
|
|
331
|
+
}]
|
|
332
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
333
|
+
let TgBottomSheet = class TgBottomSheet {
|
|
334
|
+
z;
|
|
335
|
+
el;
|
|
336
|
+
constructor(c, r, z) {
|
|
337
|
+
this.z = z;
|
|
338
|
+
c.detach();
|
|
339
|
+
this.el = r.nativeElement;
|
|
340
|
+
proxyOutputs(this, this.el, ['tgClose']);
|
|
341
|
+
}
|
|
342
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgBottomSheet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
343
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgBottomSheet, selector: "tg-bottom-sheet", inputs: { heading: "heading", open: "open" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
344
|
+
};
|
|
345
|
+
TgBottomSheet = __decorate([
|
|
346
|
+
ProxyCmp({
|
|
347
|
+
inputs: ['heading', 'open']
|
|
348
|
+
})
|
|
349
|
+
], TgBottomSheet);
|
|
350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgBottomSheet, decorators: [{
|
|
351
|
+
type: Component,
|
|
352
|
+
args: [{
|
|
353
|
+
selector: 'tg-bottom-sheet',
|
|
354
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
355
|
+
template: '<ng-content></ng-content>',
|
|
356
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
357
|
+
inputs: ['heading', 'open'],
|
|
358
|
+
}]
|
|
359
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
360
|
+
let TgBreadcrumb = class TgBreadcrumb {
|
|
361
|
+
z;
|
|
362
|
+
el;
|
|
363
|
+
constructor(c, r, z) {
|
|
364
|
+
this.z = z;
|
|
365
|
+
c.detach();
|
|
366
|
+
this.el = r.nativeElement;
|
|
367
|
+
}
|
|
368
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
369
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgBreadcrumb, selector: "tg-breadcrumb", inputs: { items: "items", maxItems: "maxItems" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
370
|
+
};
|
|
371
|
+
TgBreadcrumb = __decorate([
|
|
372
|
+
ProxyCmp({
|
|
373
|
+
inputs: ['items', 'maxItems']
|
|
374
|
+
})
|
|
375
|
+
], TgBreadcrumb);
|
|
376
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgBreadcrumb, decorators: [{
|
|
377
|
+
type: Component,
|
|
378
|
+
args: [{
|
|
379
|
+
selector: 'tg-breadcrumb',
|
|
380
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
381
|
+
template: '<ng-content></ng-content>',
|
|
382
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
383
|
+
inputs: ['items', 'maxItems'],
|
|
384
|
+
}]
|
|
385
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
386
|
+
let TgButton = class TgButton {
|
|
387
|
+
z;
|
|
388
|
+
el;
|
|
389
|
+
constructor(c, r, z) {
|
|
390
|
+
this.z = z;
|
|
391
|
+
c.detach();
|
|
392
|
+
this.el = r.nativeElement;
|
|
393
|
+
proxyOutputs(this, this.el, ['tgClick']);
|
|
394
|
+
}
|
|
395
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
396
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgButton, selector: "tg-button", inputs: { disabled: "disabled", fullWidth: "fullWidth", href: "href", loading: "loading", size: "size", target: "target", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
397
|
+
};
|
|
398
|
+
TgButton = __decorate([
|
|
399
|
+
ProxyCmp({
|
|
400
|
+
inputs: ['disabled', 'fullWidth', 'href', 'loading', 'size', 'target', 'type', 'variant']
|
|
401
|
+
})
|
|
402
|
+
], TgButton);
|
|
403
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgButton, decorators: [{
|
|
404
|
+
type: Component,
|
|
405
|
+
args: [{
|
|
406
|
+
selector: 'tg-button',
|
|
407
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
408
|
+
template: '<ng-content></ng-content>',
|
|
409
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
410
|
+
inputs: ['disabled', 'fullWidth', 'href', 'loading', 'size', 'target', 'type', 'variant'],
|
|
411
|
+
}]
|
|
412
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
413
|
+
let TgCalendarView = class TgCalendarView {
|
|
414
|
+
z;
|
|
415
|
+
el;
|
|
416
|
+
constructor(c, r, z) {
|
|
417
|
+
this.z = z;
|
|
418
|
+
c.detach();
|
|
419
|
+
this.el = r.nativeElement;
|
|
420
|
+
proxyOutputs(this, this.el, ['tgDateSelect']);
|
|
421
|
+
}
|
|
422
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgCalendarView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
423
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgCalendarView, selector: "tg-calendar-view", inputs: { events: "events" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
424
|
+
};
|
|
425
|
+
TgCalendarView = __decorate([
|
|
426
|
+
ProxyCmp({
|
|
427
|
+
inputs: ['events']
|
|
428
|
+
})
|
|
429
|
+
], TgCalendarView);
|
|
430
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgCalendarView, decorators: [{
|
|
431
|
+
type: Component,
|
|
432
|
+
args: [{
|
|
433
|
+
selector: 'tg-calendar-view',
|
|
434
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
435
|
+
template: '<ng-content></ng-content>',
|
|
436
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
437
|
+
inputs: ['events'],
|
|
438
|
+
}]
|
|
439
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
440
|
+
let TgCard = class TgCard {
|
|
441
|
+
z;
|
|
442
|
+
el;
|
|
443
|
+
constructor(c, r, z) {
|
|
444
|
+
this.z = z;
|
|
445
|
+
c.detach();
|
|
446
|
+
this.el = r.nativeElement;
|
|
447
|
+
}
|
|
448
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
449
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgCard, selector: "tg-card", inputs: { elevation: "elevation", fullWidth: "fullWidth", interactive: "interactive", noPadding: "noPadding" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
450
|
+
};
|
|
451
|
+
TgCard = __decorate([
|
|
452
|
+
ProxyCmp({
|
|
453
|
+
inputs: ['elevation', 'fullWidth', 'interactive', 'noPadding']
|
|
454
|
+
})
|
|
455
|
+
], TgCard);
|
|
456
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgCard, decorators: [{
|
|
457
|
+
type: Component,
|
|
458
|
+
args: [{
|
|
459
|
+
selector: 'tg-card',
|
|
460
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
461
|
+
template: '<ng-content></ng-content>',
|
|
462
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
463
|
+
inputs: ['elevation', 'fullWidth', 'interactive', 'noPadding'],
|
|
464
|
+
}]
|
|
465
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
466
|
+
let TgChat = class TgChat {
|
|
467
|
+
z;
|
|
468
|
+
el;
|
|
469
|
+
constructor(c, r, z) {
|
|
470
|
+
this.z = z;
|
|
471
|
+
c.detach();
|
|
472
|
+
this.el = r.nativeElement;
|
|
473
|
+
proxyOutputs(this, this.el, ['tgSend']);
|
|
474
|
+
}
|
|
475
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgChat, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
476
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgChat, selector: "tg-chat", inputs: { botInitial: "botInitial", chatTitle: "chatTitle", messages: "messages", placeholder: "placeholder", typing: "typing" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
477
|
+
};
|
|
478
|
+
TgChat = __decorate([
|
|
479
|
+
ProxyCmp({
|
|
480
|
+
inputs: ['botInitial', 'chatTitle', 'messages', 'placeholder', 'typing']
|
|
481
|
+
})
|
|
482
|
+
], TgChat);
|
|
483
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgChat, decorators: [{
|
|
484
|
+
type: Component,
|
|
485
|
+
args: [{
|
|
486
|
+
selector: 'tg-chat',
|
|
487
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
488
|
+
template: '<ng-content></ng-content>',
|
|
489
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
490
|
+
inputs: ['botInitial', 'chatTitle', 'messages', 'placeholder', 'typing'],
|
|
491
|
+
}]
|
|
492
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
493
|
+
let TgChatMessage = class TgChatMessage {
|
|
494
|
+
z;
|
|
495
|
+
el;
|
|
496
|
+
constructor(c, r, z) {
|
|
497
|
+
this.z = z;
|
|
498
|
+
c.detach();
|
|
499
|
+
this.el = r.nativeElement;
|
|
500
|
+
}
|
|
501
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgChatMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
502
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgChatMessage, selector: "tg-chat-message", inputs: { avatar: "avatar", role: "role", streaming: "streaming", timestamp: "timestamp" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
503
|
+
};
|
|
504
|
+
TgChatMessage = __decorate([
|
|
505
|
+
ProxyCmp({
|
|
506
|
+
inputs: ['avatar', 'role', 'streaming', 'timestamp']
|
|
507
|
+
})
|
|
508
|
+
], TgChatMessage);
|
|
509
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgChatMessage, decorators: [{
|
|
510
|
+
type: Component,
|
|
511
|
+
args: [{
|
|
512
|
+
selector: 'tg-chat-message',
|
|
513
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
514
|
+
template: '<ng-content></ng-content>',
|
|
515
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
516
|
+
inputs: ['avatar', 'role', 'streaming', 'timestamp'],
|
|
517
|
+
}]
|
|
518
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
519
|
+
let TgCheckbox = class TgCheckbox {
|
|
520
|
+
z;
|
|
521
|
+
el;
|
|
522
|
+
constructor(c, r, z) {
|
|
523
|
+
this.z = z;
|
|
524
|
+
c.detach();
|
|
525
|
+
this.el = r.nativeElement;
|
|
526
|
+
proxyOutputs(this, this.el, ['tgChange']);
|
|
527
|
+
}
|
|
528
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
529
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgCheckbox, selector: "tg-checkbox", inputs: { checked: "checked", description: "description", disabled: "disabled", error: "error", indeterminate: "indeterminate", label: "label", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
530
|
+
};
|
|
531
|
+
TgCheckbox = __decorate([
|
|
532
|
+
ProxyCmp({
|
|
533
|
+
inputs: ['checked', 'description', 'disabled', 'error', 'indeterminate', 'label', 'name', 'value']
|
|
534
|
+
})
|
|
535
|
+
], TgCheckbox);
|
|
536
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgCheckbox, decorators: [{
|
|
537
|
+
type: Component,
|
|
538
|
+
args: [{
|
|
539
|
+
selector: 'tg-checkbox',
|
|
540
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
541
|
+
template: '<ng-content></ng-content>',
|
|
542
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
543
|
+
inputs: ['checked', 'description', 'disabled', 'error', 'indeterminate', 'label', 'name', 'value'],
|
|
544
|
+
}]
|
|
545
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
546
|
+
let TgCombobox = class TgCombobox {
|
|
547
|
+
z;
|
|
548
|
+
el;
|
|
549
|
+
constructor(c, r, z) {
|
|
550
|
+
this.z = z;
|
|
551
|
+
c.detach();
|
|
552
|
+
this.el = r.nativeElement;
|
|
553
|
+
proxyOutputs(this, this.el, ['tgChange']);
|
|
554
|
+
}
|
|
555
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgCombobox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
556
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgCombobox, selector: "tg-combobox", inputs: { disabled: "disabled", errorText: "errorText", helperText: "helperText", invalid: "invalid", label: "label", options: "options", placeholder: "placeholder", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
557
|
+
};
|
|
558
|
+
TgCombobox = __decorate([
|
|
559
|
+
ProxyCmp({
|
|
560
|
+
inputs: ['disabled', 'errorText', 'helperText', 'invalid', 'label', 'options', 'placeholder', 'size', 'value']
|
|
561
|
+
})
|
|
562
|
+
], TgCombobox);
|
|
563
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgCombobox, decorators: [{
|
|
564
|
+
type: Component,
|
|
565
|
+
args: [{
|
|
566
|
+
selector: 'tg-combobox',
|
|
567
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
568
|
+
template: '<ng-content></ng-content>',
|
|
569
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
570
|
+
inputs: ['disabled', 'errorText', 'helperText', 'invalid', 'label', 'options', 'placeholder', 'size', 'value'],
|
|
571
|
+
}]
|
|
572
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
573
|
+
let TgCommandPalette = class TgCommandPalette {
|
|
574
|
+
z;
|
|
575
|
+
el;
|
|
576
|
+
constructor(c, r, z) {
|
|
577
|
+
this.z = z;
|
|
578
|
+
c.detach();
|
|
579
|
+
this.el = r.nativeElement;
|
|
580
|
+
proxyOutputs(this, this.el, ['tgSelect']);
|
|
581
|
+
}
|
|
582
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgCommandPalette, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
583
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgCommandPalette, selector: "tg-command-palette", inputs: { commands: "commands", placeholder: "placeholder" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
584
|
+
};
|
|
585
|
+
TgCommandPalette = __decorate([
|
|
586
|
+
ProxyCmp({
|
|
587
|
+
inputs: ['commands', 'placeholder']
|
|
588
|
+
})
|
|
589
|
+
], TgCommandPalette);
|
|
590
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgCommandPalette, decorators: [{
|
|
591
|
+
type: Component,
|
|
592
|
+
args: [{
|
|
593
|
+
selector: 'tg-command-palette',
|
|
594
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
595
|
+
template: '<ng-content></ng-content>',
|
|
596
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
597
|
+
inputs: ['commands', 'placeholder'],
|
|
598
|
+
}]
|
|
599
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
600
|
+
let TgConfidenceBadge = class TgConfidenceBadge {
|
|
601
|
+
z;
|
|
602
|
+
el;
|
|
603
|
+
constructor(c, r, z) {
|
|
604
|
+
this.z = z;
|
|
605
|
+
c.detach();
|
|
606
|
+
this.el = r.nativeElement;
|
|
607
|
+
}
|
|
608
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgConfidenceBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
609
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgConfidenceBadge, selector: "tg-confidence-badge", inputs: { label: "label", score: "score", showBar: "showBar" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
610
|
+
};
|
|
611
|
+
TgConfidenceBadge = __decorate([
|
|
612
|
+
ProxyCmp({
|
|
613
|
+
inputs: ['label', 'score', 'showBar']
|
|
614
|
+
})
|
|
615
|
+
], TgConfidenceBadge);
|
|
616
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgConfidenceBadge, decorators: [{
|
|
617
|
+
type: Component,
|
|
618
|
+
args: [{
|
|
619
|
+
selector: 'tg-confidence-badge',
|
|
620
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
621
|
+
template: '<ng-content></ng-content>',
|
|
622
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
623
|
+
inputs: ['label', 'score', 'showBar'],
|
|
624
|
+
}]
|
|
625
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
626
|
+
let TgConfirmDialog = class TgConfirmDialog {
|
|
627
|
+
z;
|
|
628
|
+
el;
|
|
629
|
+
constructor(c, r, z) {
|
|
630
|
+
this.z = z;
|
|
631
|
+
c.detach();
|
|
632
|
+
this.el = r.nativeElement;
|
|
633
|
+
proxyOutputs(this, this.el, ['tgConfirm', 'tgCancel']);
|
|
634
|
+
}
|
|
635
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgConfirmDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
636
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgConfirmDialog, selector: "tg-confirm-dialog", inputs: { cancelLabel: "cancelLabel", confirmLabel: "confirmLabel", heading: "heading", icon: "icon", message: "message", open: "open", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
637
|
+
};
|
|
638
|
+
TgConfirmDialog = __decorate([
|
|
639
|
+
ProxyCmp({
|
|
640
|
+
inputs: ['cancelLabel', 'confirmLabel', 'heading', 'icon', 'message', 'open', 'variant']
|
|
641
|
+
})
|
|
642
|
+
], TgConfirmDialog);
|
|
643
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgConfirmDialog, decorators: [{
|
|
644
|
+
type: Component,
|
|
645
|
+
args: [{
|
|
646
|
+
selector: 'tg-confirm-dialog',
|
|
647
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
648
|
+
template: '<ng-content></ng-content>',
|
|
649
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
650
|
+
inputs: ['cancelLabel', 'confirmLabel', 'heading', 'icon', 'message', 'open', 'variant'],
|
|
651
|
+
}]
|
|
652
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
653
|
+
let TgContextMenu = class TgContextMenu {
|
|
654
|
+
z;
|
|
655
|
+
el;
|
|
656
|
+
constructor(c, r, z) {
|
|
657
|
+
this.z = z;
|
|
658
|
+
c.detach();
|
|
659
|
+
this.el = r.nativeElement;
|
|
660
|
+
proxyOutputs(this, this.el, ['tgAction']);
|
|
661
|
+
}
|
|
662
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgContextMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
663
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgContextMenu, selector: "tg-context-menu", inputs: { items: "items" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
664
|
+
};
|
|
665
|
+
TgContextMenu = __decorate([
|
|
666
|
+
ProxyCmp({
|
|
667
|
+
inputs: ['items']
|
|
668
|
+
})
|
|
669
|
+
], TgContextMenu);
|
|
670
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgContextMenu, decorators: [{
|
|
671
|
+
type: Component,
|
|
672
|
+
args: [{
|
|
673
|
+
selector: 'tg-context-menu',
|
|
674
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
675
|
+
template: '<ng-content></ng-content>',
|
|
676
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
677
|
+
inputs: ['items'],
|
|
678
|
+
}]
|
|
679
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
680
|
+
let TgDataTable = class TgDataTable {
|
|
681
|
+
z;
|
|
682
|
+
el;
|
|
683
|
+
constructor(c, r, z) {
|
|
684
|
+
this.z = z;
|
|
685
|
+
c.detach();
|
|
686
|
+
this.el = r.nativeElement;
|
|
687
|
+
proxyOutputs(this, this.el, ['tgSort', 'tgRowSelect']);
|
|
688
|
+
}
|
|
689
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgDataTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
690
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgDataTable, selector: "tg-data-table", inputs: { columns: "columns", compact: "compact", emptyText: "emptyText", loading: "loading", rows: "rows", selectable: "selectable", striped: "striped" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
691
|
+
};
|
|
692
|
+
TgDataTable = __decorate([
|
|
693
|
+
ProxyCmp({
|
|
694
|
+
inputs: ['columns', 'compact', 'emptyText', 'loading', 'rows', 'selectable', 'striped']
|
|
695
|
+
})
|
|
696
|
+
], TgDataTable);
|
|
697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgDataTable, decorators: [{
|
|
698
|
+
type: Component,
|
|
699
|
+
args: [{
|
|
700
|
+
selector: 'tg-data-table',
|
|
701
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
702
|
+
template: '<ng-content></ng-content>',
|
|
703
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
704
|
+
inputs: ['columns', 'compact', 'emptyText', 'loading', 'rows', 'selectable', 'striped'],
|
|
705
|
+
}]
|
|
706
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
707
|
+
let TgDatePicker = class TgDatePicker {
|
|
708
|
+
z;
|
|
709
|
+
el;
|
|
710
|
+
constructor(c, r, z) {
|
|
711
|
+
this.z = z;
|
|
712
|
+
c.detach();
|
|
713
|
+
this.el = r.nativeElement;
|
|
714
|
+
proxyOutputs(this, this.el, ['tgChange']);
|
|
715
|
+
}
|
|
716
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
717
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgDatePicker, selector: "tg-date-picker", inputs: { disabled: "disabled", errorText: "errorText", helperText: "helperText", invalid: "invalid", label: "label", placeholder: "placeholder", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
718
|
+
};
|
|
719
|
+
TgDatePicker = __decorate([
|
|
720
|
+
ProxyCmp({
|
|
721
|
+
inputs: ['disabled', 'errorText', 'helperText', 'invalid', 'label', 'placeholder', 'size', 'value']
|
|
722
|
+
})
|
|
723
|
+
], TgDatePicker);
|
|
724
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgDatePicker, decorators: [{
|
|
725
|
+
type: Component,
|
|
726
|
+
args: [{
|
|
727
|
+
selector: 'tg-date-picker',
|
|
728
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
729
|
+
template: '<ng-content></ng-content>',
|
|
730
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
731
|
+
inputs: ['disabled', 'errorText', 'helperText', 'invalid', 'label', 'placeholder', 'size', 'value'],
|
|
732
|
+
}]
|
|
733
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
734
|
+
let TgEmptyState = class TgEmptyState {
|
|
735
|
+
z;
|
|
736
|
+
el;
|
|
737
|
+
constructor(c, r, z) {
|
|
738
|
+
this.z = z;
|
|
739
|
+
c.detach();
|
|
740
|
+
this.el = r.nativeElement;
|
|
741
|
+
}
|
|
742
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
743
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgEmptyState, selector: "tg-empty-state", inputs: { actionLabel: "actionLabel", description: "description", heading: "heading", icon: "icon", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
744
|
+
};
|
|
745
|
+
TgEmptyState = __decorate([
|
|
746
|
+
ProxyCmp({
|
|
747
|
+
inputs: ['actionLabel', 'description', 'heading', 'icon', 'variant']
|
|
748
|
+
})
|
|
749
|
+
], TgEmptyState);
|
|
750
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgEmptyState, decorators: [{
|
|
751
|
+
type: Component,
|
|
752
|
+
args: [{
|
|
753
|
+
selector: 'tg-empty-state',
|
|
754
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
755
|
+
template: '<ng-content></ng-content>',
|
|
756
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
757
|
+
inputs: ['actionLabel', 'description', 'heading', 'icon', 'variant'],
|
|
758
|
+
}]
|
|
759
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
760
|
+
let TgExpandableRow = class TgExpandableRow {
|
|
761
|
+
z;
|
|
762
|
+
el;
|
|
763
|
+
constructor(c, r, z) {
|
|
764
|
+
this.z = z;
|
|
765
|
+
c.detach();
|
|
766
|
+
this.el = r.nativeElement;
|
|
767
|
+
}
|
|
768
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgExpandableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
769
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgExpandableRow, selector: "tg-expandable-row", inputs: { header: "header", icon: "icon", subtext: "subtext" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
770
|
+
};
|
|
771
|
+
TgExpandableRow = __decorate([
|
|
772
|
+
ProxyCmp({
|
|
773
|
+
inputs: ['header', 'icon', 'subtext']
|
|
774
|
+
})
|
|
775
|
+
], TgExpandableRow);
|
|
776
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgExpandableRow, decorators: [{
|
|
777
|
+
type: Component,
|
|
778
|
+
args: [{
|
|
779
|
+
selector: 'tg-expandable-row',
|
|
780
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
781
|
+
template: '<ng-content></ng-content>',
|
|
782
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
783
|
+
inputs: ['header', 'icon', 'subtext'],
|
|
784
|
+
}]
|
|
785
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
786
|
+
let TgFab = class TgFab {
|
|
787
|
+
z;
|
|
788
|
+
el;
|
|
789
|
+
constructor(c, r, z) {
|
|
790
|
+
this.z = z;
|
|
791
|
+
c.detach();
|
|
792
|
+
this.el = r.nativeElement;
|
|
793
|
+
proxyOutputs(this, this.el, ['tgClick']);
|
|
794
|
+
}
|
|
795
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgFab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
796
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgFab, selector: "tg-fab", inputs: { fixed: "fixed", icon: "icon", label: "label", position: "position", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
797
|
+
};
|
|
798
|
+
TgFab = __decorate([
|
|
799
|
+
ProxyCmp({
|
|
800
|
+
inputs: ['fixed', 'icon', 'label', 'position', 'size', 'variant']
|
|
801
|
+
})
|
|
802
|
+
], TgFab);
|
|
803
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgFab, decorators: [{
|
|
804
|
+
type: Component,
|
|
805
|
+
args: [{
|
|
806
|
+
selector: 'tg-fab',
|
|
807
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
808
|
+
template: '<ng-content></ng-content>',
|
|
809
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
810
|
+
inputs: ['fixed', 'icon', 'label', 'position', 'size', 'variant'],
|
|
811
|
+
}]
|
|
812
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
813
|
+
let TgFileUpload = class TgFileUpload {
|
|
814
|
+
z;
|
|
815
|
+
el;
|
|
816
|
+
constructor(c, r, z) {
|
|
817
|
+
this.z = z;
|
|
818
|
+
c.detach();
|
|
819
|
+
this.el = r.nativeElement;
|
|
820
|
+
proxyOutputs(this, this.el, ['tgFilesChange']);
|
|
821
|
+
}
|
|
822
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgFileUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
823
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgFileUpload, selector: "tg-file-upload", inputs: { accept: "accept", hint: "hint", label: "label", maxFiles: "maxFiles", maxSize: "maxSize", multiple: "multiple" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
824
|
+
};
|
|
825
|
+
TgFileUpload = __decorate([
|
|
826
|
+
ProxyCmp({
|
|
827
|
+
inputs: ['accept', 'hint', 'label', 'maxFiles', 'maxSize', 'multiple']
|
|
828
|
+
})
|
|
829
|
+
], TgFileUpload);
|
|
830
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgFileUpload, decorators: [{
|
|
831
|
+
type: Component,
|
|
832
|
+
args: [{
|
|
833
|
+
selector: 'tg-file-upload',
|
|
834
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
835
|
+
template: '<ng-content></ng-content>',
|
|
836
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
837
|
+
inputs: ['accept', 'hint', 'label', 'maxFiles', 'maxSize', 'multiple'],
|
|
838
|
+
}]
|
|
839
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
840
|
+
let TgGlobalLoader = class TgGlobalLoader {
|
|
841
|
+
z;
|
|
842
|
+
el;
|
|
843
|
+
constructor(c, r, z) {
|
|
844
|
+
this.z = z;
|
|
845
|
+
c.detach();
|
|
846
|
+
this.el = r.nativeElement;
|
|
847
|
+
}
|
|
848
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgGlobalLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
849
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgGlobalLoader, selector: "tg-global-loader", inputs: { active: "active", label: "label", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
850
|
+
};
|
|
851
|
+
TgGlobalLoader = __decorate([
|
|
852
|
+
ProxyCmp({
|
|
853
|
+
inputs: ['active', 'label', 'variant']
|
|
854
|
+
})
|
|
855
|
+
], TgGlobalLoader);
|
|
856
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgGlobalLoader, decorators: [{
|
|
857
|
+
type: Component,
|
|
858
|
+
args: [{
|
|
859
|
+
selector: 'tg-global-loader',
|
|
860
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
861
|
+
template: '<ng-content></ng-content>',
|
|
862
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
863
|
+
inputs: ['active', 'label', 'variant'],
|
|
864
|
+
}]
|
|
865
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
866
|
+
let TgHeatmap = class TgHeatmap {
|
|
867
|
+
z;
|
|
868
|
+
el;
|
|
869
|
+
constructor(c, r, z) {
|
|
870
|
+
this.z = z;
|
|
871
|
+
c.detach();
|
|
872
|
+
this.el = r.nativeElement;
|
|
873
|
+
}
|
|
874
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgHeatmap, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
875
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgHeatmap, selector: "tg-heatmap", inputs: { colorMax: "colorMax", colorMin: "colorMin", data: "data", heading: "heading", xLabels: "xLabels", yLabels: "yLabels" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
876
|
+
};
|
|
877
|
+
TgHeatmap = __decorate([
|
|
878
|
+
ProxyCmp({
|
|
879
|
+
inputs: ['colorMax', 'colorMin', 'data', 'heading', 'xLabels', 'yLabels']
|
|
880
|
+
})
|
|
881
|
+
], TgHeatmap);
|
|
882
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgHeatmap, decorators: [{
|
|
883
|
+
type: Component,
|
|
884
|
+
args: [{
|
|
885
|
+
selector: 'tg-heatmap',
|
|
886
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
887
|
+
template: '<ng-content></ng-content>',
|
|
888
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
889
|
+
inputs: ['colorMax', 'colorMin', 'data', 'heading', 'xLabels', 'yLabels'],
|
|
890
|
+
}]
|
|
891
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
892
|
+
let TgImageGallery = class TgImageGallery {
|
|
893
|
+
z;
|
|
894
|
+
el;
|
|
895
|
+
constructor(c, r, z) {
|
|
896
|
+
this.z = z;
|
|
897
|
+
c.detach();
|
|
898
|
+
this.el = r.nativeElement;
|
|
899
|
+
}
|
|
900
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgImageGallery, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
901
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgImageGallery, selector: "tg-image-gallery", inputs: { columns: "columns", images: "images" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
902
|
+
};
|
|
903
|
+
TgImageGallery = __decorate([
|
|
904
|
+
ProxyCmp({
|
|
905
|
+
inputs: ['columns', 'images']
|
|
906
|
+
})
|
|
907
|
+
], TgImageGallery);
|
|
908
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgImageGallery, decorators: [{
|
|
909
|
+
type: Component,
|
|
910
|
+
args: [{
|
|
911
|
+
selector: 'tg-image-gallery',
|
|
912
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
913
|
+
template: '<ng-content></ng-content>',
|
|
914
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
915
|
+
inputs: ['columns', 'images'],
|
|
916
|
+
}]
|
|
917
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
918
|
+
let TgInput = class TgInput {
|
|
919
|
+
z;
|
|
920
|
+
el;
|
|
921
|
+
constructor(c, r, z) {
|
|
922
|
+
this.z = z;
|
|
923
|
+
c.detach();
|
|
924
|
+
this.el = r.nativeElement;
|
|
925
|
+
proxyOutputs(this, this.el, ['tgChange', 'tgFocus', 'tgBlur']);
|
|
926
|
+
}
|
|
927
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
928
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgInput, selector: "tg-input", inputs: { disabled: "disabled", error: "error", fullWidth: "fullWidth", helperText: "helperText", inputId: "inputId", label: "label", placeholder: "placeholder", readonly: "readonly", required: "required", size: "size", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
929
|
+
};
|
|
930
|
+
TgInput = __decorate([
|
|
931
|
+
ProxyCmp({
|
|
932
|
+
inputs: ['disabled', 'error', 'fullWidth', 'helperText', 'inputId', 'label', 'placeholder', 'readonly', 'required', 'size', 'type', 'value']
|
|
933
|
+
})
|
|
934
|
+
], TgInput);
|
|
935
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgInput, decorators: [{
|
|
936
|
+
type: Component,
|
|
937
|
+
args: [{
|
|
938
|
+
selector: 'tg-input',
|
|
939
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
940
|
+
template: '<ng-content></ng-content>',
|
|
941
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
942
|
+
inputs: ['disabled', 'error', 'fullWidth', 'helperText', 'inputId', 'label', 'placeholder', 'readonly', 'required', 'size', 'type', 'value'],
|
|
943
|
+
}]
|
|
944
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
945
|
+
let TgKanbanBoard = class TgKanbanBoard {
|
|
946
|
+
z;
|
|
947
|
+
el;
|
|
948
|
+
constructor(c, r, z) {
|
|
949
|
+
this.z = z;
|
|
950
|
+
c.detach();
|
|
951
|
+
this.el = r.nativeElement;
|
|
952
|
+
proxyOutputs(this, this.el, ['tgCardClick']);
|
|
953
|
+
}
|
|
954
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgKanbanBoard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
955
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgKanbanBoard, selector: "tg-kanban-board", inputs: { columns: "columns" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
956
|
+
};
|
|
957
|
+
TgKanbanBoard = __decorate([
|
|
958
|
+
ProxyCmp({
|
|
959
|
+
inputs: ['columns']
|
|
960
|
+
})
|
|
961
|
+
], TgKanbanBoard);
|
|
962
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgKanbanBoard, decorators: [{
|
|
963
|
+
type: Component,
|
|
964
|
+
args: [{
|
|
965
|
+
selector: 'tg-kanban-board',
|
|
966
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
967
|
+
template: '<ng-content></ng-content>',
|
|
968
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
969
|
+
inputs: ['columns'],
|
|
970
|
+
}]
|
|
971
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
972
|
+
let TgKpiCard = class TgKpiCard {
|
|
973
|
+
z;
|
|
974
|
+
el;
|
|
975
|
+
constructor(c, r, z) {
|
|
976
|
+
this.z = z;
|
|
977
|
+
c.detach();
|
|
978
|
+
this.el = r.nativeElement;
|
|
979
|
+
}
|
|
980
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgKpiCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
981
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgKpiCard, selector: "tg-kpi-card", inputs: { heading: "heading", icon: "icon", trend: "trend", trendValue: "trendValue", unit: "unit", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
982
|
+
};
|
|
983
|
+
TgKpiCard = __decorate([
|
|
984
|
+
ProxyCmp({
|
|
985
|
+
inputs: ['heading', 'icon', 'trend', 'trendValue', 'unit', 'value', 'variant']
|
|
986
|
+
})
|
|
987
|
+
], TgKpiCard);
|
|
988
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgKpiCard, decorators: [{
|
|
989
|
+
type: Component,
|
|
990
|
+
args: [{
|
|
991
|
+
selector: 'tg-kpi-card',
|
|
992
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
993
|
+
template: '<ng-content></ng-content>',
|
|
994
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
995
|
+
inputs: ['heading', 'icon', 'trend', 'trendValue', 'unit', 'value', 'variant'],
|
|
996
|
+
}]
|
|
997
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
998
|
+
let TgLiveBadge = class TgLiveBadge {
|
|
999
|
+
z;
|
|
1000
|
+
el;
|
|
1001
|
+
constructor(c, r, z) {
|
|
1002
|
+
this.z = z;
|
|
1003
|
+
c.detach();
|
|
1004
|
+
this.el = r.nativeElement;
|
|
1005
|
+
}
|
|
1006
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgLiveBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1007
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgLiveBadge, selector: "tg-live-badge", inputs: { active: "active", label: "label", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1008
|
+
};
|
|
1009
|
+
TgLiveBadge = __decorate([
|
|
1010
|
+
ProxyCmp({
|
|
1011
|
+
inputs: ['active', 'label', 'variant']
|
|
1012
|
+
})
|
|
1013
|
+
], TgLiveBadge);
|
|
1014
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgLiveBadge, decorators: [{
|
|
1015
|
+
type: Component,
|
|
1016
|
+
args: [{
|
|
1017
|
+
selector: 'tg-live-badge',
|
|
1018
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1019
|
+
template: '<ng-content></ng-content>',
|
|
1020
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1021
|
+
inputs: ['active', 'label', 'variant'],
|
|
1022
|
+
}]
|
|
1023
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1024
|
+
let TgLoginForm = class TgLoginForm {
|
|
1025
|
+
z;
|
|
1026
|
+
el;
|
|
1027
|
+
constructor(c, r, z) {
|
|
1028
|
+
this.z = z;
|
|
1029
|
+
c.detach();
|
|
1030
|
+
this.el = r.nativeElement;
|
|
1031
|
+
proxyOutputs(this, this.el, ['tgLogin']);
|
|
1032
|
+
}
|
|
1033
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgLoginForm, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1034
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgLoginForm, selector: "tg-login-form", inputs: { error: "error", heading: "heading", loading: "loading", logo: "logo", subtitle: "subtitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1035
|
+
};
|
|
1036
|
+
TgLoginForm = __decorate([
|
|
1037
|
+
ProxyCmp({
|
|
1038
|
+
inputs: ['error', 'heading', 'loading', 'logo', 'subtitle']
|
|
1039
|
+
})
|
|
1040
|
+
], TgLoginForm);
|
|
1041
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgLoginForm, decorators: [{
|
|
1042
|
+
type: Component,
|
|
1043
|
+
args: [{
|
|
1044
|
+
selector: 'tg-login-form',
|
|
1045
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1046
|
+
template: '<ng-content></ng-content>',
|
|
1047
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1048
|
+
inputs: ['error', 'heading', 'loading', 'logo', 'subtitle'],
|
|
1049
|
+
}]
|
|
1050
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1051
|
+
let TgMegaMenu = class TgMegaMenu {
|
|
1052
|
+
z;
|
|
1053
|
+
el;
|
|
1054
|
+
constructor(c, r, z) {
|
|
1055
|
+
this.z = z;
|
|
1056
|
+
c.detach();
|
|
1057
|
+
this.el = r.nativeElement;
|
|
1058
|
+
}
|
|
1059
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgMegaMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1060
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgMegaMenu, selector: "tg-mega-menu", inputs: { tabs: "tabs" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1061
|
+
};
|
|
1062
|
+
TgMegaMenu = __decorate([
|
|
1063
|
+
ProxyCmp({
|
|
1064
|
+
inputs: ['tabs']
|
|
1065
|
+
})
|
|
1066
|
+
], TgMegaMenu);
|
|
1067
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgMegaMenu, decorators: [{
|
|
1068
|
+
type: Component,
|
|
1069
|
+
args: [{
|
|
1070
|
+
selector: 'tg-mega-menu',
|
|
1071
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1072
|
+
template: '<ng-content></ng-content>',
|
|
1073
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1074
|
+
inputs: ['tabs'],
|
|
1075
|
+
}]
|
|
1076
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1077
|
+
let TgModal = class TgModal {
|
|
1078
|
+
z;
|
|
1079
|
+
el;
|
|
1080
|
+
constructor(c, r, z) {
|
|
1081
|
+
this.z = z;
|
|
1082
|
+
c.detach();
|
|
1083
|
+
this.el = r.nativeElement;
|
|
1084
|
+
proxyOutputs(this, this.el, ['tgClose']);
|
|
1085
|
+
}
|
|
1086
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1087
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgModal, selector: "tg-modal", inputs: { closeOnBackdrop: "closeOnBackdrop", closeOnEscape: "closeOnEscape", modalTitle: "modalTitle", open: "open", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1088
|
+
};
|
|
1089
|
+
TgModal = __decorate([
|
|
1090
|
+
ProxyCmp({
|
|
1091
|
+
inputs: ['closeOnBackdrop', 'closeOnEscape', 'modalTitle', 'open', 'size']
|
|
1092
|
+
})
|
|
1093
|
+
], TgModal);
|
|
1094
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgModal, decorators: [{
|
|
1095
|
+
type: Component,
|
|
1096
|
+
args: [{
|
|
1097
|
+
selector: 'tg-modal',
|
|
1098
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1099
|
+
template: '<ng-content></ng-content>',
|
|
1100
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1101
|
+
inputs: ['closeOnBackdrop', 'closeOnEscape', 'modalTitle', 'open', 'size'],
|
|
1102
|
+
}]
|
|
1103
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1104
|
+
let TgModelSelector = class TgModelSelector {
|
|
1105
|
+
z;
|
|
1106
|
+
el;
|
|
1107
|
+
constructor(c, r, z) {
|
|
1108
|
+
this.z = z;
|
|
1109
|
+
c.detach();
|
|
1110
|
+
this.el = r.nativeElement;
|
|
1111
|
+
proxyOutputs(this, this.el, ['tgChange']);
|
|
1112
|
+
}
|
|
1113
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgModelSelector, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1114
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgModelSelector, selector: "tg-model-selector", inputs: { models: "models", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1115
|
+
};
|
|
1116
|
+
TgModelSelector = __decorate([
|
|
1117
|
+
ProxyCmp({
|
|
1118
|
+
inputs: ['models', 'value']
|
|
1119
|
+
})
|
|
1120
|
+
], TgModelSelector);
|
|
1121
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgModelSelector, decorators: [{
|
|
1122
|
+
type: Component,
|
|
1123
|
+
args: [{
|
|
1124
|
+
selector: 'tg-model-selector',
|
|
1125
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1126
|
+
template: '<ng-content></ng-content>',
|
|
1127
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1128
|
+
inputs: ['models', 'value'],
|
|
1129
|
+
}]
|
|
1130
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1131
|
+
let TgMultiSelect = class TgMultiSelect {
|
|
1132
|
+
z;
|
|
1133
|
+
el;
|
|
1134
|
+
constructor(c, r, z) {
|
|
1135
|
+
this.z = z;
|
|
1136
|
+
c.detach();
|
|
1137
|
+
this.el = r.nativeElement;
|
|
1138
|
+
proxyOutputs(this, this.el, ['tgChange']);
|
|
1139
|
+
}
|
|
1140
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgMultiSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1141
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgMultiSelect, selector: "tg-multi-select", inputs: { disabled: "disabled", invalid: "invalid", label: "label", options: "options", placeholder: "placeholder", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1142
|
+
};
|
|
1143
|
+
TgMultiSelect = __decorate([
|
|
1144
|
+
ProxyCmp({
|
|
1145
|
+
inputs: ['disabled', 'invalid', 'label', 'options', 'placeholder', 'size', 'value']
|
|
1146
|
+
})
|
|
1147
|
+
], TgMultiSelect);
|
|
1148
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgMultiSelect, decorators: [{
|
|
1149
|
+
type: Component,
|
|
1150
|
+
args: [{
|
|
1151
|
+
selector: 'tg-multi-select',
|
|
1152
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1153
|
+
template: '<ng-content></ng-content>',
|
|
1154
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1155
|
+
inputs: ['disabled', 'invalid', 'label', 'options', 'placeholder', 'size', 'value'],
|
|
1156
|
+
}]
|
|
1157
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1158
|
+
let TgNavbar = class TgNavbar {
|
|
1159
|
+
z;
|
|
1160
|
+
el;
|
|
1161
|
+
constructor(c, r, z) {
|
|
1162
|
+
this.z = z;
|
|
1163
|
+
c.detach();
|
|
1164
|
+
this.el = r.nativeElement;
|
|
1165
|
+
}
|
|
1166
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgNavbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1167
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgNavbar, selector: "tg-navbar", inputs: { bordered: "bordered", brand: "brand", items: "items", logoSrc: "logoSrc", sticky: "sticky" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1168
|
+
};
|
|
1169
|
+
TgNavbar = __decorate([
|
|
1170
|
+
ProxyCmp({
|
|
1171
|
+
inputs: ['bordered', 'brand', 'items', 'logoSrc', 'sticky']
|
|
1172
|
+
})
|
|
1173
|
+
], TgNavbar);
|
|
1174
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgNavbar, decorators: [{
|
|
1175
|
+
type: Component,
|
|
1176
|
+
args: [{
|
|
1177
|
+
selector: 'tg-navbar',
|
|
1178
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1179
|
+
template: '<ng-content></ng-content>',
|
|
1180
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1181
|
+
inputs: ['bordered', 'brand', 'items', 'logoSrc', 'sticky'],
|
|
1182
|
+
}]
|
|
1183
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1184
|
+
let TgOtpInput = class TgOtpInput {
|
|
1185
|
+
z;
|
|
1186
|
+
el;
|
|
1187
|
+
constructor(c, r, z) {
|
|
1188
|
+
this.z = z;
|
|
1189
|
+
c.detach();
|
|
1190
|
+
this.el = r.nativeElement;
|
|
1191
|
+
proxyOutputs(this, this.el, ['tgComplete', 'tgChange']);
|
|
1192
|
+
}
|
|
1193
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgOtpInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1194
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgOtpInput, selector: "tg-otp-input", inputs: { disabled: "disabled", errorText: "errorText", invalid: "invalid", label: "label", length: "length", masked: "masked" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1195
|
+
};
|
|
1196
|
+
TgOtpInput = __decorate([
|
|
1197
|
+
ProxyCmp({
|
|
1198
|
+
inputs: ['disabled', 'errorText', 'invalid', 'label', 'length', 'masked']
|
|
1199
|
+
})
|
|
1200
|
+
], TgOtpInput);
|
|
1201
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgOtpInput, decorators: [{
|
|
1202
|
+
type: Component,
|
|
1203
|
+
args: [{
|
|
1204
|
+
selector: 'tg-otp-input',
|
|
1205
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1206
|
+
template: '<ng-content></ng-content>',
|
|
1207
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1208
|
+
inputs: ['disabled', 'errorText', 'invalid', 'label', 'length', 'masked'],
|
|
1209
|
+
}]
|
|
1210
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1211
|
+
let TgPagination = class TgPagination {
|
|
1212
|
+
z;
|
|
1213
|
+
el;
|
|
1214
|
+
constructor(c, r, z) {
|
|
1215
|
+
this.z = z;
|
|
1216
|
+
c.detach();
|
|
1217
|
+
this.el = r.nativeElement;
|
|
1218
|
+
proxyOutputs(this, this.el, ['tgPageChange']);
|
|
1219
|
+
}
|
|
1220
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1221
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgPagination, selector: "tg-pagination", inputs: { currentPage: "currentPage", siblingCount: "siblingCount", totalPages: "totalPages" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1222
|
+
};
|
|
1223
|
+
TgPagination = __decorate([
|
|
1224
|
+
ProxyCmp({
|
|
1225
|
+
inputs: ['currentPage', 'siblingCount', 'totalPages']
|
|
1226
|
+
})
|
|
1227
|
+
], TgPagination);
|
|
1228
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgPagination, decorators: [{
|
|
1229
|
+
type: Component,
|
|
1230
|
+
args: [{
|
|
1231
|
+
selector: 'tg-pagination',
|
|
1232
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1233
|
+
template: '<ng-content></ng-content>',
|
|
1234
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1235
|
+
inputs: ['currentPage', 'siblingCount', 'totalPages'],
|
|
1236
|
+
}]
|
|
1237
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1238
|
+
let TgPresenceIndicator = class TgPresenceIndicator {
|
|
1239
|
+
z;
|
|
1240
|
+
el;
|
|
1241
|
+
constructor(c, r, z) {
|
|
1242
|
+
this.z = z;
|
|
1243
|
+
c.detach();
|
|
1244
|
+
this.el = r.nativeElement;
|
|
1245
|
+
}
|
|
1246
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgPresenceIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1247
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgPresenceIndicator, selector: "tg-presence-indicator", inputs: { max: "max", users: "users" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1248
|
+
};
|
|
1249
|
+
TgPresenceIndicator = __decorate([
|
|
1250
|
+
ProxyCmp({
|
|
1251
|
+
inputs: ['max', 'users']
|
|
1252
|
+
})
|
|
1253
|
+
], TgPresenceIndicator);
|
|
1254
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgPresenceIndicator, decorators: [{
|
|
1255
|
+
type: Component,
|
|
1256
|
+
args: [{
|
|
1257
|
+
selector: 'tg-presence-indicator',
|
|
1258
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1259
|
+
template: '<ng-content></ng-content>',
|
|
1260
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1261
|
+
inputs: ['max', 'users'],
|
|
1262
|
+
}]
|
|
1263
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1264
|
+
let TgProgress = class TgProgress {
|
|
1265
|
+
z;
|
|
1266
|
+
el;
|
|
1267
|
+
constructor(c, r, z) {
|
|
1268
|
+
this.z = z;
|
|
1269
|
+
c.detach();
|
|
1270
|
+
this.el = r.nativeElement;
|
|
1271
|
+
}
|
|
1272
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1273
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgProgress, selector: "tg-progress", inputs: { animated: "animated", circular: "circular", circularSize: "circularSize", indeterminate: "indeterminate", label: "label", max: "max", showValue: "showValue", size: "size", striped: "striped", strokeWidth: "strokeWidth", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1274
|
+
};
|
|
1275
|
+
TgProgress = __decorate([
|
|
1276
|
+
ProxyCmp({
|
|
1277
|
+
inputs: ['animated', 'circular', 'circularSize', 'indeterminate', 'label', 'max', 'showValue', 'size', 'striped', 'strokeWidth', 'value', 'variant']
|
|
1278
|
+
})
|
|
1279
|
+
], TgProgress);
|
|
1280
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgProgress, decorators: [{
|
|
1281
|
+
type: Component,
|
|
1282
|
+
args: [{
|
|
1283
|
+
selector: 'tg-progress',
|
|
1284
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1285
|
+
template: '<ng-content></ng-content>',
|
|
1286
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1287
|
+
inputs: ['animated', 'circular', 'circularSize', 'indeterminate', 'label', 'max', 'showValue', 'size', 'striped', 'strokeWidth', 'value', 'variant'],
|
|
1288
|
+
}]
|
|
1289
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1290
|
+
let TgPromptInput = class TgPromptInput {
|
|
1291
|
+
z;
|
|
1292
|
+
el;
|
|
1293
|
+
constructor(c, r, z) {
|
|
1294
|
+
this.z = z;
|
|
1295
|
+
c.detach();
|
|
1296
|
+
this.el = r.nativeElement;
|
|
1297
|
+
proxyOutputs(this, this.el, ['tgSubmit']);
|
|
1298
|
+
}
|
|
1299
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgPromptInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1300
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgPromptInput, selector: "tg-prompt-input", inputs: { disabled: "disabled", loading: "loading", maxLength: "maxLength", placeholder: "placeholder" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1301
|
+
};
|
|
1302
|
+
TgPromptInput = __decorate([
|
|
1303
|
+
ProxyCmp({
|
|
1304
|
+
inputs: ['disabled', 'loading', 'maxLength', 'placeholder']
|
|
1305
|
+
})
|
|
1306
|
+
], TgPromptInput);
|
|
1307
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgPromptInput, decorators: [{
|
|
1308
|
+
type: Component,
|
|
1309
|
+
args: [{
|
|
1310
|
+
selector: 'tg-prompt-input',
|
|
1311
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1312
|
+
template: '<ng-content></ng-content>',
|
|
1313
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1314
|
+
inputs: ['disabled', 'loading', 'maxLength', 'placeholder'],
|
|
1315
|
+
}]
|
|
1316
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1317
|
+
let TgPullToRefresh = class TgPullToRefresh {
|
|
1318
|
+
z;
|
|
1319
|
+
el;
|
|
1320
|
+
constructor(c, r, z) {
|
|
1321
|
+
this.z = z;
|
|
1322
|
+
c.detach();
|
|
1323
|
+
this.el = r.nativeElement;
|
|
1324
|
+
proxyOutputs(this, this.el, ['tgRefresh']);
|
|
1325
|
+
}
|
|
1326
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgPullToRefresh, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1327
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgPullToRefresh, selector: "tg-pull-to-refresh", inputs: { label: "label", refreshing: "refreshing", refreshingLabel: "refreshingLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1328
|
+
};
|
|
1329
|
+
TgPullToRefresh = __decorate([
|
|
1330
|
+
ProxyCmp({
|
|
1331
|
+
inputs: ['label', 'refreshing', 'refreshingLabel']
|
|
1332
|
+
})
|
|
1333
|
+
], TgPullToRefresh);
|
|
1334
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgPullToRefresh, decorators: [{
|
|
1335
|
+
type: Component,
|
|
1336
|
+
args: [{
|
|
1337
|
+
selector: 'tg-pull-to-refresh',
|
|
1338
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1339
|
+
template: '<ng-content></ng-content>',
|
|
1340
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1341
|
+
inputs: ['label', 'refreshing', 'refreshingLabel'],
|
|
1342
|
+
}]
|
|
1343
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1344
|
+
let TgQuickSwitcher = class TgQuickSwitcher {
|
|
1345
|
+
z;
|
|
1346
|
+
el;
|
|
1347
|
+
constructor(c, r, z) {
|
|
1348
|
+
this.z = z;
|
|
1349
|
+
c.detach();
|
|
1350
|
+
this.el = r.nativeElement;
|
|
1351
|
+
proxyOutputs(this, this.el, ['tgSwitch']);
|
|
1352
|
+
}
|
|
1353
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgQuickSwitcher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1354
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgQuickSwitcher, selector: "tg-quick-switcher", inputs: { items: "items", placeholder: "placeholder" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1355
|
+
};
|
|
1356
|
+
TgQuickSwitcher = __decorate([
|
|
1357
|
+
ProxyCmp({
|
|
1358
|
+
inputs: ['items', 'placeholder']
|
|
1359
|
+
})
|
|
1360
|
+
], TgQuickSwitcher);
|
|
1361
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgQuickSwitcher, decorators: [{
|
|
1362
|
+
type: Component,
|
|
1363
|
+
args: [{
|
|
1364
|
+
selector: 'tg-quick-switcher',
|
|
1365
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1366
|
+
template: '<ng-content></ng-content>',
|
|
1367
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1368
|
+
inputs: ['items', 'placeholder'],
|
|
1369
|
+
}]
|
|
1370
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1371
|
+
let TgRadio = class TgRadio {
|
|
1372
|
+
z;
|
|
1373
|
+
el;
|
|
1374
|
+
constructor(c, r, z) {
|
|
1375
|
+
this.z = z;
|
|
1376
|
+
c.detach();
|
|
1377
|
+
this.el = r.nativeElement;
|
|
1378
|
+
proxyOutputs(this, this.el, ['tgChange']);
|
|
1379
|
+
}
|
|
1380
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1381
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgRadio, selector: "tg-radio", inputs: { checked: "checked", description: "description", disabled: "disabled", label: "label", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1382
|
+
};
|
|
1383
|
+
TgRadio = __decorate([
|
|
1384
|
+
ProxyCmp({
|
|
1385
|
+
inputs: ['checked', 'description', 'disabled', 'label', 'name', 'value']
|
|
1386
|
+
})
|
|
1387
|
+
], TgRadio);
|
|
1388
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgRadio, decorators: [{
|
|
1389
|
+
type: Component,
|
|
1390
|
+
args: [{
|
|
1391
|
+
selector: 'tg-radio',
|
|
1392
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1393
|
+
template: '<ng-content></ng-content>',
|
|
1394
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1395
|
+
inputs: ['checked', 'description', 'disabled', 'label', 'name', 'value'],
|
|
1396
|
+
}]
|
|
1397
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1398
|
+
let TgRetryUi = class TgRetryUi {
|
|
1399
|
+
z;
|
|
1400
|
+
el;
|
|
1401
|
+
constructor(c, r, z) {
|
|
1402
|
+
this.z = z;
|
|
1403
|
+
c.detach();
|
|
1404
|
+
this.el = r.nativeElement;
|
|
1405
|
+
proxyOutputs(this, this.el, ['tgRetry']);
|
|
1406
|
+
}
|
|
1407
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgRetryUi, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1408
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgRetryUi, selector: "tg-retry-ui", inputs: { heading: "heading", icon: "icon", loading: "loading", message: "message", retryLabel: "retryLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1409
|
+
};
|
|
1410
|
+
TgRetryUi = __decorate([
|
|
1411
|
+
ProxyCmp({
|
|
1412
|
+
inputs: ['heading', 'icon', 'loading', 'message', 'retryLabel']
|
|
1413
|
+
})
|
|
1414
|
+
], TgRetryUi);
|
|
1415
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgRetryUi, decorators: [{
|
|
1416
|
+
type: Component,
|
|
1417
|
+
args: [{
|
|
1418
|
+
selector: 'tg-retry-ui',
|
|
1419
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1420
|
+
template: '<ng-content></ng-content>',
|
|
1421
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1422
|
+
inputs: ['heading', 'icon', 'loading', 'message', 'retryLabel'],
|
|
1423
|
+
}]
|
|
1424
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1425
|
+
let TgRichEditor = class TgRichEditor {
|
|
1426
|
+
z;
|
|
1427
|
+
el;
|
|
1428
|
+
constructor(c, r, z) {
|
|
1429
|
+
this.z = z;
|
|
1430
|
+
c.detach();
|
|
1431
|
+
this.el = r.nativeElement;
|
|
1432
|
+
proxyOutputs(this, this.el, ['tgChange']);
|
|
1433
|
+
}
|
|
1434
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgRichEditor, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1435
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgRichEditor, selector: "tg-rich-editor", inputs: { disabled: "disabled", label: "label", minHeight: "minHeight", placeholder: "placeholder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1436
|
+
};
|
|
1437
|
+
TgRichEditor = __decorate([
|
|
1438
|
+
ProxyCmp({
|
|
1439
|
+
inputs: ['disabled', 'label', 'minHeight', 'placeholder', 'value']
|
|
1440
|
+
})
|
|
1441
|
+
], TgRichEditor);
|
|
1442
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgRichEditor, decorators: [{
|
|
1443
|
+
type: Component,
|
|
1444
|
+
args: [{
|
|
1445
|
+
selector: 'tg-rich-editor',
|
|
1446
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1447
|
+
template: '<ng-content></ng-content>',
|
|
1448
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1449
|
+
inputs: ['disabled', 'label', 'minHeight', 'placeholder', 'value'],
|
|
1450
|
+
}]
|
|
1451
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1452
|
+
let TgRoleBadge = class TgRoleBadge {
|
|
1453
|
+
z;
|
|
1454
|
+
el;
|
|
1455
|
+
constructor(c, r, z) {
|
|
1456
|
+
this.z = z;
|
|
1457
|
+
c.detach();
|
|
1458
|
+
this.el = r.nativeElement;
|
|
1459
|
+
}
|
|
1460
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgRoleBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1461
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgRoleBadge, selector: "tg-role-badge", inputs: { icon: "icon", role: "role", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1462
|
+
};
|
|
1463
|
+
TgRoleBadge = __decorate([
|
|
1464
|
+
ProxyCmp({
|
|
1465
|
+
inputs: ['icon', 'role', 'variant']
|
|
1466
|
+
})
|
|
1467
|
+
], TgRoleBadge);
|
|
1468
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgRoleBadge, decorators: [{
|
|
1469
|
+
type: Component,
|
|
1470
|
+
args: [{
|
|
1471
|
+
selector: 'tg-role-badge',
|
|
1472
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1473
|
+
template: '<ng-content></ng-content>',
|
|
1474
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1475
|
+
inputs: ['icon', 'role', 'variant'],
|
|
1476
|
+
}]
|
|
1477
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1478
|
+
let TgSelect = class TgSelect {
|
|
1479
|
+
z;
|
|
1480
|
+
el;
|
|
1481
|
+
constructor(c, r, z) {
|
|
1482
|
+
this.z = z;
|
|
1483
|
+
c.detach();
|
|
1484
|
+
this.el = r.nativeElement;
|
|
1485
|
+
proxyOutputs(this, this.el, ['tgChange']);
|
|
1486
|
+
}
|
|
1487
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1488
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgSelect, selector: "tg-select", inputs: { disabled: "disabled", error: "error", fullWidth: "fullWidth", helperText: "helperText", label: "label", options: "options", placeholder: "placeholder", required: "required", selectId: "selectId", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1489
|
+
};
|
|
1490
|
+
TgSelect = __decorate([
|
|
1491
|
+
ProxyCmp({
|
|
1492
|
+
inputs: ['disabled', 'error', 'fullWidth', 'helperText', 'label', 'options', 'placeholder', 'required', 'selectId', 'size', 'value']
|
|
1493
|
+
})
|
|
1494
|
+
], TgSelect);
|
|
1495
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgSelect, decorators: [{
|
|
1496
|
+
type: Component,
|
|
1497
|
+
args: [{
|
|
1498
|
+
selector: 'tg-select',
|
|
1499
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1500
|
+
template: '<ng-content></ng-content>',
|
|
1501
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1502
|
+
inputs: ['disabled', 'error', 'fullWidth', 'helperText', 'label', 'options', 'placeholder', 'required', 'selectId', 'size', 'value'],
|
|
1503
|
+
}]
|
|
1504
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1505
|
+
let TgSessionExpired = class TgSessionExpired {
|
|
1506
|
+
z;
|
|
1507
|
+
el;
|
|
1508
|
+
constructor(c, r, z) {
|
|
1509
|
+
this.z = z;
|
|
1510
|
+
c.detach();
|
|
1511
|
+
this.el = r.nativeElement;
|
|
1512
|
+
proxyOutputs(this, this.el, ['tgRelogin']);
|
|
1513
|
+
}
|
|
1514
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgSessionExpired, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1515
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgSessionExpired, selector: "tg-session-expired", inputs: { heading: "heading", loginLabel: "loginLabel", message: "message", open: "open" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1516
|
+
};
|
|
1517
|
+
TgSessionExpired = __decorate([
|
|
1518
|
+
ProxyCmp({
|
|
1519
|
+
inputs: ['heading', 'loginLabel', 'message', 'open']
|
|
1520
|
+
})
|
|
1521
|
+
], TgSessionExpired);
|
|
1522
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgSessionExpired, decorators: [{
|
|
1523
|
+
type: Component,
|
|
1524
|
+
args: [{
|
|
1525
|
+
selector: 'tg-session-expired',
|
|
1526
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1527
|
+
template: '<ng-content></ng-content>',
|
|
1528
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1529
|
+
inputs: ['heading', 'loginLabel', 'message', 'open'],
|
|
1530
|
+
}]
|
|
1531
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1532
|
+
let TgSidebar = class TgSidebar {
|
|
1533
|
+
z;
|
|
1534
|
+
el;
|
|
1535
|
+
constructor(c, r, z) {
|
|
1536
|
+
this.z = z;
|
|
1537
|
+
c.detach();
|
|
1538
|
+
this.el = r.nativeElement;
|
|
1539
|
+
}
|
|
1540
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgSidebar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1541
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgSidebar, selector: "tg-sidebar", inputs: { collapsible: "collapsible", sections: "sections", sidebarTitle: "sidebarTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1542
|
+
};
|
|
1543
|
+
TgSidebar = __decorate([
|
|
1544
|
+
ProxyCmp({
|
|
1545
|
+
inputs: ['collapsible', 'sections', 'sidebarTitle']
|
|
1546
|
+
})
|
|
1547
|
+
], TgSidebar);
|
|
1548
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgSidebar, decorators: [{
|
|
1549
|
+
type: Component,
|
|
1550
|
+
args: [{
|
|
1551
|
+
selector: 'tg-sidebar',
|
|
1552
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1553
|
+
template: '<ng-content></ng-content>',
|
|
1554
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1555
|
+
inputs: ['collapsible', 'sections', 'sidebarTitle'],
|
|
1556
|
+
}]
|
|
1557
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1558
|
+
let TgSkeleton = class TgSkeleton {
|
|
1559
|
+
z;
|
|
1560
|
+
el;
|
|
1561
|
+
constructor(c, r, z) {
|
|
1562
|
+
this.z = z;
|
|
1563
|
+
c.detach();
|
|
1564
|
+
this.el = r.nativeElement;
|
|
1565
|
+
}
|
|
1566
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgSkeleton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1567
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgSkeleton, selector: "tg-skeleton", inputs: { animation: "animation", count: "count", height: "height", shape: "shape", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1568
|
+
};
|
|
1569
|
+
TgSkeleton = __decorate([
|
|
1570
|
+
ProxyCmp({
|
|
1571
|
+
inputs: ['animation', 'count', 'height', 'shape', 'width']
|
|
1572
|
+
})
|
|
1573
|
+
], TgSkeleton);
|
|
1574
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgSkeleton, decorators: [{
|
|
1575
|
+
type: Component,
|
|
1576
|
+
args: [{
|
|
1577
|
+
selector: 'tg-skeleton',
|
|
1578
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1579
|
+
template: '<ng-content></ng-content>',
|
|
1580
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1581
|
+
inputs: ['animation', 'count', 'height', 'shape', 'width'],
|
|
1582
|
+
}]
|
|
1583
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1584
|
+
let TgSlider = class TgSlider {
|
|
1585
|
+
z;
|
|
1586
|
+
el;
|
|
1587
|
+
constructor(c, r, z) {
|
|
1588
|
+
this.z = z;
|
|
1589
|
+
c.detach();
|
|
1590
|
+
this.el = r.nativeElement;
|
|
1591
|
+
proxyOutputs(this, this.el, ['tgChange']);
|
|
1592
|
+
}
|
|
1593
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1594
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgSlider, selector: "tg-slider", inputs: { disabled: "disabled", label: "label", max: "max", min: "min", showValue: "showValue", step: "step", unit: "unit", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1595
|
+
};
|
|
1596
|
+
TgSlider = __decorate([
|
|
1597
|
+
ProxyCmp({
|
|
1598
|
+
inputs: ['disabled', 'label', 'max', 'min', 'showValue', 'step', 'unit', 'value']
|
|
1599
|
+
})
|
|
1600
|
+
], TgSlider);
|
|
1601
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgSlider, decorators: [{
|
|
1602
|
+
type: Component,
|
|
1603
|
+
args: [{
|
|
1604
|
+
selector: 'tg-slider',
|
|
1605
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1606
|
+
template: '<ng-content></ng-content>',
|
|
1607
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1608
|
+
inputs: ['disabled', 'label', 'max', 'min', 'showValue', 'step', 'unit', 'value'],
|
|
1609
|
+
}]
|
|
1610
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1611
|
+
let TgSourceCitation = class TgSourceCitation {
|
|
1612
|
+
z;
|
|
1613
|
+
el;
|
|
1614
|
+
constructor(c, r, z) {
|
|
1615
|
+
this.z = z;
|
|
1616
|
+
c.detach();
|
|
1617
|
+
this.el = r.nativeElement;
|
|
1618
|
+
}
|
|
1619
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgSourceCitation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1620
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgSourceCitation, selector: "tg-source-citation", inputs: { sources: "sources" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1621
|
+
};
|
|
1622
|
+
TgSourceCitation = __decorate([
|
|
1623
|
+
ProxyCmp({
|
|
1624
|
+
inputs: ['sources']
|
|
1625
|
+
})
|
|
1626
|
+
], TgSourceCitation);
|
|
1627
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgSourceCitation, decorators: [{
|
|
1628
|
+
type: Component,
|
|
1629
|
+
args: [{
|
|
1630
|
+
selector: 'tg-source-citation',
|
|
1631
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1632
|
+
template: '<ng-content></ng-content>',
|
|
1633
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1634
|
+
inputs: ['sources'],
|
|
1635
|
+
}]
|
|
1636
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1637
|
+
let TgSpinner = class TgSpinner {
|
|
1638
|
+
z;
|
|
1639
|
+
el;
|
|
1640
|
+
constructor(c, r, z) {
|
|
1641
|
+
this.z = z;
|
|
1642
|
+
c.detach();
|
|
1643
|
+
this.el = r.nativeElement;
|
|
1644
|
+
}
|
|
1645
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1646
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgSpinner, selector: "tg-spinner", inputs: { label: "label", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1647
|
+
};
|
|
1648
|
+
TgSpinner = __decorate([
|
|
1649
|
+
ProxyCmp({
|
|
1650
|
+
inputs: ['label', 'size', 'variant']
|
|
1651
|
+
})
|
|
1652
|
+
], TgSpinner);
|
|
1653
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgSpinner, decorators: [{
|
|
1654
|
+
type: Component,
|
|
1655
|
+
args: [{
|
|
1656
|
+
selector: 'tg-spinner',
|
|
1657
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1658
|
+
template: '<ng-content></ng-content>',
|
|
1659
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1660
|
+
inputs: ['label', 'size', 'variant'],
|
|
1661
|
+
}]
|
|
1662
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1663
|
+
let TgStatWidget = class TgStatWidget {
|
|
1664
|
+
z;
|
|
1665
|
+
el;
|
|
1666
|
+
constructor(c, r, z) {
|
|
1667
|
+
this.z = z;
|
|
1668
|
+
c.detach();
|
|
1669
|
+
this.el = r.nativeElement;
|
|
1670
|
+
}
|
|
1671
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgStatWidget, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1672
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgStatWidget, selector: "tg-stat-widget", inputs: { change: "change", changeType: "changeType", icon: "icon", label: "label", sparkline: "sparkline", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1673
|
+
};
|
|
1674
|
+
TgStatWidget = __decorate([
|
|
1675
|
+
ProxyCmp({
|
|
1676
|
+
inputs: ['change', 'changeType', 'icon', 'label', 'sparkline', 'value']
|
|
1677
|
+
})
|
|
1678
|
+
], TgStatWidget);
|
|
1679
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgStatWidget, decorators: [{
|
|
1680
|
+
type: Component,
|
|
1681
|
+
args: [{
|
|
1682
|
+
selector: 'tg-stat-widget',
|
|
1683
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1684
|
+
template: '<ng-content></ng-content>',
|
|
1685
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1686
|
+
inputs: ['change', 'changeType', 'icon', 'label', 'sparkline', 'value'],
|
|
1687
|
+
}]
|
|
1688
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1689
|
+
let TgStatusBadge = class TgStatusBadge {
|
|
1690
|
+
z;
|
|
1691
|
+
el;
|
|
1692
|
+
constructor(c, r, z) {
|
|
1693
|
+
this.z = z;
|
|
1694
|
+
c.detach();
|
|
1695
|
+
this.el = r.nativeElement;
|
|
1696
|
+
}
|
|
1697
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgStatusBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1698
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgStatusBadge, selector: "tg-status-badge", inputs: { label: "label", pulse: "pulse", size: "size", status: "status" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1699
|
+
};
|
|
1700
|
+
TgStatusBadge = __decorate([
|
|
1701
|
+
ProxyCmp({
|
|
1702
|
+
inputs: ['label', 'pulse', 'size', 'status']
|
|
1703
|
+
})
|
|
1704
|
+
], TgStatusBadge);
|
|
1705
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgStatusBadge, decorators: [{
|
|
1706
|
+
type: Component,
|
|
1707
|
+
args: [{
|
|
1708
|
+
selector: 'tg-status-badge',
|
|
1709
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1710
|
+
template: '<ng-content></ng-content>',
|
|
1711
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1712
|
+
inputs: ['label', 'pulse', 'size', 'status'],
|
|
1713
|
+
}]
|
|
1714
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1715
|
+
let TgStepper = class TgStepper {
|
|
1716
|
+
z;
|
|
1717
|
+
el;
|
|
1718
|
+
constructor(c, r, z) {
|
|
1719
|
+
this.z = z;
|
|
1720
|
+
c.detach();
|
|
1721
|
+
this.el = r.nativeElement;
|
|
1722
|
+
}
|
|
1723
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1724
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgStepper, selector: "tg-stepper", inputs: { current: "current", orientation: "orientation", steps: "steps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1725
|
+
};
|
|
1726
|
+
TgStepper = __decorate([
|
|
1727
|
+
ProxyCmp({
|
|
1728
|
+
inputs: ['current', 'orientation', 'steps']
|
|
1729
|
+
})
|
|
1730
|
+
], TgStepper);
|
|
1731
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgStepper, decorators: [{
|
|
1732
|
+
type: Component,
|
|
1733
|
+
args: [{
|
|
1734
|
+
selector: 'tg-stepper',
|
|
1735
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1736
|
+
template: '<ng-content></ng-content>',
|
|
1737
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1738
|
+
inputs: ['current', 'orientation', 'steps'],
|
|
1739
|
+
}]
|
|
1740
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1741
|
+
let TgStepperInput = class TgStepperInput {
|
|
1742
|
+
z;
|
|
1743
|
+
el;
|
|
1744
|
+
constructor(c, r, z) {
|
|
1745
|
+
this.z = z;
|
|
1746
|
+
c.detach();
|
|
1747
|
+
this.el = r.nativeElement;
|
|
1748
|
+
proxyOutputs(this, this.el, ['tgChange']);
|
|
1749
|
+
}
|
|
1750
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgStepperInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1751
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgStepperInput, selector: "tg-stepper-input", inputs: { disabled: "disabled", label: "label", max: "max", min: "min", size: "size", step: "step", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1752
|
+
};
|
|
1753
|
+
TgStepperInput = __decorate([
|
|
1754
|
+
ProxyCmp({
|
|
1755
|
+
inputs: ['disabled', 'label', 'max', 'min', 'size', 'step', 'value']
|
|
1756
|
+
})
|
|
1757
|
+
], TgStepperInput);
|
|
1758
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgStepperInput, decorators: [{
|
|
1759
|
+
type: Component,
|
|
1760
|
+
args: [{
|
|
1761
|
+
selector: 'tg-stepper-input',
|
|
1762
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1763
|
+
template: '<ng-content></ng-content>',
|
|
1764
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1765
|
+
inputs: ['disabled', 'label', 'max', 'min', 'size', 'step', 'value'],
|
|
1766
|
+
}]
|
|
1767
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1768
|
+
let TgStreamingResponse = class TgStreamingResponse {
|
|
1769
|
+
z;
|
|
1770
|
+
el;
|
|
1771
|
+
constructor(c, r, z) {
|
|
1772
|
+
this.z = z;
|
|
1773
|
+
c.detach();
|
|
1774
|
+
this.el = r.nativeElement;
|
|
1775
|
+
}
|
|
1776
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgStreamingResponse, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1777
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgStreamingResponse, selector: "tg-streaming-response", inputs: { content: "content", loading: "loading", model: "model", tokenCount: "tokenCount" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1778
|
+
};
|
|
1779
|
+
TgStreamingResponse = __decorate([
|
|
1780
|
+
ProxyCmp({
|
|
1781
|
+
inputs: ['content', 'loading', 'model', 'tokenCount']
|
|
1782
|
+
})
|
|
1783
|
+
], TgStreamingResponse);
|
|
1784
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgStreamingResponse, decorators: [{
|
|
1785
|
+
type: Component,
|
|
1786
|
+
args: [{
|
|
1787
|
+
selector: 'tg-streaming-response',
|
|
1788
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1789
|
+
template: '<ng-content></ng-content>',
|
|
1790
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1791
|
+
inputs: ['content', 'loading', 'model', 'tokenCount'],
|
|
1792
|
+
}]
|
|
1793
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1794
|
+
let TgSwitch = class TgSwitch {
|
|
1795
|
+
z;
|
|
1796
|
+
el;
|
|
1797
|
+
constructor(c, r, z) {
|
|
1798
|
+
this.z = z;
|
|
1799
|
+
c.detach();
|
|
1800
|
+
this.el = r.nativeElement;
|
|
1801
|
+
proxyOutputs(this, this.el, ['tgChange']);
|
|
1802
|
+
}
|
|
1803
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1804
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgSwitch, selector: "tg-switch", inputs: { checked: "checked", description: "description", disabled: "disabled", label: "label", name: "name", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1805
|
+
};
|
|
1806
|
+
TgSwitch = __decorate([
|
|
1807
|
+
ProxyCmp({
|
|
1808
|
+
inputs: ['checked', 'description', 'disabled', 'label', 'name', 'size']
|
|
1809
|
+
})
|
|
1810
|
+
], TgSwitch);
|
|
1811
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgSwitch, decorators: [{
|
|
1812
|
+
type: Component,
|
|
1813
|
+
args: [{
|
|
1814
|
+
selector: 'tg-switch',
|
|
1815
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1816
|
+
template: '<ng-content></ng-content>',
|
|
1817
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1818
|
+
inputs: ['checked', 'description', 'disabled', 'label', 'name', 'size'],
|
|
1819
|
+
}]
|
|
1820
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1821
|
+
let TgTable = class TgTable {
|
|
1822
|
+
z;
|
|
1823
|
+
el;
|
|
1824
|
+
constructor(c, r, z) {
|
|
1825
|
+
this.z = z;
|
|
1826
|
+
c.detach();
|
|
1827
|
+
this.el = r.nativeElement;
|
|
1828
|
+
proxyOutputs(this, this.el, ['tgSort', 'tgSelect']);
|
|
1829
|
+
}
|
|
1830
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1831
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgTable, selector: "tg-table", inputs: { columns: "columns", compact: "compact", data: "data", emptyText: "emptyText", selectable: "selectable", striped: "striped" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1832
|
+
};
|
|
1833
|
+
TgTable = __decorate([
|
|
1834
|
+
ProxyCmp({
|
|
1835
|
+
inputs: ['columns', 'compact', 'data', 'emptyText', 'selectable', 'striped']
|
|
1836
|
+
})
|
|
1837
|
+
], TgTable);
|
|
1838
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTable, decorators: [{
|
|
1839
|
+
type: Component,
|
|
1840
|
+
args: [{
|
|
1841
|
+
selector: 'tg-table',
|
|
1842
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1843
|
+
template: '<ng-content></ng-content>',
|
|
1844
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1845
|
+
inputs: ['columns', 'compact', 'data', 'emptyText', 'selectable', 'striped'],
|
|
1846
|
+
}]
|
|
1847
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1848
|
+
let TgTabs = class TgTabs {
|
|
1849
|
+
z;
|
|
1850
|
+
el;
|
|
1851
|
+
constructor(c, r, z) {
|
|
1852
|
+
this.z = z;
|
|
1853
|
+
c.detach();
|
|
1854
|
+
this.el = r.nativeElement;
|
|
1855
|
+
proxyOutputs(this, this.el, ['tgTabChange']);
|
|
1856
|
+
}
|
|
1857
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1858
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgTabs, selector: "tg-tabs", inputs: { activeTab: "activeTab", tabs: "tabs", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1859
|
+
};
|
|
1860
|
+
TgTabs = __decorate([
|
|
1861
|
+
ProxyCmp({
|
|
1862
|
+
inputs: ['activeTab', 'tabs', 'variant']
|
|
1863
|
+
})
|
|
1864
|
+
], TgTabs);
|
|
1865
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTabs, decorators: [{
|
|
1866
|
+
type: Component,
|
|
1867
|
+
args: [{
|
|
1868
|
+
selector: 'tg-tabs',
|
|
1869
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1870
|
+
template: '<ng-content></ng-content>',
|
|
1871
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1872
|
+
inputs: ['activeTab', 'tabs', 'variant'],
|
|
1873
|
+
}]
|
|
1874
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1875
|
+
let TgTag = class TgTag {
|
|
1876
|
+
z;
|
|
1877
|
+
el;
|
|
1878
|
+
constructor(c, r, z) {
|
|
1879
|
+
this.z = z;
|
|
1880
|
+
c.detach();
|
|
1881
|
+
this.el = r.nativeElement;
|
|
1882
|
+
proxyOutputs(this, this.el, ['tgRemove']);
|
|
1883
|
+
}
|
|
1884
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1885
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgTag, selector: "tg-tag", inputs: { dot: "dot", outlined: "outlined", removable: "removable", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1886
|
+
};
|
|
1887
|
+
TgTag = __decorate([
|
|
1888
|
+
ProxyCmp({
|
|
1889
|
+
inputs: ['dot', 'outlined', 'removable', 'size', 'variant']
|
|
1890
|
+
})
|
|
1891
|
+
], TgTag);
|
|
1892
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTag, decorators: [{
|
|
1893
|
+
type: Component,
|
|
1894
|
+
args: [{
|
|
1895
|
+
selector: 'tg-tag',
|
|
1896
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1897
|
+
template: '<ng-content></ng-content>',
|
|
1898
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1899
|
+
inputs: ['dot', 'outlined', 'removable', 'size', 'variant'],
|
|
1900
|
+
}]
|
|
1901
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1902
|
+
let TgTextarea = class TgTextarea {
|
|
1903
|
+
z;
|
|
1904
|
+
el;
|
|
1905
|
+
constructor(c, r, z) {
|
|
1906
|
+
this.z = z;
|
|
1907
|
+
c.detach();
|
|
1908
|
+
this.el = r.nativeElement;
|
|
1909
|
+
proxyOutputs(this, this.el, ['tgChange', 'tgFocus', 'tgBlur']);
|
|
1910
|
+
}
|
|
1911
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1912
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgTextarea, selector: "tg-textarea", inputs: { disabled: "disabled", error: "error", fullWidth: "fullWidth", helperText: "helperText", label: "label", maxlength: "maxlength", placeholder: "placeholder", readonly: "readonly", required: "required", resize: "resize", rows: "rows", textareaId: "textareaId", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1913
|
+
};
|
|
1914
|
+
TgTextarea = __decorate([
|
|
1915
|
+
ProxyCmp({
|
|
1916
|
+
inputs: ['disabled', 'error', 'fullWidth', 'helperText', 'label', 'maxlength', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'textareaId', 'value']
|
|
1917
|
+
})
|
|
1918
|
+
], TgTextarea);
|
|
1919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTextarea, decorators: [{
|
|
1920
|
+
type: Component,
|
|
1921
|
+
args: [{
|
|
1922
|
+
selector: 'tg-textarea',
|
|
1923
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1924
|
+
template: '<ng-content></ng-content>',
|
|
1925
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1926
|
+
inputs: ['disabled', 'error', 'fullWidth', 'helperText', 'label', 'maxlength', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'textareaId', 'value'],
|
|
1927
|
+
}]
|
|
1928
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1929
|
+
let TgTimePicker = class TgTimePicker {
|
|
1930
|
+
z;
|
|
1931
|
+
el;
|
|
1932
|
+
constructor(c, r, z) {
|
|
1933
|
+
this.z = z;
|
|
1934
|
+
c.detach();
|
|
1935
|
+
this.el = r.nativeElement;
|
|
1936
|
+
proxyOutputs(this, this.el, ['tgChange']);
|
|
1937
|
+
}
|
|
1938
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTimePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1939
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgTimePicker, selector: "tg-time-picker", inputs: { disabled: "disabled", invalid: "invalid", label: "label", placeholder: "placeholder", size: "size", step: "step", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1940
|
+
};
|
|
1941
|
+
TgTimePicker = __decorate([
|
|
1942
|
+
ProxyCmp({
|
|
1943
|
+
inputs: ['disabled', 'invalid', 'label', 'placeholder', 'size', 'step', 'value']
|
|
1944
|
+
})
|
|
1945
|
+
], TgTimePicker);
|
|
1946
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTimePicker, decorators: [{
|
|
1947
|
+
type: Component,
|
|
1948
|
+
args: [{
|
|
1949
|
+
selector: 'tg-time-picker',
|
|
1950
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1951
|
+
template: '<ng-content></ng-content>',
|
|
1952
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1953
|
+
inputs: ['disabled', 'invalid', 'label', 'placeholder', 'size', 'step', 'value'],
|
|
1954
|
+
}]
|
|
1955
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1956
|
+
let TgTimeline = class TgTimeline {
|
|
1957
|
+
z;
|
|
1958
|
+
el;
|
|
1959
|
+
constructor(c, r, z) {
|
|
1960
|
+
this.z = z;
|
|
1961
|
+
c.detach();
|
|
1962
|
+
this.el = r.nativeElement;
|
|
1963
|
+
}
|
|
1964
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTimeline, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1965
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgTimeline, selector: "tg-timeline", inputs: { items: "items", layout: "layout" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1966
|
+
};
|
|
1967
|
+
TgTimeline = __decorate([
|
|
1968
|
+
ProxyCmp({
|
|
1969
|
+
inputs: ['items', 'layout']
|
|
1970
|
+
})
|
|
1971
|
+
], TgTimeline);
|
|
1972
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTimeline, decorators: [{
|
|
1973
|
+
type: Component,
|
|
1974
|
+
args: [{
|
|
1975
|
+
selector: 'tg-timeline',
|
|
1976
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1977
|
+
template: '<ng-content></ng-content>',
|
|
1978
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1979
|
+
inputs: ['items', 'layout'],
|
|
1980
|
+
}]
|
|
1981
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1982
|
+
let TgToast = class TgToast {
|
|
1983
|
+
z;
|
|
1984
|
+
el;
|
|
1985
|
+
constructor(c, r, z) {
|
|
1986
|
+
this.z = z;
|
|
1987
|
+
c.detach();
|
|
1988
|
+
this.el = r.nativeElement;
|
|
1989
|
+
proxyOutputs(this, this.el, ['tgDismiss']);
|
|
1990
|
+
}
|
|
1991
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1992
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgToast, selector: "tg-toast", inputs: { dismissible: "dismissible", duration: "duration", message: "message", toastTitle: "toastTitle", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1993
|
+
};
|
|
1994
|
+
TgToast = __decorate([
|
|
1995
|
+
ProxyCmp({
|
|
1996
|
+
inputs: ['dismissible', 'duration', 'message', 'toastTitle', 'variant']
|
|
1997
|
+
})
|
|
1998
|
+
], TgToast);
|
|
1999
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgToast, decorators: [{
|
|
2000
|
+
type: Component,
|
|
2001
|
+
args: [{
|
|
2002
|
+
selector: 'tg-toast',
|
|
2003
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2004
|
+
template: '<ng-content></ng-content>',
|
|
2005
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2006
|
+
inputs: ['dismissible', 'duration', 'message', 'toastTitle', 'variant'],
|
|
2007
|
+
}]
|
|
2008
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2009
|
+
let TgTokenUsage = class TgTokenUsage {
|
|
2010
|
+
z;
|
|
2011
|
+
el;
|
|
2012
|
+
constructor(c, r, z) {
|
|
2013
|
+
this.z = z;
|
|
2014
|
+
c.detach();
|
|
2015
|
+
this.el = r.nativeElement;
|
|
2016
|
+
}
|
|
2017
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTokenUsage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2018
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgTokenUsage, selector: "tg-token-usage", inputs: { compact: "compact", completionTokens: "completionTokens", cost: "cost", maxTokens: "maxTokens", promptTokens: "promptTokens" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2019
|
+
};
|
|
2020
|
+
TgTokenUsage = __decorate([
|
|
2021
|
+
ProxyCmp({
|
|
2022
|
+
inputs: ['compact', 'completionTokens', 'cost', 'maxTokens', 'promptTokens']
|
|
2023
|
+
})
|
|
2024
|
+
], TgTokenUsage);
|
|
2025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTokenUsage, decorators: [{
|
|
2026
|
+
type: Component,
|
|
2027
|
+
args: [{
|
|
2028
|
+
selector: 'tg-token-usage',
|
|
2029
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2030
|
+
template: '<ng-content></ng-content>',
|
|
2031
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2032
|
+
inputs: ['compact', 'completionTokens', 'cost', 'maxTokens', 'promptTokens'],
|
|
2033
|
+
}]
|
|
2034
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2035
|
+
let TgTooltip = class TgTooltip {
|
|
2036
|
+
z;
|
|
2037
|
+
el;
|
|
2038
|
+
constructor(c, r, z) {
|
|
2039
|
+
this.z = z;
|
|
2040
|
+
c.detach();
|
|
2041
|
+
this.el = r.nativeElement;
|
|
2042
|
+
}
|
|
2043
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2044
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgTooltip, selector: "tg-tooltip", inputs: { delay: "delay", position: "position", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2045
|
+
};
|
|
2046
|
+
TgTooltip = __decorate([
|
|
2047
|
+
ProxyCmp({
|
|
2048
|
+
inputs: ['delay', 'position', 'text']
|
|
2049
|
+
})
|
|
2050
|
+
], TgTooltip);
|
|
2051
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTooltip, decorators: [{
|
|
2052
|
+
type: Component,
|
|
2053
|
+
args: [{
|
|
2054
|
+
selector: 'tg-tooltip',
|
|
2055
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2056
|
+
template: '<ng-content></ng-content>',
|
|
2057
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2058
|
+
inputs: ['delay', 'position', 'text'],
|
|
2059
|
+
}]
|
|
2060
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2061
|
+
let TgTreeView = class TgTreeView {
|
|
2062
|
+
z;
|
|
2063
|
+
el;
|
|
2064
|
+
constructor(c, r, z) {
|
|
2065
|
+
this.z = z;
|
|
2066
|
+
c.detach();
|
|
2067
|
+
this.el = r.nativeElement;
|
|
2068
|
+
}
|
|
2069
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTreeView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2070
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgTreeView, selector: "tg-tree-view", inputs: { data: "data", selectable: "selectable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2071
|
+
};
|
|
2072
|
+
TgTreeView = __decorate([
|
|
2073
|
+
ProxyCmp({
|
|
2074
|
+
inputs: ['data', 'selectable']
|
|
2075
|
+
})
|
|
2076
|
+
], TgTreeView);
|
|
2077
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgTreeView, decorators: [{
|
|
2078
|
+
type: Component,
|
|
2079
|
+
args: [{
|
|
2080
|
+
selector: 'tg-tree-view',
|
|
2081
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2082
|
+
template: '<ng-content></ng-content>',
|
|
2083
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2084
|
+
inputs: ['data', 'selectable'],
|
|
2085
|
+
}]
|
|
2086
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2087
|
+
let TgUndoSnackbar = class TgUndoSnackbar {
|
|
2088
|
+
z;
|
|
2089
|
+
el;
|
|
2090
|
+
constructor(c, r, z) {
|
|
2091
|
+
this.z = z;
|
|
2092
|
+
c.detach();
|
|
2093
|
+
this.el = r.nativeElement;
|
|
2094
|
+
proxyOutputs(this, this.el, ['tgUndo', 'tgDismiss']);
|
|
2095
|
+
}
|
|
2096
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgUndoSnackbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2097
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgUndoSnackbar, selector: "tg-undo-snackbar", inputs: { duration: "duration", message: "message", open: "open", undoLabel: "undoLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2098
|
+
};
|
|
2099
|
+
TgUndoSnackbar = __decorate([
|
|
2100
|
+
ProxyCmp({
|
|
2101
|
+
inputs: ['duration', 'message', 'open', 'undoLabel']
|
|
2102
|
+
})
|
|
2103
|
+
], TgUndoSnackbar);
|
|
2104
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgUndoSnackbar, decorators: [{
|
|
2105
|
+
type: Component,
|
|
2106
|
+
args: [{
|
|
2107
|
+
selector: 'tg-undo-snackbar',
|
|
2108
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2109
|
+
template: '<ng-content></ng-content>',
|
|
2110
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2111
|
+
inputs: ['duration', 'message', 'open', 'undoLabel'],
|
|
2112
|
+
}]
|
|
2113
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2114
|
+
let TgVideoPlayer = class TgVideoPlayer {
|
|
2115
|
+
z;
|
|
2116
|
+
el;
|
|
2117
|
+
constructor(c, r, z) {
|
|
2118
|
+
this.z = z;
|
|
2119
|
+
c.detach();
|
|
2120
|
+
this.el = r.nativeElement;
|
|
2121
|
+
}
|
|
2122
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgVideoPlayer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2123
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgVideoPlayer, selector: "tg-video-player", inputs: { aspectRatio: "aspectRatio", heading: "heading", poster: "poster", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2124
|
+
};
|
|
2125
|
+
TgVideoPlayer = __decorate([
|
|
2126
|
+
ProxyCmp({
|
|
2127
|
+
inputs: ['aspectRatio', 'heading', 'poster', 'src']
|
|
2128
|
+
})
|
|
2129
|
+
], TgVideoPlayer);
|
|
2130
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgVideoPlayer, decorators: [{
|
|
2131
|
+
type: Component,
|
|
2132
|
+
args: [{
|
|
2133
|
+
selector: 'tg-video-player',
|
|
2134
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2135
|
+
template: '<ng-content></ng-content>',
|
|
2136
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2137
|
+
inputs: ['aspectRatio', 'heading', 'poster', 'src'],
|
|
2138
|
+
}]
|
|
2139
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2140
|
+
let TgWizardNav = class TgWizardNav {
|
|
2141
|
+
z;
|
|
2142
|
+
el;
|
|
2143
|
+
constructor(c, r, z) {
|
|
2144
|
+
this.z = z;
|
|
2145
|
+
c.detach();
|
|
2146
|
+
this.el = r.nativeElement;
|
|
2147
|
+
proxyOutputs(this, this.el, ['tgBack', 'tgNext', 'tgFinish']);
|
|
2148
|
+
}
|
|
2149
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgWizardNav, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2150
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TgWizardNav, selector: "tg-wizard-nav", inputs: { backLabel: "backLabel", currentStep: "currentStep", finishLabel: "finishLabel", nextLabel: "nextLabel", showProgress: "showProgress", totalSteps: "totalSteps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2151
|
+
};
|
|
2152
|
+
TgWizardNav = __decorate([
|
|
2153
|
+
ProxyCmp({
|
|
2154
|
+
inputs: ['backLabel', 'currentStep', 'finishLabel', 'nextLabel', 'showProgress', 'totalSteps']
|
|
2155
|
+
})
|
|
2156
|
+
], TgWizardNav);
|
|
2157
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TgWizardNav, decorators: [{
|
|
2158
|
+
type: Component,
|
|
2159
|
+
args: [{
|
|
2160
|
+
selector: 'tg-wizard-nav',
|
|
2161
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2162
|
+
template: '<ng-content></ng-content>',
|
|
2163
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2164
|
+
inputs: ['backLabel', 'currentStep', 'finishLabel', 'nextLabel', 'showProgress', 'totalSteps'],
|
|
2165
|
+
}]
|
|
2166
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2167
|
+
|
|
2168
|
+
const DIRECTIVES = [
|
|
2169
|
+
TgActivityFeed,
|
|
2170
|
+
TgActivityStream,
|
|
2171
|
+
TgAiFeedback,
|
|
2172
|
+
TgAiInsightCard,
|
|
2173
|
+
TgAlert,
|
|
2174
|
+
TgAudioPlayer,
|
|
2175
|
+
TgAutocomplete,
|
|
2176
|
+
TgAvatar,
|
|
2177
|
+
TgBadge,
|
|
2178
|
+
TgBottomNav,
|
|
2179
|
+
TgBottomSheet,
|
|
2180
|
+
TgBreadcrumb,
|
|
2181
|
+
TgButton,
|
|
2182
|
+
TgCalendarView,
|
|
2183
|
+
TgCard,
|
|
2184
|
+
TgChat,
|
|
2185
|
+
TgChatMessage,
|
|
2186
|
+
TgCheckbox,
|
|
2187
|
+
TgCombobox,
|
|
2188
|
+
TgCommandPalette,
|
|
2189
|
+
TgConfidenceBadge,
|
|
2190
|
+
TgConfirmDialog,
|
|
2191
|
+
TgContextMenu,
|
|
2192
|
+
TgDataTable,
|
|
2193
|
+
TgDatePicker,
|
|
2194
|
+
TgEmptyState,
|
|
2195
|
+
TgExpandableRow,
|
|
2196
|
+
TgFab,
|
|
2197
|
+
TgFileUpload,
|
|
2198
|
+
TgGlobalLoader,
|
|
2199
|
+
TgHeatmap,
|
|
2200
|
+
TgImageGallery,
|
|
2201
|
+
TgInput,
|
|
2202
|
+
TgKanbanBoard,
|
|
2203
|
+
TgKpiCard,
|
|
2204
|
+
TgLiveBadge,
|
|
2205
|
+
TgLoginForm,
|
|
2206
|
+
TgMegaMenu,
|
|
2207
|
+
TgModal,
|
|
2208
|
+
TgModelSelector,
|
|
2209
|
+
TgMultiSelect,
|
|
2210
|
+
TgNavbar,
|
|
2211
|
+
TgOtpInput,
|
|
2212
|
+
TgPagination,
|
|
2213
|
+
TgPresenceIndicator,
|
|
2214
|
+
TgProgress,
|
|
2215
|
+
TgPromptInput,
|
|
2216
|
+
TgPullToRefresh,
|
|
2217
|
+
TgQuickSwitcher,
|
|
2218
|
+
TgRadio,
|
|
2219
|
+
TgRetryUi,
|
|
2220
|
+
TgRichEditor,
|
|
2221
|
+
TgRoleBadge,
|
|
2222
|
+
TgSelect,
|
|
2223
|
+
TgSessionExpired,
|
|
2224
|
+
TgSidebar,
|
|
2225
|
+
TgSkeleton,
|
|
2226
|
+
TgSlider,
|
|
2227
|
+
TgSourceCitation,
|
|
2228
|
+
TgSpinner,
|
|
2229
|
+
TgStatWidget,
|
|
2230
|
+
TgStatusBadge,
|
|
2231
|
+
TgStepper,
|
|
2232
|
+
TgStepperInput,
|
|
2233
|
+
TgStreamingResponse,
|
|
2234
|
+
TgSwitch,
|
|
2235
|
+
TgTable,
|
|
2236
|
+
TgTabs,
|
|
2237
|
+
TgTag,
|
|
2238
|
+
TgTextarea,
|
|
2239
|
+
TgTimePicker,
|
|
2240
|
+
TgTimeline,
|
|
2241
|
+
TgToast,
|
|
2242
|
+
TgTokenUsage,
|
|
2243
|
+
TgTooltip,
|
|
2244
|
+
TgTreeView,
|
|
2245
|
+
TgUndoSnackbar,
|
|
2246
|
+
TgVideoPlayer,
|
|
2247
|
+
TgWizardNav
|
|
2248
|
+
];
|
|
2249
|
+
|
|
2250
|
+
/*
|
|
2251
|
+
* Public API Surface of @teranga-ds/angular
|
|
2252
|
+
*/
|
|
2253
|
+
|
|
2254
|
+
/**
|
|
2255
|
+
* Generated bundle index. Do not edit.
|
|
2256
|
+
*/
|
|
2257
|
+
|
|
2258
|
+
export { DIRECTIVES };
|
|
2259
|
+
//# sourceMappingURL=teranga-ds-angular.mjs.map
|