@beeq/angular 1.8.0-beta.14 → 1.8.0-beta.16
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/directives/components.d.ts +1315 -61
- package/esm2022/beeq.module.mjs +6 -6
- package/esm2022/directives/boolean-value-accessor.mjs +5 -5
- package/esm2022/directives/components.mjs +1708 -229
- package/esm2022/directives/number-value-accessor.mjs +5 -5
- package/esm2022/directives/radio-value-accessor.mjs +5 -5
- package/esm2022/directives/select-value-accessor.mjs +5 -5
- package/esm2022/directives/text-value-accessor.mjs +5 -5
- package/esm2022/directives/value-accessor.mjs +6 -8
- package/esm2022/standalone/directives/boolean-value-accessor.mjs +5 -5
- package/esm2022/standalone/directives/components.mjs +144 -229
- package/esm2022/standalone/directives/number-value-accessor.mjs +5 -5
- package/esm2022/standalone/directives/radio-value-accessor.mjs +5 -5
- package/esm2022/standalone/directives/select-value-accessor.mjs +5 -5
- package/esm2022/standalone/directives/text-value-accessor.mjs +5 -5
- package/esm2022/standalone/directives/value-accessor.mjs +6 -8
- package/fesm2022/beeq-angular-standalone.mjs +168 -255
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +1737 -260
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/standalone/directives/components.d.ts +53 -61
|
@@ -47,12 +47,10 @@ import { defineCustomElement as defineCustomElement$F } from '@beeq/core/dist/co
|
|
|
47
47
|
import { defineCustomElement as defineCustomElement$G } from '@beeq/core/dist/components/bq-tooltip.js';
|
|
48
48
|
|
|
49
49
|
class ValueAccessor {
|
|
50
|
-
el;
|
|
51
|
-
onChange = () => { };
|
|
52
|
-
onTouched = () => { };
|
|
53
|
-
lastValue;
|
|
54
50
|
constructor(el) {
|
|
55
51
|
this.el = el;
|
|
52
|
+
this.onChange = () => { };
|
|
53
|
+
this.onTouched = () => { };
|
|
56
54
|
}
|
|
57
55
|
writeValue(value) {
|
|
58
56
|
this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
|
|
@@ -75,10 +73,10 @@ class ValueAccessor {
|
|
|
75
73
|
setDisabledState(isDisabled) {
|
|
76
74
|
this.el.nativeElement.disabled = isDisabled;
|
|
77
75
|
}
|
|
78
|
-
/** @nocollapse */ static
|
|
79
|
-
/** @nocollapse */ static
|
|
76
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
77
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 }); }
|
|
80
78
|
}
|
|
81
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
79
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
82
80
|
type: Directive,
|
|
83
81
|
args: [{}]
|
|
84
82
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
@@ -93,16 +91,16 @@ class BooleanValueAccessor extends ValueAccessor {
|
|
|
93
91
|
writeValue(value) {
|
|
94
92
|
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
95
93
|
}
|
|
96
|
-
/** @nocollapse */ static
|
|
97
|
-
/** @nocollapse */ static
|
|
94
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
95
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: BooleanValueAccessor, isStandalone: true, selector: "bq-checkbox, bq-switch", host: { listeners: { "bqChange": "handleChangeEvent($event.target.checked)" } }, providers: [
|
|
98
96
|
{
|
|
99
97
|
provide: NG_VALUE_ACCESSOR,
|
|
100
98
|
useExisting: BooleanValueAccessor,
|
|
101
99
|
multi: true
|
|
102
100
|
}
|
|
103
|
-
], usesInheritance: true, ngImport: i0 });
|
|
101
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
104
102
|
}
|
|
105
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
103
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
106
104
|
type: Directive,
|
|
107
105
|
args: [{
|
|
108
106
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -129,16 +127,16 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
129
127
|
fn(value === '' ? null : parseFloat(value));
|
|
130
128
|
});
|
|
131
129
|
}
|
|
132
|
-
/** @nocollapse */ static
|
|
133
|
-
/** @nocollapse */ static
|
|
130
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
131
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NumericValueAccessor, isStandalone: true, selector: "bq-input[type=\"number\"], bq-slider:not[type=\"range\"]", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
134
132
|
{
|
|
135
133
|
provide: NG_VALUE_ACCESSOR,
|
|
136
134
|
useExisting: NumericValueAccessor,
|
|
137
135
|
multi: true
|
|
138
136
|
}
|
|
139
|
-
], usesInheritance: true, ngImport: i0 });
|
|
137
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
140
138
|
}
|
|
141
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
139
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
142
140
|
type: Directive,
|
|
143
141
|
args: [{
|
|
144
142
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -160,16 +158,16 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
160
158
|
constructor(el) {
|
|
161
159
|
super(el);
|
|
162
160
|
}
|
|
163
|
-
/** @nocollapse */ static
|
|
164
|
-
/** @nocollapse */ static
|
|
161
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
162
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: RadioValueAccessor, isStandalone: true, selector: "bq-radio-group", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
165
163
|
{
|
|
166
164
|
provide: NG_VALUE_ACCESSOR,
|
|
167
165
|
useExisting: RadioValueAccessor,
|
|
168
166
|
multi: true
|
|
169
167
|
}
|
|
170
|
-
], usesInheritance: true, ngImport: i0 });
|
|
168
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
171
169
|
}
|
|
172
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
173
171
|
type: Directive,
|
|
174
172
|
args: [{
|
|
175
173
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -191,16 +189,16 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
191
189
|
constructor(el) {
|
|
192
190
|
super(el);
|
|
193
191
|
}
|
|
194
|
-
/** @nocollapse */ static
|
|
195
|
-
/** @nocollapse */ static
|
|
192
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
193
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: SelectValueAccessor, isStandalone: true, selector: "bq-select", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
196
194
|
{
|
|
197
195
|
provide: NG_VALUE_ACCESSOR,
|
|
198
196
|
useExisting: SelectValueAccessor,
|
|
199
197
|
multi: true
|
|
200
198
|
}
|
|
201
|
-
], usesInheritance: true, ngImport: i0 });
|
|
199
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
202
200
|
}
|
|
203
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
201
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
204
202
|
type: Directive,
|
|
205
203
|
args: [{
|
|
206
204
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -222,16 +220,16 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
222
220
|
constructor(el) {
|
|
223
221
|
super(el);
|
|
224
222
|
}
|
|
225
|
-
/** @nocollapse */ static
|
|
226
|
-
/** @nocollapse */ static
|
|
223
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
224
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: TextValueAccessor, isStandalone: true, selector: "bq-date-picker, bq-input:not[type=\"number\"], bq-slider[type=\"range\", bq-textarea", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
227
225
|
{
|
|
228
226
|
provide: NG_VALUE_ACCESSOR,
|
|
229
227
|
useExisting: TextValueAccessor,
|
|
230
228
|
multi: true
|
|
231
229
|
}
|
|
232
|
-
], usesInheritance: true, ngImport: i0 });
|
|
230
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
233
231
|
}
|
|
234
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
232
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
235
233
|
type: Directive,
|
|
236
234
|
args: [{
|
|
237
235
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -308,16 +306,14 @@ function ProxyCmp(opts) {
|
|
|
308
306
|
}
|
|
309
307
|
|
|
310
308
|
let BqAccordion = class BqAccordion {
|
|
311
|
-
z;
|
|
312
|
-
el;
|
|
313
309
|
constructor(c, r, z) {
|
|
314
310
|
this.z = z;
|
|
315
311
|
c.detach();
|
|
316
312
|
this.el = r.nativeElement;
|
|
317
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqOpen', 'bqAfterOpen', 'bqClose', 'bqAfterClose']);
|
|
313
|
+
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqOpen', 'bqAfterOpen', 'bqClose', 'bqAfterClose', 'bqClick']);
|
|
318
314
|
}
|
|
319
|
-
/** @nocollapse */ static
|
|
320
|
-
/** @nocollapse */ static
|
|
315
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
316
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqAccordion, isStandalone: true, selector: "bq-accordion", inputs: { appearance: "appearance", disabled: "disabled", expanded: "expanded", noAnimation: "noAnimation", rotate: "rotate", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
321
317
|
};
|
|
322
318
|
BqAccordion = __decorate([
|
|
323
319
|
ProxyCmp({
|
|
@@ -326,7 +322,7 @@ BqAccordion = __decorate([
|
|
|
326
322
|
}),
|
|
327
323
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
328
324
|
], BqAccordion);
|
|
329
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
325
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAccordion, decorators: [{
|
|
330
326
|
type: Component,
|
|
331
327
|
args: [{
|
|
332
328
|
selector: 'bq-accordion',
|
|
@@ -338,15 +334,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
338
334
|
}]
|
|
339
335
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
340
336
|
let BqAccordionGroup = class BqAccordionGroup {
|
|
341
|
-
z;
|
|
342
|
-
el;
|
|
343
337
|
constructor(c, r, z) {
|
|
344
338
|
this.z = z;
|
|
345
339
|
c.detach();
|
|
346
340
|
this.el = r.nativeElement;
|
|
347
341
|
}
|
|
348
|
-
/** @nocollapse */ static
|
|
349
|
-
/** @nocollapse */ static
|
|
342
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
343
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqAccordionGroup, isStandalone: true, selector: "bq-accordion-group", inputs: { appearance: "appearance", expandAll: "expandAll", multiple: "multiple", noAnimation: "noAnimation", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
350
344
|
};
|
|
351
345
|
BqAccordionGroup = __decorate([
|
|
352
346
|
ProxyCmp({
|
|
@@ -355,7 +349,7 @@ BqAccordionGroup = __decorate([
|
|
|
355
349
|
}),
|
|
356
350
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
357
351
|
], BqAccordionGroup);
|
|
358
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
352
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAccordionGroup, decorators: [{
|
|
359
353
|
type: Component,
|
|
360
354
|
args: [{
|
|
361
355
|
selector: 'bq-accordion-group',
|
|
@@ -367,16 +361,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
367
361
|
}]
|
|
368
362
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
369
363
|
let BqAlert = class BqAlert {
|
|
370
|
-
z;
|
|
371
|
-
el;
|
|
372
364
|
constructor(c, r, z) {
|
|
373
365
|
this.z = z;
|
|
374
366
|
c.detach();
|
|
375
367
|
this.el = r.nativeElement;
|
|
376
368
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterShow', 'bqAfterHide']);
|
|
377
369
|
}
|
|
378
|
-
/** @nocollapse */ static
|
|
379
|
-
/** @nocollapse */ static
|
|
370
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
371
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqAlert, isStandalone: true, selector: "bq-alert", inputs: { autoDismiss: "autoDismiss", border: "border", disableClose: "disableClose", hideIcon: "hideIcon", open: "open", sticky: "sticky", time: "time", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
380
372
|
};
|
|
381
373
|
BqAlert = __decorate([
|
|
382
374
|
ProxyCmp({
|
|
@@ -386,7 +378,7 @@ BqAlert = __decorate([
|
|
|
386
378
|
}),
|
|
387
379
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
388
380
|
], BqAlert);
|
|
389
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
381
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAlert, decorators: [{
|
|
390
382
|
type: Component,
|
|
391
383
|
args: [{
|
|
392
384
|
selector: 'bq-alert',
|
|
@@ -398,15 +390,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
398
390
|
}]
|
|
399
391
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
400
392
|
let BqAvatar = class BqAvatar {
|
|
401
|
-
z;
|
|
402
|
-
el;
|
|
403
393
|
constructor(c, r, z) {
|
|
404
394
|
this.z = z;
|
|
405
395
|
c.detach();
|
|
406
396
|
this.el = r.nativeElement;
|
|
407
397
|
}
|
|
408
|
-
/** @nocollapse */ static
|
|
409
|
-
/** @nocollapse */ static
|
|
398
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
399
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqAvatar, isStandalone: true, selector: "bq-avatar", inputs: { altText: "altText", image: "image", initials: "initials", label: "label", shape: "shape", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
410
400
|
};
|
|
411
401
|
BqAvatar = __decorate([
|
|
412
402
|
ProxyCmp({
|
|
@@ -415,7 +405,7 @@ BqAvatar = __decorate([
|
|
|
415
405
|
}),
|
|
416
406
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
417
407
|
], BqAvatar);
|
|
418
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
408
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAvatar, decorators: [{
|
|
419
409
|
type: Component,
|
|
420
410
|
args: [{
|
|
421
411
|
selector: 'bq-avatar',
|
|
@@ -427,15 +417,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
427
417
|
}]
|
|
428
418
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
429
419
|
let BqBadge = class BqBadge {
|
|
430
|
-
z;
|
|
431
|
-
el;
|
|
432
420
|
constructor(c, r, z) {
|
|
433
421
|
this.z = z;
|
|
434
422
|
c.detach();
|
|
435
423
|
this.el = r.nativeElement;
|
|
436
424
|
}
|
|
437
|
-
/** @nocollapse */ static
|
|
438
|
-
/** @nocollapse */ static
|
|
425
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
426
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqBadge, isStandalone: true, selector: "bq-badge", inputs: { backgroundColor: "backgroundColor", size: "size", textColor: "textColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
439
427
|
};
|
|
440
428
|
BqBadge = __decorate([
|
|
441
429
|
ProxyCmp({
|
|
@@ -444,7 +432,7 @@ BqBadge = __decorate([
|
|
|
444
432
|
}),
|
|
445
433
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
446
434
|
], BqBadge);
|
|
447
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
435
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBadge, decorators: [{
|
|
448
436
|
type: Component,
|
|
449
437
|
args: [{
|
|
450
438
|
selector: 'bq-badge',
|
|
@@ -456,76 +444,69 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
456
444
|
}]
|
|
457
445
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
458
446
|
let BqBreadcrumb = class BqBreadcrumb {
|
|
459
|
-
z;
|
|
460
|
-
el;
|
|
461
447
|
constructor(c, r, z) {
|
|
462
448
|
this.z = z;
|
|
463
449
|
c.detach();
|
|
464
450
|
this.el = r.nativeElement;
|
|
465
|
-
proxyOutputs(this, this.el, ['bqBreadcrumbBlur', 'bqBreadcrumbFocus', 'bqBreadcrumbClick']);
|
|
466
451
|
}
|
|
467
|
-
/** @nocollapse */ static
|
|
468
|
-
/** @nocollapse */ static
|
|
452
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
453
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqBreadcrumb, isStandalone: true, selector: "bq-breadcrumb", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
469
454
|
};
|
|
470
455
|
BqBreadcrumb = __decorate([
|
|
471
456
|
ProxyCmp({
|
|
472
457
|
defineCustomElementFn: defineCustomElement$6,
|
|
473
|
-
inputs: ['
|
|
458
|
+
inputs: ['label']
|
|
474
459
|
}),
|
|
475
460
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
476
461
|
], BqBreadcrumb);
|
|
477
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
462
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBreadcrumb, decorators: [{
|
|
478
463
|
type: Component,
|
|
479
464
|
args: [{
|
|
480
465
|
selector: 'bq-breadcrumb',
|
|
481
466
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
482
467
|
template: '<ng-content></ng-content>',
|
|
483
468
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
484
|
-
inputs: ['
|
|
469
|
+
inputs: ['label'],
|
|
485
470
|
standalone: true
|
|
486
471
|
}]
|
|
487
472
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
488
473
|
let BqBreadcrumbItem = class BqBreadcrumbItem {
|
|
489
|
-
z;
|
|
490
|
-
el;
|
|
491
474
|
constructor(c, r, z) {
|
|
492
475
|
this.z = z;
|
|
493
476
|
c.detach();
|
|
494
477
|
this.el = r.nativeElement;
|
|
495
478
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
496
479
|
}
|
|
497
|
-
/** @nocollapse */ static
|
|
498
|
-
/** @nocollapse */ static
|
|
480
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
481
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqBreadcrumbItem, isStandalone: true, selector: "bq-breadcrumb-item", inputs: { href: "href", rel: "rel", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
499
482
|
};
|
|
500
483
|
BqBreadcrumbItem = __decorate([
|
|
501
484
|
ProxyCmp({
|
|
502
485
|
defineCustomElementFn: defineCustomElement$7,
|
|
503
|
-
inputs: ['
|
|
486
|
+
inputs: ['href', 'rel', 'target']
|
|
504
487
|
}),
|
|
505
488
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
506
489
|
], BqBreadcrumbItem);
|
|
507
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
490
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBreadcrumbItem, decorators: [{
|
|
508
491
|
type: Component,
|
|
509
492
|
args: [{
|
|
510
493
|
selector: 'bq-breadcrumb-item',
|
|
511
494
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
512
495
|
template: '<ng-content></ng-content>',
|
|
513
496
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
514
|
-
inputs: ['
|
|
497
|
+
inputs: ['href', 'rel', 'target'],
|
|
515
498
|
standalone: true
|
|
516
499
|
}]
|
|
517
500
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
518
501
|
let BqButton = class BqButton {
|
|
519
|
-
z;
|
|
520
|
-
el;
|
|
521
502
|
constructor(c, r, z) {
|
|
522
503
|
this.z = z;
|
|
523
504
|
c.detach();
|
|
524
505
|
this.el = r.nativeElement;
|
|
525
506
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
526
507
|
}
|
|
527
|
-
/** @nocollapse */ static
|
|
528
|
-
/** @nocollapse */ static
|
|
508
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
509
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqButton, isStandalone: true, selector: "bq-button", inputs: { appearance: "appearance", block: "block", border: "border", disabled: "disabled", download: "download", href: "href", justifyContent: "justifyContent", loading: "loading", size: "size", target: "target", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
529
510
|
};
|
|
530
511
|
BqButton = __decorate([
|
|
531
512
|
ProxyCmp({
|
|
@@ -534,7 +515,7 @@ BqButton = __decorate([
|
|
|
534
515
|
}),
|
|
535
516
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
536
517
|
], BqButton);
|
|
537
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
518
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqButton, decorators: [{
|
|
538
519
|
type: Component,
|
|
539
520
|
args: [{
|
|
540
521
|
selector: 'bq-button',
|
|
@@ -546,15 +527,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
546
527
|
}]
|
|
547
528
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
548
529
|
let BqCard = class BqCard {
|
|
549
|
-
z;
|
|
550
|
-
el;
|
|
551
530
|
constructor(c, r, z) {
|
|
552
531
|
this.z = z;
|
|
553
532
|
c.detach();
|
|
554
533
|
this.el = r.nativeElement;
|
|
555
534
|
}
|
|
556
|
-
/** @nocollapse */ static
|
|
557
|
-
/** @nocollapse */ static
|
|
535
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
536
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqCard, isStandalone: true, selector: "bq-card", inputs: { border: "border", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
558
537
|
};
|
|
559
538
|
BqCard = __decorate([
|
|
560
539
|
ProxyCmp({
|
|
@@ -563,7 +542,7 @@ BqCard = __decorate([
|
|
|
563
542
|
}),
|
|
564
543
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
565
544
|
], BqCard);
|
|
566
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
545
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqCard, decorators: [{
|
|
567
546
|
type: Component,
|
|
568
547
|
args: [{
|
|
569
548
|
selector: 'bq-card',
|
|
@@ -575,16 +554,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
575
554
|
}]
|
|
576
555
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
577
556
|
let BqCheckbox = class BqCheckbox {
|
|
578
|
-
z;
|
|
579
|
-
el;
|
|
580
557
|
constructor(c, r, z) {
|
|
581
558
|
this.z = z;
|
|
582
559
|
c.detach();
|
|
583
560
|
this.el = r.nativeElement;
|
|
584
561
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
585
562
|
}
|
|
586
|
-
/** @nocollapse */ static
|
|
587
|
-
/** @nocollapse */ static
|
|
563
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
564
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqCheckbox, isStandalone: true, selector: "bq-checkbox", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", formValidationMessage: "formValidationMessage", indeterminate: "indeterminate", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
588
565
|
};
|
|
589
566
|
BqCheckbox = __decorate([
|
|
590
567
|
ProxyCmp({
|
|
@@ -594,7 +571,7 @@ BqCheckbox = __decorate([
|
|
|
594
571
|
}),
|
|
595
572
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
596
573
|
], BqCheckbox);
|
|
597
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
574
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqCheckbox, decorators: [{
|
|
598
575
|
type: Component,
|
|
599
576
|
args: [{
|
|
600
577
|
selector: 'bq-checkbox',
|
|
@@ -606,16 +583,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
606
583
|
}]
|
|
607
584
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
608
585
|
let BqDatePicker = class BqDatePicker {
|
|
609
|
-
z;
|
|
610
|
-
el;
|
|
611
586
|
constructor(c, r, z) {
|
|
612
587
|
this.z = z;
|
|
613
588
|
c.detach();
|
|
614
589
|
this.el = r.nativeElement;
|
|
615
590
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus']);
|
|
616
591
|
}
|
|
617
|
-
/** @nocollapse */ static
|
|
618
|
-
/** @nocollapse */ static
|
|
592
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
593
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqDatePicker, isStandalone: true, selector: "bq-date-picker", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", disableClear: "disableClear", disabled: "disabled", distance: "distance", firstDayOfWeek: "firstDayOfWeek", form: "form", formatOptions: "formatOptions", isDateDisallowed: "isDateDisallowed", locale: "locale", max: "max", min: "min", months: "months", monthsPerView: "monthsPerView", name: "name", open: "open", panelHeight: "panelHeight", placeholder: "placeholder", placement: "placement", required: "required", showOutsideDays: "showOutsideDays", skidding: "skidding", strategy: "strategy", tentative: "tentative", type: "type", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
619
594
|
};
|
|
620
595
|
BqDatePicker = __decorate([
|
|
621
596
|
ProxyCmp({
|
|
@@ -625,7 +600,7 @@ BqDatePicker = __decorate([
|
|
|
625
600
|
}),
|
|
626
601
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
627
602
|
], BqDatePicker);
|
|
628
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
603
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDatePicker, decorators: [{
|
|
629
604
|
type: Component,
|
|
630
605
|
args: [{
|
|
631
606
|
selector: 'bq-date-picker',
|
|
@@ -637,16 +612,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
637
612
|
}]
|
|
638
613
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
639
614
|
let BqDialog = class BqDialog {
|
|
640
|
-
z;
|
|
641
|
-
el;
|
|
642
615
|
constructor(c, r, z) {
|
|
643
616
|
this.z = z;
|
|
644
617
|
c.detach();
|
|
645
618
|
this.el = r.nativeElement;
|
|
646
619
|
proxyOutputs(this, this.el, ['bqCancel', 'bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
647
620
|
}
|
|
648
|
-
/** @nocollapse */ static
|
|
649
|
-
/** @nocollapse */ static
|
|
621
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
622
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqDialog, isStandalone: true, selector: "bq-dialog", inputs: { border: "border", disableBackdrop: "disableBackdrop", disableCloseClickOutside: "disableCloseClickOutside", disableCloseEscKeydown: "disableCloseEscKeydown", footerAppearance: "footerAppearance", hideCloseButton: "hideCloseButton", open: "open", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
650
623
|
};
|
|
651
624
|
BqDialog = __decorate([
|
|
652
625
|
ProxyCmp({
|
|
@@ -656,7 +629,7 @@ BqDialog = __decorate([
|
|
|
656
629
|
}),
|
|
657
630
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
658
631
|
], BqDialog);
|
|
659
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
632
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDialog, decorators: [{
|
|
660
633
|
type: Component,
|
|
661
634
|
args: [{
|
|
662
635
|
selector: 'bq-dialog',
|
|
@@ -668,15 +641,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
668
641
|
}]
|
|
669
642
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
670
643
|
let BqDivider = class BqDivider {
|
|
671
|
-
z;
|
|
672
|
-
el;
|
|
673
644
|
constructor(c, r, z) {
|
|
674
645
|
this.z = z;
|
|
675
646
|
c.detach();
|
|
676
647
|
this.el = r.nativeElement;
|
|
677
648
|
}
|
|
678
|
-
/** @nocollapse */ static
|
|
679
|
-
/** @nocollapse */ static
|
|
649
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
650
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqDivider, isStandalone: true, selector: "bq-divider", inputs: { dashed: "dashed", orientation: "orientation", strokeBasis: "strokeBasis", strokeColor: "strokeColor", strokeDashGap: "strokeDashGap", strokeDashWidth: "strokeDashWidth", strokeLinecap: "strokeLinecap", strokeThickness: "strokeThickness", titleAlignment: "titleAlignment" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
680
651
|
};
|
|
681
652
|
BqDivider = __decorate([
|
|
682
653
|
ProxyCmp({
|
|
@@ -685,7 +656,7 @@ BqDivider = __decorate([
|
|
|
685
656
|
}),
|
|
686
657
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
687
658
|
], BqDivider);
|
|
688
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
659
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDivider, decorators: [{
|
|
689
660
|
type: Component,
|
|
690
661
|
args: [{
|
|
691
662
|
selector: 'bq-divider',
|
|
@@ -697,16 +668,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
697
668
|
}]
|
|
698
669
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
699
670
|
let BqDrawer = class BqDrawer {
|
|
700
|
-
z;
|
|
701
|
-
el;
|
|
702
671
|
constructor(c, r, z) {
|
|
703
672
|
this.z = z;
|
|
704
673
|
c.detach();
|
|
705
674
|
this.el = r.nativeElement;
|
|
706
675
|
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
707
676
|
}
|
|
708
|
-
/** @nocollapse */ static
|
|
709
|
-
/** @nocollapse */ static
|
|
677
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
678
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqDrawer, isStandalone: true, selector: "bq-drawer", inputs: { closeOnClickOutside: "closeOnClickOutside", closeOnEsc: "closeOnEsc", enableBackdrop: "enableBackdrop", open: "open", placement: "placement", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
710
679
|
};
|
|
711
680
|
BqDrawer = __decorate([
|
|
712
681
|
ProxyCmp({
|
|
@@ -716,7 +685,7 @@ BqDrawer = __decorate([
|
|
|
716
685
|
}),
|
|
717
686
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
718
687
|
], BqDrawer);
|
|
719
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
688
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDrawer, decorators: [{
|
|
720
689
|
type: Component,
|
|
721
690
|
args: [{
|
|
722
691
|
selector: 'bq-drawer',
|
|
@@ -728,16 +697,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
728
697
|
}]
|
|
729
698
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
730
699
|
let BqDropdown = class BqDropdown {
|
|
731
|
-
z;
|
|
732
|
-
el;
|
|
733
700
|
constructor(c, r, z) {
|
|
734
701
|
this.z = z;
|
|
735
702
|
c.detach();
|
|
736
703
|
this.el = r.nativeElement;
|
|
737
704
|
proxyOutputs(this, this.el, ['bqOpen']);
|
|
738
705
|
}
|
|
739
|
-
/** @nocollapse */ static
|
|
740
|
-
/** @nocollapse */ static
|
|
706
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
707
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqDropdown, isStandalone: true, selector: "bq-dropdown", inputs: { disabled: "disabled", distance: "distance", keepOpenOnSelect: "keepOpenOnSelect", open: "open", panelHeight: "panelHeight", placement: "placement", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
741
708
|
};
|
|
742
709
|
BqDropdown = __decorate([
|
|
743
710
|
ProxyCmp({
|
|
@@ -746,7 +713,7 @@ BqDropdown = __decorate([
|
|
|
746
713
|
}),
|
|
747
714
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
748
715
|
], BqDropdown);
|
|
749
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
716
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDropdown, decorators: [{
|
|
750
717
|
type: Component,
|
|
751
718
|
args: [{
|
|
752
719
|
selector: 'bq-dropdown',
|
|
@@ -758,15 +725,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
758
725
|
}]
|
|
759
726
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
760
727
|
let BqEmptyState = class BqEmptyState {
|
|
761
|
-
z;
|
|
762
|
-
el;
|
|
763
728
|
constructor(c, r, z) {
|
|
764
729
|
this.z = z;
|
|
765
730
|
c.detach();
|
|
766
731
|
this.el = r.nativeElement;
|
|
767
732
|
}
|
|
768
|
-
/** @nocollapse */ static
|
|
769
|
-
/** @nocollapse */ static
|
|
733
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
734
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqEmptyState, isStandalone: true, selector: "bq-empty-state", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
770
735
|
};
|
|
771
736
|
BqEmptyState = __decorate([
|
|
772
737
|
ProxyCmp({
|
|
@@ -775,7 +740,7 @@ BqEmptyState = __decorate([
|
|
|
775
740
|
}),
|
|
776
741
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
777
742
|
], BqEmptyState);
|
|
778
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
743
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqEmptyState, decorators: [{
|
|
779
744
|
type: Component,
|
|
780
745
|
args: [{
|
|
781
746
|
selector: 'bq-empty-state',
|
|
@@ -787,16 +752,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
787
752
|
}]
|
|
788
753
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
789
754
|
let BqIcon = class BqIcon {
|
|
790
|
-
z;
|
|
791
|
-
el;
|
|
792
755
|
constructor(c, r, z) {
|
|
793
756
|
this.z = z;
|
|
794
757
|
c.detach();
|
|
795
758
|
this.el = r.nativeElement;
|
|
796
759
|
proxyOutputs(this, this.el, ['svgLoaded']);
|
|
797
760
|
}
|
|
798
|
-
/** @nocollapse */ static
|
|
799
|
-
/** @nocollapse */ static
|
|
761
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
762
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqIcon, isStandalone: true, selector: "bq-icon", inputs: { color: "color", label: "label", name: "name", size: "size", src: "src", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
800
763
|
};
|
|
801
764
|
BqIcon = __decorate([
|
|
802
765
|
ProxyCmp({
|
|
@@ -805,7 +768,7 @@ BqIcon = __decorate([
|
|
|
805
768
|
}),
|
|
806
769
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
807
770
|
], BqIcon);
|
|
808
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
771
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqIcon, decorators: [{
|
|
809
772
|
type: Component,
|
|
810
773
|
args: [{
|
|
811
774
|
selector: 'bq-icon',
|
|
@@ -817,46 +780,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
817
780
|
}]
|
|
818
781
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
819
782
|
let BqInput = class BqInput {
|
|
820
|
-
z;
|
|
821
|
-
el;
|
|
822
783
|
constructor(c, r, z) {
|
|
823
784
|
this.z = z;
|
|
824
785
|
c.detach();
|
|
825
786
|
this.el = r.nativeElement;
|
|
826
787
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
827
788
|
}
|
|
828
|
-
/** @nocollapse */ static
|
|
829
|
-
/** @nocollapse */ static
|
|
789
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
790
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqInput, isStandalone: true, selector: "bq-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disabled: "disabled", form: "form", formValidationMessage: "formValidationMessage", inputmode: "inputmode", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", step: "step", type: "type", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
830
791
|
};
|
|
831
792
|
BqInput = __decorate([
|
|
832
793
|
ProxyCmp({
|
|
833
794
|
defineCustomElementFn: defineCustomElement$i,
|
|
834
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value']
|
|
795
|
+
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'formValidationMessage', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value']
|
|
835
796
|
}),
|
|
836
797
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
837
798
|
], BqInput);
|
|
838
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
799
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqInput, decorators: [{
|
|
839
800
|
type: Component,
|
|
840
801
|
args: [{
|
|
841
802
|
selector: 'bq-input',
|
|
842
803
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
843
804
|
template: '<ng-content></ng-content>',
|
|
844
805
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
845
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value'],
|
|
806
|
+
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'formValidationMessage', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value'],
|
|
846
807
|
standalone: true
|
|
847
808
|
}]
|
|
848
809
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
849
810
|
let BqNotification = class BqNotification {
|
|
850
|
-
z;
|
|
851
|
-
el;
|
|
852
811
|
constructor(c, r, z) {
|
|
853
812
|
this.z = z;
|
|
854
813
|
c.detach();
|
|
855
814
|
this.el = r.nativeElement;
|
|
856
815
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
|
|
857
816
|
}
|
|
858
|
-
/** @nocollapse */ static
|
|
859
|
-
/** @nocollapse */ static
|
|
817
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
818
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqNotification, isStandalone: true, selector: "bq-notification", inputs: { autoDismiss: "autoDismiss", border: "border", disableClose: "disableClose", hideIcon: "hideIcon", open: "open", time: "time", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
860
819
|
};
|
|
861
820
|
BqNotification = __decorate([
|
|
862
821
|
ProxyCmp({
|
|
@@ -866,7 +825,7 @@ BqNotification = __decorate([
|
|
|
866
825
|
}),
|
|
867
826
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
868
827
|
], BqNotification);
|
|
869
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
828
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqNotification, decorators: [{
|
|
870
829
|
type: Component,
|
|
871
830
|
args: [{
|
|
872
831
|
selector: 'bq-notification',
|
|
@@ -878,16 +837,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
878
837
|
}]
|
|
879
838
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
880
839
|
let BqOption = class BqOption {
|
|
881
|
-
z;
|
|
882
|
-
el;
|
|
883
840
|
constructor(c, r, z) {
|
|
884
841
|
this.z = z;
|
|
885
842
|
c.detach();
|
|
886
843
|
this.el = r.nativeElement;
|
|
887
844
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick', 'bqEnter']);
|
|
888
845
|
}
|
|
889
|
-
/** @nocollapse */ static
|
|
890
|
-
/** @nocollapse */ static
|
|
846
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
847
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqOption, isStandalone: true, selector: "bq-option", inputs: { disabled: "disabled", hidden: "hidden", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
891
848
|
};
|
|
892
849
|
BqOption = __decorate([
|
|
893
850
|
ProxyCmp({
|
|
@@ -896,7 +853,7 @@ BqOption = __decorate([
|
|
|
896
853
|
}),
|
|
897
854
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
898
855
|
], BqOption);
|
|
899
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
856
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOption, decorators: [{
|
|
900
857
|
type: Component,
|
|
901
858
|
args: [{
|
|
902
859
|
selector: 'bq-option',
|
|
@@ -908,15 +865,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
908
865
|
}]
|
|
909
866
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
910
867
|
let BqOptionGroup = class BqOptionGroup {
|
|
911
|
-
z;
|
|
912
|
-
el;
|
|
913
868
|
constructor(c, r, z) {
|
|
914
869
|
this.z = z;
|
|
915
870
|
c.detach();
|
|
916
871
|
this.el = r.nativeElement;
|
|
917
872
|
}
|
|
918
|
-
/** @nocollapse */ static
|
|
919
|
-
/** @nocollapse */ static
|
|
873
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOptionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
874
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqOptionGroup, isStandalone: true, selector: "bq-option-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
920
875
|
};
|
|
921
876
|
BqOptionGroup = __decorate([
|
|
922
877
|
ProxyCmp({
|
|
@@ -924,7 +879,7 @@ BqOptionGroup = __decorate([
|
|
|
924
879
|
}),
|
|
925
880
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
926
881
|
], BqOptionGroup);
|
|
927
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
882
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOptionGroup, decorators: [{
|
|
928
883
|
type: Component,
|
|
929
884
|
args: [{
|
|
930
885
|
selector: 'bq-option-group',
|
|
@@ -936,16 +891,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
936
891
|
}]
|
|
937
892
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
938
893
|
let BqOptionList = class BqOptionList {
|
|
939
|
-
z;
|
|
940
|
-
el;
|
|
941
894
|
constructor(c, r, z) {
|
|
942
895
|
this.z = z;
|
|
943
896
|
c.detach();
|
|
944
897
|
this.el = r.nativeElement;
|
|
945
898
|
proxyOutputs(this, this.el, ['bqSelect']);
|
|
946
899
|
}
|
|
947
|
-
/** @nocollapse */ static
|
|
948
|
-
/** @nocollapse */ static
|
|
900
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOptionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
901
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqOptionList, isStandalone: true, selector: "bq-option-list", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
949
902
|
};
|
|
950
903
|
BqOptionList = __decorate([
|
|
951
904
|
ProxyCmp({
|
|
@@ -954,7 +907,7 @@ BqOptionList = __decorate([
|
|
|
954
907
|
}),
|
|
955
908
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
956
909
|
], BqOptionList);
|
|
957
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
910
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOptionList, decorators: [{
|
|
958
911
|
type: Component,
|
|
959
912
|
args: [{
|
|
960
913
|
selector: 'bq-option-list',
|
|
@@ -966,15 +919,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
966
919
|
}]
|
|
967
920
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
968
921
|
let BqPageTitle = class BqPageTitle {
|
|
969
|
-
z;
|
|
970
|
-
el;
|
|
971
922
|
constructor(c, r, z) {
|
|
972
923
|
this.z = z;
|
|
973
924
|
c.detach();
|
|
974
925
|
this.el = r.nativeElement;
|
|
975
926
|
}
|
|
976
|
-
/** @nocollapse */ static
|
|
977
|
-
/** @nocollapse */ static
|
|
927
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqPageTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
928
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqPageTitle, isStandalone: true, selector: "bq-page-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
978
929
|
};
|
|
979
930
|
BqPageTitle = __decorate([
|
|
980
931
|
ProxyCmp({
|
|
@@ -982,7 +933,7 @@ BqPageTitle = __decorate([
|
|
|
982
933
|
}),
|
|
983
934
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
984
935
|
], BqPageTitle);
|
|
985
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
936
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqPageTitle, decorators: [{
|
|
986
937
|
type: Component,
|
|
987
938
|
args: [{
|
|
988
939
|
selector: 'bq-page-title',
|
|
@@ -994,15 +945,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
994
945
|
}]
|
|
995
946
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
996
947
|
let BqPanel = class BqPanel {
|
|
997
|
-
z;
|
|
998
|
-
el;
|
|
999
948
|
constructor(c, r, z) {
|
|
1000
949
|
this.z = z;
|
|
1001
950
|
c.detach();
|
|
1002
951
|
this.el = r.nativeElement;
|
|
1003
952
|
}
|
|
1004
|
-
/** @nocollapse */ static
|
|
1005
|
-
/** @nocollapse */ static
|
|
953
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
954
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqPanel, isStandalone: true, selector: "bq-panel", inputs: { distance: "distance", open: "open", placement: "placement", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1006
955
|
};
|
|
1007
956
|
BqPanel = __decorate([
|
|
1008
957
|
ProxyCmp({
|
|
@@ -1011,7 +960,7 @@ BqPanel = __decorate([
|
|
|
1011
960
|
}),
|
|
1012
961
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1013
962
|
], BqPanel);
|
|
1014
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
963
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqPanel, decorators: [{
|
|
1015
964
|
type: Component,
|
|
1016
965
|
args: [{
|
|
1017
966
|
selector: 'bq-panel',
|
|
@@ -1023,15 +972,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1023
972
|
}]
|
|
1024
973
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1025
974
|
let BqProgress = class BqProgress {
|
|
1026
|
-
z;
|
|
1027
|
-
el;
|
|
1028
975
|
constructor(c, r, z) {
|
|
1029
976
|
this.z = z;
|
|
1030
977
|
c.detach();
|
|
1031
978
|
this.el = r.nativeElement;
|
|
1032
979
|
}
|
|
1033
|
-
/** @nocollapse */ static
|
|
1034
|
-
/** @nocollapse */ static
|
|
980
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
981
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqProgress, isStandalone: true, selector: "bq-progress", inputs: { borderShape: "borderShape", enableTooltip: "enableTooltip", indeterminate: "indeterminate", label: "label", thickness: "thickness", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1035
982
|
};
|
|
1036
983
|
BqProgress = __decorate([
|
|
1037
984
|
ProxyCmp({
|
|
@@ -1040,7 +987,7 @@ BqProgress = __decorate([
|
|
|
1040
987
|
}),
|
|
1041
988
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1042
989
|
], BqProgress);
|
|
1043
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
990
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqProgress, decorators: [{
|
|
1044
991
|
type: Component,
|
|
1045
992
|
args: [{
|
|
1046
993
|
selector: 'bq-progress',
|
|
@@ -1052,26 +999,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1052
999
|
}]
|
|
1053
1000
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1054
1001
|
let BqRadio = class BqRadio {
|
|
1055
|
-
z;
|
|
1056
|
-
el;
|
|
1057
1002
|
constructor(c, r, z) {
|
|
1058
1003
|
this.z = z;
|
|
1059
1004
|
c.detach();
|
|
1060
1005
|
this.el = r.nativeElement;
|
|
1061
1006
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
1062
1007
|
}
|
|
1063
|
-
/** @nocollapse */ static
|
|
1064
|
-
/** @nocollapse */ static
|
|
1008
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1009
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqRadio, isStandalone: true, selector: "bq-radio", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1065
1010
|
};
|
|
1066
1011
|
BqRadio = __decorate([
|
|
1067
1012
|
ProxyCmp({
|
|
1068
1013
|
defineCustomElementFn: defineCustomElement$q,
|
|
1069
1014
|
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'name', 'required', 'value'],
|
|
1070
|
-
methods: ['vClick', 'vFocus', 'vBlur']
|
|
1015
|
+
methods: ['vClick', 'vFocus', 'vBlur', 'getNativeInput']
|
|
1071
1016
|
}),
|
|
1072
1017
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1073
1018
|
], BqRadio);
|
|
1074
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1019
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqRadio, decorators: [{
|
|
1075
1020
|
type: Component,
|
|
1076
1021
|
args: [{
|
|
1077
1022
|
selector: 'bq-radio',
|
|
@@ -1083,46 +1028,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1083
1028
|
}]
|
|
1084
1029
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1085
1030
|
let BqRadioGroup = class BqRadioGroup {
|
|
1086
|
-
z;
|
|
1087
|
-
el;
|
|
1088
1031
|
constructor(c, r, z) {
|
|
1089
1032
|
this.z = z;
|
|
1090
1033
|
c.detach();
|
|
1091
1034
|
this.el = r.nativeElement;
|
|
1092
1035
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
1093
1036
|
}
|
|
1094
|
-
/** @nocollapse */ static
|
|
1095
|
-
/** @nocollapse */ static
|
|
1037
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1038
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqRadioGroup, isStandalone: true, selector: "bq-radio-group", inputs: { backgroundOnHover: "backgroundOnHover", debounceTime: "debounceTime", disabled: "disabled", fieldset: "fieldset", name: "name", orientation: "orientation", required: "required", requiredValidationMessage: "requiredValidationMessage", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1096
1039
|
};
|
|
1097
1040
|
BqRadioGroup = __decorate([
|
|
1098
1041
|
ProxyCmp({
|
|
1099
1042
|
defineCustomElementFn: defineCustomElement$r,
|
|
1100
|
-
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', 'name', 'orientation', 'value']
|
|
1043
|
+
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', 'name', 'orientation', 'required', 'requiredValidationMessage', 'value']
|
|
1101
1044
|
}),
|
|
1102
1045
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1103
1046
|
], BqRadioGroup);
|
|
1104
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1047
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqRadioGroup, decorators: [{
|
|
1105
1048
|
type: Component,
|
|
1106
1049
|
args: [{
|
|
1107
1050
|
selector: 'bq-radio-group',
|
|
1108
1051
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1109
1052
|
template: '<ng-content></ng-content>',
|
|
1110
1053
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1111
|
-
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', 'name', 'orientation', 'value'],
|
|
1054
|
+
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', 'name', 'orientation', 'required', 'requiredValidationMessage', 'value'],
|
|
1112
1055
|
standalone: true
|
|
1113
1056
|
}]
|
|
1114
1057
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1115
1058
|
let BqSelect = class BqSelect {
|
|
1116
|
-
z;
|
|
1117
|
-
el;
|
|
1118
1059
|
constructor(c, r, z) {
|
|
1119
1060
|
this.z = z;
|
|
1120
1061
|
c.detach();
|
|
1121
1062
|
this.el = r.nativeElement;
|
|
1122
1063
|
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect']);
|
|
1123
1064
|
}
|
|
1124
|
-
/** @nocollapse */ static
|
|
1125
|
-
/** @nocollapse */ static
|
|
1065
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1066
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqSelect, isStandalone: true, selector: "bq-select", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disabled: "disabled", distance: "distance", form: "form", keepOpenOnSelect: "keepOpenOnSelect", maxTagsVisible: "maxTagsVisible", multiple: "multiple", name: "name", open: "open", panelHeight: "panelHeight", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1126
1067
|
};
|
|
1127
1068
|
BqSelect = __decorate([
|
|
1128
1069
|
ProxyCmp({
|
|
@@ -1132,7 +1073,7 @@ BqSelect = __decorate([
|
|
|
1132
1073
|
}),
|
|
1133
1074
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1134
1075
|
], BqSelect);
|
|
1135
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1076
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSelect, decorators: [{
|
|
1136
1077
|
type: Component,
|
|
1137
1078
|
args: [{
|
|
1138
1079
|
selector: 'bq-select',
|
|
@@ -1144,16 +1085,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1144
1085
|
}]
|
|
1145
1086
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1146
1087
|
let BqSideMenu = class BqSideMenu {
|
|
1147
|
-
z;
|
|
1148
|
-
el;
|
|
1149
1088
|
constructor(c, r, z) {
|
|
1150
1089
|
this.z = z;
|
|
1151
1090
|
c.detach();
|
|
1152
1091
|
this.el = r.nativeElement;
|
|
1153
1092
|
proxyOutputs(this, this.el, ['bqCollapse', 'bqSelect']);
|
|
1154
1093
|
}
|
|
1155
|
-
/** @nocollapse */ static
|
|
1156
|
-
/** @nocollapse */ static
|
|
1094
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSideMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1095
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqSideMenu, isStandalone: true, selector: "bq-side-menu", inputs: { appearance: "appearance", collapse: "collapse", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1157
1096
|
};
|
|
1158
1097
|
BqSideMenu = __decorate([
|
|
1159
1098
|
ProxyCmp({
|
|
@@ -1163,7 +1102,7 @@ BqSideMenu = __decorate([
|
|
|
1163
1102
|
}),
|
|
1164
1103
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1165
1104
|
], BqSideMenu);
|
|
1166
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSideMenu, decorators: [{
|
|
1167
1106
|
type: Component,
|
|
1168
1107
|
args: [{
|
|
1169
1108
|
selector: 'bq-side-menu',
|
|
@@ -1175,16 +1114,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1175
1114
|
}]
|
|
1176
1115
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1177
1116
|
let BqSideMenuItem = class BqSideMenuItem {
|
|
1178
|
-
z;
|
|
1179
|
-
el;
|
|
1180
1117
|
constructor(c, r, z) {
|
|
1181
1118
|
this.z = z;
|
|
1182
1119
|
c.detach();
|
|
1183
1120
|
this.el = r.nativeElement;
|
|
1184
1121
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
1185
1122
|
}
|
|
1186
|
-
/** @nocollapse */ static
|
|
1187
|
-
/** @nocollapse */ static
|
|
1123
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSideMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1124
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqSideMenuItem, isStandalone: true, selector: "bq-side-menu-item", inputs: { active: "active", collapse: "collapse", disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1188
1125
|
};
|
|
1189
1126
|
BqSideMenuItem = __decorate([
|
|
1190
1127
|
ProxyCmp({
|
|
@@ -1193,7 +1130,7 @@ BqSideMenuItem = __decorate([
|
|
|
1193
1130
|
}),
|
|
1194
1131
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1195
1132
|
], BqSideMenuItem);
|
|
1196
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSideMenuItem, decorators: [{
|
|
1197
1134
|
type: Component,
|
|
1198
1135
|
args: [{
|
|
1199
1136
|
selector: 'bq-side-menu-item',
|
|
@@ -1205,45 +1142,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1205
1142
|
}]
|
|
1206
1143
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1207
1144
|
let BqSlider = class BqSlider {
|
|
1208
|
-
z;
|
|
1209
|
-
el;
|
|
1210
1145
|
constructor(c, r, z) {
|
|
1211
1146
|
this.z = z;
|
|
1212
1147
|
c.detach();
|
|
1213
1148
|
this.el = r.nativeElement;
|
|
1214
1149
|
proxyOutputs(this, this.el, ['bqChange', 'bqBlur', 'bqFocus']);
|
|
1215
1150
|
}
|
|
1216
|
-
/** @nocollapse */ static
|
|
1217
|
-
/** @nocollapse */ static
|
|
1151
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1152
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqSlider, isStandalone: true, selector: "bq-slider", inputs: { debounceTime: "debounceTime", disabled: "disabled", enableTooltip: "enableTooltip", enableValueIndicator: "enableValueIndicator", gap: "gap", max: "max", min: "min", name: "name", step: "step", tooltipAlwaysVisible: "tooltipAlwaysVisible", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1218
1153
|
};
|
|
1219
1154
|
BqSlider = __decorate([
|
|
1220
1155
|
ProxyCmp({
|
|
1221
1156
|
defineCustomElementFn: defineCustomElement$v,
|
|
1222
|
-
inputs: ['debounceTime', 'disabled', 'enableTooltip', 'enableValueIndicator', 'gap', 'max', 'min', 'step', 'tooltipAlwaysVisible', 'type', 'value']
|
|
1157
|
+
inputs: ['debounceTime', 'disabled', 'enableTooltip', 'enableValueIndicator', 'gap', 'max', 'min', 'name', 'step', 'tooltipAlwaysVisible', 'type', 'value']
|
|
1223
1158
|
}),
|
|
1224
1159
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1225
1160
|
], BqSlider);
|
|
1226
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1161
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSlider, decorators: [{
|
|
1227
1162
|
type: Component,
|
|
1228
1163
|
args: [{
|
|
1229
1164
|
selector: 'bq-slider',
|
|
1230
1165
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1231
1166
|
template: '<ng-content></ng-content>',
|
|
1232
1167
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1233
|
-
inputs: ['debounceTime', 'disabled', 'enableTooltip', 'enableValueIndicator', 'gap', 'max', 'min', 'step', 'tooltipAlwaysVisible', 'type', 'value'],
|
|
1168
|
+
inputs: ['debounceTime', 'disabled', 'enableTooltip', 'enableValueIndicator', 'gap', 'max', 'min', 'name', 'step', 'tooltipAlwaysVisible', 'type', 'value'],
|
|
1234
1169
|
standalone: true
|
|
1235
1170
|
}]
|
|
1236
1171
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1237
1172
|
let BqSpinner = class BqSpinner {
|
|
1238
|
-
z;
|
|
1239
|
-
el;
|
|
1240
1173
|
constructor(c, r, z) {
|
|
1241
1174
|
this.z = z;
|
|
1242
1175
|
c.detach();
|
|
1243
1176
|
this.el = r.nativeElement;
|
|
1244
1177
|
}
|
|
1245
|
-
/** @nocollapse */ static
|
|
1246
|
-
/** @nocollapse */ static
|
|
1178
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1179
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqSpinner, isStandalone: true, selector: "bq-spinner", inputs: { animation: "animation", size: "size", textPosition: "textPosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1247
1180
|
};
|
|
1248
1181
|
BqSpinner = __decorate([
|
|
1249
1182
|
ProxyCmp({
|
|
@@ -1252,7 +1185,7 @@ BqSpinner = __decorate([
|
|
|
1252
1185
|
}),
|
|
1253
1186
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1254
1187
|
], BqSpinner);
|
|
1255
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1188
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSpinner, decorators: [{
|
|
1256
1189
|
type: Component,
|
|
1257
1190
|
args: [{
|
|
1258
1191
|
selector: 'bq-spinner',
|
|
@@ -1264,15 +1197,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1264
1197
|
}]
|
|
1265
1198
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1266
1199
|
let BqStatus = class BqStatus {
|
|
1267
|
-
z;
|
|
1268
|
-
el;
|
|
1269
1200
|
constructor(c, r, z) {
|
|
1270
1201
|
this.z = z;
|
|
1271
1202
|
c.detach();
|
|
1272
1203
|
this.el = r.nativeElement;
|
|
1273
1204
|
}
|
|
1274
|
-
/** @nocollapse */ static
|
|
1275
|
-
/** @nocollapse */ static
|
|
1205
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1206
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqStatus, isStandalone: true, selector: "bq-status", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1276
1207
|
};
|
|
1277
1208
|
BqStatus = __decorate([
|
|
1278
1209
|
ProxyCmp({
|
|
@@ -1281,7 +1212,7 @@ BqStatus = __decorate([
|
|
|
1281
1212
|
}),
|
|
1282
1213
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1283
1214
|
], BqStatus);
|
|
1284
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1215
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqStatus, decorators: [{
|
|
1285
1216
|
type: Component,
|
|
1286
1217
|
args: [{
|
|
1287
1218
|
selector: 'bq-status',
|
|
@@ -1293,16 +1224,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1293
1224
|
}]
|
|
1294
1225
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1295
1226
|
let BqStepItem = class BqStepItem {
|
|
1296
|
-
z;
|
|
1297
|
-
el;
|
|
1298
1227
|
constructor(c, r, z) {
|
|
1299
1228
|
this.z = z;
|
|
1300
1229
|
c.detach();
|
|
1301
1230
|
this.el = r.nativeElement;
|
|
1302
1231
|
proxyOutputs(this, this.el, ['bqClick']);
|
|
1303
1232
|
}
|
|
1304
|
-
/** @nocollapse */ static
|
|
1305
|
-
/** @nocollapse */ static
|
|
1233
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqStepItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1234
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqStepItem, isStandalone: true, selector: "bq-step-item", inputs: { size: "size", status: "status", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1306
1235
|
};
|
|
1307
1236
|
BqStepItem = __decorate([
|
|
1308
1237
|
ProxyCmp({
|
|
@@ -1311,7 +1240,7 @@ BqStepItem = __decorate([
|
|
|
1311
1240
|
}),
|
|
1312
1241
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1313
1242
|
], BqStepItem);
|
|
1314
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1243
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqStepItem, decorators: [{
|
|
1315
1244
|
type: Component,
|
|
1316
1245
|
args: [{
|
|
1317
1246
|
selector: 'bq-step-item',
|
|
@@ -1323,15 +1252,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1323
1252
|
}]
|
|
1324
1253
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1325
1254
|
let BqSteps = class BqSteps {
|
|
1326
|
-
z;
|
|
1327
|
-
el;
|
|
1328
1255
|
constructor(c, r, z) {
|
|
1329
1256
|
this.z = z;
|
|
1330
1257
|
c.detach();
|
|
1331
1258
|
this.el = r.nativeElement;
|
|
1332
1259
|
}
|
|
1333
|
-
/** @nocollapse */ static
|
|
1334
|
-
/** @nocollapse */ static
|
|
1260
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1261
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqSteps, isStandalone: true, selector: "bq-steps", inputs: { dividerColor: "dividerColor", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1335
1262
|
};
|
|
1336
1263
|
BqSteps = __decorate([
|
|
1337
1264
|
ProxyCmp({
|
|
@@ -1340,7 +1267,7 @@ BqSteps = __decorate([
|
|
|
1340
1267
|
}),
|
|
1341
1268
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1342
1269
|
], BqSteps);
|
|
1343
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1270
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSteps, decorators: [{
|
|
1344
1271
|
type: Component,
|
|
1345
1272
|
args: [{
|
|
1346
1273
|
selector: 'bq-steps',
|
|
@@ -1352,57 +1279,53 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1352
1279
|
}]
|
|
1353
1280
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1354
1281
|
let BqSwitch = class BqSwitch {
|
|
1355
|
-
z;
|
|
1356
|
-
el;
|
|
1357
1282
|
constructor(c, r, z) {
|
|
1358
1283
|
this.z = z;
|
|
1359
1284
|
c.detach();
|
|
1360
1285
|
this.el = r.nativeElement;
|
|
1361
1286
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
1362
1287
|
}
|
|
1363
|
-
/** @nocollapse */ static
|
|
1364
|
-
/** @nocollapse */ static
|
|
1288
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1289
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqSwitch, isStandalone: true, selector: "bq-switch", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formValidationMessage: "formValidationMessage", fullWidth: "fullWidth", innerLabel: "innerLabel", justifyContent: "justifyContent", name: "name", required: "required", reverseOrder: "reverseOrder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1365
1290
|
};
|
|
1366
1291
|
BqSwitch = __decorate([
|
|
1367
1292
|
ProxyCmp({
|
|
1368
1293
|
defineCustomElementFn: defineCustomElement$A,
|
|
1369
|
-
inputs: ['backgroundOnHover', 'checked', 'disabled', 'fullWidth', 'innerLabel', 'justifyContent', 'name', 'required', 'reverseOrder', 'value'],
|
|
1294
|
+
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formValidationMessage', 'fullWidth', 'innerLabel', 'justifyContent', 'name', 'required', 'reverseOrder', 'value'],
|
|
1370
1295
|
methods: ['vClick', 'vFocus', 'vBlur']
|
|
1371
1296
|
}),
|
|
1372
1297
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1373
1298
|
], BqSwitch);
|
|
1374
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1299
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSwitch, decorators: [{
|
|
1375
1300
|
type: Component,
|
|
1376
1301
|
args: [{
|
|
1377
1302
|
selector: 'bq-switch',
|
|
1378
1303
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1379
1304
|
template: '<ng-content></ng-content>',
|
|
1380
1305
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1381
|
-
inputs: ['backgroundOnHover', 'checked', 'disabled', 'fullWidth', 'innerLabel', 'justifyContent', 'name', 'required', 'reverseOrder', 'value'],
|
|
1306
|
+
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formValidationMessage', 'fullWidth', 'innerLabel', 'justifyContent', 'name', 'required', 'reverseOrder', 'value'],
|
|
1382
1307
|
standalone: true
|
|
1383
1308
|
}]
|
|
1384
1309
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1385
1310
|
let BqTab = class BqTab {
|
|
1386
|
-
z;
|
|
1387
|
-
el;
|
|
1388
1311
|
constructor(c, r, z) {
|
|
1389
1312
|
this.z = z;
|
|
1390
1313
|
c.detach();
|
|
1391
1314
|
this.el = r.nativeElement;
|
|
1392
1315
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
1393
1316
|
}
|
|
1394
|
-
/** @nocollapse */ static
|
|
1395
|
-
/** @nocollapse */ static
|
|
1317
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1318
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqTab, isStandalone: true, selector: "bq-tab", inputs: { active: "active", controls: "controls", disabled: "disabled", orientation: "orientation", placement: "placement", size: "size", tabId: "tabId" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1396
1319
|
};
|
|
1397
1320
|
BqTab = __decorate([
|
|
1398
1321
|
ProxyCmp({
|
|
1399
1322
|
defineCustomElementFn: defineCustomElement$B,
|
|
1400
1323
|
inputs: ['active', 'controls', 'disabled', 'orientation', 'placement', 'size', 'tabId'],
|
|
1401
|
-
methods: ['vClick', 'vFocus', 'vBlur'
|
|
1324
|
+
methods: ['vClick', 'vFocus', 'vBlur']
|
|
1402
1325
|
}),
|
|
1403
1326
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1404
1327
|
], BqTab);
|
|
1405
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1328
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTab, decorators: [{
|
|
1406
1329
|
type: Component,
|
|
1407
1330
|
args: [{
|
|
1408
1331
|
selector: 'bq-tab',
|
|
@@ -1414,16 +1337,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1414
1337
|
}]
|
|
1415
1338
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1416
1339
|
let BqTabGroup = class BqTabGroup {
|
|
1417
|
-
z;
|
|
1418
|
-
el;
|
|
1419
1340
|
constructor(c, r, z) {
|
|
1420
1341
|
this.z = z;
|
|
1421
1342
|
c.detach();
|
|
1422
1343
|
this.el = r.nativeElement;
|
|
1423
1344
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
1424
1345
|
}
|
|
1425
|
-
/** @nocollapse */ static
|
|
1426
|
-
/** @nocollapse */ static
|
|
1346
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1347
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqTabGroup, isStandalone: true, selector: "bq-tab-group", inputs: { debounceTime: "debounceTime", disableDivider: "disableDivider", orientation: "orientation", placement: "placement", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1427
1348
|
};
|
|
1428
1349
|
BqTabGroup = __decorate([
|
|
1429
1350
|
ProxyCmp({
|
|
@@ -1432,7 +1353,7 @@ BqTabGroup = __decorate([
|
|
|
1432
1353
|
}),
|
|
1433
1354
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1434
1355
|
], BqTabGroup);
|
|
1435
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1356
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTabGroup, decorators: [{
|
|
1436
1357
|
type: Component,
|
|
1437
1358
|
args: [{
|
|
1438
1359
|
selector: 'bq-tab-group',
|
|
@@ -1444,16 +1365,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1444
1365
|
}]
|
|
1445
1366
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1446
1367
|
let BqTag = class BqTag {
|
|
1447
|
-
z;
|
|
1448
|
-
el;
|
|
1449
1368
|
constructor(c, r, z) {
|
|
1450
1369
|
this.z = z;
|
|
1451
1370
|
c.detach();
|
|
1452
1371
|
this.el = r.nativeElement;
|
|
1453
1372
|
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus']);
|
|
1454
1373
|
}
|
|
1455
|
-
/** @nocollapse */ static
|
|
1456
|
-
/** @nocollapse */ static
|
|
1374
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1375
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqTag, isStandalone: true, selector: "bq-tag", inputs: { border: "border", clickable: "clickable", color: "color", disabled: "disabled", hidden: "hidden", removable: "removable", selected: "selected", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1457
1376
|
};
|
|
1458
1377
|
BqTag = __decorate([
|
|
1459
1378
|
ProxyCmp({
|
|
@@ -1463,7 +1382,7 @@ BqTag = __decorate([
|
|
|
1463
1382
|
}),
|
|
1464
1383
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1465
1384
|
], BqTag);
|
|
1466
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1385
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTag, decorators: [{
|
|
1467
1386
|
type: Component,
|
|
1468
1387
|
args: [{
|
|
1469
1388
|
selector: 'bq-tag',
|
|
@@ -1475,46 +1394,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1475
1394
|
}]
|
|
1476
1395
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1477
1396
|
let BqTextarea = class BqTextarea {
|
|
1478
|
-
z;
|
|
1479
|
-
el;
|
|
1480
1397
|
constructor(c, r, z) {
|
|
1481
1398
|
this.z = z;
|
|
1482
1399
|
c.detach();
|
|
1483
1400
|
this.el = r.nativeElement;
|
|
1484
1401
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
1485
1402
|
}
|
|
1486
|
-
/** @nocollapse */ static
|
|
1487
|
-
/** @nocollapse */ static
|
|
1403
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1404
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqTextarea, isStandalone: true, selector: "bq-textarea", inputs: { autoGrow: "autoGrow", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", debounceTime: "debounceTime", disableResize: "disableResize", disabled: "disabled", form: "form", formValidationMessage: "formValidationMessage", maxlength: "maxlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", spellcheck: "spellcheck", validationStatus: "validationStatus", value: "value", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1488
1405
|
};
|
|
1489
1406
|
BqTextarea = __decorate([
|
|
1490
1407
|
ProxyCmp({
|
|
1491
1408
|
defineCustomElementFn: defineCustomElement$E,
|
|
1492
|
-
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap']
|
|
1409
|
+
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'formValidationMessage', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap']
|
|
1493
1410
|
}),
|
|
1494
1411
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1495
1412
|
], BqTextarea);
|
|
1496
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1413
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTextarea, decorators: [{
|
|
1497
1414
|
type: Component,
|
|
1498
1415
|
args: [{
|
|
1499
1416
|
selector: 'bq-textarea',
|
|
1500
1417
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1501
1418
|
template: '<ng-content></ng-content>',
|
|
1502
1419
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1503
|
-
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap'],
|
|
1420
|
+
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'formValidationMessage', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap'],
|
|
1504
1421
|
standalone: true
|
|
1505
1422
|
}]
|
|
1506
1423
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1507
1424
|
let BqToast = class BqToast {
|
|
1508
|
-
z;
|
|
1509
|
-
el;
|
|
1510
1425
|
constructor(c, r, z) {
|
|
1511
1426
|
this.z = z;
|
|
1512
1427
|
c.detach();
|
|
1513
1428
|
this.el = r.nativeElement;
|
|
1514
1429
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow']);
|
|
1515
1430
|
}
|
|
1516
|
-
/** @nocollapse */ static
|
|
1517
|
-
/** @nocollapse */ static
|
|
1431
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1432
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqToast, isStandalone: true, selector: "bq-toast", inputs: { border: "border", hideIcon: "hideIcon", open: "open", placement: "placement", time: "time", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1518
1433
|
};
|
|
1519
1434
|
BqToast = __decorate([
|
|
1520
1435
|
ProxyCmp({
|
|
@@ -1524,7 +1439,7 @@ BqToast = __decorate([
|
|
|
1524
1439
|
}),
|
|
1525
1440
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1526
1441
|
], BqToast);
|
|
1527
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1442
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqToast, decorators: [{
|
|
1528
1443
|
type: Component,
|
|
1529
1444
|
args: [{
|
|
1530
1445
|
selector: 'bq-toast',
|
|
@@ -1536,15 +1451,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1536
1451
|
}]
|
|
1537
1452
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1538
1453
|
let BqTooltip = class BqTooltip {
|
|
1539
|
-
z;
|
|
1540
|
-
el;
|
|
1541
1454
|
constructor(c, r, z) {
|
|
1542
1455
|
this.z = z;
|
|
1543
1456
|
c.detach();
|
|
1544
1457
|
this.el = r.nativeElement;
|
|
1545
1458
|
}
|
|
1546
|
-
/** @nocollapse */ static
|
|
1547
|
-
/** @nocollapse */ static
|
|
1459
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1460
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqTooltip, isStandalone: true, selector: "bq-tooltip", inputs: { alwaysVisible: "alwaysVisible", displayOn: "displayOn", distance: "distance", hideArrow: "hideArrow", placement: "placement", sameWidth: "sameWidth", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1548
1461
|
};
|
|
1549
1462
|
BqTooltip = __decorate([
|
|
1550
1463
|
ProxyCmp({
|
|
@@ -1554,7 +1467,7 @@ BqTooltip = __decorate([
|
|
|
1554
1467
|
}),
|
|
1555
1468
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1556
1469
|
], BqTooltip);
|
|
1557
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1470
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTooltip, decorators: [{
|
|
1558
1471
|
type: Component,
|
|
1559
1472
|
args: [{
|
|
1560
1473
|
selector: 'bq-tooltip',
|