@beeq/angular 1.8.0-beta.13 → 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 +6 -6
- package/esm2022/directives/boolean-value-accessor.mjs +5 -5
- package/esm2022/directives/components.mjs +127 -211
- 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 +127 -211
- 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 +151 -237
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +156 -242
- 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,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.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
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
79
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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.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
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
103
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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.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
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
139
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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.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
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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.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
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
201
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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.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
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
232
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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
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({
|
|
@@ -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.9", 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.8", 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({
|
|
@@ -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.9", 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.8", 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({
|
|
@@ -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.9", 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.8", 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({
|
|
@@ -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.9", 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.8", 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({
|
|
@@ -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.9", ngImport: i0, type: BqBadge, decorators: [{
|
|
448
436
|
type: Component,
|
|
449
437
|
args: [{
|
|
450
438
|
selector: 'bq-badge',
|
|
@@ -456,16 +444,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -474,7 +460,7 @@ BqBreadcrumb = __decorate([
|
|
|
474
460
|
}),
|
|
475
461
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
476
462
|
], BqBreadcrumb);
|
|
477
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
463
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqBreadcrumb, decorators: [{
|
|
478
464
|
type: Component,
|
|
479
465
|
args: [{
|
|
480
466
|
selector: 'bq-breadcrumb',
|
|
@@ -486,16 +472,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -504,7 +488,7 @@ BqBreadcrumbItem = __decorate([
|
|
|
504
488
|
}),
|
|
505
489
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
506
490
|
], BqBreadcrumbItem);
|
|
507
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
491
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqBreadcrumbItem, decorators: [{
|
|
508
492
|
type: Component,
|
|
509
493
|
args: [{
|
|
510
494
|
selector: 'bq-breadcrumb-item',
|
|
@@ -516,16 +500,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -534,7 +516,7 @@ BqButton = __decorate([
|
|
|
534
516
|
}),
|
|
535
517
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
536
518
|
], BqButton);
|
|
537
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
519
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqButton, decorators: [{
|
|
538
520
|
type: Component,
|
|
539
521
|
args: [{
|
|
540
522
|
selector: 'bq-button',
|
|
@@ -546,15 +528,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -563,7 +543,7 @@ BqCard = __decorate([
|
|
|
563
543
|
}),
|
|
564
544
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
565
545
|
], BqCard);
|
|
566
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
546
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqCard, decorators: [{
|
|
567
547
|
type: Component,
|
|
568
548
|
args: [{
|
|
569
549
|
selector: 'bq-card',
|
|
@@ -575,16 +555,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -594,7 +572,7 @@ BqCheckbox = __decorate([
|
|
|
594
572
|
}),
|
|
595
573
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
596
574
|
], BqCheckbox);
|
|
597
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
575
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqCheckbox, decorators: [{
|
|
598
576
|
type: Component,
|
|
599
577
|
args: [{
|
|
600
578
|
selector: 'bq-checkbox',
|
|
@@ -606,16 +584,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -625,7 +601,7 @@ BqDatePicker = __decorate([
|
|
|
625
601
|
}),
|
|
626
602
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
627
603
|
], BqDatePicker);
|
|
628
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
604
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqDatePicker, decorators: [{
|
|
629
605
|
type: Component,
|
|
630
606
|
args: [{
|
|
631
607
|
selector: 'bq-date-picker',
|
|
@@ -637,16 +613,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -656,7 +630,7 @@ BqDialog = __decorate([
|
|
|
656
630
|
}),
|
|
657
631
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
658
632
|
], BqDialog);
|
|
659
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
633
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqDialog, decorators: [{
|
|
660
634
|
type: Component,
|
|
661
635
|
args: [{
|
|
662
636
|
selector: 'bq-dialog',
|
|
@@ -668,15 +642,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -685,7 +657,7 @@ BqDivider = __decorate([
|
|
|
685
657
|
}),
|
|
686
658
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
687
659
|
], BqDivider);
|
|
688
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
660
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqDivider, decorators: [{
|
|
689
661
|
type: Component,
|
|
690
662
|
args: [{
|
|
691
663
|
selector: 'bq-divider',
|
|
@@ -697,16 +669,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -716,7 +686,7 @@ BqDrawer = __decorate([
|
|
|
716
686
|
}),
|
|
717
687
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
718
688
|
], BqDrawer);
|
|
719
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
689
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqDrawer, decorators: [{
|
|
720
690
|
type: Component,
|
|
721
691
|
args: [{
|
|
722
692
|
selector: 'bq-drawer',
|
|
@@ -728,16 +698,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -746,7 +714,7 @@ BqDropdown = __decorate([
|
|
|
746
714
|
}),
|
|
747
715
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
748
716
|
], BqDropdown);
|
|
749
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
717
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqDropdown, decorators: [{
|
|
750
718
|
type: Component,
|
|
751
719
|
args: [{
|
|
752
720
|
selector: 'bq-dropdown',
|
|
@@ -758,15 +726,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -775,7 +741,7 @@ BqEmptyState = __decorate([
|
|
|
775
741
|
}),
|
|
776
742
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
777
743
|
], BqEmptyState);
|
|
778
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
744
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqEmptyState, decorators: [{
|
|
779
745
|
type: Component,
|
|
780
746
|
args: [{
|
|
781
747
|
selector: 'bq-empty-state',
|
|
@@ -787,16 +753,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -805,7 +769,7 @@ BqIcon = __decorate([
|
|
|
805
769
|
}),
|
|
806
770
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
807
771
|
], BqIcon);
|
|
808
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
772
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqIcon, decorators: [{
|
|
809
773
|
type: Component,
|
|
810
774
|
args: [{
|
|
811
775
|
selector: 'bq-icon',
|
|
@@ -817,16 +781,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -835,7 +797,7 @@ BqInput = __decorate([
|
|
|
835
797
|
}),
|
|
836
798
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
837
799
|
], BqInput);
|
|
838
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
800
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqInput, decorators: [{
|
|
839
801
|
type: Component,
|
|
840
802
|
args: [{
|
|
841
803
|
selector: 'bq-input',
|
|
@@ -847,16 +809,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -866,7 +826,7 @@ BqNotification = __decorate([
|
|
|
866
826
|
}),
|
|
867
827
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
868
828
|
], BqNotification);
|
|
869
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
829
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqNotification, decorators: [{
|
|
870
830
|
type: Component,
|
|
871
831
|
args: [{
|
|
872
832
|
selector: 'bq-notification',
|
|
@@ -878,16 +838,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -896,7 +854,7 @@ BqOption = __decorate([
|
|
|
896
854
|
}),
|
|
897
855
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
898
856
|
], BqOption);
|
|
899
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
857
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqOption, decorators: [{
|
|
900
858
|
type: Component,
|
|
901
859
|
args: [{
|
|
902
860
|
selector: 'bq-option',
|
|
@@ -908,15 +866,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -924,7 +880,7 @@ BqOptionGroup = __decorate([
|
|
|
924
880
|
}),
|
|
925
881
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
926
882
|
], BqOptionGroup);
|
|
927
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
883
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqOptionGroup, decorators: [{
|
|
928
884
|
type: Component,
|
|
929
885
|
args: [{
|
|
930
886
|
selector: 'bq-option-group',
|
|
@@ -936,16 +892,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -954,7 +908,7 @@ BqOptionList = __decorate([
|
|
|
954
908
|
}),
|
|
955
909
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
956
910
|
], BqOptionList);
|
|
957
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
911
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqOptionList, decorators: [{
|
|
958
912
|
type: Component,
|
|
959
913
|
args: [{
|
|
960
914
|
selector: 'bq-option-list',
|
|
@@ -966,15 +920,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -982,7 +934,7 @@ BqPageTitle = __decorate([
|
|
|
982
934
|
}),
|
|
983
935
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
984
936
|
], BqPageTitle);
|
|
985
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
937
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqPageTitle, decorators: [{
|
|
986
938
|
type: Component,
|
|
987
939
|
args: [{
|
|
988
940
|
selector: 'bq-page-title',
|
|
@@ -994,15 +946,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1011,7 +961,7 @@ BqPanel = __decorate([
|
|
|
1011
961
|
}),
|
|
1012
962
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1013
963
|
], BqPanel);
|
|
1014
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
964
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqPanel, decorators: [{
|
|
1015
965
|
type: Component,
|
|
1016
966
|
args: [{
|
|
1017
967
|
selector: 'bq-panel',
|
|
@@ -1023,15 +973,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1040,7 +988,7 @@ BqProgress = __decorate([
|
|
|
1040
988
|
}),
|
|
1041
989
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1042
990
|
], BqProgress);
|
|
1043
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
991
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqProgress, decorators: [{
|
|
1044
992
|
type: Component,
|
|
1045
993
|
args: [{
|
|
1046
994
|
selector: 'bq-progress',
|
|
@@ -1052,16 +1000,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1071,7 +1017,7 @@ BqRadio = __decorate([
|
|
|
1071
1017
|
}),
|
|
1072
1018
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1073
1019
|
], BqRadio);
|
|
1074
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1020
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqRadio, decorators: [{
|
|
1075
1021
|
type: Component,
|
|
1076
1022
|
args: [{
|
|
1077
1023
|
selector: 'bq-radio',
|
|
@@ -1083,16 +1029,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1101,7 +1045,7 @@ BqRadioGroup = __decorate([
|
|
|
1101
1045
|
}),
|
|
1102
1046
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1103
1047
|
], BqRadioGroup);
|
|
1104
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1048
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqRadioGroup, decorators: [{
|
|
1105
1049
|
type: Component,
|
|
1106
1050
|
args: [{
|
|
1107
1051
|
selector: 'bq-radio-group',
|
|
@@ -1113,16 +1057,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1132,7 +1074,7 @@ BqSelect = __decorate([
|
|
|
1132
1074
|
}),
|
|
1133
1075
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1134
1076
|
], BqSelect);
|
|
1135
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1077
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSelect, decorators: [{
|
|
1136
1078
|
type: Component,
|
|
1137
1079
|
args: [{
|
|
1138
1080
|
selector: 'bq-select',
|
|
@@ -1144,16 +1086,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1163,7 +1103,7 @@ BqSideMenu = __decorate([
|
|
|
1163
1103
|
}),
|
|
1164
1104
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1165
1105
|
], BqSideMenu);
|
|
1166
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1106
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSideMenu, decorators: [{
|
|
1167
1107
|
type: Component,
|
|
1168
1108
|
args: [{
|
|
1169
1109
|
selector: 'bq-side-menu',
|
|
@@ -1175,16 +1115,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1193,7 +1131,7 @@ BqSideMenuItem = __decorate([
|
|
|
1193
1131
|
}),
|
|
1194
1132
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1195
1133
|
], BqSideMenuItem);
|
|
1196
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1134
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSideMenuItem, decorators: [{
|
|
1197
1135
|
type: Component,
|
|
1198
1136
|
args: [{
|
|
1199
1137
|
selector: 'bq-side-menu-item',
|
|
@@ -1205,16 +1143,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1223,7 +1159,7 @@ BqSlider = __decorate([
|
|
|
1223
1159
|
}),
|
|
1224
1160
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1225
1161
|
], BqSlider);
|
|
1226
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1162
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSlider, decorators: [{
|
|
1227
1163
|
type: Component,
|
|
1228
1164
|
args: [{
|
|
1229
1165
|
selector: 'bq-slider',
|
|
@@ -1235,15 +1171,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1252,7 +1186,7 @@ BqSpinner = __decorate([
|
|
|
1252
1186
|
}),
|
|
1253
1187
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1254
1188
|
], BqSpinner);
|
|
1255
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1189
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSpinner, decorators: [{
|
|
1256
1190
|
type: Component,
|
|
1257
1191
|
args: [{
|
|
1258
1192
|
selector: 'bq-spinner',
|
|
@@ -1264,15 +1198,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1281,7 +1213,7 @@ BqStatus = __decorate([
|
|
|
1281
1213
|
}),
|
|
1282
1214
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1283
1215
|
], BqStatus);
|
|
1284
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1216
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqStatus, decorators: [{
|
|
1285
1217
|
type: Component,
|
|
1286
1218
|
args: [{
|
|
1287
1219
|
selector: 'bq-status',
|
|
@@ -1293,16 +1225,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1311,7 +1241,7 @@ BqStepItem = __decorate([
|
|
|
1311
1241
|
}),
|
|
1312
1242
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1313
1243
|
], BqStepItem);
|
|
1314
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1244
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqStepItem, decorators: [{
|
|
1315
1245
|
type: Component,
|
|
1316
1246
|
args: [{
|
|
1317
1247
|
selector: 'bq-step-item',
|
|
@@ -1323,15 +1253,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1340,7 +1268,7 @@ BqSteps = __decorate([
|
|
|
1340
1268
|
}),
|
|
1341
1269
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1342
1270
|
], BqSteps);
|
|
1343
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1271
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSteps, decorators: [{
|
|
1344
1272
|
type: Component,
|
|
1345
1273
|
args: [{
|
|
1346
1274
|
selector: 'bq-steps',
|
|
@@ -1352,16 +1280,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1371,7 +1297,7 @@ BqSwitch = __decorate([
|
|
|
1371
1297
|
}),
|
|
1372
1298
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1373
1299
|
], BqSwitch);
|
|
1374
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1300
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSwitch, decorators: [{
|
|
1375
1301
|
type: Component,
|
|
1376
1302
|
args: [{
|
|
1377
1303
|
selector: 'bq-switch',
|
|
@@ -1383,16 +1309,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1402,7 +1326,7 @@ BqTab = __decorate([
|
|
|
1402
1326
|
}),
|
|
1403
1327
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1404
1328
|
], BqTab);
|
|
1405
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1329
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqTab, decorators: [{
|
|
1406
1330
|
type: Component,
|
|
1407
1331
|
args: [{
|
|
1408
1332
|
selector: 'bq-tab',
|
|
@@ -1414,16 +1338,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1432,7 +1354,7 @@ BqTabGroup = __decorate([
|
|
|
1432
1354
|
}),
|
|
1433
1355
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1434
1356
|
], BqTabGroup);
|
|
1435
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1357
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqTabGroup, decorators: [{
|
|
1436
1358
|
type: Component,
|
|
1437
1359
|
args: [{
|
|
1438
1360
|
selector: 'bq-tab-group',
|
|
@@ -1444,16 +1366,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1463,7 +1383,7 @@ BqTag = __decorate([
|
|
|
1463
1383
|
}),
|
|
1464
1384
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1465
1385
|
], BqTag);
|
|
1466
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1386
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqTag, decorators: [{
|
|
1467
1387
|
type: Component,
|
|
1468
1388
|
args: [{
|
|
1469
1389
|
selector: 'bq-tag',
|
|
@@ -1475,16 +1395,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1493,7 +1411,7 @@ BqTextarea = __decorate([
|
|
|
1493
1411
|
}),
|
|
1494
1412
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1495
1413
|
], BqTextarea);
|
|
1496
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1414
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqTextarea, decorators: [{
|
|
1497
1415
|
type: Component,
|
|
1498
1416
|
args: [{
|
|
1499
1417
|
selector: 'bq-textarea',
|
|
@@ -1505,16 +1423,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1524,7 +1440,7 @@ BqToast = __decorate([
|
|
|
1524
1440
|
}),
|
|
1525
1441
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1526
1442
|
], BqToast);
|
|
1527
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1443
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqToast, decorators: [{
|
|
1528
1444
|
type: Component,
|
|
1529
1445
|
args: [{
|
|
1530
1446
|
selector: 'bq-toast',
|
|
@@ -1536,15 +1452,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", 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({
|
|
@@ -1554,7 +1468,7 @@ BqTooltip = __decorate([
|
|
|
1554
1468
|
}),
|
|
1555
1469
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1556
1470
|
], BqTooltip);
|
|
1557
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1471
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqTooltip, decorators: [{
|
|
1558
1472
|
type: Component,
|
|
1559
1473
|
args: [{
|
|
1560
1474
|
selector: 'bq-tooltip',
|