@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
|
@@ -7,12 +7,10 @@ import { DOCUMENT, CommonModule } from '@angular/common';
|
|
|
7
7
|
import { defineCustomElements } from '@beeq/core/dist/loader';
|
|
8
8
|
|
|
9
9
|
class ValueAccessor {
|
|
10
|
-
el;
|
|
11
|
-
onChange = () => { };
|
|
12
|
-
onTouched = () => { };
|
|
13
|
-
lastValue;
|
|
14
10
|
constructor(el) {
|
|
15
11
|
this.el = el;
|
|
12
|
+
this.onChange = () => { };
|
|
13
|
+
this.onTouched = () => { };
|
|
16
14
|
}
|
|
17
15
|
writeValue(value) {
|
|
18
16
|
this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
|
|
@@ -35,10 +33,10 @@ class ValueAccessor {
|
|
|
35
33
|
setDisabledState(isDisabled) {
|
|
36
34
|
this.el.nativeElement.disabled = isDisabled;
|
|
37
35
|
}
|
|
38
|
-
/** @nocollapse */ static
|
|
39
|
-
/** @nocollapse */ static
|
|
36
|
+
/** @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 }); }
|
|
37
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.9", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 }); }
|
|
40
38
|
}
|
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
42
40
|
type: Directive,
|
|
43
41
|
args: [{}]
|
|
44
42
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
@@ -53,16 +51,16 @@ class BooleanValueAccessor extends ValueAccessor {
|
|
|
53
51
|
writeValue(value) {
|
|
54
52
|
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
55
53
|
}
|
|
56
|
-
/** @nocollapse */ static
|
|
57
|
-
/** @nocollapse */ static
|
|
54
|
+
/** @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 }); }
|
|
55
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.9", type: BooleanValueAccessor, selector: "bq-checkbox, bq-switch", host: { listeners: { "bqChange": "handleChangeEvent($event.target.checked)" } }, providers: [
|
|
58
56
|
{
|
|
59
57
|
provide: NG_VALUE_ACCESSOR,
|
|
60
58
|
useExisting: BooleanValueAccessor,
|
|
61
59
|
multi: true
|
|
62
60
|
}
|
|
63
|
-
], usesInheritance: true, ngImport: i0 });
|
|
61
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
64
62
|
}
|
|
65
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
63
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
66
64
|
type: Directive,
|
|
67
65
|
args: [{
|
|
68
66
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -89,16 +87,16 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
89
87
|
fn(value === '' ? null : parseFloat(value));
|
|
90
88
|
});
|
|
91
89
|
}
|
|
92
|
-
/** @nocollapse */ static
|
|
93
|
-
/** @nocollapse */ static
|
|
90
|
+
/** @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 }); }
|
|
91
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.9", type: NumericValueAccessor, selector: "bq-input[type=\"number\"], bq-slider:not[type=\"range\"]", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
94
92
|
{
|
|
95
93
|
provide: NG_VALUE_ACCESSOR,
|
|
96
94
|
useExisting: NumericValueAccessor,
|
|
97
95
|
multi: true
|
|
98
96
|
}
|
|
99
|
-
], usesInheritance: true, ngImport: i0 });
|
|
97
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
100
98
|
}
|
|
101
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
99
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
102
100
|
type: Directive,
|
|
103
101
|
args: [{
|
|
104
102
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -120,16 +118,16 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
120
118
|
constructor(el) {
|
|
121
119
|
super(el);
|
|
122
120
|
}
|
|
123
|
-
/** @nocollapse */ static
|
|
124
|
-
/** @nocollapse */ static
|
|
121
|
+
/** @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 }); }
|
|
122
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.9", type: RadioValueAccessor, selector: "bq-radio-group", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
125
123
|
{
|
|
126
124
|
provide: NG_VALUE_ACCESSOR,
|
|
127
125
|
useExisting: RadioValueAccessor,
|
|
128
126
|
multi: true
|
|
129
127
|
}
|
|
130
|
-
], usesInheritance: true, ngImport: i0 });
|
|
128
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
131
129
|
}
|
|
132
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
130
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
133
131
|
type: Directive,
|
|
134
132
|
args: [{
|
|
135
133
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -151,16 +149,16 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
151
149
|
constructor(el) {
|
|
152
150
|
super(el);
|
|
153
151
|
}
|
|
154
|
-
/** @nocollapse */ static
|
|
155
|
-
/** @nocollapse */ static
|
|
152
|
+
/** @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 }); }
|
|
153
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.9", type: SelectValueAccessor, selector: "bq-select", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
156
154
|
{
|
|
157
155
|
provide: NG_VALUE_ACCESSOR,
|
|
158
156
|
useExisting: SelectValueAccessor,
|
|
159
157
|
multi: true
|
|
160
158
|
}
|
|
161
|
-
], usesInheritance: true, ngImport: i0 });
|
|
159
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
162
160
|
}
|
|
163
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
161
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
164
162
|
type: Directive,
|
|
165
163
|
args: [{
|
|
166
164
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -182,16 +180,16 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
182
180
|
constructor(el) {
|
|
183
181
|
super(el);
|
|
184
182
|
}
|
|
185
|
-
/** @nocollapse */ static
|
|
186
|
-
/** @nocollapse */ static
|
|
183
|
+
/** @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 }); }
|
|
184
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.9", type: TextValueAccessor, selector: "bq-date-picker, bq-input:not[type=\"number\"], bq-slider[type=\"range\", bq-textarea", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
187
185
|
{
|
|
188
186
|
provide: NG_VALUE_ACCESSOR,
|
|
189
187
|
useExisting: TextValueAccessor,
|
|
190
188
|
multi: true
|
|
191
189
|
}
|
|
192
|
-
], usesInheritance: true, ngImport: i0 });
|
|
190
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
193
191
|
}
|
|
194
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
192
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
195
193
|
type: Directive,
|
|
196
194
|
args: [{
|
|
197
195
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -268,16 +266,14 @@ function ProxyCmp(opts) {
|
|
|
268
266
|
}
|
|
269
267
|
|
|
270
268
|
let BqAccordion = class BqAccordion {
|
|
271
|
-
z;
|
|
272
|
-
el;
|
|
273
269
|
constructor(c, r, z) {
|
|
274
270
|
this.z = z;
|
|
275
271
|
c.detach();
|
|
276
272
|
this.el = r.nativeElement;
|
|
277
273
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqOpen', 'bqAfterOpen', 'bqClose', 'bqAfterClose']);
|
|
278
274
|
}
|
|
279
|
-
/** @nocollapse */ static
|
|
280
|
-
/** @nocollapse */ static
|
|
275
|
+
/** @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 }); }
|
|
276
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqAccordion, 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 }); }
|
|
281
277
|
};
|
|
282
278
|
BqAccordion = __decorate([
|
|
283
279
|
ProxyCmp({
|
|
@@ -285,7 +281,7 @@ BqAccordion = __decorate([
|
|
|
285
281
|
}),
|
|
286
282
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
287
283
|
], BqAccordion);
|
|
288
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
284
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqAccordion, decorators: [{
|
|
289
285
|
type: Component,
|
|
290
286
|
args: [{
|
|
291
287
|
selector: 'bq-accordion',
|
|
@@ -296,15 +292,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
296
292
|
}]
|
|
297
293
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
298
294
|
let BqAccordionGroup = class BqAccordionGroup {
|
|
299
|
-
z;
|
|
300
|
-
el;
|
|
301
295
|
constructor(c, r, z) {
|
|
302
296
|
this.z = z;
|
|
303
297
|
c.detach();
|
|
304
298
|
this.el = r.nativeElement;
|
|
305
299
|
}
|
|
306
|
-
/** @nocollapse */ static
|
|
307
|
-
/** @nocollapse */ static
|
|
300
|
+
/** @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 }); }
|
|
301
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqAccordionGroup, 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 }); }
|
|
308
302
|
};
|
|
309
303
|
BqAccordionGroup = __decorate([
|
|
310
304
|
ProxyCmp({
|
|
@@ -312,7 +306,7 @@ BqAccordionGroup = __decorate([
|
|
|
312
306
|
}),
|
|
313
307
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
314
308
|
], BqAccordionGroup);
|
|
315
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
309
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqAccordionGroup, decorators: [{
|
|
316
310
|
type: Component,
|
|
317
311
|
args: [{
|
|
318
312
|
selector: 'bq-accordion-group',
|
|
@@ -323,16 +317,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
323
317
|
}]
|
|
324
318
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
325
319
|
let BqAlert = class BqAlert {
|
|
326
|
-
z;
|
|
327
|
-
el;
|
|
328
320
|
constructor(c, r, z) {
|
|
329
321
|
this.z = z;
|
|
330
322
|
c.detach();
|
|
331
323
|
this.el = r.nativeElement;
|
|
332
324
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterShow', 'bqAfterHide']);
|
|
333
325
|
}
|
|
334
|
-
/** @nocollapse */ static
|
|
335
|
-
/** @nocollapse */ static
|
|
326
|
+
/** @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 }); }
|
|
327
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqAlert, 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 }); }
|
|
336
328
|
};
|
|
337
329
|
BqAlert = __decorate([
|
|
338
330
|
ProxyCmp({
|
|
@@ -341,7 +333,7 @@ BqAlert = __decorate([
|
|
|
341
333
|
}),
|
|
342
334
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
343
335
|
], BqAlert);
|
|
344
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
336
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqAlert, decorators: [{
|
|
345
337
|
type: Component,
|
|
346
338
|
args: [{
|
|
347
339
|
selector: 'bq-alert',
|
|
@@ -352,15 +344,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
352
344
|
}]
|
|
353
345
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
354
346
|
let BqAvatar = class BqAvatar {
|
|
355
|
-
z;
|
|
356
|
-
el;
|
|
357
347
|
constructor(c, r, z) {
|
|
358
348
|
this.z = z;
|
|
359
349
|
c.detach();
|
|
360
350
|
this.el = r.nativeElement;
|
|
361
351
|
}
|
|
362
|
-
/** @nocollapse */ static
|
|
363
|
-
/** @nocollapse */ static
|
|
352
|
+
/** @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 }); }
|
|
353
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqAvatar, 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 }); }
|
|
364
354
|
};
|
|
365
355
|
BqAvatar = __decorate([
|
|
366
356
|
ProxyCmp({
|
|
@@ -368,7 +358,7 @@ BqAvatar = __decorate([
|
|
|
368
358
|
}),
|
|
369
359
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
370
360
|
], BqAvatar);
|
|
371
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
361
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqAvatar, decorators: [{
|
|
372
362
|
type: Component,
|
|
373
363
|
args: [{
|
|
374
364
|
selector: 'bq-avatar',
|
|
@@ -379,15 +369,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
379
369
|
}]
|
|
380
370
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
381
371
|
let BqBadge = class BqBadge {
|
|
382
|
-
z;
|
|
383
|
-
el;
|
|
384
372
|
constructor(c, r, z) {
|
|
385
373
|
this.z = z;
|
|
386
374
|
c.detach();
|
|
387
375
|
this.el = r.nativeElement;
|
|
388
376
|
}
|
|
389
|
-
/** @nocollapse */ static
|
|
390
|
-
/** @nocollapse */ static
|
|
377
|
+
/** @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 }); }
|
|
378
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqBadge, selector: "bq-badge", inputs: { backgroundColor: "backgroundColor", size: "size", textColor: "textColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
391
379
|
};
|
|
392
380
|
BqBadge = __decorate([
|
|
393
381
|
ProxyCmp({
|
|
@@ -395,7 +383,7 @@ BqBadge = __decorate([
|
|
|
395
383
|
}),
|
|
396
384
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
397
385
|
], BqBadge);
|
|
398
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
386
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqBadge, decorators: [{
|
|
399
387
|
type: Component,
|
|
400
388
|
args: [{
|
|
401
389
|
selector: 'bq-badge',
|
|
@@ -406,16 +394,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
406
394
|
}]
|
|
407
395
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
408
396
|
let BqBreadcrumb = class BqBreadcrumb {
|
|
409
|
-
z;
|
|
410
|
-
el;
|
|
411
397
|
constructor(c, r, z) {
|
|
412
398
|
this.z = z;
|
|
413
399
|
c.detach();
|
|
414
400
|
this.el = r.nativeElement;
|
|
415
401
|
proxyOutputs(this, this.el, ['bqBreadcrumbBlur', 'bqBreadcrumbFocus', 'bqBreadcrumbClick']);
|
|
416
402
|
}
|
|
417
|
-
/** @nocollapse */ static
|
|
418
|
-
/** @nocollapse */ static
|
|
403
|
+
/** @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 }); }
|
|
404
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqBreadcrumb, selector: "bq-breadcrumb", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
419
405
|
};
|
|
420
406
|
BqBreadcrumb = __decorate([
|
|
421
407
|
ProxyCmp({
|
|
@@ -423,7 +409,7 @@ BqBreadcrumb = __decorate([
|
|
|
423
409
|
}),
|
|
424
410
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
425
411
|
], BqBreadcrumb);
|
|
426
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
412
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqBreadcrumb, decorators: [{
|
|
427
413
|
type: Component,
|
|
428
414
|
args: [{
|
|
429
415
|
selector: 'bq-breadcrumb',
|
|
@@ -434,16 +420,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
434
420
|
}]
|
|
435
421
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
436
422
|
let BqBreadcrumbItem = class BqBreadcrumbItem {
|
|
437
|
-
z;
|
|
438
|
-
el;
|
|
439
423
|
constructor(c, r, z) {
|
|
440
424
|
this.z = z;
|
|
441
425
|
c.detach();
|
|
442
426
|
this.el = r.nativeElement;
|
|
443
427
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
444
428
|
}
|
|
445
|
-
/** @nocollapse */ static
|
|
446
|
-
/** @nocollapse */ static
|
|
429
|
+
/** @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 }); }
|
|
430
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqBreadcrumbItem, 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 }); }
|
|
447
431
|
};
|
|
448
432
|
BqBreadcrumbItem = __decorate([
|
|
449
433
|
ProxyCmp({
|
|
@@ -451,7 +435,7 @@ BqBreadcrumbItem = __decorate([
|
|
|
451
435
|
}),
|
|
452
436
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
453
437
|
], BqBreadcrumbItem);
|
|
454
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
438
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqBreadcrumbItem, decorators: [{
|
|
455
439
|
type: Component,
|
|
456
440
|
args: [{
|
|
457
441
|
selector: 'bq-breadcrumb-item',
|
|
@@ -462,16 +446,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
462
446
|
}]
|
|
463
447
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
464
448
|
let BqButton = class BqButton {
|
|
465
|
-
z;
|
|
466
|
-
el;
|
|
467
449
|
constructor(c, r, z) {
|
|
468
450
|
this.z = z;
|
|
469
451
|
c.detach();
|
|
470
452
|
this.el = r.nativeElement;
|
|
471
453
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
472
454
|
}
|
|
473
|
-
/** @nocollapse */ static
|
|
474
|
-
/** @nocollapse */ static
|
|
455
|
+
/** @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 }); }
|
|
456
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqButton, 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 }); }
|
|
475
457
|
};
|
|
476
458
|
BqButton = __decorate([
|
|
477
459
|
ProxyCmp({
|
|
@@ -479,7 +461,7 @@ BqButton = __decorate([
|
|
|
479
461
|
}),
|
|
480
462
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
481
463
|
], BqButton);
|
|
482
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
464
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqButton, decorators: [{
|
|
483
465
|
type: Component,
|
|
484
466
|
args: [{
|
|
485
467
|
selector: 'bq-button',
|
|
@@ -490,15 +472,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
490
472
|
}]
|
|
491
473
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
492
474
|
let BqCard = class BqCard {
|
|
493
|
-
z;
|
|
494
|
-
el;
|
|
495
475
|
constructor(c, r, z) {
|
|
496
476
|
this.z = z;
|
|
497
477
|
c.detach();
|
|
498
478
|
this.el = r.nativeElement;
|
|
499
479
|
}
|
|
500
|
-
/** @nocollapse */ static
|
|
501
|
-
/** @nocollapse */ static
|
|
480
|
+
/** @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 }); }
|
|
481
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqCard, selector: "bq-card", inputs: { border: "border", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
502
482
|
};
|
|
503
483
|
BqCard = __decorate([
|
|
504
484
|
ProxyCmp({
|
|
@@ -506,7 +486,7 @@ BqCard = __decorate([
|
|
|
506
486
|
}),
|
|
507
487
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
508
488
|
], BqCard);
|
|
509
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
489
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqCard, decorators: [{
|
|
510
490
|
type: Component,
|
|
511
491
|
args: [{
|
|
512
492
|
selector: 'bq-card',
|
|
@@ -517,16 +497,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
517
497
|
}]
|
|
518
498
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
519
499
|
let BqCheckbox = class BqCheckbox {
|
|
520
|
-
z;
|
|
521
|
-
el;
|
|
522
500
|
constructor(c, r, z) {
|
|
523
501
|
this.z = z;
|
|
524
502
|
c.detach();
|
|
525
503
|
this.el = r.nativeElement;
|
|
526
504
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
527
505
|
}
|
|
528
|
-
/** @nocollapse */ static
|
|
529
|
-
/** @nocollapse */ static
|
|
506
|
+
/** @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 }); }
|
|
507
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqCheckbox, 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 }); }
|
|
530
508
|
};
|
|
531
509
|
BqCheckbox = __decorate([
|
|
532
510
|
ProxyCmp({
|
|
@@ -535,7 +513,7 @@ BqCheckbox = __decorate([
|
|
|
535
513
|
}),
|
|
536
514
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
537
515
|
], BqCheckbox);
|
|
538
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
516
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqCheckbox, decorators: [{
|
|
539
517
|
type: Component,
|
|
540
518
|
args: [{
|
|
541
519
|
selector: 'bq-checkbox',
|
|
@@ -546,16 +524,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
546
524
|
}]
|
|
547
525
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
548
526
|
let BqDatePicker = class BqDatePicker {
|
|
549
|
-
z;
|
|
550
|
-
el;
|
|
551
527
|
constructor(c, r, z) {
|
|
552
528
|
this.z = z;
|
|
553
529
|
c.detach();
|
|
554
530
|
this.el = r.nativeElement;
|
|
555
531
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus']);
|
|
556
532
|
}
|
|
557
|
-
/** @nocollapse */ static
|
|
558
|
-
/** @nocollapse */ static
|
|
533
|
+
/** @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 }); }
|
|
534
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqDatePicker, 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 }); }
|
|
559
535
|
};
|
|
560
536
|
BqDatePicker = __decorate([
|
|
561
537
|
ProxyCmp({
|
|
@@ -564,7 +540,7 @@ BqDatePicker = __decorate([
|
|
|
564
540
|
}),
|
|
565
541
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
566
542
|
], BqDatePicker);
|
|
567
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
543
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqDatePicker, decorators: [{
|
|
568
544
|
type: Component,
|
|
569
545
|
args: [{
|
|
570
546
|
selector: 'bq-date-picker',
|
|
@@ -575,16 +551,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
575
551
|
}]
|
|
576
552
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
577
553
|
let BqDialog = class BqDialog {
|
|
578
|
-
z;
|
|
579
|
-
el;
|
|
580
554
|
constructor(c, r, z) {
|
|
581
555
|
this.z = z;
|
|
582
556
|
c.detach();
|
|
583
557
|
this.el = r.nativeElement;
|
|
584
558
|
proxyOutputs(this, this.el, ['bqCancel', 'bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
585
559
|
}
|
|
586
|
-
/** @nocollapse */ static
|
|
587
|
-
/** @nocollapse */ static
|
|
560
|
+
/** @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 }); }
|
|
561
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqDialog, 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 }); }
|
|
588
562
|
};
|
|
589
563
|
BqDialog = __decorate([
|
|
590
564
|
ProxyCmp({
|
|
@@ -593,7 +567,7 @@ BqDialog = __decorate([
|
|
|
593
567
|
}),
|
|
594
568
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
595
569
|
], BqDialog);
|
|
596
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
570
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqDialog, decorators: [{
|
|
597
571
|
type: Component,
|
|
598
572
|
args: [{
|
|
599
573
|
selector: 'bq-dialog',
|
|
@@ -604,15 +578,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
604
578
|
}]
|
|
605
579
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
606
580
|
let BqDivider = class BqDivider {
|
|
607
|
-
z;
|
|
608
|
-
el;
|
|
609
581
|
constructor(c, r, z) {
|
|
610
582
|
this.z = z;
|
|
611
583
|
c.detach();
|
|
612
584
|
this.el = r.nativeElement;
|
|
613
585
|
}
|
|
614
|
-
/** @nocollapse */ static
|
|
615
|
-
/** @nocollapse */ static
|
|
586
|
+
/** @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 }); }
|
|
587
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqDivider, 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 }); }
|
|
616
588
|
};
|
|
617
589
|
BqDivider = __decorate([
|
|
618
590
|
ProxyCmp({
|
|
@@ -620,7 +592,7 @@ BqDivider = __decorate([
|
|
|
620
592
|
}),
|
|
621
593
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
622
594
|
], BqDivider);
|
|
623
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
595
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqDivider, decorators: [{
|
|
624
596
|
type: Component,
|
|
625
597
|
args: [{
|
|
626
598
|
selector: 'bq-divider',
|
|
@@ -631,16 +603,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
631
603
|
}]
|
|
632
604
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
633
605
|
let BqDrawer = class BqDrawer {
|
|
634
|
-
z;
|
|
635
|
-
el;
|
|
636
606
|
constructor(c, r, z) {
|
|
637
607
|
this.z = z;
|
|
638
608
|
c.detach();
|
|
639
609
|
this.el = r.nativeElement;
|
|
640
610
|
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
641
611
|
}
|
|
642
|
-
/** @nocollapse */ static
|
|
643
|
-
/** @nocollapse */ static
|
|
612
|
+
/** @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 }); }
|
|
613
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqDrawer, 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 }); }
|
|
644
614
|
};
|
|
645
615
|
BqDrawer = __decorate([
|
|
646
616
|
ProxyCmp({
|
|
@@ -649,7 +619,7 @@ BqDrawer = __decorate([
|
|
|
649
619
|
}),
|
|
650
620
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
651
621
|
], BqDrawer);
|
|
652
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
622
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqDrawer, decorators: [{
|
|
653
623
|
type: Component,
|
|
654
624
|
args: [{
|
|
655
625
|
selector: 'bq-drawer',
|
|
@@ -660,16 +630,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
660
630
|
}]
|
|
661
631
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
662
632
|
let BqDropdown = class BqDropdown {
|
|
663
|
-
z;
|
|
664
|
-
el;
|
|
665
633
|
constructor(c, r, z) {
|
|
666
634
|
this.z = z;
|
|
667
635
|
c.detach();
|
|
668
636
|
this.el = r.nativeElement;
|
|
669
637
|
proxyOutputs(this, this.el, ['bqOpen']);
|
|
670
638
|
}
|
|
671
|
-
/** @nocollapse */ static
|
|
672
|
-
/** @nocollapse */ static
|
|
639
|
+
/** @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 }); }
|
|
640
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqDropdown, 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 }); }
|
|
673
641
|
};
|
|
674
642
|
BqDropdown = __decorate([
|
|
675
643
|
ProxyCmp({
|
|
@@ -677,7 +645,7 @@ BqDropdown = __decorate([
|
|
|
677
645
|
}),
|
|
678
646
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
679
647
|
], BqDropdown);
|
|
680
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
648
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqDropdown, decorators: [{
|
|
681
649
|
type: Component,
|
|
682
650
|
args: [{
|
|
683
651
|
selector: 'bq-dropdown',
|
|
@@ -688,15 +656,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
688
656
|
}]
|
|
689
657
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
690
658
|
let BqEmptyState = class BqEmptyState {
|
|
691
|
-
z;
|
|
692
|
-
el;
|
|
693
659
|
constructor(c, r, z) {
|
|
694
660
|
this.z = z;
|
|
695
661
|
c.detach();
|
|
696
662
|
this.el = r.nativeElement;
|
|
697
663
|
}
|
|
698
|
-
/** @nocollapse */ static
|
|
699
|
-
/** @nocollapse */ static
|
|
664
|
+
/** @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 }); }
|
|
665
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqEmptyState, selector: "bq-empty-state", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
700
666
|
};
|
|
701
667
|
BqEmptyState = __decorate([
|
|
702
668
|
ProxyCmp({
|
|
@@ -704,7 +670,7 @@ BqEmptyState = __decorate([
|
|
|
704
670
|
}),
|
|
705
671
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
706
672
|
], BqEmptyState);
|
|
707
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
673
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqEmptyState, decorators: [{
|
|
708
674
|
type: Component,
|
|
709
675
|
args: [{
|
|
710
676
|
selector: 'bq-empty-state',
|
|
@@ -715,16 +681,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
715
681
|
}]
|
|
716
682
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
717
683
|
let BqIcon = class BqIcon {
|
|
718
|
-
z;
|
|
719
|
-
el;
|
|
720
684
|
constructor(c, r, z) {
|
|
721
685
|
this.z = z;
|
|
722
686
|
c.detach();
|
|
723
687
|
this.el = r.nativeElement;
|
|
724
688
|
proxyOutputs(this, this.el, ['svgLoaded']);
|
|
725
689
|
}
|
|
726
|
-
/** @nocollapse */ static
|
|
727
|
-
/** @nocollapse */ static
|
|
690
|
+
/** @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 }); }
|
|
691
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqIcon, 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 }); }
|
|
728
692
|
};
|
|
729
693
|
BqIcon = __decorate([
|
|
730
694
|
ProxyCmp({
|
|
@@ -732,7 +696,7 @@ BqIcon = __decorate([
|
|
|
732
696
|
}),
|
|
733
697
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
734
698
|
], BqIcon);
|
|
735
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
699
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqIcon, decorators: [{
|
|
736
700
|
type: Component,
|
|
737
701
|
args: [{
|
|
738
702
|
selector: 'bq-icon',
|
|
@@ -743,16 +707,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
743
707
|
}]
|
|
744
708
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
745
709
|
let BqInput = class BqInput {
|
|
746
|
-
z;
|
|
747
|
-
el;
|
|
748
710
|
constructor(c, r, z) {
|
|
749
711
|
this.z = z;
|
|
750
712
|
c.detach();
|
|
751
713
|
this.el = r.nativeElement;
|
|
752
714
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
753
715
|
}
|
|
754
|
-
/** @nocollapse */ static
|
|
755
|
-
/** @nocollapse */ static
|
|
716
|
+
/** @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 }); }
|
|
717
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqInput, 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 }); }
|
|
756
718
|
};
|
|
757
719
|
BqInput = __decorate([
|
|
758
720
|
ProxyCmp({
|
|
@@ -760,7 +722,7 @@ BqInput = __decorate([
|
|
|
760
722
|
}),
|
|
761
723
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
762
724
|
], BqInput);
|
|
763
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
725
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqInput, decorators: [{
|
|
764
726
|
type: Component,
|
|
765
727
|
args: [{
|
|
766
728
|
selector: 'bq-input',
|
|
@@ -771,16 +733,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
771
733
|
}]
|
|
772
734
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
773
735
|
let BqNotification = class BqNotification {
|
|
774
|
-
z;
|
|
775
|
-
el;
|
|
776
736
|
constructor(c, r, z) {
|
|
777
737
|
this.z = z;
|
|
778
738
|
c.detach();
|
|
779
739
|
this.el = r.nativeElement;
|
|
780
740
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
|
|
781
741
|
}
|
|
782
|
-
/** @nocollapse */ static
|
|
783
|
-
/** @nocollapse */ static
|
|
742
|
+
/** @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 }); }
|
|
743
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqNotification, 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 }); }
|
|
784
744
|
};
|
|
785
745
|
BqNotification = __decorate([
|
|
786
746
|
ProxyCmp({
|
|
@@ -789,7 +749,7 @@ BqNotification = __decorate([
|
|
|
789
749
|
}),
|
|
790
750
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
791
751
|
], BqNotification);
|
|
792
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
752
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqNotification, decorators: [{
|
|
793
753
|
type: Component,
|
|
794
754
|
args: [{
|
|
795
755
|
selector: 'bq-notification',
|
|
@@ -800,16 +760,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
800
760
|
}]
|
|
801
761
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
802
762
|
let BqOption = class BqOption {
|
|
803
|
-
z;
|
|
804
|
-
el;
|
|
805
763
|
constructor(c, r, z) {
|
|
806
764
|
this.z = z;
|
|
807
765
|
c.detach();
|
|
808
766
|
this.el = r.nativeElement;
|
|
809
767
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick', 'bqEnter']);
|
|
810
768
|
}
|
|
811
|
-
/** @nocollapse */ static
|
|
812
|
-
/** @nocollapse */ static
|
|
769
|
+
/** @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 }); }
|
|
770
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqOption, 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 }); }
|
|
813
771
|
};
|
|
814
772
|
BqOption = __decorate([
|
|
815
773
|
ProxyCmp({
|
|
@@ -817,7 +775,7 @@ BqOption = __decorate([
|
|
|
817
775
|
}),
|
|
818
776
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
819
777
|
], BqOption);
|
|
820
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
778
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqOption, decorators: [{
|
|
821
779
|
type: Component,
|
|
822
780
|
args: [{
|
|
823
781
|
selector: 'bq-option',
|
|
@@ -828,21 +786,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
828
786
|
}]
|
|
829
787
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
830
788
|
let BqOptionGroup = class BqOptionGroup {
|
|
831
|
-
z;
|
|
832
|
-
el;
|
|
833
789
|
constructor(c, r, z) {
|
|
834
790
|
this.z = z;
|
|
835
791
|
c.detach();
|
|
836
792
|
this.el = r.nativeElement;
|
|
837
793
|
}
|
|
838
|
-
/** @nocollapse */ static
|
|
839
|
-
/** @nocollapse */ static
|
|
794
|
+
/** @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 }); }
|
|
795
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqOptionGroup, selector: "bq-option-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
840
796
|
};
|
|
841
797
|
BqOptionGroup = __decorate([
|
|
842
798
|
ProxyCmp({}),
|
|
843
799
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
844
800
|
], BqOptionGroup);
|
|
845
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
801
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqOptionGroup, decorators: [{
|
|
846
802
|
type: Component,
|
|
847
803
|
args: [{
|
|
848
804
|
selector: 'bq-option-group',
|
|
@@ -853,16 +809,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
853
809
|
}]
|
|
854
810
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
855
811
|
let BqOptionList = class BqOptionList {
|
|
856
|
-
z;
|
|
857
|
-
el;
|
|
858
812
|
constructor(c, r, z) {
|
|
859
813
|
this.z = z;
|
|
860
814
|
c.detach();
|
|
861
815
|
this.el = r.nativeElement;
|
|
862
816
|
proxyOutputs(this, this.el, ['bqSelect']);
|
|
863
817
|
}
|
|
864
|
-
/** @nocollapse */ static
|
|
865
|
-
/** @nocollapse */ static
|
|
818
|
+
/** @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 }); }
|
|
819
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqOptionList, selector: "bq-option-list", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
866
820
|
};
|
|
867
821
|
BqOptionList = __decorate([
|
|
868
822
|
ProxyCmp({
|
|
@@ -870,7 +824,7 @@ BqOptionList = __decorate([
|
|
|
870
824
|
}),
|
|
871
825
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
872
826
|
], BqOptionList);
|
|
873
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
827
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqOptionList, decorators: [{
|
|
874
828
|
type: Component,
|
|
875
829
|
args: [{
|
|
876
830
|
selector: 'bq-option-list',
|
|
@@ -881,21 +835,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
881
835
|
}]
|
|
882
836
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
883
837
|
let BqPageTitle = class BqPageTitle {
|
|
884
|
-
z;
|
|
885
|
-
el;
|
|
886
838
|
constructor(c, r, z) {
|
|
887
839
|
this.z = z;
|
|
888
840
|
c.detach();
|
|
889
841
|
this.el = r.nativeElement;
|
|
890
842
|
}
|
|
891
|
-
/** @nocollapse */ static
|
|
892
|
-
/** @nocollapse */ static
|
|
843
|
+
/** @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 }); }
|
|
844
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqPageTitle, selector: "bq-page-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
893
845
|
};
|
|
894
846
|
BqPageTitle = __decorate([
|
|
895
847
|
ProxyCmp({}),
|
|
896
848
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
897
849
|
], BqPageTitle);
|
|
898
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
850
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqPageTitle, decorators: [{
|
|
899
851
|
type: Component,
|
|
900
852
|
args: [{
|
|
901
853
|
selector: 'bq-page-title',
|
|
@@ -906,15 +858,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
906
858
|
}]
|
|
907
859
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
908
860
|
let BqPanel = class BqPanel {
|
|
909
|
-
z;
|
|
910
|
-
el;
|
|
911
861
|
constructor(c, r, z) {
|
|
912
862
|
this.z = z;
|
|
913
863
|
c.detach();
|
|
914
864
|
this.el = r.nativeElement;
|
|
915
865
|
}
|
|
916
|
-
/** @nocollapse */ static
|
|
917
|
-
/** @nocollapse */ static
|
|
866
|
+
/** @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 }); }
|
|
867
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqPanel, 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 }); }
|
|
918
868
|
};
|
|
919
869
|
BqPanel = __decorate([
|
|
920
870
|
ProxyCmp({
|
|
@@ -922,7 +872,7 @@ BqPanel = __decorate([
|
|
|
922
872
|
}),
|
|
923
873
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
924
874
|
], BqPanel);
|
|
925
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
875
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqPanel, decorators: [{
|
|
926
876
|
type: Component,
|
|
927
877
|
args: [{
|
|
928
878
|
selector: 'bq-panel',
|
|
@@ -933,15 +883,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
933
883
|
}]
|
|
934
884
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
935
885
|
let BqProgress = class BqProgress {
|
|
936
|
-
z;
|
|
937
|
-
el;
|
|
938
886
|
constructor(c, r, z) {
|
|
939
887
|
this.z = z;
|
|
940
888
|
c.detach();
|
|
941
889
|
this.el = r.nativeElement;
|
|
942
890
|
}
|
|
943
|
-
/** @nocollapse */ static
|
|
944
|
-
/** @nocollapse */ static
|
|
891
|
+
/** @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 }); }
|
|
892
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqProgress, 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 }); }
|
|
945
893
|
};
|
|
946
894
|
BqProgress = __decorate([
|
|
947
895
|
ProxyCmp({
|
|
@@ -949,7 +897,7 @@ BqProgress = __decorate([
|
|
|
949
897
|
}),
|
|
950
898
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
951
899
|
], BqProgress);
|
|
952
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
900
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqProgress, decorators: [{
|
|
953
901
|
type: Component,
|
|
954
902
|
args: [{
|
|
955
903
|
selector: 'bq-progress',
|
|
@@ -960,16 +908,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
960
908
|
}]
|
|
961
909
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
962
910
|
let BqRadio = class BqRadio {
|
|
963
|
-
z;
|
|
964
|
-
el;
|
|
965
911
|
constructor(c, r, z) {
|
|
966
912
|
this.z = z;
|
|
967
913
|
c.detach();
|
|
968
914
|
this.el = r.nativeElement;
|
|
969
915
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
970
916
|
}
|
|
971
|
-
/** @nocollapse */ static
|
|
972
|
-
/** @nocollapse */ static
|
|
917
|
+
/** @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 }); }
|
|
918
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqRadio, 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 }); }
|
|
973
919
|
};
|
|
974
920
|
BqRadio = __decorate([
|
|
975
921
|
ProxyCmp({
|
|
@@ -978,7 +924,7 @@ BqRadio = __decorate([
|
|
|
978
924
|
}),
|
|
979
925
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
980
926
|
], BqRadio);
|
|
981
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
927
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqRadio, decorators: [{
|
|
982
928
|
type: Component,
|
|
983
929
|
args: [{
|
|
984
930
|
selector: 'bq-radio',
|
|
@@ -989,16 +935,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
989
935
|
}]
|
|
990
936
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
991
937
|
let BqRadioGroup = class BqRadioGroup {
|
|
992
|
-
z;
|
|
993
|
-
el;
|
|
994
938
|
constructor(c, r, z) {
|
|
995
939
|
this.z = z;
|
|
996
940
|
c.detach();
|
|
997
941
|
this.el = r.nativeElement;
|
|
998
942
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
999
943
|
}
|
|
1000
|
-
/** @nocollapse */ static
|
|
1001
|
-
/** @nocollapse */ static
|
|
944
|
+
/** @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 }); }
|
|
945
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqRadioGroup, 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 }); }
|
|
1002
946
|
};
|
|
1003
947
|
BqRadioGroup = __decorate([
|
|
1004
948
|
ProxyCmp({
|
|
@@ -1006,7 +950,7 @@ BqRadioGroup = __decorate([
|
|
|
1006
950
|
}),
|
|
1007
951
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1008
952
|
], BqRadioGroup);
|
|
1009
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
953
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqRadioGroup, decorators: [{
|
|
1010
954
|
type: Component,
|
|
1011
955
|
args: [{
|
|
1012
956
|
selector: 'bq-radio-group',
|
|
@@ -1017,16 +961,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1017
961
|
}]
|
|
1018
962
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1019
963
|
let BqSelect = class BqSelect {
|
|
1020
|
-
z;
|
|
1021
|
-
el;
|
|
1022
964
|
constructor(c, r, z) {
|
|
1023
965
|
this.z = z;
|
|
1024
966
|
c.detach();
|
|
1025
967
|
this.el = r.nativeElement;
|
|
1026
968
|
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect']);
|
|
1027
969
|
}
|
|
1028
|
-
/** @nocollapse */ static
|
|
1029
|
-
/** @nocollapse */ static
|
|
970
|
+
/** @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 }); }
|
|
971
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqSelect, 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 }); }
|
|
1030
972
|
};
|
|
1031
973
|
BqSelect = __decorate([
|
|
1032
974
|
ProxyCmp({
|
|
@@ -1035,7 +977,7 @@ BqSelect = __decorate([
|
|
|
1035
977
|
}),
|
|
1036
978
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1037
979
|
], BqSelect);
|
|
1038
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
980
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSelect, decorators: [{
|
|
1039
981
|
type: Component,
|
|
1040
982
|
args: [{
|
|
1041
983
|
selector: 'bq-select',
|
|
@@ -1046,16 +988,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1046
988
|
}]
|
|
1047
989
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1048
990
|
let BqSideMenu = class BqSideMenu {
|
|
1049
|
-
z;
|
|
1050
|
-
el;
|
|
1051
991
|
constructor(c, r, z) {
|
|
1052
992
|
this.z = z;
|
|
1053
993
|
c.detach();
|
|
1054
994
|
this.el = r.nativeElement;
|
|
1055
995
|
proxyOutputs(this, this.el, ['bqCollapse', 'bqSelect']);
|
|
1056
996
|
}
|
|
1057
|
-
/** @nocollapse */ static
|
|
1058
|
-
/** @nocollapse */ static
|
|
997
|
+
/** @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 }); }
|
|
998
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqSideMenu, selector: "bq-side-menu", inputs: { appearance: "appearance", collapse: "collapse", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1059
999
|
};
|
|
1060
1000
|
BqSideMenu = __decorate([
|
|
1061
1001
|
ProxyCmp({
|
|
@@ -1064,7 +1004,7 @@ BqSideMenu = __decorate([
|
|
|
1064
1004
|
}),
|
|
1065
1005
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1066
1006
|
], BqSideMenu);
|
|
1067
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1007
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSideMenu, decorators: [{
|
|
1068
1008
|
type: Component,
|
|
1069
1009
|
args: [{
|
|
1070
1010
|
selector: 'bq-side-menu',
|
|
@@ -1075,16 +1015,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1075
1015
|
}]
|
|
1076
1016
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1077
1017
|
let BqSideMenuItem = class BqSideMenuItem {
|
|
1078
|
-
z;
|
|
1079
|
-
el;
|
|
1080
1018
|
constructor(c, r, z) {
|
|
1081
1019
|
this.z = z;
|
|
1082
1020
|
c.detach();
|
|
1083
1021
|
this.el = r.nativeElement;
|
|
1084
1022
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
1085
1023
|
}
|
|
1086
|
-
/** @nocollapse */ static
|
|
1087
|
-
/** @nocollapse */ static
|
|
1024
|
+
/** @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 }); }
|
|
1025
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqSideMenuItem, 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 }); }
|
|
1088
1026
|
};
|
|
1089
1027
|
BqSideMenuItem = __decorate([
|
|
1090
1028
|
ProxyCmp({
|
|
@@ -1092,7 +1030,7 @@ BqSideMenuItem = __decorate([
|
|
|
1092
1030
|
}),
|
|
1093
1031
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1094
1032
|
], BqSideMenuItem);
|
|
1095
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1033
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSideMenuItem, decorators: [{
|
|
1096
1034
|
type: Component,
|
|
1097
1035
|
args: [{
|
|
1098
1036
|
selector: 'bq-side-menu-item',
|
|
@@ -1103,16 +1041,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1103
1041
|
}]
|
|
1104
1042
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1105
1043
|
let BqSlider = class BqSlider {
|
|
1106
|
-
z;
|
|
1107
|
-
el;
|
|
1108
1044
|
constructor(c, r, z) {
|
|
1109
1045
|
this.z = z;
|
|
1110
1046
|
c.detach();
|
|
1111
1047
|
this.el = r.nativeElement;
|
|
1112
1048
|
proxyOutputs(this, this.el, ['bqChange', 'bqBlur', 'bqFocus']);
|
|
1113
1049
|
}
|
|
1114
|
-
/** @nocollapse */ static
|
|
1115
|
-
/** @nocollapse */ static
|
|
1050
|
+
/** @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 }); }
|
|
1051
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqSlider, 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 }); }
|
|
1116
1052
|
};
|
|
1117
1053
|
BqSlider = __decorate([
|
|
1118
1054
|
ProxyCmp({
|
|
@@ -1120,7 +1056,7 @@ BqSlider = __decorate([
|
|
|
1120
1056
|
}),
|
|
1121
1057
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1122
1058
|
], BqSlider);
|
|
1123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1059
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSlider, decorators: [{
|
|
1124
1060
|
type: Component,
|
|
1125
1061
|
args: [{
|
|
1126
1062
|
selector: 'bq-slider',
|
|
@@ -1131,15 +1067,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1131
1067
|
}]
|
|
1132
1068
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1133
1069
|
let BqSpinner = class BqSpinner {
|
|
1134
|
-
z;
|
|
1135
|
-
el;
|
|
1136
1070
|
constructor(c, r, z) {
|
|
1137
1071
|
this.z = z;
|
|
1138
1072
|
c.detach();
|
|
1139
1073
|
this.el = r.nativeElement;
|
|
1140
1074
|
}
|
|
1141
|
-
/** @nocollapse */ static
|
|
1142
|
-
/** @nocollapse */ static
|
|
1075
|
+
/** @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 }); }
|
|
1076
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqSpinner, selector: "bq-spinner", inputs: { animation: "animation", size: "size", textPosition: "textPosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1143
1077
|
};
|
|
1144
1078
|
BqSpinner = __decorate([
|
|
1145
1079
|
ProxyCmp({
|
|
@@ -1147,7 +1081,7 @@ BqSpinner = __decorate([
|
|
|
1147
1081
|
}),
|
|
1148
1082
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1149
1083
|
], BqSpinner);
|
|
1150
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1084
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSpinner, decorators: [{
|
|
1151
1085
|
type: Component,
|
|
1152
1086
|
args: [{
|
|
1153
1087
|
selector: 'bq-spinner',
|
|
@@ -1158,15 +1092,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1158
1092
|
}]
|
|
1159
1093
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1160
1094
|
let BqStatus = class BqStatus {
|
|
1161
|
-
z;
|
|
1162
|
-
el;
|
|
1163
1095
|
constructor(c, r, z) {
|
|
1164
1096
|
this.z = z;
|
|
1165
1097
|
c.detach();
|
|
1166
1098
|
this.el = r.nativeElement;
|
|
1167
1099
|
}
|
|
1168
|
-
/** @nocollapse */ static
|
|
1169
|
-
/** @nocollapse */ static
|
|
1100
|
+
/** @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 }); }
|
|
1101
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqStatus, selector: "bq-status", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1170
1102
|
};
|
|
1171
1103
|
BqStatus = __decorate([
|
|
1172
1104
|
ProxyCmp({
|
|
@@ -1174,7 +1106,7 @@ BqStatus = __decorate([
|
|
|
1174
1106
|
}),
|
|
1175
1107
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1176
1108
|
], BqStatus);
|
|
1177
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1109
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqStatus, decorators: [{
|
|
1178
1110
|
type: Component,
|
|
1179
1111
|
args: [{
|
|
1180
1112
|
selector: 'bq-status',
|
|
@@ -1185,16 +1117,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1185
1117
|
}]
|
|
1186
1118
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1187
1119
|
let BqStepItem = class BqStepItem {
|
|
1188
|
-
z;
|
|
1189
|
-
el;
|
|
1190
1120
|
constructor(c, r, z) {
|
|
1191
1121
|
this.z = z;
|
|
1192
1122
|
c.detach();
|
|
1193
1123
|
this.el = r.nativeElement;
|
|
1194
1124
|
proxyOutputs(this, this.el, ['bqClick']);
|
|
1195
1125
|
}
|
|
1196
|
-
/** @nocollapse */ static
|
|
1197
|
-
/** @nocollapse */ static
|
|
1126
|
+
/** @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 }); }
|
|
1127
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqStepItem, selector: "bq-step-item", inputs: { size: "size", status: "status", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1198
1128
|
};
|
|
1199
1129
|
BqStepItem = __decorate([
|
|
1200
1130
|
ProxyCmp({
|
|
@@ -1202,7 +1132,7 @@ BqStepItem = __decorate([
|
|
|
1202
1132
|
}),
|
|
1203
1133
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1204
1134
|
], BqStepItem);
|
|
1205
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1135
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqStepItem, decorators: [{
|
|
1206
1136
|
type: Component,
|
|
1207
1137
|
args: [{
|
|
1208
1138
|
selector: 'bq-step-item',
|
|
@@ -1213,15 +1143,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1213
1143
|
}]
|
|
1214
1144
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1215
1145
|
let BqSteps = class BqSteps {
|
|
1216
|
-
z;
|
|
1217
|
-
el;
|
|
1218
1146
|
constructor(c, r, z) {
|
|
1219
1147
|
this.z = z;
|
|
1220
1148
|
c.detach();
|
|
1221
1149
|
this.el = r.nativeElement;
|
|
1222
1150
|
}
|
|
1223
|
-
/** @nocollapse */ static
|
|
1224
|
-
/** @nocollapse */ static
|
|
1151
|
+
/** @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 }); }
|
|
1152
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqSteps, selector: "bq-steps", inputs: { dividerColor: "dividerColor", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1225
1153
|
};
|
|
1226
1154
|
BqSteps = __decorate([
|
|
1227
1155
|
ProxyCmp({
|
|
@@ -1229,7 +1157,7 @@ BqSteps = __decorate([
|
|
|
1229
1157
|
}),
|
|
1230
1158
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1231
1159
|
], BqSteps);
|
|
1232
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1160
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSteps, decorators: [{
|
|
1233
1161
|
type: Component,
|
|
1234
1162
|
args: [{
|
|
1235
1163
|
selector: 'bq-steps',
|
|
@@ -1240,16 +1168,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1240
1168
|
}]
|
|
1241
1169
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1242
1170
|
let BqSwitch = class BqSwitch {
|
|
1243
|
-
z;
|
|
1244
|
-
el;
|
|
1245
1171
|
constructor(c, r, z) {
|
|
1246
1172
|
this.z = z;
|
|
1247
1173
|
c.detach();
|
|
1248
1174
|
this.el = r.nativeElement;
|
|
1249
1175
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
1250
1176
|
}
|
|
1251
|
-
/** @nocollapse */ static
|
|
1252
|
-
/** @nocollapse */ static
|
|
1177
|
+
/** @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 }); }
|
|
1178
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqSwitch, 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 }); }
|
|
1253
1179
|
};
|
|
1254
1180
|
BqSwitch = __decorate([
|
|
1255
1181
|
ProxyCmp({
|
|
@@ -1258,7 +1184,7 @@ BqSwitch = __decorate([
|
|
|
1258
1184
|
}),
|
|
1259
1185
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1260
1186
|
], BqSwitch);
|
|
1261
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1187
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqSwitch, decorators: [{
|
|
1262
1188
|
type: Component,
|
|
1263
1189
|
args: [{
|
|
1264
1190
|
selector: 'bq-switch',
|
|
@@ -1269,16 +1195,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1269
1195
|
}]
|
|
1270
1196
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1271
1197
|
let BqTab = class BqTab {
|
|
1272
|
-
z;
|
|
1273
|
-
el;
|
|
1274
1198
|
constructor(c, r, z) {
|
|
1275
1199
|
this.z = z;
|
|
1276
1200
|
c.detach();
|
|
1277
1201
|
this.el = r.nativeElement;
|
|
1278
1202
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
1279
1203
|
}
|
|
1280
|
-
/** @nocollapse */ static
|
|
1281
|
-
/** @nocollapse */ static
|
|
1204
|
+
/** @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 }); }
|
|
1205
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqTab, 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 }); }
|
|
1282
1206
|
};
|
|
1283
1207
|
BqTab = __decorate([
|
|
1284
1208
|
ProxyCmp({
|
|
@@ -1287,7 +1211,7 @@ BqTab = __decorate([
|
|
|
1287
1211
|
}),
|
|
1288
1212
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1289
1213
|
], BqTab);
|
|
1290
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1214
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqTab, decorators: [{
|
|
1291
1215
|
type: Component,
|
|
1292
1216
|
args: [{
|
|
1293
1217
|
selector: 'bq-tab',
|
|
@@ -1298,16 +1222,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1298
1222
|
}]
|
|
1299
1223
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1300
1224
|
let BqTabGroup = class BqTabGroup {
|
|
1301
|
-
z;
|
|
1302
|
-
el;
|
|
1303
1225
|
constructor(c, r, z) {
|
|
1304
1226
|
this.z = z;
|
|
1305
1227
|
c.detach();
|
|
1306
1228
|
this.el = r.nativeElement;
|
|
1307
1229
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
1308
1230
|
}
|
|
1309
|
-
/** @nocollapse */ static
|
|
1310
|
-
/** @nocollapse */ static
|
|
1231
|
+
/** @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 }); }
|
|
1232
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqTabGroup, 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 }); }
|
|
1311
1233
|
};
|
|
1312
1234
|
BqTabGroup = __decorate([
|
|
1313
1235
|
ProxyCmp({
|
|
@@ -1315,7 +1237,7 @@ BqTabGroup = __decorate([
|
|
|
1315
1237
|
}),
|
|
1316
1238
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1317
1239
|
], BqTabGroup);
|
|
1318
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1240
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqTabGroup, decorators: [{
|
|
1319
1241
|
type: Component,
|
|
1320
1242
|
args: [{
|
|
1321
1243
|
selector: 'bq-tab-group',
|
|
@@ -1326,16 +1248,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1326
1248
|
}]
|
|
1327
1249
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1328
1250
|
let BqTag = class BqTag {
|
|
1329
|
-
z;
|
|
1330
|
-
el;
|
|
1331
1251
|
constructor(c, r, z) {
|
|
1332
1252
|
this.z = z;
|
|
1333
1253
|
c.detach();
|
|
1334
1254
|
this.el = r.nativeElement;
|
|
1335
1255
|
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus']);
|
|
1336
1256
|
}
|
|
1337
|
-
/** @nocollapse */ static
|
|
1338
|
-
/** @nocollapse */ static
|
|
1257
|
+
/** @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 }); }
|
|
1258
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqTag, 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 }); }
|
|
1339
1259
|
};
|
|
1340
1260
|
BqTag = __decorate([
|
|
1341
1261
|
ProxyCmp({
|
|
@@ -1344,7 +1264,7 @@ BqTag = __decorate([
|
|
|
1344
1264
|
}),
|
|
1345
1265
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1346
1266
|
], BqTag);
|
|
1347
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1267
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqTag, decorators: [{
|
|
1348
1268
|
type: Component,
|
|
1349
1269
|
args: [{
|
|
1350
1270
|
selector: 'bq-tag',
|
|
@@ -1355,16 +1275,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1355
1275
|
}]
|
|
1356
1276
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1357
1277
|
let BqTextarea = class BqTextarea {
|
|
1358
|
-
z;
|
|
1359
|
-
el;
|
|
1360
1278
|
constructor(c, r, z) {
|
|
1361
1279
|
this.z = z;
|
|
1362
1280
|
c.detach();
|
|
1363
1281
|
this.el = r.nativeElement;
|
|
1364
1282
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
1365
1283
|
}
|
|
1366
|
-
/** @nocollapse */ static
|
|
1367
|
-
/** @nocollapse */ static
|
|
1284
|
+
/** @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 }); }
|
|
1285
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqTextarea, 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 }); }
|
|
1368
1286
|
};
|
|
1369
1287
|
BqTextarea = __decorate([
|
|
1370
1288
|
ProxyCmp({
|
|
@@ -1372,7 +1290,7 @@ BqTextarea = __decorate([
|
|
|
1372
1290
|
}),
|
|
1373
1291
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1374
1292
|
], BqTextarea);
|
|
1375
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1293
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqTextarea, decorators: [{
|
|
1376
1294
|
type: Component,
|
|
1377
1295
|
args: [{
|
|
1378
1296
|
selector: 'bq-textarea',
|
|
@@ -1383,16 +1301,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1383
1301
|
}]
|
|
1384
1302
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1385
1303
|
let BqToast = class BqToast {
|
|
1386
|
-
z;
|
|
1387
|
-
el;
|
|
1388
1304
|
constructor(c, r, z) {
|
|
1389
1305
|
this.z = z;
|
|
1390
1306
|
c.detach();
|
|
1391
1307
|
this.el = r.nativeElement;
|
|
1392
1308
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow']);
|
|
1393
1309
|
}
|
|
1394
|
-
/** @nocollapse */ static
|
|
1395
|
-
/** @nocollapse */ static
|
|
1310
|
+
/** @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 }); }
|
|
1311
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqToast, 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 }); }
|
|
1396
1312
|
};
|
|
1397
1313
|
BqToast = __decorate([
|
|
1398
1314
|
ProxyCmp({
|
|
@@ -1401,7 +1317,7 @@ BqToast = __decorate([
|
|
|
1401
1317
|
}),
|
|
1402
1318
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1403
1319
|
], BqToast);
|
|
1404
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1320
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqToast, decorators: [{
|
|
1405
1321
|
type: Component,
|
|
1406
1322
|
args: [{
|
|
1407
1323
|
selector: 'bq-toast',
|
|
@@ -1412,15 +1328,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1412
1328
|
}]
|
|
1413
1329
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1414
1330
|
let BqTooltip = class BqTooltip {
|
|
1415
|
-
z;
|
|
1416
|
-
el;
|
|
1417
1331
|
constructor(c, r, z) {
|
|
1418
1332
|
this.z = z;
|
|
1419
1333
|
c.detach();
|
|
1420
1334
|
this.el = r.nativeElement;
|
|
1421
1335
|
}
|
|
1422
|
-
/** @nocollapse */ static
|
|
1423
|
-
/** @nocollapse */ static
|
|
1336
|
+
/** @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 }); }
|
|
1337
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: BqTooltip, 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 }); }
|
|
1424
1338
|
};
|
|
1425
1339
|
BqTooltip = __decorate([
|
|
1426
1340
|
ProxyCmp({
|
|
@@ -1429,7 +1343,7 @@ BqTooltip = __decorate([
|
|
|
1429
1343
|
}),
|
|
1430
1344
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1431
1345
|
], BqTooltip);
|
|
1432
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1346
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BqTooltip, decorators: [{
|
|
1433
1347
|
type: Component,
|
|
1434
1348
|
args: [{
|
|
1435
1349
|
selector: 'bq-tooltip',
|
|
@@ -1508,8 +1422,8 @@ class BeeQModule {
|
|
|
1508
1422
|
],
|
|
1509
1423
|
};
|
|
1510
1424
|
}
|
|
1511
|
-
/** @nocollapse */ static
|
|
1512
|
-
/** @nocollapse */ static
|
|
1425
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BeeQModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1426
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.9", ngImport: i0, type: BeeQModule, declarations: [BqAccordion, BqAccordionGroup, BqAlert, BqAvatar, BqBadge, BqBreadcrumb, BqBreadcrumbItem, BqButton, BqCard, BqCheckbox, BqDatePicker, BqDialog, BqDivider, BqDrawer, BqDropdown, BqEmptyState, BqIcon, BqInput, BqNotification, BqOption, BqOptionGroup, BqOptionList, BqPageTitle, BqPanel, BqProgress, BqRadio, BqRadioGroup, BqSelect, BqSideMenu, BqSideMenuItem, BqSlider, BqSpinner, BqStatus, BqStepItem, BqSteps, BqSwitch, BqTab, BqTabGroup, BqTag, BqTextarea, BqToast, BqTooltip,
|
|
1513
1427
|
// ngModel Accessors
|
|
1514
1428
|
BooleanValueAccessor,
|
|
1515
1429
|
NumericValueAccessor,
|
|
@@ -1521,10 +1435,10 @@ class BeeQModule {
|
|
|
1521
1435
|
NumericValueAccessor,
|
|
1522
1436
|
RadioValueAccessor,
|
|
1523
1437
|
SelectValueAccessor,
|
|
1524
|
-
TextValueAccessor] });
|
|
1525
|
-
/** @nocollapse */ static
|
|
1438
|
+
TextValueAccessor] }); }
|
|
1439
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BeeQModule, imports: [CommonModule] }); }
|
|
1526
1440
|
}
|
|
1527
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1441
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BeeQModule, decorators: [{
|
|
1528
1442
|
type: NgModule,
|
|
1529
1443
|
args: [{
|
|
1530
1444
|
imports: [CommonModule],
|