@beeq/angular 1.8.0-beta.14 → 1.8.0-beta.15
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 +1247 -0
- package/esm2022/beeq.module.mjs +5 -5
- package/esm2022/directives/boolean-value-accessor.mjs +4 -4
- package/esm2022/directives/components.mjs +85 -169
- package/esm2022/directives/number-value-accessor.mjs +4 -4
- package/esm2022/directives/radio-value-accessor.mjs +4 -4
- package/esm2022/directives/select-value-accessor.mjs +4 -4
- package/esm2022/directives/text-value-accessor.mjs +4 -4
- package/esm2022/directives/value-accessor.mjs +5 -7
- package/esm2022/standalone/directives/boolean-value-accessor.mjs +4 -4
- package/esm2022/standalone/directives/components.mjs +85 -169
- package/esm2022/standalone/directives/number-value-accessor.mjs +4 -4
- package/esm2022/standalone/directives/radio-value-accessor.mjs +4 -4
- package/esm2022/standalone/directives/select-value-accessor.mjs +4 -4
- package/esm2022/standalone/directives/text-value-accessor.mjs +4 -4
- package/esm2022/standalone/directives/value-accessor.mjs +5 -7
- package/fesm2022/beeq-angular-standalone.mjs +103 -189
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +107 -193
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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,8 +73,8 @@ 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.9", 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.9", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 }); }
|
|
80
78
|
}
|
|
81
79
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
82
80
|
type: Directive,
|
|
@@ -93,14 +91,14 @@ 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.9", 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.9", 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
103
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
106
104
|
type: Directive,
|
|
@@ -129,14 +127,14 @@ 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.9", 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.9", 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
139
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
142
140
|
type: Directive,
|
|
@@ -160,14 +158,14 @@ 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.9", 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.9", 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
170
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
173
171
|
type: Directive,
|
|
@@ -191,14 +189,14 @@ 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.9", 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.9", 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
201
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
204
202
|
type: Directive,
|
|
@@ -222,14 +220,14 @@ 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.9", 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.9", 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
232
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
235
233
|
type: Directive,
|
|
@@ -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
313
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqOpen', 'bqAfterOpen', 'bqClose', 'bqAfterClose']);
|
|
318
314
|
}
|
|
319
|
-
/** @nocollapse */ static
|
|
320
|
-
/** @nocollapse */ static
|
|
315
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", 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.9", 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({
|
|
@@ -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.9", 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.9", 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({
|
|
@@ -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.9", 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.9", 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({
|
|
@@ -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.9", 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.9", 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({
|
|
@@ -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.9", 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.9", 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({
|
|
@@ -456,16 +444,14 @@ 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
451
|
proxyOutputs(this, this.el, ['bqBreadcrumbBlur', 'bqBreadcrumbFocus', 'bqBreadcrumbClick']);
|
|
466
452
|
}
|
|
467
|
-
/** @nocollapse */ static
|
|
468
|
-
/** @nocollapse */ static
|
|
453
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
454
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqBreadcrumb, isStandalone: true, selector: "bq-breadcrumb", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
469
455
|
};
|
|
470
456
|
BqBreadcrumb = __decorate([
|
|
471
457
|
ProxyCmp({
|
|
@@ -486,16 +472,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
486
472
|
}]
|
|
487
473
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
488
474
|
let BqBreadcrumbItem = class BqBreadcrumbItem {
|
|
489
|
-
z;
|
|
490
|
-
el;
|
|
491
475
|
constructor(c, r, z) {
|
|
492
476
|
this.z = z;
|
|
493
477
|
c.detach();
|
|
494
478
|
this.el = r.nativeElement;
|
|
495
479
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
496
480
|
}
|
|
497
|
-
/** @nocollapse */ static
|
|
498
|
-
/** @nocollapse */ static
|
|
481
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
482
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqBreadcrumbItem, isStandalone: true, selector: "bq-breadcrumb-item", inputs: { ariaLabel: "ariaLabel", href: "href", isLastItem: "isLastItem", rel: "rel", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
499
483
|
};
|
|
500
484
|
BqBreadcrumbItem = __decorate([
|
|
501
485
|
ProxyCmp({
|
|
@@ -516,16 +500,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
516
500
|
}]
|
|
517
501
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
518
502
|
let BqButton = class BqButton {
|
|
519
|
-
z;
|
|
520
|
-
el;
|
|
521
503
|
constructor(c, r, z) {
|
|
522
504
|
this.z = z;
|
|
523
505
|
c.detach();
|
|
524
506
|
this.el = r.nativeElement;
|
|
525
507
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
526
508
|
}
|
|
527
|
-
/** @nocollapse */ static
|
|
528
|
-
/** @nocollapse */ static
|
|
509
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
510
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
511
|
};
|
|
530
512
|
BqButton = __decorate([
|
|
531
513
|
ProxyCmp({
|
|
@@ -546,15 +528,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
546
528
|
}]
|
|
547
529
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
548
530
|
let BqCard = class BqCard {
|
|
549
|
-
z;
|
|
550
|
-
el;
|
|
551
531
|
constructor(c, r, z) {
|
|
552
532
|
this.z = z;
|
|
553
533
|
c.detach();
|
|
554
534
|
this.el = r.nativeElement;
|
|
555
535
|
}
|
|
556
|
-
/** @nocollapse */ static
|
|
557
|
-
/** @nocollapse */ static
|
|
536
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
537
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
538
|
};
|
|
559
539
|
BqCard = __decorate([
|
|
560
540
|
ProxyCmp({
|
|
@@ -575,16 +555,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
575
555
|
}]
|
|
576
556
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
577
557
|
let BqCheckbox = class BqCheckbox {
|
|
578
|
-
z;
|
|
579
|
-
el;
|
|
580
558
|
constructor(c, r, z) {
|
|
581
559
|
this.z = z;
|
|
582
560
|
c.detach();
|
|
583
561
|
this.el = r.nativeElement;
|
|
584
562
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
585
563
|
}
|
|
586
|
-
/** @nocollapse */ static
|
|
587
|
-
/** @nocollapse */ static
|
|
564
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
565
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
566
|
};
|
|
589
567
|
BqCheckbox = __decorate([
|
|
590
568
|
ProxyCmp({
|
|
@@ -606,16 +584,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
606
584
|
}]
|
|
607
585
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
608
586
|
let BqDatePicker = class BqDatePicker {
|
|
609
|
-
z;
|
|
610
|
-
el;
|
|
611
587
|
constructor(c, r, z) {
|
|
612
588
|
this.z = z;
|
|
613
589
|
c.detach();
|
|
614
590
|
this.el = r.nativeElement;
|
|
615
591
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus']);
|
|
616
592
|
}
|
|
617
|
-
/** @nocollapse */ static
|
|
618
|
-
/** @nocollapse */ static
|
|
593
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
594
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
595
|
};
|
|
620
596
|
BqDatePicker = __decorate([
|
|
621
597
|
ProxyCmp({
|
|
@@ -637,16 +613,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
637
613
|
}]
|
|
638
614
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
639
615
|
let BqDialog = class BqDialog {
|
|
640
|
-
z;
|
|
641
|
-
el;
|
|
642
616
|
constructor(c, r, z) {
|
|
643
617
|
this.z = z;
|
|
644
618
|
c.detach();
|
|
645
619
|
this.el = r.nativeElement;
|
|
646
620
|
proxyOutputs(this, this.el, ['bqCancel', 'bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
647
621
|
}
|
|
648
|
-
/** @nocollapse */ static
|
|
649
|
-
/** @nocollapse */ static
|
|
622
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
623
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
624
|
};
|
|
651
625
|
BqDialog = __decorate([
|
|
652
626
|
ProxyCmp({
|
|
@@ -668,15 +642,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
668
642
|
}]
|
|
669
643
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
670
644
|
let BqDivider = class BqDivider {
|
|
671
|
-
z;
|
|
672
|
-
el;
|
|
673
645
|
constructor(c, r, z) {
|
|
674
646
|
this.z = z;
|
|
675
647
|
c.detach();
|
|
676
648
|
this.el = r.nativeElement;
|
|
677
649
|
}
|
|
678
|
-
/** @nocollapse */ static
|
|
679
|
-
/** @nocollapse */ static
|
|
650
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
651
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
652
|
};
|
|
681
653
|
BqDivider = __decorate([
|
|
682
654
|
ProxyCmp({
|
|
@@ -697,16 +669,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
697
669
|
}]
|
|
698
670
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
699
671
|
let BqDrawer = class BqDrawer {
|
|
700
|
-
z;
|
|
701
|
-
el;
|
|
702
672
|
constructor(c, r, z) {
|
|
703
673
|
this.z = z;
|
|
704
674
|
c.detach();
|
|
705
675
|
this.el = r.nativeElement;
|
|
706
676
|
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
707
677
|
}
|
|
708
|
-
/** @nocollapse */ static
|
|
709
|
-
/** @nocollapse */ static
|
|
678
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
679
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
680
|
};
|
|
711
681
|
BqDrawer = __decorate([
|
|
712
682
|
ProxyCmp({
|
|
@@ -728,16 +698,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
728
698
|
}]
|
|
729
699
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
730
700
|
let BqDropdown = class BqDropdown {
|
|
731
|
-
z;
|
|
732
|
-
el;
|
|
733
701
|
constructor(c, r, z) {
|
|
734
702
|
this.z = z;
|
|
735
703
|
c.detach();
|
|
736
704
|
this.el = r.nativeElement;
|
|
737
705
|
proxyOutputs(this, this.el, ['bqOpen']);
|
|
738
706
|
}
|
|
739
|
-
/** @nocollapse */ static
|
|
740
|
-
/** @nocollapse */ static
|
|
707
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
708
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
709
|
};
|
|
742
710
|
BqDropdown = __decorate([
|
|
743
711
|
ProxyCmp({
|
|
@@ -758,15 +726,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
758
726
|
}]
|
|
759
727
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
760
728
|
let BqEmptyState = class BqEmptyState {
|
|
761
|
-
z;
|
|
762
|
-
el;
|
|
763
729
|
constructor(c, r, z) {
|
|
764
730
|
this.z = z;
|
|
765
731
|
c.detach();
|
|
766
732
|
this.el = r.nativeElement;
|
|
767
733
|
}
|
|
768
|
-
/** @nocollapse */ static
|
|
769
|
-
/** @nocollapse */ static
|
|
734
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
735
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
736
|
};
|
|
771
737
|
BqEmptyState = __decorate([
|
|
772
738
|
ProxyCmp({
|
|
@@ -787,16 +753,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
787
753
|
}]
|
|
788
754
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
789
755
|
let BqIcon = class BqIcon {
|
|
790
|
-
z;
|
|
791
|
-
el;
|
|
792
756
|
constructor(c, r, z) {
|
|
793
757
|
this.z = z;
|
|
794
758
|
c.detach();
|
|
795
759
|
this.el = r.nativeElement;
|
|
796
760
|
proxyOutputs(this, this.el, ['svgLoaded']);
|
|
797
761
|
}
|
|
798
|
-
/** @nocollapse */ static
|
|
799
|
-
/** @nocollapse */ static
|
|
762
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
763
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
764
|
};
|
|
801
765
|
BqIcon = __decorate([
|
|
802
766
|
ProxyCmp({
|
|
@@ -817,16 +781,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
817
781
|
}]
|
|
818
782
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
819
783
|
let BqInput = class BqInput {
|
|
820
|
-
z;
|
|
821
|
-
el;
|
|
822
784
|
constructor(c, r, z) {
|
|
823
785
|
this.z = z;
|
|
824
786
|
c.detach();
|
|
825
787
|
this.el = r.nativeElement;
|
|
826
788
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
827
789
|
}
|
|
828
|
-
/** @nocollapse */ static
|
|
829
|
-
/** @nocollapse */ static
|
|
790
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
791
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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", 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
792
|
};
|
|
831
793
|
BqInput = __decorate([
|
|
832
794
|
ProxyCmp({
|
|
@@ -847,16 +809,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
847
809
|
}]
|
|
848
810
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
849
811
|
let BqNotification = class BqNotification {
|
|
850
|
-
z;
|
|
851
|
-
el;
|
|
852
812
|
constructor(c, r, z) {
|
|
853
813
|
this.z = z;
|
|
854
814
|
c.detach();
|
|
855
815
|
this.el = r.nativeElement;
|
|
856
816
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
|
|
857
817
|
}
|
|
858
|
-
/** @nocollapse */ static
|
|
859
|
-
/** @nocollapse */ static
|
|
818
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
819
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
820
|
};
|
|
861
821
|
BqNotification = __decorate([
|
|
862
822
|
ProxyCmp({
|
|
@@ -878,16 +838,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
878
838
|
}]
|
|
879
839
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
880
840
|
let BqOption = class BqOption {
|
|
881
|
-
z;
|
|
882
|
-
el;
|
|
883
841
|
constructor(c, r, z) {
|
|
884
842
|
this.z = z;
|
|
885
843
|
c.detach();
|
|
886
844
|
this.el = r.nativeElement;
|
|
887
845
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick', 'bqEnter']);
|
|
888
846
|
}
|
|
889
|
-
/** @nocollapse */ static
|
|
890
|
-
/** @nocollapse */ static
|
|
847
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
848
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
849
|
};
|
|
892
850
|
BqOption = __decorate([
|
|
893
851
|
ProxyCmp({
|
|
@@ -908,15 +866,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
908
866
|
}]
|
|
909
867
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
910
868
|
let BqOptionGroup = class BqOptionGroup {
|
|
911
|
-
z;
|
|
912
|
-
el;
|
|
913
869
|
constructor(c, r, z) {
|
|
914
870
|
this.z = z;
|
|
915
871
|
c.detach();
|
|
916
872
|
this.el = r.nativeElement;
|
|
917
873
|
}
|
|
918
|
-
/** @nocollapse */ static
|
|
919
|
-
/** @nocollapse */ static
|
|
874
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqOptionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
875
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqOptionGroup, isStandalone: true, selector: "bq-option-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
920
876
|
};
|
|
921
877
|
BqOptionGroup = __decorate([
|
|
922
878
|
ProxyCmp({
|
|
@@ -936,16 +892,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
936
892
|
}]
|
|
937
893
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
938
894
|
let BqOptionList = class BqOptionList {
|
|
939
|
-
z;
|
|
940
|
-
el;
|
|
941
895
|
constructor(c, r, z) {
|
|
942
896
|
this.z = z;
|
|
943
897
|
c.detach();
|
|
944
898
|
this.el = r.nativeElement;
|
|
945
899
|
proxyOutputs(this, this.el, ['bqSelect']);
|
|
946
900
|
}
|
|
947
|
-
/** @nocollapse */ static
|
|
948
|
-
/** @nocollapse */ static
|
|
901
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqOptionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
902
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
903
|
};
|
|
950
904
|
BqOptionList = __decorate([
|
|
951
905
|
ProxyCmp({
|
|
@@ -966,15 +920,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
966
920
|
}]
|
|
967
921
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
968
922
|
let BqPageTitle = class BqPageTitle {
|
|
969
|
-
z;
|
|
970
|
-
el;
|
|
971
923
|
constructor(c, r, z) {
|
|
972
924
|
this.z = z;
|
|
973
925
|
c.detach();
|
|
974
926
|
this.el = r.nativeElement;
|
|
975
927
|
}
|
|
976
|
-
/** @nocollapse */ static
|
|
977
|
-
/** @nocollapse */ static
|
|
928
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqPageTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
929
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqPageTitle, isStandalone: true, selector: "bq-page-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
978
930
|
};
|
|
979
931
|
BqPageTitle = __decorate([
|
|
980
932
|
ProxyCmp({
|
|
@@ -994,15 +946,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
994
946
|
}]
|
|
995
947
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
996
948
|
let BqPanel = class BqPanel {
|
|
997
|
-
z;
|
|
998
|
-
el;
|
|
999
949
|
constructor(c, r, z) {
|
|
1000
950
|
this.z = z;
|
|
1001
951
|
c.detach();
|
|
1002
952
|
this.el = r.nativeElement;
|
|
1003
953
|
}
|
|
1004
|
-
/** @nocollapse */ static
|
|
1005
|
-
/** @nocollapse */ static
|
|
954
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
955
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
956
|
};
|
|
1007
957
|
BqPanel = __decorate([
|
|
1008
958
|
ProxyCmp({
|
|
@@ -1023,15 +973,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1023
973
|
}]
|
|
1024
974
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1025
975
|
let BqProgress = class BqProgress {
|
|
1026
|
-
z;
|
|
1027
|
-
el;
|
|
1028
976
|
constructor(c, r, z) {
|
|
1029
977
|
this.z = z;
|
|
1030
978
|
c.detach();
|
|
1031
979
|
this.el = r.nativeElement;
|
|
1032
980
|
}
|
|
1033
|
-
/** @nocollapse */ static
|
|
1034
|
-
/** @nocollapse */ static
|
|
981
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
982
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
983
|
};
|
|
1036
984
|
BqProgress = __decorate([
|
|
1037
985
|
ProxyCmp({
|
|
@@ -1052,16 +1000,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1052
1000
|
}]
|
|
1053
1001
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1054
1002
|
let BqRadio = class BqRadio {
|
|
1055
|
-
z;
|
|
1056
|
-
el;
|
|
1057
1003
|
constructor(c, r, z) {
|
|
1058
1004
|
this.z = z;
|
|
1059
1005
|
c.detach();
|
|
1060
1006
|
this.el = r.nativeElement;
|
|
1061
1007
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
1062
1008
|
}
|
|
1063
|
-
/** @nocollapse */ static
|
|
1064
|
-
/** @nocollapse */ static
|
|
1009
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1010
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
1011
|
};
|
|
1066
1012
|
BqRadio = __decorate([
|
|
1067
1013
|
ProxyCmp({
|
|
@@ -1083,16 +1029,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1083
1029
|
}]
|
|
1084
1030
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1085
1031
|
let BqRadioGroup = class BqRadioGroup {
|
|
1086
|
-
z;
|
|
1087
|
-
el;
|
|
1088
1032
|
constructor(c, r, z) {
|
|
1089
1033
|
this.z = z;
|
|
1090
1034
|
c.detach();
|
|
1091
1035
|
this.el = r.nativeElement;
|
|
1092
1036
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
1093
1037
|
}
|
|
1094
|
-
/** @nocollapse */ static
|
|
1095
|
-
/** @nocollapse */ static
|
|
1038
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1039
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqRadioGroup, isStandalone: true, selector: "bq-radio-group", inputs: { backgroundOnHover: "backgroundOnHover", debounceTime: "debounceTime", disabled: "disabled", fieldset: "fieldset", name: "name", orientation: "orientation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1096
1040
|
};
|
|
1097
1041
|
BqRadioGroup = __decorate([
|
|
1098
1042
|
ProxyCmp({
|
|
@@ -1113,16 +1057,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1113
1057
|
}]
|
|
1114
1058
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1115
1059
|
let BqSelect = class BqSelect {
|
|
1116
|
-
z;
|
|
1117
|
-
el;
|
|
1118
1060
|
constructor(c, r, z) {
|
|
1119
1061
|
this.z = z;
|
|
1120
1062
|
c.detach();
|
|
1121
1063
|
this.el = r.nativeElement;
|
|
1122
1064
|
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect']);
|
|
1123
1065
|
}
|
|
1124
|
-
/** @nocollapse */ static
|
|
1125
|
-
/** @nocollapse */ static
|
|
1066
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1067
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
1068
|
};
|
|
1127
1069
|
BqSelect = __decorate([
|
|
1128
1070
|
ProxyCmp({
|
|
@@ -1144,16 +1086,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1144
1086
|
}]
|
|
1145
1087
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1146
1088
|
let BqSideMenu = class BqSideMenu {
|
|
1147
|
-
z;
|
|
1148
|
-
el;
|
|
1149
1089
|
constructor(c, r, z) {
|
|
1150
1090
|
this.z = z;
|
|
1151
1091
|
c.detach();
|
|
1152
1092
|
this.el = r.nativeElement;
|
|
1153
1093
|
proxyOutputs(this, this.el, ['bqCollapse', 'bqSelect']);
|
|
1154
1094
|
}
|
|
1155
|
-
/** @nocollapse */ static
|
|
1156
|
-
/** @nocollapse */ static
|
|
1095
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSideMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1096
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
1097
|
};
|
|
1158
1098
|
BqSideMenu = __decorate([
|
|
1159
1099
|
ProxyCmp({
|
|
@@ -1175,16 +1115,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1175
1115
|
}]
|
|
1176
1116
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1177
1117
|
let BqSideMenuItem = class BqSideMenuItem {
|
|
1178
|
-
z;
|
|
1179
|
-
el;
|
|
1180
1118
|
constructor(c, r, z) {
|
|
1181
1119
|
this.z = z;
|
|
1182
1120
|
c.detach();
|
|
1183
1121
|
this.el = r.nativeElement;
|
|
1184
1122
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
1185
1123
|
}
|
|
1186
|
-
/** @nocollapse */ static
|
|
1187
|
-
/** @nocollapse */ static
|
|
1124
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSideMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1125
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
1126
|
};
|
|
1189
1127
|
BqSideMenuItem = __decorate([
|
|
1190
1128
|
ProxyCmp({
|
|
@@ -1205,16 +1143,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1205
1143
|
}]
|
|
1206
1144
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1207
1145
|
let BqSlider = class BqSlider {
|
|
1208
|
-
z;
|
|
1209
|
-
el;
|
|
1210
1146
|
constructor(c, r, z) {
|
|
1211
1147
|
this.z = z;
|
|
1212
1148
|
c.detach();
|
|
1213
1149
|
this.el = r.nativeElement;
|
|
1214
1150
|
proxyOutputs(this, this.el, ['bqChange', 'bqBlur', 'bqFocus']);
|
|
1215
1151
|
}
|
|
1216
|
-
/** @nocollapse */ static
|
|
1217
|
-
/** @nocollapse */ static
|
|
1152
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1153
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqSlider, isStandalone: true, selector: "bq-slider", inputs: { debounceTime: "debounceTime", disabled: "disabled", enableTooltip: "enableTooltip", enableValueIndicator: "enableValueIndicator", gap: "gap", max: "max", min: "min", step: "step", tooltipAlwaysVisible: "tooltipAlwaysVisible", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1218
1154
|
};
|
|
1219
1155
|
BqSlider = __decorate([
|
|
1220
1156
|
ProxyCmp({
|
|
@@ -1235,15 +1171,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1235
1171
|
}]
|
|
1236
1172
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1237
1173
|
let BqSpinner = class BqSpinner {
|
|
1238
|
-
z;
|
|
1239
|
-
el;
|
|
1240
1174
|
constructor(c, r, z) {
|
|
1241
1175
|
this.z = z;
|
|
1242
1176
|
c.detach();
|
|
1243
1177
|
this.el = r.nativeElement;
|
|
1244
1178
|
}
|
|
1245
|
-
/** @nocollapse */ static
|
|
1246
|
-
/** @nocollapse */ static
|
|
1179
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1180
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
1181
|
};
|
|
1248
1182
|
BqSpinner = __decorate([
|
|
1249
1183
|
ProxyCmp({
|
|
@@ -1264,15 +1198,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1264
1198
|
}]
|
|
1265
1199
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1266
1200
|
let BqStatus = class BqStatus {
|
|
1267
|
-
z;
|
|
1268
|
-
el;
|
|
1269
1201
|
constructor(c, r, z) {
|
|
1270
1202
|
this.z = z;
|
|
1271
1203
|
c.detach();
|
|
1272
1204
|
this.el = r.nativeElement;
|
|
1273
1205
|
}
|
|
1274
|
-
/** @nocollapse */ static
|
|
1275
|
-
/** @nocollapse */ static
|
|
1206
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1207
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqStatus, isStandalone: true, selector: "bq-status", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1276
1208
|
};
|
|
1277
1209
|
BqStatus = __decorate([
|
|
1278
1210
|
ProxyCmp({
|
|
@@ -1293,16 +1225,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1293
1225
|
}]
|
|
1294
1226
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1295
1227
|
let BqStepItem = class BqStepItem {
|
|
1296
|
-
z;
|
|
1297
|
-
el;
|
|
1298
1228
|
constructor(c, r, z) {
|
|
1299
1229
|
this.z = z;
|
|
1300
1230
|
c.detach();
|
|
1301
1231
|
this.el = r.nativeElement;
|
|
1302
1232
|
proxyOutputs(this, this.el, ['bqClick']);
|
|
1303
1233
|
}
|
|
1304
|
-
/** @nocollapse */ static
|
|
1305
|
-
/** @nocollapse */ static
|
|
1234
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqStepItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1235
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
1236
|
};
|
|
1307
1237
|
BqStepItem = __decorate([
|
|
1308
1238
|
ProxyCmp({
|
|
@@ -1323,15 +1253,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1323
1253
|
}]
|
|
1324
1254
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1325
1255
|
let BqSteps = class BqSteps {
|
|
1326
|
-
z;
|
|
1327
|
-
el;
|
|
1328
1256
|
constructor(c, r, z) {
|
|
1329
1257
|
this.z = z;
|
|
1330
1258
|
c.detach();
|
|
1331
1259
|
this.el = r.nativeElement;
|
|
1332
1260
|
}
|
|
1333
|
-
/** @nocollapse */ static
|
|
1334
|
-
/** @nocollapse */ static
|
|
1261
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1262
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
1263
|
};
|
|
1336
1264
|
BqSteps = __decorate([
|
|
1337
1265
|
ProxyCmp({
|
|
@@ -1352,16 +1280,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1352
1280
|
}]
|
|
1353
1281
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1354
1282
|
let BqSwitch = class BqSwitch {
|
|
1355
|
-
z;
|
|
1356
|
-
el;
|
|
1357
1283
|
constructor(c, r, z) {
|
|
1358
1284
|
this.z = z;
|
|
1359
1285
|
c.detach();
|
|
1360
1286
|
this.el = r.nativeElement;
|
|
1361
1287
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
1362
1288
|
}
|
|
1363
|
-
/** @nocollapse */ static
|
|
1364
|
-
/** @nocollapse */ static
|
|
1289
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1290
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqSwitch, isStandalone: true, selector: "bq-switch", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", 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
1291
|
};
|
|
1366
1292
|
BqSwitch = __decorate([
|
|
1367
1293
|
ProxyCmp({
|
|
@@ -1383,16 +1309,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1383
1309
|
}]
|
|
1384
1310
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1385
1311
|
let BqTab = class BqTab {
|
|
1386
|
-
z;
|
|
1387
|
-
el;
|
|
1388
1312
|
constructor(c, r, z) {
|
|
1389
1313
|
this.z = z;
|
|
1390
1314
|
c.detach();
|
|
1391
1315
|
this.el = r.nativeElement;
|
|
1392
1316
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
1393
1317
|
}
|
|
1394
|
-
/** @nocollapse */ static
|
|
1395
|
-
/** @nocollapse */ static
|
|
1318
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1319
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
1320
|
};
|
|
1397
1321
|
BqTab = __decorate([
|
|
1398
1322
|
ProxyCmp({
|
|
@@ -1414,16 +1338,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1414
1338
|
}]
|
|
1415
1339
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1416
1340
|
let BqTabGroup = class BqTabGroup {
|
|
1417
|
-
z;
|
|
1418
|
-
el;
|
|
1419
1341
|
constructor(c, r, z) {
|
|
1420
1342
|
this.z = z;
|
|
1421
1343
|
c.detach();
|
|
1422
1344
|
this.el = r.nativeElement;
|
|
1423
1345
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
1424
1346
|
}
|
|
1425
|
-
/** @nocollapse */ static
|
|
1426
|
-
/** @nocollapse */ static
|
|
1347
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1348
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
1349
|
};
|
|
1428
1350
|
BqTabGroup = __decorate([
|
|
1429
1351
|
ProxyCmp({
|
|
@@ -1444,16 +1366,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1444
1366
|
}]
|
|
1445
1367
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1446
1368
|
let BqTag = class BqTag {
|
|
1447
|
-
z;
|
|
1448
|
-
el;
|
|
1449
1369
|
constructor(c, r, z) {
|
|
1450
1370
|
this.z = z;
|
|
1451
1371
|
c.detach();
|
|
1452
1372
|
this.el = r.nativeElement;
|
|
1453
1373
|
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus']);
|
|
1454
1374
|
}
|
|
1455
|
-
/** @nocollapse */ static
|
|
1456
|
-
/** @nocollapse */ static
|
|
1375
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1376
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
1377
|
};
|
|
1458
1378
|
BqTag = __decorate([
|
|
1459
1379
|
ProxyCmp({
|
|
@@ -1475,16 +1395,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1475
1395
|
}]
|
|
1476
1396
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1477
1397
|
let BqTextarea = class BqTextarea {
|
|
1478
|
-
z;
|
|
1479
|
-
el;
|
|
1480
1398
|
constructor(c, r, z) {
|
|
1481
1399
|
this.z = z;
|
|
1482
1400
|
c.detach();
|
|
1483
1401
|
this.el = r.nativeElement;
|
|
1484
1402
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
1485
1403
|
}
|
|
1486
|
-
/** @nocollapse */ static
|
|
1487
|
-
/** @nocollapse */ static
|
|
1404
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1405
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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", 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
1406
|
};
|
|
1489
1407
|
BqTextarea = __decorate([
|
|
1490
1408
|
ProxyCmp({
|
|
@@ -1505,16 +1423,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1505
1423
|
}]
|
|
1506
1424
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1507
1425
|
let BqToast = class BqToast {
|
|
1508
|
-
z;
|
|
1509
|
-
el;
|
|
1510
1426
|
constructor(c, r, z) {
|
|
1511
1427
|
this.z = z;
|
|
1512
1428
|
c.detach();
|
|
1513
1429
|
this.el = r.nativeElement;
|
|
1514
1430
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow']);
|
|
1515
1431
|
}
|
|
1516
|
-
/** @nocollapse */ static
|
|
1517
|
-
/** @nocollapse */ static
|
|
1432
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1433
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
1434
|
};
|
|
1519
1435
|
BqToast = __decorate([
|
|
1520
1436
|
ProxyCmp({
|
|
@@ -1536,15 +1452,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1536
1452
|
}]
|
|
1537
1453
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1538
1454
|
let BqTooltip = class BqTooltip {
|
|
1539
|
-
z;
|
|
1540
|
-
el;
|
|
1541
1455
|
constructor(c, r, z) {
|
|
1542
1456
|
this.z = z;
|
|
1543
1457
|
c.detach();
|
|
1544
1458
|
this.el = r.nativeElement;
|
|
1545
1459
|
}
|
|
1546
|
-
/** @nocollapse */ static
|
|
1547
|
-
/** @nocollapse */ static
|
|
1460
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1461
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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
1462
|
};
|
|
1549
1463
|
BqTooltip = __decorate([
|
|
1550
1464
|
ProxyCmp({
|