@tessera-ui/angular 0.4.0 → 0.5.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/README.md +36 -0
- package/dist/cjs/directives/angular-component-lib/utils.js +66 -0
- package/dist/cjs/directives/index.js +91 -0
- package/dist/cjs/directives/proxies.js +1422 -0
- package/dist/cjs/index.js +22 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +4 -0
- package/package.json +21 -6
|
@@ -0,0 +1,1422 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
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;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.TsTooltip = exports.TsToolbar = exports.TsToggle = exports.TsToast = exports.TsTextarea = exports.TsTabs = exports.TsTable = exports.TsTabPanel = exports.TsSwitchOption = exports.TsSwitchGroup = exports.TsStepper = exports.TsStep = exports.TsStack = exports.TsSpinner = exports.TsSpacer = exports.TsSlider = exports.TsSkeleton = exports.TsSelect = exports.TsRow = exports.TsRadio = exports.TsProgress = exports.TsPopover = exports.TsPagination = exports.TsNavItem = exports.TsNav = exports.TsModal = exports.TsMenuItem = exports.TsMenu = exports.TsInput = exports.TsIcon = exports.TsGrid = exports.TsFileUpload = exports.TsEmptyState = exports.TsDrawer = exports.TsDivider = exports.TsDialog = exports.TsDatePicker = exports.TsContainer = exports.TsChip = exports.TsCheckbox = exports.TsCard = exports.TsButton = exports.TsBreadcrumbItem = exports.TsBreadcrumb = exports.TsBanner = exports.TsBadge = exports.TsAvatar = exports.TsAlert = exports.TsAccordionItem = exports.TsAccordion = void 0;
|
|
10
|
+
exports.TsTreeItem = exports.TsTree = void 0;
|
|
11
|
+
/* tslint:disable */
|
|
12
|
+
/* auto-generated angular directive proxies */
|
|
13
|
+
const core_1 = require("@angular/core");
|
|
14
|
+
const utils_1 = require("./angular-component-lib/utils");
|
|
15
|
+
let TsAccordion = class TsAccordion {
|
|
16
|
+
z;
|
|
17
|
+
el;
|
|
18
|
+
constructor(c, r, z) {
|
|
19
|
+
this.z = z;
|
|
20
|
+
c.detach();
|
|
21
|
+
this.el = r.nativeElement;
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
exports.TsAccordion = TsAccordion;
|
|
25
|
+
exports.TsAccordion = TsAccordion = __decorate([
|
|
26
|
+
(0, utils_1.ProxyCmp)({
|
|
27
|
+
inputs: ['multiple']
|
|
28
|
+
}),
|
|
29
|
+
(0, core_1.Component)({
|
|
30
|
+
selector: 'ts-accordion',
|
|
31
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
32
|
+
template: '<ng-content></ng-content>',
|
|
33
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
34
|
+
inputs: ['multiple'],
|
|
35
|
+
standalone: false
|
|
36
|
+
})
|
|
37
|
+
], TsAccordion);
|
|
38
|
+
let TsAccordionItem = class TsAccordionItem {
|
|
39
|
+
z;
|
|
40
|
+
el;
|
|
41
|
+
tsToggle = new core_1.EventEmitter();
|
|
42
|
+
constructor(c, r, z) {
|
|
43
|
+
this.z = z;
|
|
44
|
+
c.detach();
|
|
45
|
+
this.el = r.nativeElement;
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
exports.TsAccordionItem = TsAccordionItem;
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, core_1.Output)()
|
|
51
|
+
], TsAccordionItem.prototype, "tsToggle", void 0);
|
|
52
|
+
exports.TsAccordionItem = TsAccordionItem = __decorate([
|
|
53
|
+
(0, utils_1.ProxyCmp)({
|
|
54
|
+
inputs: ['disabled', 'heading', 'open']
|
|
55
|
+
}),
|
|
56
|
+
(0, core_1.Component)({
|
|
57
|
+
selector: 'ts-accordion-item',
|
|
58
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
59
|
+
template: '<ng-content></ng-content>',
|
|
60
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
61
|
+
inputs: ['disabled', 'heading', 'open'],
|
|
62
|
+
outputs: ['tsToggle'],
|
|
63
|
+
standalone: false
|
|
64
|
+
})
|
|
65
|
+
], TsAccordionItem);
|
|
66
|
+
let TsAlert = class TsAlert {
|
|
67
|
+
z;
|
|
68
|
+
el;
|
|
69
|
+
tsClose = new core_1.EventEmitter();
|
|
70
|
+
constructor(c, r, z) {
|
|
71
|
+
this.z = z;
|
|
72
|
+
c.detach();
|
|
73
|
+
this.el = r.nativeElement;
|
|
74
|
+
}
|
|
75
|
+
};
|
|
76
|
+
exports.TsAlert = TsAlert;
|
|
77
|
+
__decorate([
|
|
78
|
+
(0, core_1.Output)()
|
|
79
|
+
], TsAlert.prototype, "tsClose", void 0);
|
|
80
|
+
exports.TsAlert = TsAlert = __decorate([
|
|
81
|
+
(0, utils_1.ProxyCmp)({
|
|
82
|
+
inputs: ['closable', 'variant'],
|
|
83
|
+
methods: ['close', 'show']
|
|
84
|
+
}),
|
|
85
|
+
(0, core_1.Component)({
|
|
86
|
+
selector: 'ts-alert',
|
|
87
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
88
|
+
template: '<ng-content></ng-content>',
|
|
89
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
90
|
+
inputs: ['closable', 'variant'],
|
|
91
|
+
outputs: ['tsClose'],
|
|
92
|
+
standalone: false
|
|
93
|
+
})
|
|
94
|
+
], TsAlert);
|
|
95
|
+
let TsAvatar = class TsAvatar {
|
|
96
|
+
z;
|
|
97
|
+
el;
|
|
98
|
+
constructor(c, r, z) {
|
|
99
|
+
this.z = z;
|
|
100
|
+
c.detach();
|
|
101
|
+
this.el = r.nativeElement;
|
|
102
|
+
}
|
|
103
|
+
};
|
|
104
|
+
exports.TsAvatar = TsAvatar;
|
|
105
|
+
exports.TsAvatar = TsAvatar = __decorate([
|
|
106
|
+
(0, utils_1.ProxyCmp)({
|
|
107
|
+
inputs: ['alt', 'color', 'name', 'size', 'src', 'variant']
|
|
108
|
+
}),
|
|
109
|
+
(0, core_1.Component)({
|
|
110
|
+
selector: 'ts-avatar',
|
|
111
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
112
|
+
template: '<ng-content></ng-content>',
|
|
113
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
114
|
+
inputs: ['alt', 'color', 'name', 'size', 'src', 'variant'],
|
|
115
|
+
standalone: false
|
|
116
|
+
})
|
|
117
|
+
], TsAvatar);
|
|
118
|
+
let TsBadge = class TsBadge {
|
|
119
|
+
z;
|
|
120
|
+
el;
|
|
121
|
+
constructor(c, r, z) {
|
|
122
|
+
this.z = z;
|
|
123
|
+
c.detach();
|
|
124
|
+
this.el = r.nativeElement;
|
|
125
|
+
}
|
|
126
|
+
};
|
|
127
|
+
exports.TsBadge = TsBadge;
|
|
128
|
+
exports.TsBadge = TsBadge = __decorate([
|
|
129
|
+
(0, utils_1.ProxyCmp)({
|
|
130
|
+
inputs: ['dot', 'outline', 'pill', 'size', 'variant']
|
|
131
|
+
}),
|
|
132
|
+
(0, core_1.Component)({
|
|
133
|
+
selector: 'ts-badge',
|
|
134
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
135
|
+
template: '<ng-content></ng-content>',
|
|
136
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
137
|
+
inputs: ['dot', 'outline', 'pill', 'size', 'variant'],
|
|
138
|
+
standalone: false
|
|
139
|
+
})
|
|
140
|
+
], TsBadge);
|
|
141
|
+
let TsBanner = class TsBanner {
|
|
142
|
+
z;
|
|
143
|
+
el;
|
|
144
|
+
tsClose = new core_1.EventEmitter();
|
|
145
|
+
constructor(c, r, z) {
|
|
146
|
+
this.z = z;
|
|
147
|
+
c.detach();
|
|
148
|
+
this.el = r.nativeElement;
|
|
149
|
+
}
|
|
150
|
+
};
|
|
151
|
+
exports.TsBanner = TsBanner;
|
|
152
|
+
__decorate([
|
|
153
|
+
(0, core_1.Output)()
|
|
154
|
+
], TsBanner.prototype, "tsClose", void 0);
|
|
155
|
+
exports.TsBanner = TsBanner = __decorate([
|
|
156
|
+
(0, utils_1.ProxyCmp)({
|
|
157
|
+
inputs: ['dismissible', 'icon', 'sticky', 'variant'],
|
|
158
|
+
methods: ['close', 'show']
|
|
159
|
+
}),
|
|
160
|
+
(0, core_1.Component)({
|
|
161
|
+
selector: 'ts-banner',
|
|
162
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
163
|
+
template: '<ng-content></ng-content>',
|
|
164
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
165
|
+
inputs: ['dismissible', 'icon', 'sticky', 'variant'],
|
|
166
|
+
outputs: ['tsClose'],
|
|
167
|
+
standalone: false
|
|
168
|
+
})
|
|
169
|
+
], TsBanner);
|
|
170
|
+
let TsBreadcrumb = class TsBreadcrumb {
|
|
171
|
+
z;
|
|
172
|
+
el;
|
|
173
|
+
constructor(c, r, z) {
|
|
174
|
+
this.z = z;
|
|
175
|
+
c.detach();
|
|
176
|
+
this.el = r.nativeElement;
|
|
177
|
+
}
|
|
178
|
+
};
|
|
179
|
+
exports.TsBreadcrumb = TsBreadcrumb;
|
|
180
|
+
exports.TsBreadcrumb = TsBreadcrumb = __decorate([
|
|
181
|
+
(0, utils_1.ProxyCmp)({
|
|
182
|
+
inputs: ['separator']
|
|
183
|
+
}),
|
|
184
|
+
(0, core_1.Component)({
|
|
185
|
+
selector: 'ts-breadcrumb',
|
|
186
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
187
|
+
template: '<ng-content></ng-content>',
|
|
188
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
189
|
+
inputs: ['separator'],
|
|
190
|
+
standalone: false
|
|
191
|
+
})
|
|
192
|
+
], TsBreadcrumb);
|
|
193
|
+
let TsBreadcrumbItem = class TsBreadcrumbItem {
|
|
194
|
+
z;
|
|
195
|
+
el;
|
|
196
|
+
constructor(c, r, z) {
|
|
197
|
+
this.z = z;
|
|
198
|
+
c.detach();
|
|
199
|
+
this.el = r.nativeElement;
|
|
200
|
+
}
|
|
201
|
+
};
|
|
202
|
+
exports.TsBreadcrumbItem = TsBreadcrumbItem;
|
|
203
|
+
exports.TsBreadcrumbItem = TsBreadcrumbItem = __decorate([
|
|
204
|
+
(0, utils_1.ProxyCmp)({
|
|
205
|
+
inputs: ['current', 'href', 'separator']
|
|
206
|
+
}),
|
|
207
|
+
(0, core_1.Component)({
|
|
208
|
+
selector: 'ts-breadcrumb-item',
|
|
209
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
210
|
+
template: '<ng-content></ng-content>',
|
|
211
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
212
|
+
inputs: ['current', 'href', 'separator'],
|
|
213
|
+
standalone: false
|
|
214
|
+
})
|
|
215
|
+
], TsBreadcrumbItem);
|
|
216
|
+
let TsButton = class TsButton {
|
|
217
|
+
z;
|
|
218
|
+
el;
|
|
219
|
+
tsClick = new core_1.EventEmitter();
|
|
220
|
+
tsFocus = new core_1.EventEmitter();
|
|
221
|
+
tsBlur = new core_1.EventEmitter();
|
|
222
|
+
constructor(c, r, z) {
|
|
223
|
+
this.z = z;
|
|
224
|
+
c.detach();
|
|
225
|
+
this.el = r.nativeElement;
|
|
226
|
+
}
|
|
227
|
+
};
|
|
228
|
+
exports.TsButton = TsButton;
|
|
229
|
+
__decorate([
|
|
230
|
+
(0, core_1.Output)()
|
|
231
|
+
], TsButton.prototype, "tsClick", void 0);
|
|
232
|
+
__decorate([
|
|
233
|
+
(0, core_1.Output)()
|
|
234
|
+
], TsButton.prototype, "tsFocus", void 0);
|
|
235
|
+
__decorate([
|
|
236
|
+
(0, core_1.Output)()
|
|
237
|
+
], TsButton.prototype, "tsBlur", void 0);
|
|
238
|
+
exports.TsButton = TsButton = __decorate([
|
|
239
|
+
(0, utils_1.ProxyCmp)({
|
|
240
|
+
inputs: ['appearance', 'block', 'disabled', 'href', 'loading', 'size', 'target', 'type', 'variant']
|
|
241
|
+
}),
|
|
242
|
+
(0, core_1.Component)({
|
|
243
|
+
selector: 'ts-button',
|
|
244
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
245
|
+
template: '<ng-content></ng-content>',
|
|
246
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
247
|
+
inputs: ['appearance', 'block', 'disabled', 'href', 'loading', 'size', 'target', 'type', 'variant'],
|
|
248
|
+
outputs: ['tsClick', 'tsFocus', 'tsBlur'],
|
|
249
|
+
standalone: false
|
|
250
|
+
})
|
|
251
|
+
], TsButton);
|
|
252
|
+
let TsCard = class TsCard {
|
|
253
|
+
z;
|
|
254
|
+
el;
|
|
255
|
+
constructor(c, r, z) {
|
|
256
|
+
this.z = z;
|
|
257
|
+
c.detach();
|
|
258
|
+
this.el = r.nativeElement;
|
|
259
|
+
}
|
|
260
|
+
};
|
|
261
|
+
exports.TsCard = TsCard;
|
|
262
|
+
exports.TsCard = TsCard = __decorate([
|
|
263
|
+
(0, utils_1.ProxyCmp)({
|
|
264
|
+
inputs: ['bordered', 'elevation', 'interactive', 'padding']
|
|
265
|
+
}),
|
|
266
|
+
(0, core_1.Component)({
|
|
267
|
+
selector: 'ts-card',
|
|
268
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
269
|
+
template: '<ng-content></ng-content>',
|
|
270
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
271
|
+
inputs: ['bordered', 'elevation', 'interactive', 'padding'],
|
|
272
|
+
standalone: false
|
|
273
|
+
})
|
|
274
|
+
], TsCard);
|
|
275
|
+
let TsCheckbox = class TsCheckbox {
|
|
276
|
+
z;
|
|
277
|
+
el;
|
|
278
|
+
tsChange = new core_1.EventEmitter();
|
|
279
|
+
constructor(c, r, z) {
|
|
280
|
+
this.z = z;
|
|
281
|
+
c.detach();
|
|
282
|
+
this.el = r.nativeElement;
|
|
283
|
+
}
|
|
284
|
+
};
|
|
285
|
+
exports.TsCheckbox = TsCheckbox;
|
|
286
|
+
__decorate([
|
|
287
|
+
(0, core_1.Output)()
|
|
288
|
+
], TsCheckbox.prototype, "tsChange", void 0);
|
|
289
|
+
exports.TsCheckbox = TsCheckbox = __decorate([
|
|
290
|
+
(0, utils_1.ProxyCmp)({
|
|
291
|
+
inputs: ['checked', 'disabled', 'error', 'indeterminate', 'label', 'name', 'size', 'value'],
|
|
292
|
+
methods: ['toggle']
|
|
293
|
+
}),
|
|
294
|
+
(0, core_1.Component)({
|
|
295
|
+
selector: 'ts-checkbox',
|
|
296
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
297
|
+
template: '<ng-content></ng-content>',
|
|
298
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
299
|
+
inputs: ['checked', 'disabled', 'error', 'indeterminate', 'label', 'name', 'size', 'value'],
|
|
300
|
+
outputs: ['tsChange'],
|
|
301
|
+
standalone: false
|
|
302
|
+
})
|
|
303
|
+
], TsCheckbox);
|
|
304
|
+
let TsChip = class TsChip {
|
|
305
|
+
z;
|
|
306
|
+
el;
|
|
307
|
+
tsRemove = new core_1.EventEmitter();
|
|
308
|
+
tsClick = new core_1.EventEmitter();
|
|
309
|
+
constructor(c, r, z) {
|
|
310
|
+
this.z = z;
|
|
311
|
+
c.detach();
|
|
312
|
+
this.el = r.nativeElement;
|
|
313
|
+
}
|
|
314
|
+
};
|
|
315
|
+
exports.TsChip = TsChip;
|
|
316
|
+
__decorate([
|
|
317
|
+
(0, core_1.Output)()
|
|
318
|
+
], TsChip.prototype, "tsRemove", void 0);
|
|
319
|
+
__decorate([
|
|
320
|
+
(0, core_1.Output)()
|
|
321
|
+
], TsChip.prototype, "tsClick", void 0);
|
|
322
|
+
exports.TsChip = TsChip = __decorate([
|
|
323
|
+
(0, utils_1.ProxyCmp)({
|
|
324
|
+
inputs: ['disabled', 'outline', 'removable', 'selected', 'size', 'variant']
|
|
325
|
+
}),
|
|
326
|
+
(0, core_1.Component)({
|
|
327
|
+
selector: 'ts-chip',
|
|
328
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
329
|
+
template: '<ng-content></ng-content>',
|
|
330
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
331
|
+
inputs: ['disabled', 'outline', 'removable', 'selected', 'size', 'variant'],
|
|
332
|
+
outputs: ['tsRemove', 'tsClick'],
|
|
333
|
+
standalone: false
|
|
334
|
+
})
|
|
335
|
+
], TsChip);
|
|
336
|
+
let TsContainer = class TsContainer {
|
|
337
|
+
z;
|
|
338
|
+
el;
|
|
339
|
+
constructor(c, r, z) {
|
|
340
|
+
this.z = z;
|
|
341
|
+
c.detach();
|
|
342
|
+
this.el = r.nativeElement;
|
|
343
|
+
}
|
|
344
|
+
};
|
|
345
|
+
exports.TsContainer = TsContainer;
|
|
346
|
+
exports.TsContainer = TsContainer = __decorate([
|
|
347
|
+
(0, utils_1.ProxyCmp)({
|
|
348
|
+
inputs: ['padding', 'size']
|
|
349
|
+
}),
|
|
350
|
+
(0, core_1.Component)({
|
|
351
|
+
selector: 'ts-container',
|
|
352
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
353
|
+
template: '<ng-content></ng-content>',
|
|
354
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
355
|
+
inputs: ['padding', 'size'],
|
|
356
|
+
standalone: false
|
|
357
|
+
})
|
|
358
|
+
], TsContainer);
|
|
359
|
+
let TsDatePicker = class TsDatePicker {
|
|
360
|
+
z;
|
|
361
|
+
el;
|
|
362
|
+
tsChange = new core_1.EventEmitter();
|
|
363
|
+
constructor(c, r, z) {
|
|
364
|
+
this.z = z;
|
|
365
|
+
c.detach();
|
|
366
|
+
this.el = r.nativeElement;
|
|
367
|
+
}
|
|
368
|
+
};
|
|
369
|
+
exports.TsDatePicker = TsDatePicker;
|
|
370
|
+
__decorate([
|
|
371
|
+
(0, core_1.Output)()
|
|
372
|
+
], TsDatePicker.prototype, "tsChange", void 0);
|
|
373
|
+
exports.TsDatePicker = TsDatePicker = __decorate([
|
|
374
|
+
(0, utils_1.ProxyCmp)({
|
|
375
|
+
inputs: ['disabled', 'error', 'errorMessage', 'label', 'max', 'min', 'name', 'placeholder', 'size', 'value']
|
|
376
|
+
}),
|
|
377
|
+
(0, core_1.Component)({
|
|
378
|
+
selector: 'ts-date-picker',
|
|
379
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
380
|
+
template: '<ng-content></ng-content>',
|
|
381
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
382
|
+
inputs: ['disabled', 'error', 'errorMessage', 'label', 'max', 'min', 'name', 'placeholder', 'size', 'value'],
|
|
383
|
+
outputs: ['tsChange'],
|
|
384
|
+
standalone: false
|
|
385
|
+
})
|
|
386
|
+
], TsDatePicker);
|
|
387
|
+
let TsDialog = class TsDialog {
|
|
388
|
+
z;
|
|
389
|
+
el;
|
|
390
|
+
tsClose = new core_1.EventEmitter();
|
|
391
|
+
constructor(c, r, z) {
|
|
392
|
+
this.z = z;
|
|
393
|
+
c.detach();
|
|
394
|
+
this.el = r.nativeElement;
|
|
395
|
+
}
|
|
396
|
+
};
|
|
397
|
+
exports.TsDialog = TsDialog;
|
|
398
|
+
__decorate([
|
|
399
|
+
(0, core_1.Output)()
|
|
400
|
+
], TsDialog.prototype, "tsClose", void 0);
|
|
401
|
+
exports.TsDialog = TsDialog = __decorate([
|
|
402
|
+
(0, utils_1.ProxyCmp)({
|
|
403
|
+
inputs: ['dismissible', 'heading', 'open', 'size'],
|
|
404
|
+
methods: ['show', 'close']
|
|
405
|
+
}),
|
|
406
|
+
(0, core_1.Component)({
|
|
407
|
+
selector: 'ts-dialog',
|
|
408
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
409
|
+
template: '<ng-content></ng-content>',
|
|
410
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
411
|
+
inputs: ['dismissible', 'heading', 'open', 'size'],
|
|
412
|
+
outputs: ['tsClose'],
|
|
413
|
+
standalone: false
|
|
414
|
+
})
|
|
415
|
+
], TsDialog);
|
|
416
|
+
let TsDivider = class TsDivider {
|
|
417
|
+
z;
|
|
418
|
+
el;
|
|
419
|
+
constructor(c, r, z) {
|
|
420
|
+
this.z = z;
|
|
421
|
+
c.detach();
|
|
422
|
+
this.el = r.nativeElement;
|
|
423
|
+
}
|
|
424
|
+
};
|
|
425
|
+
exports.TsDivider = TsDivider;
|
|
426
|
+
exports.TsDivider = TsDivider = __decorate([
|
|
427
|
+
(0, utils_1.ProxyCmp)({
|
|
428
|
+
inputs: ['label', 'orientation', 'variant']
|
|
429
|
+
}),
|
|
430
|
+
(0, core_1.Component)({
|
|
431
|
+
selector: 'ts-divider',
|
|
432
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
433
|
+
template: '<ng-content></ng-content>',
|
|
434
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
435
|
+
inputs: ['label', 'orientation', 'variant'],
|
|
436
|
+
standalone: false
|
|
437
|
+
})
|
|
438
|
+
], TsDivider);
|
|
439
|
+
let TsDrawer = class TsDrawer {
|
|
440
|
+
z;
|
|
441
|
+
el;
|
|
442
|
+
tsClose = new core_1.EventEmitter();
|
|
443
|
+
constructor(c, r, z) {
|
|
444
|
+
this.z = z;
|
|
445
|
+
c.detach();
|
|
446
|
+
this.el = r.nativeElement;
|
|
447
|
+
}
|
|
448
|
+
};
|
|
449
|
+
exports.TsDrawer = TsDrawer;
|
|
450
|
+
__decorate([
|
|
451
|
+
(0, core_1.Output)()
|
|
452
|
+
], TsDrawer.prototype, "tsClose", void 0);
|
|
453
|
+
exports.TsDrawer = TsDrawer = __decorate([
|
|
454
|
+
(0, utils_1.ProxyCmp)({
|
|
455
|
+
inputs: ['dismissible', 'heading', 'open', 'placement', 'size'],
|
|
456
|
+
methods: ['show', 'close']
|
|
457
|
+
}),
|
|
458
|
+
(0, core_1.Component)({
|
|
459
|
+
selector: 'ts-drawer',
|
|
460
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
461
|
+
template: '<ng-content></ng-content>',
|
|
462
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
463
|
+
inputs: ['dismissible', 'heading', 'open', 'placement', 'size'],
|
|
464
|
+
outputs: ['tsClose'],
|
|
465
|
+
standalone: false
|
|
466
|
+
})
|
|
467
|
+
], TsDrawer);
|
|
468
|
+
let TsEmptyState = class TsEmptyState {
|
|
469
|
+
z;
|
|
470
|
+
el;
|
|
471
|
+
constructor(c, r, z) {
|
|
472
|
+
this.z = z;
|
|
473
|
+
c.detach();
|
|
474
|
+
this.el = r.nativeElement;
|
|
475
|
+
}
|
|
476
|
+
};
|
|
477
|
+
exports.TsEmptyState = TsEmptyState;
|
|
478
|
+
exports.TsEmptyState = TsEmptyState = __decorate([
|
|
479
|
+
(0, utils_1.ProxyCmp)({
|
|
480
|
+
inputs: ['description', 'heading', 'icon', 'size']
|
|
481
|
+
}),
|
|
482
|
+
(0, core_1.Component)({
|
|
483
|
+
selector: 'ts-empty-state',
|
|
484
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
485
|
+
template: '<ng-content></ng-content>',
|
|
486
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
487
|
+
inputs: ['description', 'heading', 'icon', 'size'],
|
|
488
|
+
standalone: false
|
|
489
|
+
})
|
|
490
|
+
], TsEmptyState);
|
|
491
|
+
let TsFileUpload = class TsFileUpload {
|
|
492
|
+
z;
|
|
493
|
+
el;
|
|
494
|
+
tsChange = new core_1.EventEmitter();
|
|
495
|
+
constructor(c, r, z) {
|
|
496
|
+
this.z = z;
|
|
497
|
+
c.detach();
|
|
498
|
+
this.el = r.nativeElement;
|
|
499
|
+
}
|
|
500
|
+
};
|
|
501
|
+
exports.TsFileUpload = TsFileUpload;
|
|
502
|
+
__decorate([
|
|
503
|
+
(0, core_1.Output)()
|
|
504
|
+
], TsFileUpload.prototype, "tsChange", void 0);
|
|
505
|
+
exports.TsFileUpload = TsFileUpload = __decorate([
|
|
506
|
+
(0, utils_1.ProxyCmp)({
|
|
507
|
+
inputs: ['accept', 'disabled', 'label', 'maxSize', 'multiple', 'name']
|
|
508
|
+
}),
|
|
509
|
+
(0, core_1.Component)({
|
|
510
|
+
selector: 'ts-file-upload',
|
|
511
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
512
|
+
template: '<ng-content></ng-content>',
|
|
513
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
514
|
+
inputs: ['accept', 'disabled', 'label', 'maxSize', 'multiple', 'name'],
|
|
515
|
+
outputs: ['tsChange'],
|
|
516
|
+
standalone: false
|
|
517
|
+
})
|
|
518
|
+
], TsFileUpload);
|
|
519
|
+
let TsGrid = class TsGrid {
|
|
520
|
+
z;
|
|
521
|
+
el;
|
|
522
|
+
constructor(c, r, z) {
|
|
523
|
+
this.z = z;
|
|
524
|
+
c.detach();
|
|
525
|
+
this.el = r.nativeElement;
|
|
526
|
+
}
|
|
527
|
+
};
|
|
528
|
+
exports.TsGrid = TsGrid;
|
|
529
|
+
exports.TsGrid = TsGrid = __decorate([
|
|
530
|
+
(0, utils_1.ProxyCmp)({
|
|
531
|
+
inputs: ['align', 'columns', 'gap', 'minColumnWidth']
|
|
532
|
+
}),
|
|
533
|
+
(0, core_1.Component)({
|
|
534
|
+
selector: 'ts-grid',
|
|
535
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
536
|
+
template: '<ng-content></ng-content>',
|
|
537
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
538
|
+
inputs: ['align', 'columns', 'gap', 'minColumnWidth'],
|
|
539
|
+
standalone: false
|
|
540
|
+
})
|
|
541
|
+
], TsGrid);
|
|
542
|
+
let TsIcon = class TsIcon {
|
|
543
|
+
z;
|
|
544
|
+
el;
|
|
545
|
+
constructor(c, r, z) {
|
|
546
|
+
this.z = z;
|
|
547
|
+
c.detach();
|
|
548
|
+
this.el = r.nativeElement;
|
|
549
|
+
}
|
|
550
|
+
};
|
|
551
|
+
exports.TsIcon = TsIcon;
|
|
552
|
+
exports.TsIcon = TsIcon = __decorate([
|
|
553
|
+
(0, utils_1.ProxyCmp)({
|
|
554
|
+
inputs: ['color', 'label', 'name', 'size', 'src']
|
|
555
|
+
}),
|
|
556
|
+
(0, core_1.Component)({
|
|
557
|
+
selector: 'ts-icon',
|
|
558
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
559
|
+
template: '<ng-content></ng-content>',
|
|
560
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
561
|
+
inputs: ['color', 'label', 'name', 'size', 'src'],
|
|
562
|
+
standalone: false
|
|
563
|
+
})
|
|
564
|
+
], TsIcon);
|
|
565
|
+
let TsInput = class TsInput {
|
|
566
|
+
z;
|
|
567
|
+
el;
|
|
568
|
+
tsInput = new core_1.EventEmitter();
|
|
569
|
+
tsChange = new core_1.EventEmitter();
|
|
570
|
+
tsFocus = new core_1.EventEmitter();
|
|
571
|
+
tsBlur = new core_1.EventEmitter();
|
|
572
|
+
tsValidate = new core_1.EventEmitter();
|
|
573
|
+
constructor(c, r, z) {
|
|
574
|
+
this.z = z;
|
|
575
|
+
c.detach();
|
|
576
|
+
this.el = r.nativeElement;
|
|
577
|
+
}
|
|
578
|
+
};
|
|
579
|
+
exports.TsInput = TsInput;
|
|
580
|
+
__decorate([
|
|
581
|
+
(0, core_1.Output)()
|
|
582
|
+
], TsInput.prototype, "tsInput", void 0);
|
|
583
|
+
__decorate([
|
|
584
|
+
(0, core_1.Output)()
|
|
585
|
+
], TsInput.prototype, "tsChange", void 0);
|
|
586
|
+
__decorate([
|
|
587
|
+
(0, core_1.Output)()
|
|
588
|
+
], TsInput.prototype, "tsFocus", void 0);
|
|
589
|
+
__decorate([
|
|
590
|
+
(0, core_1.Output)()
|
|
591
|
+
], TsInput.prototype, "tsBlur", void 0);
|
|
592
|
+
__decorate([
|
|
593
|
+
(0, core_1.Output)()
|
|
594
|
+
], TsInput.prototype, "tsValidate", void 0);
|
|
595
|
+
exports.TsInput = TsInput = __decorate([
|
|
596
|
+
(0, utils_1.ProxyCmp)({
|
|
597
|
+
inputs: ['autocomplete', 'disabled', 'error', 'helpText', 'label', 'maxlength', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'size', 'type', 'value'],
|
|
598
|
+
methods: ['setFocus', 'selectText']
|
|
599
|
+
}),
|
|
600
|
+
(0, core_1.Component)({
|
|
601
|
+
selector: 'ts-input',
|
|
602
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
603
|
+
template: '<ng-content></ng-content>',
|
|
604
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
605
|
+
inputs: ['autocomplete', 'disabled', 'error', 'helpText', 'label', 'maxlength', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'size', 'type', 'value'],
|
|
606
|
+
outputs: ['tsInput', 'tsChange', 'tsFocus', 'tsBlur', 'tsValidate'],
|
|
607
|
+
standalone: false
|
|
608
|
+
})
|
|
609
|
+
], TsInput);
|
|
610
|
+
let TsMenu = class TsMenu {
|
|
611
|
+
z;
|
|
612
|
+
el;
|
|
613
|
+
tsOpen = new core_1.EventEmitter();
|
|
614
|
+
tsClose = new core_1.EventEmitter();
|
|
615
|
+
constructor(c, r, z) {
|
|
616
|
+
this.z = z;
|
|
617
|
+
c.detach();
|
|
618
|
+
this.el = r.nativeElement;
|
|
619
|
+
}
|
|
620
|
+
};
|
|
621
|
+
exports.TsMenu = TsMenu;
|
|
622
|
+
__decorate([
|
|
623
|
+
(0, core_1.Output)()
|
|
624
|
+
], TsMenu.prototype, "tsOpen", void 0);
|
|
625
|
+
__decorate([
|
|
626
|
+
(0, core_1.Output)()
|
|
627
|
+
], TsMenu.prototype, "tsClose", void 0);
|
|
628
|
+
exports.TsMenu = TsMenu = __decorate([
|
|
629
|
+
(0, utils_1.ProxyCmp)({
|
|
630
|
+
inputs: ['open', 'placement', 'trigger']
|
|
631
|
+
}),
|
|
632
|
+
(0, core_1.Component)({
|
|
633
|
+
selector: 'ts-menu',
|
|
634
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
635
|
+
template: '<ng-content></ng-content>',
|
|
636
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
637
|
+
inputs: ['open', 'placement', 'trigger'],
|
|
638
|
+
outputs: ['tsOpen', 'tsClose'],
|
|
639
|
+
standalone: false
|
|
640
|
+
})
|
|
641
|
+
], TsMenu);
|
|
642
|
+
let TsMenuItem = class TsMenuItem {
|
|
643
|
+
z;
|
|
644
|
+
el;
|
|
645
|
+
tsSelect = new core_1.EventEmitter();
|
|
646
|
+
constructor(c, r, z) {
|
|
647
|
+
this.z = z;
|
|
648
|
+
c.detach();
|
|
649
|
+
this.el = r.nativeElement;
|
|
650
|
+
}
|
|
651
|
+
};
|
|
652
|
+
exports.TsMenuItem = TsMenuItem;
|
|
653
|
+
__decorate([
|
|
654
|
+
(0, core_1.Output)()
|
|
655
|
+
], TsMenuItem.prototype, "tsSelect", void 0);
|
|
656
|
+
exports.TsMenuItem = TsMenuItem = __decorate([
|
|
657
|
+
(0, utils_1.ProxyCmp)({
|
|
658
|
+
inputs: ['disabled', 'href', 'value'],
|
|
659
|
+
methods: ['setFocus']
|
|
660
|
+
}),
|
|
661
|
+
(0, core_1.Component)({
|
|
662
|
+
selector: 'ts-menu-item',
|
|
663
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
664
|
+
template: '<ng-content></ng-content>',
|
|
665
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
666
|
+
inputs: ['disabled', 'href', 'value'],
|
|
667
|
+
outputs: ['tsSelect'],
|
|
668
|
+
standalone: false
|
|
669
|
+
})
|
|
670
|
+
], TsMenuItem);
|
|
671
|
+
let TsModal = class TsModal {
|
|
672
|
+
z;
|
|
673
|
+
el;
|
|
674
|
+
tsOpen = new core_1.EventEmitter();
|
|
675
|
+
tsClose = new core_1.EventEmitter();
|
|
676
|
+
constructor(c, r, z) {
|
|
677
|
+
this.z = z;
|
|
678
|
+
c.detach();
|
|
679
|
+
this.el = r.nativeElement;
|
|
680
|
+
}
|
|
681
|
+
};
|
|
682
|
+
exports.TsModal = TsModal;
|
|
683
|
+
__decorate([
|
|
684
|
+
(0, core_1.Output)()
|
|
685
|
+
], TsModal.prototype, "tsOpen", void 0);
|
|
686
|
+
__decorate([
|
|
687
|
+
(0, core_1.Output)()
|
|
688
|
+
], TsModal.prototype, "tsClose", void 0);
|
|
689
|
+
exports.TsModal = TsModal = __decorate([
|
|
690
|
+
(0, utils_1.ProxyCmp)({
|
|
691
|
+
inputs: ['closeOnEscape', 'closeOnOverlay', 'label', 'open', 'showClose', 'size'],
|
|
692
|
+
methods: ['show', 'close']
|
|
693
|
+
}),
|
|
694
|
+
(0, core_1.Component)({
|
|
695
|
+
selector: 'ts-modal',
|
|
696
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
697
|
+
template: '<ng-content></ng-content>',
|
|
698
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
699
|
+
inputs: ['closeOnEscape', 'closeOnOverlay', 'label', 'open', 'showClose', 'size'],
|
|
700
|
+
outputs: ['tsOpen', 'tsClose'],
|
|
701
|
+
standalone: false
|
|
702
|
+
})
|
|
703
|
+
], TsModal);
|
|
704
|
+
let TsNav = class TsNav {
|
|
705
|
+
z;
|
|
706
|
+
el;
|
|
707
|
+
constructor(c, r, z) {
|
|
708
|
+
this.z = z;
|
|
709
|
+
c.detach();
|
|
710
|
+
this.el = r.nativeElement;
|
|
711
|
+
}
|
|
712
|
+
};
|
|
713
|
+
exports.TsNav = TsNav;
|
|
714
|
+
exports.TsNav = TsNav = __decorate([
|
|
715
|
+
(0, utils_1.ProxyCmp)({
|
|
716
|
+
inputs: ['collapsed', 'variant']
|
|
717
|
+
}),
|
|
718
|
+
(0, core_1.Component)({
|
|
719
|
+
selector: 'ts-nav',
|
|
720
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
721
|
+
template: '<ng-content></ng-content>',
|
|
722
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
723
|
+
inputs: ['collapsed', 'variant'],
|
|
724
|
+
standalone: false
|
|
725
|
+
})
|
|
726
|
+
], TsNav);
|
|
727
|
+
let TsNavItem = class TsNavItem {
|
|
728
|
+
z;
|
|
729
|
+
el;
|
|
730
|
+
tsSelect = new core_1.EventEmitter();
|
|
731
|
+
constructor(c, r, z) {
|
|
732
|
+
this.z = z;
|
|
733
|
+
c.detach();
|
|
734
|
+
this.el = r.nativeElement;
|
|
735
|
+
}
|
|
736
|
+
};
|
|
737
|
+
exports.TsNavItem = TsNavItem;
|
|
738
|
+
__decorate([
|
|
739
|
+
(0, core_1.Output)()
|
|
740
|
+
], TsNavItem.prototype, "tsSelect", void 0);
|
|
741
|
+
exports.TsNavItem = TsNavItem = __decorate([
|
|
742
|
+
(0, utils_1.ProxyCmp)({
|
|
743
|
+
inputs: ['active', 'disabled', 'href', 'icon']
|
|
744
|
+
}),
|
|
745
|
+
(0, core_1.Component)({
|
|
746
|
+
selector: 'ts-nav-item',
|
|
747
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
748
|
+
template: '<ng-content></ng-content>',
|
|
749
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
750
|
+
inputs: ['active', 'disabled', 'href', 'icon'],
|
|
751
|
+
outputs: ['tsSelect'],
|
|
752
|
+
standalone: false
|
|
753
|
+
})
|
|
754
|
+
], TsNavItem);
|
|
755
|
+
let TsPagination = class TsPagination {
|
|
756
|
+
z;
|
|
757
|
+
el;
|
|
758
|
+
tsChange = new core_1.EventEmitter();
|
|
759
|
+
constructor(c, r, z) {
|
|
760
|
+
this.z = z;
|
|
761
|
+
c.detach();
|
|
762
|
+
this.el = r.nativeElement;
|
|
763
|
+
}
|
|
764
|
+
};
|
|
765
|
+
exports.TsPagination = TsPagination;
|
|
766
|
+
__decorate([
|
|
767
|
+
(0, core_1.Output)()
|
|
768
|
+
], TsPagination.prototype, "tsChange", void 0);
|
|
769
|
+
exports.TsPagination = TsPagination = __decorate([
|
|
770
|
+
(0, utils_1.ProxyCmp)({
|
|
771
|
+
inputs: ['currentPage', 'pageSize', 'siblingCount', 'size', 'total']
|
|
772
|
+
}),
|
|
773
|
+
(0, core_1.Component)({
|
|
774
|
+
selector: 'ts-pagination',
|
|
775
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
776
|
+
template: '<ng-content></ng-content>',
|
|
777
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
778
|
+
inputs: ['currentPage', 'pageSize', 'siblingCount', 'size', { name: 'total', required: true }],
|
|
779
|
+
outputs: ['tsChange'],
|
|
780
|
+
standalone: false
|
|
781
|
+
})
|
|
782
|
+
], TsPagination);
|
|
783
|
+
let TsPopover = class TsPopover {
|
|
784
|
+
z;
|
|
785
|
+
el;
|
|
786
|
+
tsOpen = new core_1.EventEmitter();
|
|
787
|
+
tsClose = new core_1.EventEmitter();
|
|
788
|
+
constructor(c, r, z) {
|
|
789
|
+
this.z = z;
|
|
790
|
+
c.detach();
|
|
791
|
+
this.el = r.nativeElement;
|
|
792
|
+
}
|
|
793
|
+
};
|
|
794
|
+
exports.TsPopover = TsPopover;
|
|
795
|
+
__decorate([
|
|
796
|
+
(0, core_1.Output)()
|
|
797
|
+
], TsPopover.prototype, "tsOpen", void 0);
|
|
798
|
+
__decorate([
|
|
799
|
+
(0, core_1.Output)()
|
|
800
|
+
], TsPopover.prototype, "tsClose", void 0);
|
|
801
|
+
exports.TsPopover = TsPopover = __decorate([
|
|
802
|
+
(0, utils_1.ProxyCmp)({
|
|
803
|
+
inputs: ['dismissible', 'open', 'placement', 'trigger'],
|
|
804
|
+
methods: ['show', 'hide']
|
|
805
|
+
}),
|
|
806
|
+
(0, core_1.Component)({
|
|
807
|
+
selector: 'ts-popover',
|
|
808
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
809
|
+
template: '<ng-content></ng-content>',
|
|
810
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
811
|
+
inputs: ['dismissible', 'open', 'placement', 'trigger'],
|
|
812
|
+
outputs: ['tsOpen', 'tsClose'],
|
|
813
|
+
standalone: false
|
|
814
|
+
})
|
|
815
|
+
], TsPopover);
|
|
816
|
+
let TsProgress = class TsProgress {
|
|
817
|
+
z;
|
|
818
|
+
el;
|
|
819
|
+
constructor(c, r, z) {
|
|
820
|
+
this.z = z;
|
|
821
|
+
c.detach();
|
|
822
|
+
this.el = r.nativeElement;
|
|
823
|
+
}
|
|
824
|
+
};
|
|
825
|
+
exports.TsProgress = TsProgress;
|
|
826
|
+
exports.TsProgress = TsProgress = __decorate([
|
|
827
|
+
(0, utils_1.ProxyCmp)({
|
|
828
|
+
inputs: ['indeterminate', 'label', 'max', 'showValue', 'size', 'value', 'variant']
|
|
829
|
+
}),
|
|
830
|
+
(0, core_1.Component)({
|
|
831
|
+
selector: 'ts-progress',
|
|
832
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
833
|
+
template: '<ng-content></ng-content>',
|
|
834
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
835
|
+
inputs: ['indeterminate', 'label', 'max', 'showValue', 'size', 'value', 'variant'],
|
|
836
|
+
standalone: false
|
|
837
|
+
})
|
|
838
|
+
], TsProgress);
|
|
839
|
+
let TsRadio = class TsRadio {
|
|
840
|
+
z;
|
|
841
|
+
el;
|
|
842
|
+
tsChange = new core_1.EventEmitter();
|
|
843
|
+
constructor(c, r, z) {
|
|
844
|
+
this.z = z;
|
|
845
|
+
c.detach();
|
|
846
|
+
this.el = r.nativeElement;
|
|
847
|
+
}
|
|
848
|
+
};
|
|
849
|
+
exports.TsRadio = TsRadio;
|
|
850
|
+
__decorate([
|
|
851
|
+
(0, core_1.Output)()
|
|
852
|
+
], TsRadio.prototype, "tsChange", void 0);
|
|
853
|
+
exports.TsRadio = TsRadio = __decorate([
|
|
854
|
+
(0, utils_1.ProxyCmp)({
|
|
855
|
+
inputs: ['checked', 'disabled', 'label', 'name', 'size', 'value'],
|
|
856
|
+
methods: ['select']
|
|
857
|
+
}),
|
|
858
|
+
(0, core_1.Component)({
|
|
859
|
+
selector: 'ts-radio',
|
|
860
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
861
|
+
template: '<ng-content></ng-content>',
|
|
862
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
863
|
+
inputs: ['checked', 'disabled', 'label', 'name', 'size', 'value'],
|
|
864
|
+
outputs: ['tsChange'],
|
|
865
|
+
standalone: false
|
|
866
|
+
})
|
|
867
|
+
], TsRadio);
|
|
868
|
+
let TsRow = class TsRow {
|
|
869
|
+
z;
|
|
870
|
+
el;
|
|
871
|
+
constructor(c, r, z) {
|
|
872
|
+
this.z = z;
|
|
873
|
+
c.detach();
|
|
874
|
+
this.el = r.nativeElement;
|
|
875
|
+
}
|
|
876
|
+
};
|
|
877
|
+
exports.TsRow = TsRow;
|
|
878
|
+
exports.TsRow = TsRow = __decorate([
|
|
879
|
+
(0, utils_1.ProxyCmp)({
|
|
880
|
+
inputs: ['align', 'gap', 'justify', 'reverse', 'stackAt', 'wrap']
|
|
881
|
+
}),
|
|
882
|
+
(0, core_1.Component)({
|
|
883
|
+
selector: 'ts-row',
|
|
884
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
885
|
+
template: '<ng-content></ng-content>',
|
|
886
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
887
|
+
inputs: ['align', 'gap', 'justify', 'reverse', 'stackAt', 'wrap'],
|
|
888
|
+
standalone: false
|
|
889
|
+
})
|
|
890
|
+
], TsRow);
|
|
891
|
+
let TsSelect = class TsSelect {
|
|
892
|
+
z;
|
|
893
|
+
el;
|
|
894
|
+
tsChange = new core_1.EventEmitter();
|
|
895
|
+
tsFocus = new core_1.EventEmitter();
|
|
896
|
+
tsBlur = new core_1.EventEmitter();
|
|
897
|
+
constructor(c, r, z) {
|
|
898
|
+
this.z = z;
|
|
899
|
+
c.detach();
|
|
900
|
+
this.el = r.nativeElement;
|
|
901
|
+
}
|
|
902
|
+
};
|
|
903
|
+
exports.TsSelect = TsSelect;
|
|
904
|
+
__decorate([
|
|
905
|
+
(0, core_1.Output)()
|
|
906
|
+
], TsSelect.prototype, "tsChange", void 0);
|
|
907
|
+
__decorate([
|
|
908
|
+
(0, core_1.Output)()
|
|
909
|
+
], TsSelect.prototype, "tsFocus", void 0);
|
|
910
|
+
__decorate([
|
|
911
|
+
(0, core_1.Output)()
|
|
912
|
+
], TsSelect.prototype, "tsBlur", void 0);
|
|
913
|
+
exports.TsSelect = TsSelect = __decorate([
|
|
914
|
+
(0, utils_1.ProxyCmp)({
|
|
915
|
+
inputs: ['disabled', 'error', 'errorMessage', 'helpText', 'label', 'multiple', 'name', 'placeholder', 'required', 'size', 'value']
|
|
916
|
+
}),
|
|
917
|
+
(0, core_1.Component)({
|
|
918
|
+
selector: 'ts-select',
|
|
919
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
920
|
+
template: '<ng-content></ng-content>',
|
|
921
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
922
|
+
inputs: ['disabled', 'error', 'errorMessage', 'helpText', 'label', 'multiple', 'name', 'placeholder', 'required', 'size', 'value'],
|
|
923
|
+
outputs: ['tsChange', 'tsFocus', 'tsBlur'],
|
|
924
|
+
standalone: false
|
|
925
|
+
})
|
|
926
|
+
], TsSelect);
|
|
927
|
+
let TsSkeleton = class TsSkeleton {
|
|
928
|
+
z;
|
|
929
|
+
el;
|
|
930
|
+
constructor(c, r, z) {
|
|
931
|
+
this.z = z;
|
|
932
|
+
c.detach();
|
|
933
|
+
this.el = r.nativeElement;
|
|
934
|
+
}
|
|
935
|
+
};
|
|
936
|
+
exports.TsSkeleton = TsSkeleton;
|
|
937
|
+
exports.TsSkeleton = TsSkeleton = __decorate([
|
|
938
|
+
(0, utils_1.ProxyCmp)({
|
|
939
|
+
inputs: ['animation', 'height', 'lines', 'variant', 'width']
|
|
940
|
+
}),
|
|
941
|
+
(0, core_1.Component)({
|
|
942
|
+
selector: 'ts-skeleton',
|
|
943
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
944
|
+
template: '<ng-content></ng-content>',
|
|
945
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
946
|
+
inputs: ['animation', 'height', 'lines', 'variant', 'width'],
|
|
947
|
+
standalone: false
|
|
948
|
+
})
|
|
949
|
+
], TsSkeleton);
|
|
950
|
+
let TsSlider = class TsSlider {
|
|
951
|
+
z;
|
|
952
|
+
el;
|
|
953
|
+
tsInput = new core_1.EventEmitter();
|
|
954
|
+
tsChange = new core_1.EventEmitter();
|
|
955
|
+
constructor(c, r, z) {
|
|
956
|
+
this.z = z;
|
|
957
|
+
c.detach();
|
|
958
|
+
this.el = r.nativeElement;
|
|
959
|
+
}
|
|
960
|
+
};
|
|
961
|
+
exports.TsSlider = TsSlider;
|
|
962
|
+
__decorate([
|
|
963
|
+
(0, core_1.Output)()
|
|
964
|
+
], TsSlider.prototype, "tsInput", void 0);
|
|
965
|
+
__decorate([
|
|
966
|
+
(0, core_1.Output)()
|
|
967
|
+
], TsSlider.prototype, "tsChange", void 0);
|
|
968
|
+
exports.TsSlider = TsSlider = __decorate([
|
|
969
|
+
(0, utils_1.ProxyCmp)({
|
|
970
|
+
inputs: ['disabled', 'label', 'max', 'min', 'showValue', 'size', 'step', 'value']
|
|
971
|
+
}),
|
|
972
|
+
(0, core_1.Component)({
|
|
973
|
+
selector: 'ts-slider',
|
|
974
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
975
|
+
template: '<ng-content></ng-content>',
|
|
976
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
977
|
+
inputs: ['disabled', 'label', 'max', 'min', 'showValue', 'size', 'step', 'value'],
|
|
978
|
+
outputs: ['tsInput', 'tsChange'],
|
|
979
|
+
standalone: false
|
|
980
|
+
})
|
|
981
|
+
], TsSlider);
|
|
982
|
+
let TsSpacer = class TsSpacer {
|
|
983
|
+
z;
|
|
984
|
+
el;
|
|
985
|
+
constructor(c, r, z) {
|
|
986
|
+
this.z = z;
|
|
987
|
+
c.detach();
|
|
988
|
+
this.el = r.nativeElement;
|
|
989
|
+
}
|
|
990
|
+
};
|
|
991
|
+
exports.TsSpacer = TsSpacer;
|
|
992
|
+
exports.TsSpacer = TsSpacer = __decorate([
|
|
993
|
+
(0, utils_1.ProxyCmp)({
|
|
994
|
+
inputs: ['axis', 'size']
|
|
995
|
+
}),
|
|
996
|
+
(0, core_1.Component)({
|
|
997
|
+
selector: 'ts-spacer',
|
|
998
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
999
|
+
template: '<ng-content></ng-content>',
|
|
1000
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1001
|
+
inputs: ['axis', 'size'],
|
|
1002
|
+
standalone: false
|
|
1003
|
+
})
|
|
1004
|
+
], TsSpacer);
|
|
1005
|
+
let TsSpinner = class TsSpinner {
|
|
1006
|
+
z;
|
|
1007
|
+
el;
|
|
1008
|
+
constructor(c, r, z) {
|
|
1009
|
+
this.z = z;
|
|
1010
|
+
c.detach();
|
|
1011
|
+
this.el = r.nativeElement;
|
|
1012
|
+
}
|
|
1013
|
+
};
|
|
1014
|
+
exports.TsSpinner = TsSpinner;
|
|
1015
|
+
exports.TsSpinner = TsSpinner = __decorate([
|
|
1016
|
+
(0, utils_1.ProxyCmp)({
|
|
1017
|
+
inputs: ['color', 'label', 'size']
|
|
1018
|
+
}),
|
|
1019
|
+
(0, core_1.Component)({
|
|
1020
|
+
selector: 'ts-spinner',
|
|
1021
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
1022
|
+
template: '<ng-content></ng-content>',
|
|
1023
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1024
|
+
inputs: ['color', 'label', 'size'],
|
|
1025
|
+
standalone: false
|
|
1026
|
+
})
|
|
1027
|
+
], TsSpinner);
|
|
1028
|
+
let TsStack = class TsStack {
|
|
1029
|
+
z;
|
|
1030
|
+
el;
|
|
1031
|
+
constructor(c, r, z) {
|
|
1032
|
+
this.z = z;
|
|
1033
|
+
c.detach();
|
|
1034
|
+
this.el = r.nativeElement;
|
|
1035
|
+
}
|
|
1036
|
+
};
|
|
1037
|
+
exports.TsStack = TsStack;
|
|
1038
|
+
exports.TsStack = TsStack = __decorate([
|
|
1039
|
+
(0, utils_1.ProxyCmp)({
|
|
1040
|
+
inputs: ['align', 'gap']
|
|
1041
|
+
}),
|
|
1042
|
+
(0, core_1.Component)({
|
|
1043
|
+
selector: 'ts-stack',
|
|
1044
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
1045
|
+
template: '<ng-content></ng-content>',
|
|
1046
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1047
|
+
inputs: ['align', 'gap'],
|
|
1048
|
+
standalone: false
|
|
1049
|
+
})
|
|
1050
|
+
], TsStack);
|
|
1051
|
+
let TsStep = class TsStep {
|
|
1052
|
+
z;
|
|
1053
|
+
el;
|
|
1054
|
+
constructor(c, r, z) {
|
|
1055
|
+
this.z = z;
|
|
1056
|
+
c.detach();
|
|
1057
|
+
this.el = r.nativeElement;
|
|
1058
|
+
}
|
|
1059
|
+
};
|
|
1060
|
+
exports.TsStep = TsStep;
|
|
1061
|
+
exports.TsStep = TsStep = __decorate([
|
|
1062
|
+
(0, utils_1.ProxyCmp)({
|
|
1063
|
+
inputs: ['completed', 'description', 'disabled', 'error', 'icon', 'label']
|
|
1064
|
+
}),
|
|
1065
|
+
(0, core_1.Component)({
|
|
1066
|
+
selector: 'ts-step',
|
|
1067
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
1068
|
+
template: '<ng-content></ng-content>',
|
|
1069
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1070
|
+
inputs: ['completed', 'description', 'disabled', 'error', 'icon', 'label'],
|
|
1071
|
+
standalone: false
|
|
1072
|
+
})
|
|
1073
|
+
], TsStep);
|
|
1074
|
+
let TsStepper = class TsStepper {
|
|
1075
|
+
z;
|
|
1076
|
+
el;
|
|
1077
|
+
constructor(c, r, z) {
|
|
1078
|
+
this.z = z;
|
|
1079
|
+
c.detach();
|
|
1080
|
+
this.el = r.nativeElement;
|
|
1081
|
+
}
|
|
1082
|
+
};
|
|
1083
|
+
exports.TsStepper = TsStepper;
|
|
1084
|
+
exports.TsStepper = TsStepper = __decorate([
|
|
1085
|
+
(0, utils_1.ProxyCmp)({
|
|
1086
|
+
inputs: ['activeStep', 'linear', 'orientation']
|
|
1087
|
+
}),
|
|
1088
|
+
(0, core_1.Component)({
|
|
1089
|
+
selector: 'ts-stepper',
|
|
1090
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
1091
|
+
template: '<ng-content></ng-content>',
|
|
1092
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1093
|
+
inputs: ['activeStep', 'linear', 'orientation'],
|
|
1094
|
+
standalone: false
|
|
1095
|
+
})
|
|
1096
|
+
], TsStepper);
|
|
1097
|
+
let TsSwitchGroup = class TsSwitchGroup {
|
|
1098
|
+
z;
|
|
1099
|
+
el;
|
|
1100
|
+
tsChange = new core_1.EventEmitter();
|
|
1101
|
+
constructor(c, r, z) {
|
|
1102
|
+
this.z = z;
|
|
1103
|
+
c.detach();
|
|
1104
|
+
this.el = r.nativeElement;
|
|
1105
|
+
}
|
|
1106
|
+
};
|
|
1107
|
+
exports.TsSwitchGroup = TsSwitchGroup;
|
|
1108
|
+
__decorate([
|
|
1109
|
+
(0, core_1.Output)()
|
|
1110
|
+
], TsSwitchGroup.prototype, "tsChange", void 0);
|
|
1111
|
+
exports.TsSwitchGroup = TsSwitchGroup = __decorate([
|
|
1112
|
+
(0, utils_1.ProxyCmp)({
|
|
1113
|
+
inputs: ['disabled', 'fullWidth', 'size', 'value']
|
|
1114
|
+
}),
|
|
1115
|
+
(0, core_1.Component)({
|
|
1116
|
+
selector: 'ts-switch-group',
|
|
1117
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
1118
|
+
template: '<ng-content></ng-content>',
|
|
1119
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1120
|
+
inputs: ['disabled', 'fullWidth', 'size', 'value'],
|
|
1121
|
+
outputs: ['tsChange'],
|
|
1122
|
+
standalone: false
|
|
1123
|
+
})
|
|
1124
|
+
], TsSwitchGroup);
|
|
1125
|
+
let TsSwitchOption = class TsSwitchOption {
|
|
1126
|
+
z;
|
|
1127
|
+
el;
|
|
1128
|
+
constructor(c, r, z) {
|
|
1129
|
+
this.z = z;
|
|
1130
|
+
c.detach();
|
|
1131
|
+
this.el = r.nativeElement;
|
|
1132
|
+
}
|
|
1133
|
+
};
|
|
1134
|
+
exports.TsSwitchOption = TsSwitchOption;
|
|
1135
|
+
exports.TsSwitchOption = TsSwitchOption = __decorate([
|
|
1136
|
+
(0, utils_1.ProxyCmp)({
|
|
1137
|
+
inputs: ['active', 'disabled', 'icon', 'value']
|
|
1138
|
+
}),
|
|
1139
|
+
(0, core_1.Component)({
|
|
1140
|
+
selector: 'ts-switch-option',
|
|
1141
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
1142
|
+
template: '<ng-content></ng-content>',
|
|
1143
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1144
|
+
inputs: ['active', 'disabled', 'icon', 'value'],
|
|
1145
|
+
standalone: false
|
|
1146
|
+
})
|
|
1147
|
+
], TsSwitchOption);
|
|
1148
|
+
let TsTabPanel = class TsTabPanel {
|
|
1149
|
+
z;
|
|
1150
|
+
el;
|
|
1151
|
+
constructor(c, r, z) {
|
|
1152
|
+
this.z = z;
|
|
1153
|
+
c.detach();
|
|
1154
|
+
this.el = r.nativeElement;
|
|
1155
|
+
}
|
|
1156
|
+
};
|
|
1157
|
+
exports.TsTabPanel = TsTabPanel;
|
|
1158
|
+
exports.TsTabPanel = TsTabPanel = __decorate([
|
|
1159
|
+
(0, utils_1.ProxyCmp)({
|
|
1160
|
+
inputs: ['disabled', 'icon', 'tab', 'value']
|
|
1161
|
+
}),
|
|
1162
|
+
(0, core_1.Component)({
|
|
1163
|
+
selector: 'ts-tab-panel',
|
|
1164
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
1165
|
+
template: '<ng-content></ng-content>',
|
|
1166
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1167
|
+
inputs: ['disabled', 'icon', { name: 'tab', required: true }, { name: 'value', required: true }],
|
|
1168
|
+
standalone: false
|
|
1169
|
+
})
|
|
1170
|
+
], TsTabPanel);
|
|
1171
|
+
let TsTable = class TsTable {
|
|
1172
|
+
z;
|
|
1173
|
+
el;
|
|
1174
|
+
constructor(c, r, z) {
|
|
1175
|
+
this.z = z;
|
|
1176
|
+
c.detach();
|
|
1177
|
+
this.el = r.nativeElement;
|
|
1178
|
+
}
|
|
1179
|
+
};
|
|
1180
|
+
exports.TsTable = TsTable;
|
|
1181
|
+
exports.TsTable = TsTable = __decorate([
|
|
1182
|
+
(0, utils_1.ProxyCmp)({
|
|
1183
|
+
inputs: ['bordered', 'compact', 'hoverable', 'stickyHeader', 'striped']
|
|
1184
|
+
}),
|
|
1185
|
+
(0, core_1.Component)({
|
|
1186
|
+
selector: 'ts-table',
|
|
1187
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
1188
|
+
template: '<ng-content></ng-content>',
|
|
1189
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1190
|
+
inputs: ['bordered', 'compact', 'hoverable', 'stickyHeader', 'striped'],
|
|
1191
|
+
standalone: false
|
|
1192
|
+
})
|
|
1193
|
+
], TsTable);
|
|
1194
|
+
let TsTabs = class TsTabs {
|
|
1195
|
+
z;
|
|
1196
|
+
el;
|
|
1197
|
+
tsChange = new core_1.EventEmitter();
|
|
1198
|
+
constructor(c, r, z) {
|
|
1199
|
+
this.z = z;
|
|
1200
|
+
c.detach();
|
|
1201
|
+
this.el = r.nativeElement;
|
|
1202
|
+
}
|
|
1203
|
+
};
|
|
1204
|
+
exports.TsTabs = TsTabs;
|
|
1205
|
+
__decorate([
|
|
1206
|
+
(0, core_1.Output)()
|
|
1207
|
+
], TsTabs.prototype, "tsChange", void 0);
|
|
1208
|
+
exports.TsTabs = TsTabs = __decorate([
|
|
1209
|
+
(0, utils_1.ProxyCmp)({
|
|
1210
|
+
inputs: ['size', 'value', 'variant']
|
|
1211
|
+
}),
|
|
1212
|
+
(0, core_1.Component)({
|
|
1213
|
+
selector: 'ts-tabs',
|
|
1214
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
1215
|
+
template: '<ng-content></ng-content>',
|
|
1216
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1217
|
+
inputs: ['size', 'value', 'variant'],
|
|
1218
|
+
outputs: ['tsChange'],
|
|
1219
|
+
standalone: false
|
|
1220
|
+
})
|
|
1221
|
+
], TsTabs);
|
|
1222
|
+
let TsTextarea = class TsTextarea {
|
|
1223
|
+
z;
|
|
1224
|
+
el;
|
|
1225
|
+
tsInput = new core_1.EventEmitter();
|
|
1226
|
+
tsChange = new core_1.EventEmitter();
|
|
1227
|
+
tsFocus = new core_1.EventEmitter();
|
|
1228
|
+
tsBlur = new core_1.EventEmitter();
|
|
1229
|
+
constructor(c, r, z) {
|
|
1230
|
+
this.z = z;
|
|
1231
|
+
c.detach();
|
|
1232
|
+
this.el = r.nativeElement;
|
|
1233
|
+
}
|
|
1234
|
+
};
|
|
1235
|
+
exports.TsTextarea = TsTextarea;
|
|
1236
|
+
__decorate([
|
|
1237
|
+
(0, core_1.Output)()
|
|
1238
|
+
], TsTextarea.prototype, "tsInput", void 0);
|
|
1239
|
+
__decorate([
|
|
1240
|
+
(0, core_1.Output)()
|
|
1241
|
+
], TsTextarea.prototype, "tsChange", void 0);
|
|
1242
|
+
__decorate([
|
|
1243
|
+
(0, core_1.Output)()
|
|
1244
|
+
], TsTextarea.prototype, "tsFocus", void 0);
|
|
1245
|
+
__decorate([
|
|
1246
|
+
(0, core_1.Output)()
|
|
1247
|
+
], TsTextarea.prototype, "tsBlur", void 0);
|
|
1248
|
+
exports.TsTextarea = TsTextarea = __decorate([
|
|
1249
|
+
(0, utils_1.ProxyCmp)({
|
|
1250
|
+
inputs: ['disabled', 'error', 'errorMessage', 'helpText', 'label', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'value'],
|
|
1251
|
+
methods: ['setFocus', 'selectText']
|
|
1252
|
+
}),
|
|
1253
|
+
(0, core_1.Component)({
|
|
1254
|
+
selector: 'ts-textarea',
|
|
1255
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
1256
|
+
template: '<ng-content></ng-content>',
|
|
1257
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1258
|
+
inputs: ['disabled', 'error', 'errorMessage', 'helpText', 'label', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'value'],
|
|
1259
|
+
outputs: ['tsInput', 'tsChange', 'tsFocus', 'tsBlur'],
|
|
1260
|
+
standalone: false
|
|
1261
|
+
})
|
|
1262
|
+
], TsTextarea);
|
|
1263
|
+
let TsToast = class TsToast {
|
|
1264
|
+
z;
|
|
1265
|
+
el;
|
|
1266
|
+
tsClose = new core_1.EventEmitter();
|
|
1267
|
+
constructor(c, r, z) {
|
|
1268
|
+
this.z = z;
|
|
1269
|
+
c.detach();
|
|
1270
|
+
this.el = r.nativeElement;
|
|
1271
|
+
}
|
|
1272
|
+
};
|
|
1273
|
+
exports.TsToast = TsToast;
|
|
1274
|
+
__decorate([
|
|
1275
|
+
(0, core_1.Output)()
|
|
1276
|
+
], TsToast.prototype, "tsClose", void 0);
|
|
1277
|
+
exports.TsToast = TsToast = __decorate([
|
|
1278
|
+
(0, utils_1.ProxyCmp)({
|
|
1279
|
+
inputs: ['dismissible', 'duration', 'open', 'position', 'variant'],
|
|
1280
|
+
methods: ['close', 'show']
|
|
1281
|
+
}),
|
|
1282
|
+
(0, core_1.Component)({
|
|
1283
|
+
selector: 'ts-toast',
|
|
1284
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
1285
|
+
template: '<ng-content></ng-content>',
|
|
1286
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1287
|
+
inputs: ['dismissible', 'duration', 'open', 'position', 'variant'],
|
|
1288
|
+
outputs: ['tsClose'],
|
|
1289
|
+
standalone: false
|
|
1290
|
+
})
|
|
1291
|
+
], TsToast);
|
|
1292
|
+
let TsToggle = class TsToggle {
|
|
1293
|
+
z;
|
|
1294
|
+
el;
|
|
1295
|
+
tsChange = new core_1.EventEmitter();
|
|
1296
|
+
constructor(c, r, z) {
|
|
1297
|
+
this.z = z;
|
|
1298
|
+
c.detach();
|
|
1299
|
+
this.el = r.nativeElement;
|
|
1300
|
+
}
|
|
1301
|
+
};
|
|
1302
|
+
exports.TsToggle = TsToggle;
|
|
1303
|
+
__decorate([
|
|
1304
|
+
(0, core_1.Output)()
|
|
1305
|
+
], TsToggle.prototype, "tsChange", void 0);
|
|
1306
|
+
exports.TsToggle = TsToggle = __decorate([
|
|
1307
|
+
(0, utils_1.ProxyCmp)({
|
|
1308
|
+
inputs: ['checked', 'disabled', 'name', 'size', 'value'],
|
|
1309
|
+
methods: ['toggle']
|
|
1310
|
+
}),
|
|
1311
|
+
(0, core_1.Component)({
|
|
1312
|
+
selector: 'ts-toggle',
|
|
1313
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
1314
|
+
template: '<ng-content></ng-content>',
|
|
1315
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1316
|
+
inputs: ['checked', 'disabled', 'name', 'size', 'value'],
|
|
1317
|
+
outputs: ['tsChange'],
|
|
1318
|
+
standalone: false
|
|
1319
|
+
})
|
|
1320
|
+
], TsToggle);
|
|
1321
|
+
let TsToolbar = class TsToolbar {
|
|
1322
|
+
z;
|
|
1323
|
+
el;
|
|
1324
|
+
constructor(c, r, z) {
|
|
1325
|
+
this.z = z;
|
|
1326
|
+
c.detach();
|
|
1327
|
+
this.el = r.nativeElement;
|
|
1328
|
+
}
|
|
1329
|
+
};
|
|
1330
|
+
exports.TsToolbar = TsToolbar;
|
|
1331
|
+
exports.TsToolbar = TsToolbar = __decorate([
|
|
1332
|
+
(0, utils_1.ProxyCmp)({
|
|
1333
|
+
inputs: ['size', 'variant']
|
|
1334
|
+
}),
|
|
1335
|
+
(0, core_1.Component)({
|
|
1336
|
+
selector: 'ts-toolbar',
|
|
1337
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
1338
|
+
template: '<ng-content></ng-content>',
|
|
1339
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1340
|
+
inputs: ['size', 'variant'],
|
|
1341
|
+
standalone: false
|
|
1342
|
+
})
|
|
1343
|
+
], TsToolbar);
|
|
1344
|
+
let TsTooltip = class TsTooltip {
|
|
1345
|
+
z;
|
|
1346
|
+
el;
|
|
1347
|
+
constructor(c, r, z) {
|
|
1348
|
+
this.z = z;
|
|
1349
|
+
c.detach();
|
|
1350
|
+
this.el = r.nativeElement;
|
|
1351
|
+
}
|
|
1352
|
+
};
|
|
1353
|
+
exports.TsTooltip = TsTooltip;
|
|
1354
|
+
exports.TsTooltip = TsTooltip = __decorate([
|
|
1355
|
+
(0, utils_1.ProxyCmp)({
|
|
1356
|
+
inputs: ['content', 'disabled', 'hideDelay', 'placement', 'showDelay'],
|
|
1357
|
+
methods: ['show', 'hide']
|
|
1358
|
+
}),
|
|
1359
|
+
(0, core_1.Component)({
|
|
1360
|
+
selector: 'ts-tooltip',
|
|
1361
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
1362
|
+
template: '<ng-content></ng-content>',
|
|
1363
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1364
|
+
inputs: ['content', 'disabled', 'hideDelay', 'placement', 'showDelay'],
|
|
1365
|
+
standalone: false
|
|
1366
|
+
})
|
|
1367
|
+
], TsTooltip);
|
|
1368
|
+
let TsTree = class TsTree {
|
|
1369
|
+
z;
|
|
1370
|
+
el;
|
|
1371
|
+
constructor(c, r, z) {
|
|
1372
|
+
this.z = z;
|
|
1373
|
+
c.detach();
|
|
1374
|
+
this.el = r.nativeElement;
|
|
1375
|
+
}
|
|
1376
|
+
};
|
|
1377
|
+
exports.TsTree = TsTree;
|
|
1378
|
+
exports.TsTree = TsTree = __decorate([
|
|
1379
|
+
(0, utils_1.ProxyCmp)({
|
|
1380
|
+
inputs: ['selectable']
|
|
1381
|
+
}),
|
|
1382
|
+
(0, core_1.Component)({
|
|
1383
|
+
selector: 'ts-tree',
|
|
1384
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
1385
|
+
template: '<ng-content></ng-content>',
|
|
1386
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1387
|
+
inputs: ['selectable'],
|
|
1388
|
+
standalone: false
|
|
1389
|
+
})
|
|
1390
|
+
], TsTree);
|
|
1391
|
+
let TsTreeItem = class TsTreeItem {
|
|
1392
|
+
z;
|
|
1393
|
+
el;
|
|
1394
|
+
tsToggle = new core_1.EventEmitter();
|
|
1395
|
+
tsSelect = new core_1.EventEmitter();
|
|
1396
|
+
constructor(c, r, z) {
|
|
1397
|
+
this.z = z;
|
|
1398
|
+
c.detach();
|
|
1399
|
+
this.el = r.nativeElement;
|
|
1400
|
+
}
|
|
1401
|
+
};
|
|
1402
|
+
exports.TsTreeItem = TsTreeItem;
|
|
1403
|
+
__decorate([
|
|
1404
|
+
(0, core_1.Output)()
|
|
1405
|
+
], TsTreeItem.prototype, "tsToggle", void 0);
|
|
1406
|
+
__decorate([
|
|
1407
|
+
(0, core_1.Output)()
|
|
1408
|
+
], TsTreeItem.prototype, "tsSelect", void 0);
|
|
1409
|
+
exports.TsTreeItem = TsTreeItem = __decorate([
|
|
1410
|
+
(0, utils_1.ProxyCmp)({
|
|
1411
|
+
inputs: ['disabled', 'expanded', 'icon', 'label', 'selected']
|
|
1412
|
+
}),
|
|
1413
|
+
(0, core_1.Component)({
|
|
1414
|
+
selector: 'ts-tree-item',
|
|
1415
|
+
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
1416
|
+
template: '<ng-content></ng-content>',
|
|
1417
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1418
|
+
inputs: ['disabled', 'expanded', 'icon', 'label', 'selected'],
|
|
1419
|
+
outputs: ['tsToggle', 'tsSelect'],
|
|
1420
|
+
standalone: false
|
|
1421
|
+
})
|
|
1422
|
+
], TsTreeItem);
|