@andespindola/ui-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/README.md +50 -0
- package/andespindola-ui-angular.d.ts.map +1 -0
- package/fesm2022/andespindola-ui-angular.mjs +1020 -0
- package/fesm2022/andespindola-ui-angular.mjs.map +1 -0
- package/index.d.ts +6 -0
- package/lib/stencil-generated/angular-component-lib/utils.d.ts +10 -0
- package/lib/stencil-generated/angular-component-lib/utils.d.ts.map +1 -0
- package/lib/stencil-generated/components.d.ts +377 -0
- package/lib/stencil-generated/components.d.ts.map +1 -0
- package/lib/stencil-generated/index.d.ts +3 -0
- package/lib/stencil-generated/index.d.ts.map +1 -0
- package/package.json +30 -0
- package/public-api.d.ts +3 -0
- package/public-api.d.ts.map +1 -0
|
@@ -0,0 +1,1020 @@
|
|
|
1
|
+
import { defineCustomElements } from '@andespindola/ui-core/loader';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
import { ChangeDetectorRef, ElementRef, NgZone, ChangeDetectionStrategy, Component } from '@angular/core';
|
|
4
|
+
import { fromEvent } from 'rxjs';
|
|
5
|
+
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
/* tslint:disable */
|
|
8
|
+
const proxyInputs = (Cmp, inputs) => {
|
|
9
|
+
const Prototype = Cmp.prototype;
|
|
10
|
+
inputs.forEach((item) => {
|
|
11
|
+
Object.defineProperty(Prototype, item, {
|
|
12
|
+
get() {
|
|
13
|
+
return this.el[item];
|
|
14
|
+
},
|
|
15
|
+
set(val) {
|
|
16
|
+
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
17
|
+
},
|
|
18
|
+
/**
|
|
19
|
+
* In the event that proxyInputs is called
|
|
20
|
+
* multiple times re-defining these inputs
|
|
21
|
+
* will cause an error to be thrown. As a result
|
|
22
|
+
* we set configurable: true to indicate these
|
|
23
|
+
* properties can be changed.
|
|
24
|
+
*/
|
|
25
|
+
configurable: true,
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
};
|
|
29
|
+
const proxyMethods = (Cmp, methods) => {
|
|
30
|
+
const Prototype = Cmp.prototype;
|
|
31
|
+
methods.forEach((methodName) => {
|
|
32
|
+
Prototype[methodName] = function () {
|
|
33
|
+
const args = arguments;
|
|
34
|
+
return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
37
|
+
};
|
|
38
|
+
const proxyOutputs = (instance, el, events) => {
|
|
39
|
+
events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
|
|
40
|
+
};
|
|
41
|
+
const defineCustomElement = (tagName, customElement) => {
|
|
42
|
+
if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
|
|
43
|
+
customElements.define(tagName, customElement);
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
// tslint:disable-next-line: only-arrow-functions
|
|
47
|
+
function ProxyCmp(opts) {
|
|
48
|
+
const decorator = function (cls) {
|
|
49
|
+
const { defineCustomElementFn, inputs, methods } = opts;
|
|
50
|
+
if (defineCustomElementFn !== undefined) {
|
|
51
|
+
defineCustomElementFn();
|
|
52
|
+
}
|
|
53
|
+
if (inputs) {
|
|
54
|
+
proxyInputs(cls, inputs);
|
|
55
|
+
}
|
|
56
|
+
if (methods) {
|
|
57
|
+
proxyMethods(cls, methods);
|
|
58
|
+
}
|
|
59
|
+
return cls;
|
|
60
|
+
};
|
|
61
|
+
return decorator;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
65
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
66
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
67
|
+
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;
|
|
68
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
69
|
+
};
|
|
70
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
71
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
72
|
+
};
|
|
73
|
+
let UiAccordion = class UiAccordion {
|
|
74
|
+
z;
|
|
75
|
+
el;
|
|
76
|
+
constructor(c, r, z) {
|
|
77
|
+
this.z = z;
|
|
78
|
+
c.detach();
|
|
79
|
+
this.el = r.nativeElement;
|
|
80
|
+
}
|
|
81
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
82
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiAccordion, isStandalone: true, selector: "ui-accordion", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
83
|
+
};
|
|
84
|
+
UiAccordion = __decorate([
|
|
85
|
+
ProxyCmp({}),
|
|
86
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
87
|
+
], UiAccordion);
|
|
88
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiAccordion, decorators: [{
|
|
89
|
+
type: Component,
|
|
90
|
+
args: [{
|
|
91
|
+
selector: 'ui-accordion',
|
|
92
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
93
|
+
template: '<ng-content></ng-content>',
|
|
94
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
95
|
+
inputs: [],
|
|
96
|
+
}]
|
|
97
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
98
|
+
let UiAccordionItem = class UiAccordionItem {
|
|
99
|
+
z;
|
|
100
|
+
el;
|
|
101
|
+
constructor(c, r, z) {
|
|
102
|
+
this.z = z;
|
|
103
|
+
c.detach();
|
|
104
|
+
this.el = r.nativeElement;
|
|
105
|
+
proxyOutputs(this, this.el, ['uiToggle']);
|
|
106
|
+
}
|
|
107
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiAccordionItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
108
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiAccordionItem, isStandalone: true, selector: "ui-accordion-item", inputs: { heading: "heading", open: "open" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
109
|
+
};
|
|
110
|
+
UiAccordionItem = __decorate([
|
|
111
|
+
ProxyCmp({
|
|
112
|
+
inputs: ['heading', 'open']
|
|
113
|
+
}),
|
|
114
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
115
|
+
], UiAccordionItem);
|
|
116
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiAccordionItem, decorators: [{
|
|
117
|
+
type: Component,
|
|
118
|
+
args: [{
|
|
119
|
+
selector: 'ui-accordion-item',
|
|
120
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
121
|
+
template: '<ng-content></ng-content>',
|
|
122
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
123
|
+
inputs: ['heading', 'open'],
|
|
124
|
+
}]
|
|
125
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
126
|
+
let UiAvatar = class UiAvatar {
|
|
127
|
+
z;
|
|
128
|
+
el;
|
|
129
|
+
constructor(c, r, z) {
|
|
130
|
+
this.z = z;
|
|
131
|
+
c.detach();
|
|
132
|
+
this.el = r.nativeElement;
|
|
133
|
+
}
|
|
134
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
135
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiAvatar, isStandalone: true, selector: "ui-avatar", inputs: { alt: "alt", fallback: "fallback", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
136
|
+
};
|
|
137
|
+
UiAvatar = __decorate([
|
|
138
|
+
ProxyCmp({
|
|
139
|
+
inputs: ['alt', 'fallback', 'src']
|
|
140
|
+
}),
|
|
141
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
142
|
+
], UiAvatar);
|
|
143
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiAvatar, decorators: [{
|
|
144
|
+
type: Component,
|
|
145
|
+
args: [{
|
|
146
|
+
selector: 'ui-avatar',
|
|
147
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
148
|
+
template: '<ng-content></ng-content>',
|
|
149
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
150
|
+
inputs: ['alt', 'fallback', 'src'],
|
|
151
|
+
}]
|
|
152
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
153
|
+
let UiBadge = class UiBadge {
|
|
154
|
+
z;
|
|
155
|
+
el;
|
|
156
|
+
constructor(c, r, z) {
|
|
157
|
+
this.z = z;
|
|
158
|
+
c.detach();
|
|
159
|
+
this.el = r.nativeElement;
|
|
160
|
+
}
|
|
161
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
162
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiBadge, isStandalone: true, selector: "ui-badge", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
163
|
+
};
|
|
164
|
+
UiBadge = __decorate([
|
|
165
|
+
ProxyCmp({
|
|
166
|
+
inputs: ['variant']
|
|
167
|
+
}),
|
|
168
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
169
|
+
], UiBadge);
|
|
170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiBadge, decorators: [{
|
|
171
|
+
type: Component,
|
|
172
|
+
args: [{
|
|
173
|
+
selector: 'ui-badge',
|
|
174
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
175
|
+
template: '<ng-content></ng-content>',
|
|
176
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
177
|
+
inputs: ['variant'],
|
|
178
|
+
}]
|
|
179
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
180
|
+
let UiButton = class UiButton {
|
|
181
|
+
z;
|
|
182
|
+
el;
|
|
183
|
+
constructor(c, r, z) {
|
|
184
|
+
this.z = z;
|
|
185
|
+
c.detach();
|
|
186
|
+
this.el = r.nativeElement;
|
|
187
|
+
}
|
|
188
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
189
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiButton, isStandalone: true, selector: "ui-button", inputs: { disabled: "disabled", loading: "loading", size: "size", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
190
|
+
};
|
|
191
|
+
UiButton = __decorate([
|
|
192
|
+
ProxyCmp({
|
|
193
|
+
inputs: ['disabled', 'loading', 'size', 'type', 'variant']
|
|
194
|
+
}),
|
|
195
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
196
|
+
], UiButton);
|
|
197
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiButton, decorators: [{
|
|
198
|
+
type: Component,
|
|
199
|
+
args: [{
|
|
200
|
+
selector: 'ui-button',
|
|
201
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
202
|
+
template: '<ng-content></ng-content>',
|
|
203
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
204
|
+
inputs: ['disabled', 'loading', 'size', 'type', 'variant'],
|
|
205
|
+
}]
|
|
206
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
207
|
+
let UiCard = class UiCard {
|
|
208
|
+
z;
|
|
209
|
+
el;
|
|
210
|
+
constructor(c, r, z) {
|
|
211
|
+
this.z = z;
|
|
212
|
+
c.detach();
|
|
213
|
+
this.el = r.nativeElement;
|
|
214
|
+
}
|
|
215
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
216
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiCard, isStandalone: true, selector: "ui-card", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
217
|
+
};
|
|
218
|
+
UiCard = __decorate([
|
|
219
|
+
ProxyCmp({}),
|
|
220
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
221
|
+
], UiCard);
|
|
222
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiCard, decorators: [{
|
|
223
|
+
type: Component,
|
|
224
|
+
args: [{
|
|
225
|
+
selector: 'ui-card',
|
|
226
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
227
|
+
template: '<ng-content></ng-content>',
|
|
228
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
229
|
+
inputs: [],
|
|
230
|
+
}]
|
|
231
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
232
|
+
let UiCheckbox = class UiCheckbox {
|
|
233
|
+
z;
|
|
234
|
+
el;
|
|
235
|
+
constructor(c, r, z) {
|
|
236
|
+
this.z = z;
|
|
237
|
+
c.detach();
|
|
238
|
+
this.el = r.nativeElement;
|
|
239
|
+
proxyOutputs(this, this.el, ['uiChange']);
|
|
240
|
+
}
|
|
241
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
242
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiCheckbox, isStandalone: true, selector: "ui-checkbox", inputs: { checked: "checked", disabled: "disabled", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
243
|
+
};
|
|
244
|
+
UiCheckbox = __decorate([
|
|
245
|
+
ProxyCmp({
|
|
246
|
+
inputs: ['checked', 'disabled', 'name', 'value']
|
|
247
|
+
}),
|
|
248
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
249
|
+
], UiCheckbox);
|
|
250
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiCheckbox, decorators: [{
|
|
251
|
+
type: Component,
|
|
252
|
+
args: [{
|
|
253
|
+
selector: 'ui-checkbox',
|
|
254
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
255
|
+
template: '<ng-content></ng-content>',
|
|
256
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
257
|
+
inputs: ['checked', 'disabled', 'name', 'value'],
|
|
258
|
+
}]
|
|
259
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
260
|
+
let UiDialog = class UiDialog {
|
|
261
|
+
z;
|
|
262
|
+
el;
|
|
263
|
+
constructor(c, r, z) {
|
|
264
|
+
this.z = z;
|
|
265
|
+
c.detach();
|
|
266
|
+
this.el = r.nativeElement;
|
|
267
|
+
proxyOutputs(this, this.el, ['uiClose']);
|
|
268
|
+
}
|
|
269
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
270
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiDialog, isStandalone: true, selector: "ui-dialog", inputs: { open: "open" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
271
|
+
};
|
|
272
|
+
UiDialog = __decorate([
|
|
273
|
+
ProxyCmp({
|
|
274
|
+
inputs: ['open'],
|
|
275
|
+
methods: ['show', 'close']
|
|
276
|
+
}),
|
|
277
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
278
|
+
], UiDialog);
|
|
279
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiDialog, decorators: [{
|
|
280
|
+
type: Component,
|
|
281
|
+
args: [{
|
|
282
|
+
selector: 'ui-dialog',
|
|
283
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
284
|
+
template: '<ng-content></ng-content>',
|
|
285
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
286
|
+
inputs: ['open'],
|
|
287
|
+
}]
|
|
288
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
289
|
+
let UiDrawer = class UiDrawer {
|
|
290
|
+
z;
|
|
291
|
+
el;
|
|
292
|
+
constructor(c, r, z) {
|
|
293
|
+
this.z = z;
|
|
294
|
+
c.detach();
|
|
295
|
+
this.el = r.nativeElement;
|
|
296
|
+
proxyOutputs(this, this.el, ['uiClose']);
|
|
297
|
+
}
|
|
298
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
299
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiDrawer, isStandalone: true, selector: "ui-drawer", inputs: { open: "open", side: "side" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
300
|
+
};
|
|
301
|
+
UiDrawer = __decorate([
|
|
302
|
+
ProxyCmp({
|
|
303
|
+
inputs: ['open', 'side'],
|
|
304
|
+
methods: ['show', 'close']
|
|
305
|
+
}),
|
|
306
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
307
|
+
], UiDrawer);
|
|
308
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiDrawer, decorators: [{
|
|
309
|
+
type: Component,
|
|
310
|
+
args: [{
|
|
311
|
+
selector: 'ui-drawer',
|
|
312
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
313
|
+
template: '<ng-content></ng-content>',
|
|
314
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
315
|
+
inputs: ['open', 'side'],
|
|
316
|
+
}]
|
|
317
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
318
|
+
let UiDropdownItem = class UiDropdownItem {
|
|
319
|
+
z;
|
|
320
|
+
el;
|
|
321
|
+
constructor(c, r, z) {
|
|
322
|
+
this.z = z;
|
|
323
|
+
c.detach();
|
|
324
|
+
this.el = r.nativeElement;
|
|
325
|
+
proxyOutputs(this, this.el, ['uiSelect']);
|
|
326
|
+
}
|
|
327
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
328
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiDropdownItem, isStandalone: true, selector: "ui-dropdown-item", inputs: { disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
329
|
+
};
|
|
330
|
+
UiDropdownItem = __decorate([
|
|
331
|
+
ProxyCmp({
|
|
332
|
+
inputs: ['disabled']
|
|
333
|
+
}),
|
|
334
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
335
|
+
], UiDropdownItem);
|
|
336
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiDropdownItem, decorators: [{
|
|
337
|
+
type: Component,
|
|
338
|
+
args: [{
|
|
339
|
+
selector: 'ui-dropdown-item',
|
|
340
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
341
|
+
template: '<ng-content></ng-content>',
|
|
342
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
343
|
+
inputs: ['disabled'],
|
|
344
|
+
}]
|
|
345
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
346
|
+
let UiDropdownMenu = class UiDropdownMenu {
|
|
347
|
+
z;
|
|
348
|
+
el;
|
|
349
|
+
constructor(c, r, z) {
|
|
350
|
+
this.z = z;
|
|
351
|
+
c.detach();
|
|
352
|
+
this.el = r.nativeElement;
|
|
353
|
+
proxyOutputs(this, this.el, ['uiOpenChange']);
|
|
354
|
+
}
|
|
355
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiDropdownMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
356
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiDropdownMenu, isStandalone: true, selector: "ui-dropdown-menu", inputs: { open: "open", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
357
|
+
};
|
|
358
|
+
UiDropdownMenu = __decorate([
|
|
359
|
+
ProxyCmp({
|
|
360
|
+
inputs: ['open', 'placement'],
|
|
361
|
+
methods: ['show', 'close']
|
|
362
|
+
}),
|
|
363
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
364
|
+
], UiDropdownMenu);
|
|
365
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiDropdownMenu, decorators: [{
|
|
366
|
+
type: Component,
|
|
367
|
+
args: [{
|
|
368
|
+
selector: 'ui-dropdown-menu',
|
|
369
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
370
|
+
template: '<ng-content></ng-content>',
|
|
371
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
372
|
+
inputs: ['open', 'placement'],
|
|
373
|
+
}]
|
|
374
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
375
|
+
let UiField = class UiField {
|
|
376
|
+
z;
|
|
377
|
+
el;
|
|
378
|
+
constructor(c, r, z) {
|
|
379
|
+
this.z = z;
|
|
380
|
+
c.detach();
|
|
381
|
+
this.el = r.nativeElement;
|
|
382
|
+
}
|
|
383
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
384
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiField, isStandalone: true, selector: "ui-field", inputs: { description: "description", error: "error", fieldId: "fieldId", label: "label", required: "required" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
385
|
+
};
|
|
386
|
+
UiField = __decorate([
|
|
387
|
+
ProxyCmp({
|
|
388
|
+
inputs: ['description', 'error', 'fieldId', 'label', 'required']
|
|
389
|
+
}),
|
|
390
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
391
|
+
], UiField);
|
|
392
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiField, decorators: [{
|
|
393
|
+
type: Component,
|
|
394
|
+
args: [{
|
|
395
|
+
selector: 'ui-field',
|
|
396
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
397
|
+
template: '<ng-content></ng-content>',
|
|
398
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
399
|
+
inputs: ['description', 'error', 'fieldId', 'label', 'required'],
|
|
400
|
+
}]
|
|
401
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
402
|
+
let UiInput = class UiInput {
|
|
403
|
+
z;
|
|
404
|
+
el;
|
|
405
|
+
constructor(c, r, z) {
|
|
406
|
+
this.z = z;
|
|
407
|
+
c.detach();
|
|
408
|
+
this.el = r.nativeElement;
|
|
409
|
+
proxyOutputs(this, this.el, ['uiInput', 'uiChange']);
|
|
410
|
+
}
|
|
411
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
412
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiInput, isStandalone: true, selector: "ui-input", inputs: { disabled: "disabled", invalid: "invalid", name: "name", placeholder: "placeholder", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
413
|
+
};
|
|
414
|
+
UiInput = __decorate([
|
|
415
|
+
ProxyCmp({
|
|
416
|
+
inputs: ['disabled', 'invalid', 'name', 'placeholder', 'type', 'value']
|
|
417
|
+
}),
|
|
418
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
419
|
+
], UiInput);
|
|
420
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiInput, decorators: [{
|
|
421
|
+
type: Component,
|
|
422
|
+
args: [{
|
|
423
|
+
selector: 'ui-input',
|
|
424
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
425
|
+
template: '<ng-content></ng-content>',
|
|
426
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
427
|
+
inputs: ['disabled', 'invalid', 'name', 'placeholder', 'type', 'value'],
|
|
428
|
+
}]
|
|
429
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
430
|
+
let UiLabel = class UiLabel {
|
|
431
|
+
z;
|
|
432
|
+
el;
|
|
433
|
+
constructor(c, r, z) {
|
|
434
|
+
this.z = z;
|
|
435
|
+
c.detach();
|
|
436
|
+
this.el = r.nativeElement;
|
|
437
|
+
}
|
|
438
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
439
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiLabel, isStandalone: true, selector: "ui-label", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
440
|
+
};
|
|
441
|
+
UiLabel = __decorate([
|
|
442
|
+
ProxyCmp({}),
|
|
443
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
444
|
+
], UiLabel);
|
|
445
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiLabel, decorators: [{
|
|
446
|
+
type: Component,
|
|
447
|
+
args: [{
|
|
448
|
+
selector: 'ui-label',
|
|
449
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
450
|
+
template: '<ng-content></ng-content>',
|
|
451
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
452
|
+
inputs: [],
|
|
453
|
+
}]
|
|
454
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
455
|
+
let UiLoadingOverlay = class UiLoadingOverlay {
|
|
456
|
+
z;
|
|
457
|
+
el;
|
|
458
|
+
constructor(c, r, z) {
|
|
459
|
+
this.z = z;
|
|
460
|
+
c.detach();
|
|
461
|
+
this.el = r.nativeElement;
|
|
462
|
+
}
|
|
463
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiLoadingOverlay, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
464
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiLoadingOverlay, isStandalone: true, selector: "ui-loading-overlay", inputs: { label: "label", spinnerSize: "spinnerSize", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
465
|
+
};
|
|
466
|
+
UiLoadingOverlay = __decorate([
|
|
467
|
+
ProxyCmp({
|
|
468
|
+
inputs: ['label', 'spinnerSize', 'visible']
|
|
469
|
+
}),
|
|
470
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
471
|
+
], UiLoadingOverlay);
|
|
472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiLoadingOverlay, decorators: [{
|
|
473
|
+
type: Component,
|
|
474
|
+
args: [{
|
|
475
|
+
selector: 'ui-loading-overlay',
|
|
476
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
477
|
+
template: '<ng-content></ng-content>',
|
|
478
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
479
|
+
inputs: ['label', 'spinnerSize', 'visible'],
|
|
480
|
+
}]
|
|
481
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
482
|
+
let UiPopover = class UiPopover {
|
|
483
|
+
z;
|
|
484
|
+
el;
|
|
485
|
+
constructor(c, r, z) {
|
|
486
|
+
this.z = z;
|
|
487
|
+
c.detach();
|
|
488
|
+
this.el = r.nativeElement;
|
|
489
|
+
proxyOutputs(this, this.el, ['uiOpenChange']);
|
|
490
|
+
}
|
|
491
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiPopover, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
492
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiPopover, isStandalone: true, selector: "ui-popover", inputs: { open: "open", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
493
|
+
};
|
|
494
|
+
UiPopover = __decorate([
|
|
495
|
+
ProxyCmp({
|
|
496
|
+
inputs: ['open', 'placement'],
|
|
497
|
+
methods: ['show', 'close']
|
|
498
|
+
}),
|
|
499
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
500
|
+
], UiPopover);
|
|
501
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiPopover, decorators: [{
|
|
502
|
+
type: Component,
|
|
503
|
+
args: [{
|
|
504
|
+
selector: 'ui-popover',
|
|
505
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
506
|
+
template: '<ng-content></ng-content>',
|
|
507
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
508
|
+
inputs: ['open', 'placement'],
|
|
509
|
+
}]
|
|
510
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
511
|
+
let UiProgress = class UiProgress {
|
|
512
|
+
z;
|
|
513
|
+
el;
|
|
514
|
+
constructor(c, r, z) {
|
|
515
|
+
this.z = z;
|
|
516
|
+
c.detach();
|
|
517
|
+
this.el = r.nativeElement;
|
|
518
|
+
}
|
|
519
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
520
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiProgress, isStandalone: true, selector: "ui-progress", inputs: { indeterminate: "indeterminate", max: "max", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
521
|
+
};
|
|
522
|
+
UiProgress = __decorate([
|
|
523
|
+
ProxyCmp({
|
|
524
|
+
inputs: ['indeterminate', 'max', 'value']
|
|
525
|
+
}),
|
|
526
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
527
|
+
], UiProgress);
|
|
528
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiProgress, decorators: [{
|
|
529
|
+
type: Component,
|
|
530
|
+
args: [{
|
|
531
|
+
selector: 'ui-progress',
|
|
532
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
533
|
+
template: '<ng-content></ng-content>',
|
|
534
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
535
|
+
inputs: ['indeterminate', 'max', 'value'],
|
|
536
|
+
}]
|
|
537
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
538
|
+
let UiRadioGroup = class UiRadioGroup {
|
|
539
|
+
z;
|
|
540
|
+
el;
|
|
541
|
+
constructor(c, r, z) {
|
|
542
|
+
this.z = z;
|
|
543
|
+
c.detach();
|
|
544
|
+
this.el = r.nativeElement;
|
|
545
|
+
proxyOutputs(this, this.el, ['uiChange']);
|
|
546
|
+
}
|
|
547
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
548
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiRadioGroup, isStandalone: true, selector: "ui-radio-group", inputs: { disabled: "disabled", name: "name", options: "options", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
549
|
+
};
|
|
550
|
+
UiRadioGroup = __decorate([
|
|
551
|
+
ProxyCmp({
|
|
552
|
+
inputs: ['disabled', 'name', 'options', 'value']
|
|
553
|
+
}),
|
|
554
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
555
|
+
], UiRadioGroup);
|
|
556
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiRadioGroup, decorators: [{
|
|
557
|
+
type: Component,
|
|
558
|
+
args: [{
|
|
559
|
+
selector: 'ui-radio-group',
|
|
560
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
561
|
+
template: '<ng-content></ng-content>',
|
|
562
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
563
|
+
inputs: ['disabled', 'name', 'options', 'value'],
|
|
564
|
+
}]
|
|
565
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
566
|
+
let UiReveal = class UiReveal {
|
|
567
|
+
z;
|
|
568
|
+
el;
|
|
569
|
+
constructor(c, r, z) {
|
|
570
|
+
this.z = z;
|
|
571
|
+
c.detach();
|
|
572
|
+
this.el = r.nativeElement;
|
|
573
|
+
}
|
|
574
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiReveal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
575
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiReveal, isStandalone: true, selector: "ui-reveal", inputs: { delay: "delay" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
576
|
+
};
|
|
577
|
+
UiReveal = __decorate([
|
|
578
|
+
ProxyCmp({
|
|
579
|
+
inputs: ['delay']
|
|
580
|
+
}),
|
|
581
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
582
|
+
], UiReveal);
|
|
583
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiReveal, decorators: [{
|
|
584
|
+
type: Component,
|
|
585
|
+
args: [{
|
|
586
|
+
selector: 'ui-reveal',
|
|
587
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
588
|
+
template: '<ng-content></ng-content>',
|
|
589
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
590
|
+
inputs: ['delay'],
|
|
591
|
+
}]
|
|
592
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
593
|
+
let UiScrollProgress = class UiScrollProgress {
|
|
594
|
+
z;
|
|
595
|
+
el;
|
|
596
|
+
constructor(c, r, z) {
|
|
597
|
+
this.z = z;
|
|
598
|
+
c.detach();
|
|
599
|
+
this.el = r.nativeElement;
|
|
600
|
+
}
|
|
601
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiScrollProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
602
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiScrollProgress, isStandalone: true, selector: "ui-scroll-progress", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
603
|
+
};
|
|
604
|
+
UiScrollProgress = __decorate([
|
|
605
|
+
ProxyCmp({}),
|
|
606
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
607
|
+
], UiScrollProgress);
|
|
608
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiScrollProgress, decorators: [{
|
|
609
|
+
type: Component,
|
|
610
|
+
args: [{
|
|
611
|
+
selector: 'ui-scroll-progress',
|
|
612
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
613
|
+
template: '<ng-content></ng-content>',
|
|
614
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
615
|
+
inputs: [],
|
|
616
|
+
}]
|
|
617
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
618
|
+
let UiSection = class UiSection {
|
|
619
|
+
z;
|
|
620
|
+
el;
|
|
621
|
+
constructor(c, r, z) {
|
|
622
|
+
this.z = z;
|
|
623
|
+
c.detach();
|
|
624
|
+
this.el = r.nativeElement;
|
|
625
|
+
}
|
|
626
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiSection, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
627
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiSection, isStandalone: true, selector: "ui-section", inputs: { description: "description", eyebrow: "eyebrow", heading: "heading" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
628
|
+
};
|
|
629
|
+
UiSection = __decorate([
|
|
630
|
+
ProxyCmp({
|
|
631
|
+
inputs: ['description', 'eyebrow', 'heading']
|
|
632
|
+
}),
|
|
633
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
634
|
+
], UiSection);
|
|
635
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiSection, decorators: [{
|
|
636
|
+
type: Component,
|
|
637
|
+
args: [{
|
|
638
|
+
selector: 'ui-section',
|
|
639
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
640
|
+
template: '<ng-content></ng-content>',
|
|
641
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
642
|
+
inputs: ['description', 'eyebrow', 'heading'],
|
|
643
|
+
}]
|
|
644
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
645
|
+
let UiSelect = class UiSelect {
|
|
646
|
+
z;
|
|
647
|
+
el;
|
|
648
|
+
constructor(c, r, z) {
|
|
649
|
+
this.z = z;
|
|
650
|
+
c.detach();
|
|
651
|
+
this.el = r.nativeElement;
|
|
652
|
+
proxyOutputs(this, this.el, ['uiChange']);
|
|
653
|
+
}
|
|
654
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
655
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiSelect, isStandalone: true, selector: "ui-select", inputs: { disabled: "disabled", name: "name", options: "options", placeholder: "placeholder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
656
|
+
};
|
|
657
|
+
UiSelect = __decorate([
|
|
658
|
+
ProxyCmp({
|
|
659
|
+
inputs: ['disabled', 'name', 'options', 'placeholder', 'value']
|
|
660
|
+
}),
|
|
661
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
662
|
+
], UiSelect);
|
|
663
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiSelect, decorators: [{
|
|
664
|
+
type: Component,
|
|
665
|
+
args: [{
|
|
666
|
+
selector: 'ui-select',
|
|
667
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
668
|
+
template: '<ng-content></ng-content>',
|
|
669
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
670
|
+
inputs: ['disabled', 'name', 'options', 'placeholder', 'value'],
|
|
671
|
+
}]
|
|
672
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
673
|
+
let UiSeparator = class UiSeparator {
|
|
674
|
+
z;
|
|
675
|
+
el;
|
|
676
|
+
constructor(c, r, z) {
|
|
677
|
+
this.z = z;
|
|
678
|
+
c.detach();
|
|
679
|
+
this.el = r.nativeElement;
|
|
680
|
+
}
|
|
681
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiSeparator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
682
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiSeparator, isStandalone: true, selector: "ui-separator", inputs: { orientation: "orientation" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
683
|
+
};
|
|
684
|
+
UiSeparator = __decorate([
|
|
685
|
+
ProxyCmp({
|
|
686
|
+
inputs: ['orientation']
|
|
687
|
+
}),
|
|
688
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
689
|
+
], UiSeparator);
|
|
690
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiSeparator, decorators: [{
|
|
691
|
+
type: Component,
|
|
692
|
+
args: [{
|
|
693
|
+
selector: 'ui-separator',
|
|
694
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
695
|
+
template: '<ng-content></ng-content>',
|
|
696
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
697
|
+
inputs: ['orientation'],
|
|
698
|
+
}]
|
|
699
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
700
|
+
let UiSkeleton = class UiSkeleton {
|
|
701
|
+
z;
|
|
702
|
+
el;
|
|
703
|
+
constructor(c, r, z) {
|
|
704
|
+
this.z = z;
|
|
705
|
+
c.detach();
|
|
706
|
+
this.el = r.nativeElement;
|
|
707
|
+
}
|
|
708
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiSkeleton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
709
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiSkeleton, isStandalone: true, selector: "ui-skeleton", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
710
|
+
};
|
|
711
|
+
UiSkeleton = __decorate([
|
|
712
|
+
ProxyCmp({}),
|
|
713
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
714
|
+
], UiSkeleton);
|
|
715
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiSkeleton, decorators: [{
|
|
716
|
+
type: Component,
|
|
717
|
+
args: [{
|
|
718
|
+
selector: 'ui-skeleton',
|
|
719
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
720
|
+
template: '<ng-content></ng-content>',
|
|
721
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
722
|
+
inputs: [],
|
|
723
|
+
}]
|
|
724
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
725
|
+
let UiSlider = class UiSlider {
|
|
726
|
+
z;
|
|
727
|
+
el;
|
|
728
|
+
constructor(c, r, z) {
|
|
729
|
+
this.z = z;
|
|
730
|
+
c.detach();
|
|
731
|
+
this.el = r.nativeElement;
|
|
732
|
+
proxyOutputs(this, this.el, ['uiInput', 'uiChange']);
|
|
733
|
+
}
|
|
734
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
735
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiSlider, isStandalone: true, selector: "ui-slider", inputs: { disabled: "disabled", max: "max", min: "min", step: "step", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
736
|
+
};
|
|
737
|
+
UiSlider = __decorate([
|
|
738
|
+
ProxyCmp({
|
|
739
|
+
inputs: ['disabled', 'max', 'min', 'step', 'value']
|
|
740
|
+
}),
|
|
741
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
742
|
+
], UiSlider);
|
|
743
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiSlider, decorators: [{
|
|
744
|
+
type: Component,
|
|
745
|
+
args: [{
|
|
746
|
+
selector: 'ui-slider',
|
|
747
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
748
|
+
template: '<ng-content></ng-content>',
|
|
749
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
750
|
+
inputs: ['disabled', 'max', 'min', 'step', 'value'],
|
|
751
|
+
}]
|
|
752
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
753
|
+
let UiSpinner = class UiSpinner {
|
|
754
|
+
z;
|
|
755
|
+
el;
|
|
756
|
+
constructor(c, r, z) {
|
|
757
|
+
this.z = z;
|
|
758
|
+
c.detach();
|
|
759
|
+
this.el = r.nativeElement;
|
|
760
|
+
}
|
|
761
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
762
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiSpinner, isStandalone: true, selector: "ui-spinner", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
763
|
+
};
|
|
764
|
+
UiSpinner = __decorate([
|
|
765
|
+
ProxyCmp({
|
|
766
|
+
inputs: ['size']
|
|
767
|
+
}),
|
|
768
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
769
|
+
], UiSpinner);
|
|
770
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiSpinner, decorators: [{
|
|
771
|
+
type: Component,
|
|
772
|
+
args: [{
|
|
773
|
+
selector: 'ui-spinner',
|
|
774
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
775
|
+
template: '<ng-content></ng-content>',
|
|
776
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
777
|
+
inputs: ['size'],
|
|
778
|
+
}]
|
|
779
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
780
|
+
let UiSwitch = class UiSwitch {
|
|
781
|
+
z;
|
|
782
|
+
el;
|
|
783
|
+
constructor(c, r, z) {
|
|
784
|
+
this.z = z;
|
|
785
|
+
c.detach();
|
|
786
|
+
this.el = r.nativeElement;
|
|
787
|
+
proxyOutputs(this, this.el, ['uiChange']);
|
|
788
|
+
}
|
|
789
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
790
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiSwitch, isStandalone: true, selector: "ui-switch", inputs: { checked: "checked", disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
791
|
+
};
|
|
792
|
+
UiSwitch = __decorate([
|
|
793
|
+
ProxyCmp({
|
|
794
|
+
inputs: ['checked', 'disabled']
|
|
795
|
+
}),
|
|
796
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
797
|
+
], UiSwitch);
|
|
798
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiSwitch, decorators: [{
|
|
799
|
+
type: Component,
|
|
800
|
+
args: [{
|
|
801
|
+
selector: 'ui-switch',
|
|
802
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
803
|
+
template: '<ng-content></ng-content>',
|
|
804
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
805
|
+
inputs: ['checked', 'disabled'],
|
|
806
|
+
}]
|
|
807
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
808
|
+
let UiTabs = class UiTabs {
|
|
809
|
+
z;
|
|
810
|
+
el;
|
|
811
|
+
constructor(c, r, z) {
|
|
812
|
+
this.z = z;
|
|
813
|
+
c.detach();
|
|
814
|
+
this.el = r.nativeElement;
|
|
815
|
+
proxyOutputs(this, this.el, ['uiChange']);
|
|
816
|
+
}
|
|
817
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
818
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiTabs, isStandalone: true, selector: "ui-tabs", inputs: { items: "items", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
819
|
+
};
|
|
820
|
+
UiTabs = __decorate([
|
|
821
|
+
ProxyCmp({
|
|
822
|
+
inputs: ['items', 'value']
|
|
823
|
+
}),
|
|
824
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
825
|
+
], UiTabs);
|
|
826
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiTabs, decorators: [{
|
|
827
|
+
type: Component,
|
|
828
|
+
args: [{
|
|
829
|
+
selector: 'ui-tabs',
|
|
830
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
831
|
+
template: '<ng-content></ng-content>',
|
|
832
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
833
|
+
inputs: ['items', 'value'],
|
|
834
|
+
}]
|
|
835
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
836
|
+
let UiTextarea = class UiTextarea {
|
|
837
|
+
z;
|
|
838
|
+
el;
|
|
839
|
+
constructor(c, r, z) {
|
|
840
|
+
this.z = z;
|
|
841
|
+
c.detach();
|
|
842
|
+
this.el = r.nativeElement;
|
|
843
|
+
proxyOutputs(this, this.el, ['uiInput', 'uiChange']);
|
|
844
|
+
}
|
|
845
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
846
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiTextarea, isStandalone: true, selector: "ui-textarea", inputs: { disabled: "disabled", invalid: "invalid", name: "name", placeholder: "placeholder", rows: "rows", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
847
|
+
};
|
|
848
|
+
UiTextarea = __decorate([
|
|
849
|
+
ProxyCmp({
|
|
850
|
+
inputs: ['disabled', 'invalid', 'name', 'placeholder', 'rows', 'value']
|
|
851
|
+
}),
|
|
852
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
853
|
+
], UiTextarea);
|
|
854
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiTextarea, decorators: [{
|
|
855
|
+
type: Component,
|
|
856
|
+
args: [{
|
|
857
|
+
selector: 'ui-textarea',
|
|
858
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
859
|
+
template: '<ng-content></ng-content>',
|
|
860
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
861
|
+
inputs: ['disabled', 'invalid', 'name', 'placeholder', 'rows', 'value'],
|
|
862
|
+
}]
|
|
863
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
864
|
+
let UiThemeToggle = class UiThemeToggle {
|
|
865
|
+
z;
|
|
866
|
+
el;
|
|
867
|
+
constructor(c, r, z) {
|
|
868
|
+
this.z = z;
|
|
869
|
+
c.detach();
|
|
870
|
+
this.el = r.nativeElement;
|
|
871
|
+
proxyOutputs(this, this.el, ['uiThemeChange']);
|
|
872
|
+
}
|
|
873
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiThemeToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
874
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiThemeToggle, isStandalone: true, selector: "ui-theme-toggle", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
875
|
+
};
|
|
876
|
+
UiThemeToggle = __decorate([
|
|
877
|
+
ProxyCmp({}),
|
|
878
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
879
|
+
], UiThemeToggle);
|
|
880
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiThemeToggle, decorators: [{
|
|
881
|
+
type: Component,
|
|
882
|
+
args: [{
|
|
883
|
+
selector: 'ui-theme-toggle',
|
|
884
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
885
|
+
template: '<ng-content></ng-content>',
|
|
886
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
887
|
+
inputs: [],
|
|
888
|
+
}]
|
|
889
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
890
|
+
let UiToast = class UiToast {
|
|
891
|
+
z;
|
|
892
|
+
el;
|
|
893
|
+
constructor(c, r, z) {
|
|
894
|
+
this.z = z;
|
|
895
|
+
c.detach();
|
|
896
|
+
this.el = r.nativeElement;
|
|
897
|
+
proxyOutputs(this, this.el, ['uiClose']);
|
|
898
|
+
}
|
|
899
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
900
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiToast, isStandalone: true, selector: "ui-toast", inputs: { description: "description", duration: "duration", heading: "heading", open: "open", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
901
|
+
};
|
|
902
|
+
UiToast = __decorate([
|
|
903
|
+
ProxyCmp({
|
|
904
|
+
inputs: ['description', 'duration', 'heading', 'open', 'variant'],
|
|
905
|
+
methods: ['show', 'close']
|
|
906
|
+
}),
|
|
907
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
908
|
+
], UiToast);
|
|
909
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiToast, decorators: [{
|
|
910
|
+
type: Component,
|
|
911
|
+
args: [{
|
|
912
|
+
selector: 'ui-toast',
|
|
913
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
914
|
+
template: '<ng-content></ng-content>',
|
|
915
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
916
|
+
inputs: ['description', 'duration', 'heading', 'open', 'variant'],
|
|
917
|
+
}]
|
|
918
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
919
|
+
let UiToaster = class UiToaster {
|
|
920
|
+
z;
|
|
921
|
+
el;
|
|
922
|
+
constructor(c, r, z) {
|
|
923
|
+
this.z = z;
|
|
924
|
+
c.detach();
|
|
925
|
+
this.el = r.nativeElement;
|
|
926
|
+
}
|
|
927
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiToaster, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
928
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiToaster, isStandalone: true, selector: "ui-toaster", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
929
|
+
};
|
|
930
|
+
UiToaster = __decorate([
|
|
931
|
+
ProxyCmp({
|
|
932
|
+
methods: ['toast']
|
|
933
|
+
}),
|
|
934
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
935
|
+
], UiToaster);
|
|
936
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiToaster, decorators: [{
|
|
937
|
+
type: Component,
|
|
938
|
+
args: [{
|
|
939
|
+
selector: 'ui-toaster',
|
|
940
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
941
|
+
template: '<ng-content></ng-content>',
|
|
942
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
943
|
+
inputs: [],
|
|
944
|
+
}]
|
|
945
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
946
|
+
let UiTooltip = class UiTooltip {
|
|
947
|
+
z;
|
|
948
|
+
el;
|
|
949
|
+
constructor(c, r, z) {
|
|
950
|
+
this.z = z;
|
|
951
|
+
c.detach();
|
|
952
|
+
this.el = r.nativeElement;
|
|
953
|
+
}
|
|
954
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
955
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: UiTooltip, isStandalone: true, selector: "ui-tooltip", inputs: { content: "content", openDelay: "openDelay", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
956
|
+
};
|
|
957
|
+
UiTooltip = __decorate([
|
|
958
|
+
ProxyCmp({
|
|
959
|
+
inputs: ['content', 'openDelay', 'placement']
|
|
960
|
+
}),
|
|
961
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
962
|
+
], UiTooltip);
|
|
963
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UiTooltip, decorators: [{
|
|
964
|
+
type: Component,
|
|
965
|
+
args: [{
|
|
966
|
+
selector: 'ui-tooltip',
|
|
967
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
968
|
+
template: '<ng-content></ng-content>',
|
|
969
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
970
|
+
inputs: ['content', 'openDelay', 'placement'],
|
|
971
|
+
}]
|
|
972
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
973
|
+
|
|
974
|
+
const DIRECTIVES = [
|
|
975
|
+
UiAccordion,
|
|
976
|
+
UiAccordionItem,
|
|
977
|
+
UiAvatar,
|
|
978
|
+
UiBadge,
|
|
979
|
+
UiButton,
|
|
980
|
+
UiCard,
|
|
981
|
+
UiCheckbox,
|
|
982
|
+
UiDialog,
|
|
983
|
+
UiDrawer,
|
|
984
|
+
UiDropdownItem,
|
|
985
|
+
UiDropdownMenu,
|
|
986
|
+
UiField,
|
|
987
|
+
UiInput,
|
|
988
|
+
UiLabel,
|
|
989
|
+
UiLoadingOverlay,
|
|
990
|
+
UiPopover,
|
|
991
|
+
UiProgress,
|
|
992
|
+
UiRadioGroup,
|
|
993
|
+
UiReveal,
|
|
994
|
+
UiScrollProgress,
|
|
995
|
+
UiSection,
|
|
996
|
+
UiSelect,
|
|
997
|
+
UiSeparator,
|
|
998
|
+
UiSkeleton,
|
|
999
|
+
UiSlider,
|
|
1000
|
+
UiSpinner,
|
|
1001
|
+
UiSwitch,
|
|
1002
|
+
UiTabs,
|
|
1003
|
+
UiTextarea,
|
|
1004
|
+
UiThemeToggle,
|
|
1005
|
+
UiToast,
|
|
1006
|
+
UiToaster,
|
|
1007
|
+
UiTooltip
|
|
1008
|
+
];
|
|
1009
|
+
|
|
1010
|
+
// Registra os Web Components no navegador (guardado para SSR/Angular Universal).
|
|
1011
|
+
if (typeof window !== "undefined") {
|
|
1012
|
+
defineCustomElements();
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
/**
|
|
1016
|
+
* Generated bundle index. Do not edit.
|
|
1017
|
+
*/
|
|
1018
|
+
|
|
1019
|
+
export { DIRECTIVES, UiAccordion, UiAccordionItem, UiAvatar, UiBadge, UiButton, UiCard, UiCheckbox, UiDialog, UiDrawer, UiDropdownItem, UiDropdownMenu, UiField, UiInput, UiLabel, UiLoadingOverlay, UiPopover, UiProgress, UiRadioGroup, UiReveal, UiScrollProgress, UiSection, UiSelect, UiSeparator, UiSkeleton, UiSlider, UiSpinner, UiSwitch, UiTabs, UiTextarea, UiThemeToggle, UiToast, UiToaster, UiTooltip };
|
|
1020
|
+
//# sourceMappingURL=andespindola-ui-angular.mjs.map
|