@beeq/angular 1.8.0-beta.14 → 1.8.0-beta.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/directives/components.d.ts +1247 -0
- package/esm2022/beeq.module.mjs +5 -5
- package/esm2022/directives/boolean-value-accessor.mjs +4 -4
- package/esm2022/directives/components.mjs +85 -169
- package/esm2022/directives/number-value-accessor.mjs +4 -4
- package/esm2022/directives/radio-value-accessor.mjs +4 -4
- package/esm2022/directives/select-value-accessor.mjs +4 -4
- package/esm2022/directives/text-value-accessor.mjs +4 -4
- package/esm2022/directives/value-accessor.mjs +5 -7
- package/esm2022/standalone/directives/boolean-value-accessor.mjs +4 -4
- package/esm2022/standalone/directives/components.mjs +85 -169
- package/esm2022/standalone/directives/number-value-accessor.mjs +4 -4
- package/esm2022/standalone/directives/radio-value-accessor.mjs +4 -4
- package/esm2022/standalone/directives/select-value-accessor.mjs +4 -4
- package/esm2022/standalone/directives/text-value-accessor.mjs +4 -4
- package/esm2022/standalone/directives/value-accessor.mjs +5 -7
- package/fesm2022/beeq-angular-standalone.mjs +103 -189
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +107 -193
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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,8 +33,8 @@ 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
39
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
42
40
|
type: Directive,
|
|
@@ -53,14 +51,14 @@ 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
63
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
66
64
|
type: Directive,
|
|
@@ -89,14 +87,14 @@ 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
99
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
102
100
|
type: Directive,
|
|
@@ -120,14 +118,14 @@ 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
130
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
133
131
|
type: Directive,
|
|
@@ -151,14 +149,14 @@ 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
161
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
164
162
|
type: Directive,
|
|
@@ -182,14 +180,14 @@ 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
192
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
195
193
|
type: Directive,
|
|
@@ -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({
|
|
@@ -296,15 +292,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -323,16 +317,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -352,15 +344,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -379,15 +369,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -406,16 +394,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -434,16 +420,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -462,16 +446,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -490,15 +472,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -517,16 +497,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -546,16 +524,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -575,16 +551,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -604,15 +578,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -631,16 +603,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -660,16 +630,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -688,15 +656,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -715,16 +681,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -743,16 +707,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -771,16 +733,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -800,16 +760,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -828,15 +786,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({}),
|
|
@@ -853,16 +809,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -881,15 +835,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({}),
|
|
@@ -906,15 +858,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -933,15 +883,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -960,16 +908,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -989,16 +935,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -1017,16 +961,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -1046,16 +988,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -1075,16 +1015,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -1103,16 +1041,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -1131,15 +1067,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -1158,15 +1092,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -1185,16 +1117,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -1213,15 +1143,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -1240,16 +1168,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -1269,16 +1195,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -1298,16 +1222,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -1326,16 +1248,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -1355,16 +1275,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -1383,16 +1301,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -1412,15 +1328,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", 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({
|
|
@@ -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,8 +1435,8 @@ 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
1441
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: BeeQModule, decorators: [{
|
|
1528
1442
|
type: NgModule,
|