@beeq/angular 1.3.0 → 1.3.2
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/number-value-accessor.d.ts +1 -1
- package/directives/text-value-accessor.d.ts +1 -1
- package/esm2022/beeq.module.mjs +4 -4
- package/esm2022/directives/boolean-value-accessor.mjs +3 -3
- package/esm2022/directives/components.mjs +120 -120
- package/esm2022/directives/number-value-accessor.mjs +5 -5
- package/esm2022/directives/radio-value-accessor.mjs +3 -3
- package/esm2022/directives/select-value-accessor.mjs +3 -3
- package/esm2022/directives/text-value-accessor.mjs +5 -5
- package/esm2022/directives/value-accessor.mjs +3 -3
- package/esm2022/standalone/directives/components.mjs +120 -120
- package/fesm2022/beeq-angular-standalone.mjs +120 -120
- package/fesm2022/beeq-angular.mjs +144 -144
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -35,10 +35,10 @@ class ValueAccessor {
|
|
|
35
35
|
setDisabledState(isDisabled) {
|
|
36
36
|
this.el.nativeElement.disabled = isDisabled;
|
|
37
37
|
}
|
|
38
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
39
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
38
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
39
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.8", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
40
40
|
}
|
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
41
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
42
42
|
type: Directive,
|
|
43
43
|
args: [{}]
|
|
44
44
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
@@ -53,8 +53,8 @@ class BooleanValueAccessor extends ValueAccessor {
|
|
|
53
53
|
writeValue(value) {
|
|
54
54
|
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
55
55
|
}
|
|
56
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
57
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
56
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
57
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.8", type: BooleanValueAccessor, selector: "bq-checkbox, bq-switch", host: { listeners: { "bqChange": "handleChangeEvent($event.target.checked)" } }, providers: [
|
|
58
58
|
{
|
|
59
59
|
provide: NG_VALUE_ACCESSOR,
|
|
60
60
|
useExisting: BooleanValueAccessor,
|
|
@@ -62,7 +62,7 @@ class BooleanValueAccessor extends ValueAccessor {
|
|
|
62
62
|
}
|
|
63
63
|
], usesInheritance: true, ngImport: i0 });
|
|
64
64
|
}
|
|
65
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
65
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
66
66
|
type: Directive,
|
|
67
67
|
args: [{
|
|
68
68
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -89,8 +89,8 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
89
89
|
fn(value === '' ? null : parseFloat(value));
|
|
90
90
|
});
|
|
91
91
|
}
|
|
92
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
93
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
92
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
93
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.8", type: NumericValueAccessor, selector: "bq-input[type=\"number\"], bq-slider:not[type=\"range\"]", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
94
94
|
{
|
|
95
95
|
provide: NG_VALUE_ACCESSOR,
|
|
96
96
|
useExisting: NumericValueAccessor,
|
|
@@ -98,11 +98,11 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
98
98
|
}
|
|
99
99
|
], usesInheritance: true, ngImport: i0 });
|
|
100
100
|
}
|
|
101
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
101
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
102
102
|
type: Directive,
|
|
103
103
|
args: [{
|
|
104
104
|
/* tslint:disable-next-line:directive-selector */
|
|
105
|
-
selector: 'bq-input[type="number"], bq-slider',
|
|
105
|
+
selector: 'bq-input[type="number"], bq-slider:not[type="range"]',
|
|
106
106
|
host: {
|
|
107
107
|
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
108
108
|
},
|
|
@@ -120,8 +120,8 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
120
120
|
constructor(el) {
|
|
121
121
|
super(el);
|
|
122
122
|
}
|
|
123
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
124
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
123
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
124
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.8", type: RadioValueAccessor, selector: "bq-radio-group", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
125
125
|
{
|
|
126
126
|
provide: NG_VALUE_ACCESSOR,
|
|
127
127
|
useExisting: RadioValueAccessor,
|
|
@@ -129,7 +129,7 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
129
129
|
}
|
|
130
130
|
], usesInheritance: true, ngImport: i0 });
|
|
131
131
|
}
|
|
132
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
132
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
133
133
|
type: Directive,
|
|
134
134
|
args: [{
|
|
135
135
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -151,8 +151,8 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
151
151
|
constructor(el) {
|
|
152
152
|
super(el);
|
|
153
153
|
}
|
|
154
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
155
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
154
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
155
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.8", type: SelectValueAccessor, selector: "bq-select", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
156
156
|
{
|
|
157
157
|
provide: NG_VALUE_ACCESSOR,
|
|
158
158
|
useExisting: SelectValueAccessor,
|
|
@@ -160,7 +160,7 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
160
160
|
}
|
|
161
161
|
], usesInheritance: true, ngImport: i0 });
|
|
162
162
|
}
|
|
163
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
163
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
164
164
|
type: Directive,
|
|
165
165
|
args: [{
|
|
166
166
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -182,8 +182,8 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
182
182
|
constructor(el) {
|
|
183
183
|
super(el);
|
|
184
184
|
}
|
|
185
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
186
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
185
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
186
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.8", type: TextValueAccessor, selector: "bq-input:not[type=\"number\"], bq-textarea, bq-slider[type=\"range\"", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
187
187
|
{
|
|
188
188
|
provide: NG_VALUE_ACCESSOR,
|
|
189
189
|
useExisting: TextValueAccessor,
|
|
@@ -191,11 +191,11 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
191
191
|
}
|
|
192
192
|
], usesInheritance: true, ngImport: i0 });
|
|
193
193
|
}
|
|
194
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
194
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
195
195
|
type: Directive,
|
|
196
196
|
args: [{
|
|
197
197
|
/* tslint:disable-next-line:directive-selector */
|
|
198
|
-
selector: 'bq-input:not[type="number"], bq-textarea',
|
|
198
|
+
selector: 'bq-input:not[type="number"], bq-textarea, bq-slider[type="range"',
|
|
199
199
|
host: {
|
|
200
200
|
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
201
201
|
},
|
|
@@ -276,8 +276,8 @@ let BqAccordion = class BqAccordion {
|
|
|
276
276
|
this.el = r.nativeElement;
|
|
277
277
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqOpen', 'bqAfterOpen', 'bqClose', 'bqAfterClose']);
|
|
278
278
|
}
|
|
279
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
280
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
279
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
280
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", type: BqAccordion, selector: "bq-accordion", inputs: { appearance: "appearance", disabled: "disabled", expanded: "expanded", rotate: "rotate", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
281
281
|
};
|
|
282
282
|
BqAccordion = __decorate([
|
|
283
283
|
ProxyCmp({
|
|
@@ -285,7 +285,7 @@ BqAccordion = __decorate([
|
|
|
285
285
|
}),
|
|
286
286
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
287
287
|
], BqAccordion);
|
|
288
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
288
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqAccordion, decorators: [{
|
|
289
289
|
type: Component,
|
|
290
290
|
args: [{
|
|
291
291
|
selector: 'bq-accordion',
|
|
@@ -303,8 +303,8 @@ let BqAccordionGroup = class BqAccordionGroup {
|
|
|
303
303
|
c.detach();
|
|
304
304
|
this.el = r.nativeElement;
|
|
305
305
|
}
|
|
306
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
307
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
306
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
307
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", type: BqAccordionGroup, selector: "bq-accordion-group", inputs: { appearance: "appearance", expandAll: "expandAll", multiple: "multiple", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
308
308
|
};
|
|
309
309
|
BqAccordionGroup = __decorate([
|
|
310
310
|
ProxyCmp({
|
|
@@ -312,7 +312,7 @@ BqAccordionGroup = __decorate([
|
|
|
312
312
|
}),
|
|
313
313
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
314
314
|
], BqAccordionGroup);
|
|
315
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
315
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqAccordionGroup, decorators: [{
|
|
316
316
|
type: Component,
|
|
317
317
|
args: [{
|
|
318
318
|
selector: 'bq-accordion-group',
|
|
@@ -331,8 +331,8 @@ let BqAlert = class BqAlert {
|
|
|
331
331
|
this.el = r.nativeElement;
|
|
332
332
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
|
|
333
333
|
}
|
|
334
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
335
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
334
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
335
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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
336
|
};
|
|
337
337
|
BqAlert = __decorate([
|
|
338
338
|
ProxyCmp({
|
|
@@ -341,7 +341,7 @@ BqAlert = __decorate([
|
|
|
341
341
|
}),
|
|
342
342
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
343
343
|
], BqAlert);
|
|
344
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
344
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqAlert, decorators: [{
|
|
345
345
|
type: Component,
|
|
346
346
|
args: [{
|
|
347
347
|
selector: 'bq-alert',
|
|
@@ -359,8 +359,8 @@ let BqAvatar = class BqAvatar {
|
|
|
359
359
|
c.detach();
|
|
360
360
|
this.el = r.nativeElement;
|
|
361
361
|
}
|
|
362
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
363
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
362
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
363
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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
364
|
};
|
|
365
365
|
BqAvatar = __decorate([
|
|
366
366
|
ProxyCmp({
|
|
@@ -368,7 +368,7 @@ BqAvatar = __decorate([
|
|
|
368
368
|
}),
|
|
369
369
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
370
370
|
], BqAvatar);
|
|
371
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
371
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqAvatar, decorators: [{
|
|
372
372
|
type: Component,
|
|
373
373
|
args: [{
|
|
374
374
|
selector: 'bq-avatar',
|
|
@@ -386,8 +386,8 @@ let BqBadge = class BqBadge {
|
|
|
386
386
|
c.detach();
|
|
387
387
|
this.el = r.nativeElement;
|
|
388
388
|
}
|
|
389
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
390
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
389
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
390
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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
391
|
};
|
|
392
392
|
BqBadge = __decorate([
|
|
393
393
|
ProxyCmp({
|
|
@@ -395,7 +395,7 @@ BqBadge = __decorate([
|
|
|
395
395
|
}),
|
|
396
396
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
397
397
|
], BqBadge);
|
|
398
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqBadge, decorators: [{
|
|
399
399
|
type: Component,
|
|
400
400
|
args: [{
|
|
401
401
|
selector: 'bq-badge',
|
|
@@ -414,8 +414,8 @@ let BqBreadcrumb = class BqBreadcrumb {
|
|
|
414
414
|
this.el = r.nativeElement;
|
|
415
415
|
proxyOutputs(this, this.el, ['bqBreadcrumbBlur', 'bqBreadcrumbFocus', 'bqBreadcrumbClick']);
|
|
416
416
|
}
|
|
417
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
418
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
417
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
418
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", type: BqBreadcrumb, selector: "bq-breadcrumb", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
419
419
|
};
|
|
420
420
|
BqBreadcrumb = __decorate([
|
|
421
421
|
ProxyCmp({
|
|
@@ -423,7 +423,7 @@ BqBreadcrumb = __decorate([
|
|
|
423
423
|
}),
|
|
424
424
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
425
425
|
], BqBreadcrumb);
|
|
426
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
426
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqBreadcrumb, decorators: [{
|
|
427
427
|
type: Component,
|
|
428
428
|
args: [{
|
|
429
429
|
selector: 'bq-breadcrumb',
|
|
@@ -442,8 +442,8 @@ let BqBreadcrumbItem = class BqBreadcrumbItem {
|
|
|
442
442
|
this.el = r.nativeElement;
|
|
443
443
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
444
444
|
}
|
|
445
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
446
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
445
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
446
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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
447
|
};
|
|
448
448
|
BqBreadcrumbItem = __decorate([
|
|
449
449
|
ProxyCmp({
|
|
@@ -451,7 +451,7 @@ BqBreadcrumbItem = __decorate([
|
|
|
451
451
|
}),
|
|
452
452
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
453
453
|
], BqBreadcrumbItem);
|
|
454
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
454
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqBreadcrumbItem, decorators: [{
|
|
455
455
|
type: Component,
|
|
456
456
|
args: [{
|
|
457
457
|
selector: 'bq-breadcrumb-item',
|
|
@@ -470,8 +470,8 @@ let BqButton = class BqButton {
|
|
|
470
470
|
this.el = r.nativeElement;
|
|
471
471
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
472
472
|
}
|
|
473
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
474
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
473
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
474
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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
475
|
};
|
|
476
476
|
BqButton = __decorate([
|
|
477
477
|
ProxyCmp({
|
|
@@ -479,7 +479,7 @@ BqButton = __decorate([
|
|
|
479
479
|
}),
|
|
480
480
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
481
481
|
], BqButton);
|
|
482
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
482
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqButton, decorators: [{
|
|
483
483
|
type: Component,
|
|
484
484
|
args: [{
|
|
485
485
|
selector: 'bq-button',
|
|
@@ -497,8 +497,8 @@ let BqCard = class BqCard {
|
|
|
497
497
|
c.detach();
|
|
498
498
|
this.el = r.nativeElement;
|
|
499
499
|
}
|
|
500
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
501
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
500
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
501
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", type: BqCard, selector: "bq-card", inputs: { border: "border", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
502
502
|
};
|
|
503
503
|
BqCard = __decorate([
|
|
504
504
|
ProxyCmp({
|
|
@@ -506,7 +506,7 @@ BqCard = __decorate([
|
|
|
506
506
|
}),
|
|
507
507
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
508
508
|
], BqCard);
|
|
509
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
509
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqCard, decorators: [{
|
|
510
510
|
type: Component,
|
|
511
511
|
args: [{
|
|
512
512
|
selector: 'bq-card',
|
|
@@ -525,8 +525,8 @@ let BqCheckbox = class BqCheckbox {
|
|
|
525
525
|
this.el = r.nativeElement;
|
|
526
526
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
527
527
|
}
|
|
528
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
529
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
528
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
529
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", type: BqCheckbox, selector: "bq-checkbox", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", indeterminate: "indeterminate", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
530
530
|
};
|
|
531
531
|
BqCheckbox = __decorate([
|
|
532
532
|
ProxyCmp({
|
|
@@ -535,7 +535,7 @@ BqCheckbox = __decorate([
|
|
|
535
535
|
}),
|
|
536
536
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
537
537
|
], BqCheckbox);
|
|
538
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
538
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqCheckbox, decorators: [{
|
|
539
539
|
type: Component,
|
|
540
540
|
args: [{
|
|
541
541
|
selector: 'bq-checkbox',
|
|
@@ -554,8 +554,8 @@ let BqDialog = class BqDialog {
|
|
|
554
554
|
this.el = r.nativeElement;
|
|
555
555
|
proxyOutputs(this, this.el, ['bqCancel', 'bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
556
556
|
}
|
|
557
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
558
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
557
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
558
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
559
559
|
};
|
|
560
560
|
BqDialog = __decorate([
|
|
561
561
|
ProxyCmp({
|
|
@@ -564,7 +564,7 @@ BqDialog = __decorate([
|
|
|
564
564
|
}),
|
|
565
565
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
566
566
|
], BqDialog);
|
|
567
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
567
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqDialog, decorators: [{
|
|
568
568
|
type: Component,
|
|
569
569
|
args: [{
|
|
570
570
|
selector: 'bq-dialog',
|
|
@@ -582,8 +582,8 @@ let BqDivider = class BqDivider {
|
|
|
582
582
|
c.detach();
|
|
583
583
|
this.el = r.nativeElement;
|
|
584
584
|
}
|
|
585
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
586
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
585
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
586
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
587
587
|
};
|
|
588
588
|
BqDivider = __decorate([
|
|
589
589
|
ProxyCmp({
|
|
@@ -591,7 +591,7 @@ BqDivider = __decorate([
|
|
|
591
591
|
}),
|
|
592
592
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
593
593
|
], BqDivider);
|
|
594
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
594
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqDivider, decorators: [{
|
|
595
595
|
type: Component,
|
|
596
596
|
args: [{
|
|
597
597
|
selector: 'bq-divider',
|
|
@@ -610,8 +610,8 @@ let BqDrawer = class BqDrawer {
|
|
|
610
610
|
this.el = r.nativeElement;
|
|
611
611
|
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
612
612
|
}
|
|
613
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
614
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
613
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
614
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", type: BqDrawer, selector: "bq-drawer", inputs: { closeOnClickOutside: "closeOnClickOutside", closeOnEsc: "closeOnEsc", enableBackdrop: "enableBackdrop", open: "open", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
615
615
|
};
|
|
616
616
|
BqDrawer = __decorate([
|
|
617
617
|
ProxyCmp({
|
|
@@ -620,7 +620,7 @@ BqDrawer = __decorate([
|
|
|
620
620
|
}),
|
|
621
621
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
622
622
|
], BqDrawer);
|
|
623
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
623
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqDrawer, decorators: [{
|
|
624
624
|
type: Component,
|
|
625
625
|
args: [{
|
|
626
626
|
selector: 'bq-drawer',
|
|
@@ -639,8 +639,8 @@ let BqDropdown = class BqDropdown {
|
|
|
639
639
|
this.el = r.nativeElement;
|
|
640
640
|
proxyOutputs(this, this.el, ['bqOpen']);
|
|
641
641
|
}
|
|
642
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
643
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
642
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
643
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
644
644
|
};
|
|
645
645
|
BqDropdown = __decorate([
|
|
646
646
|
ProxyCmp({
|
|
@@ -648,7 +648,7 @@ BqDropdown = __decorate([
|
|
|
648
648
|
}),
|
|
649
649
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
650
650
|
], BqDropdown);
|
|
651
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
651
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqDropdown, decorators: [{
|
|
652
652
|
type: Component,
|
|
653
653
|
args: [{
|
|
654
654
|
selector: 'bq-dropdown',
|
|
@@ -666,8 +666,8 @@ let BqEmptyState = class BqEmptyState {
|
|
|
666
666
|
c.detach();
|
|
667
667
|
this.el = r.nativeElement;
|
|
668
668
|
}
|
|
669
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
670
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
669
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
670
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", type: BqEmptyState, selector: "bq-empty-state", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
671
671
|
};
|
|
672
672
|
BqEmptyState = __decorate([
|
|
673
673
|
ProxyCmp({
|
|
@@ -675,7 +675,7 @@ BqEmptyState = __decorate([
|
|
|
675
675
|
}),
|
|
676
676
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
677
677
|
], BqEmptyState);
|
|
678
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
678
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqEmptyState, decorators: [{
|
|
679
679
|
type: Component,
|
|
680
680
|
args: [{
|
|
681
681
|
selector: 'bq-empty-state',
|
|
@@ -694,8 +694,8 @@ let BqIcon = class BqIcon {
|
|
|
694
694
|
this.el = r.nativeElement;
|
|
695
695
|
proxyOutputs(this, this.el, ['svgLoaded']);
|
|
696
696
|
}
|
|
697
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
698
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
697
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
698
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
699
699
|
};
|
|
700
700
|
BqIcon = __decorate([
|
|
701
701
|
ProxyCmp({
|
|
@@ -703,7 +703,7 @@ BqIcon = __decorate([
|
|
|
703
703
|
}),
|
|
704
704
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
705
705
|
], BqIcon);
|
|
706
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
706
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqIcon, decorators: [{
|
|
707
707
|
type: Component,
|
|
708
708
|
args: [{
|
|
709
709
|
selector: 'bq-icon',
|
|
@@ -722,8 +722,8 @@ let BqInput = class BqInput {
|
|
|
722
722
|
this.el = r.nativeElement;
|
|
723
723
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
724
724
|
}
|
|
725
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
726
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
725
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
726
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
727
727
|
};
|
|
728
728
|
BqInput = __decorate([
|
|
729
729
|
ProxyCmp({
|
|
@@ -731,7 +731,7 @@ BqInput = __decorate([
|
|
|
731
731
|
}),
|
|
732
732
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
733
733
|
], BqInput);
|
|
734
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
734
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqInput, decorators: [{
|
|
735
735
|
type: Component,
|
|
736
736
|
args: [{
|
|
737
737
|
selector: 'bq-input',
|
|
@@ -750,8 +750,8 @@ let BqNotification = class BqNotification {
|
|
|
750
750
|
this.el = r.nativeElement;
|
|
751
751
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
|
|
752
752
|
}
|
|
753
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
754
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
753
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
754
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
755
755
|
};
|
|
756
756
|
BqNotification = __decorate([
|
|
757
757
|
ProxyCmp({
|
|
@@ -760,7 +760,7 @@ BqNotification = __decorate([
|
|
|
760
760
|
}),
|
|
761
761
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
762
762
|
], BqNotification);
|
|
763
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
763
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqNotification, decorators: [{
|
|
764
764
|
type: Component,
|
|
765
765
|
args: [{
|
|
766
766
|
selector: 'bq-notification',
|
|
@@ -779,8 +779,8 @@ let BqOption = class BqOption {
|
|
|
779
779
|
this.el = r.nativeElement;
|
|
780
780
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick', 'bqEnter']);
|
|
781
781
|
}
|
|
782
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
783
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
782
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
783
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
784
784
|
};
|
|
785
785
|
BqOption = __decorate([
|
|
786
786
|
ProxyCmp({
|
|
@@ -788,7 +788,7 @@ BqOption = __decorate([
|
|
|
788
788
|
}),
|
|
789
789
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
790
790
|
], BqOption);
|
|
791
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
791
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqOption, decorators: [{
|
|
792
792
|
type: Component,
|
|
793
793
|
args: [{
|
|
794
794
|
selector: 'bq-option',
|
|
@@ -806,14 +806,14 @@ let BqOptionGroup = class BqOptionGroup {
|
|
|
806
806
|
c.detach();
|
|
807
807
|
this.el = r.nativeElement;
|
|
808
808
|
}
|
|
809
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
810
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
809
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqOptionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
810
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", type: BqOptionGroup, selector: "bq-option-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
811
811
|
};
|
|
812
812
|
BqOptionGroup = __decorate([
|
|
813
813
|
ProxyCmp({}),
|
|
814
814
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
815
815
|
], BqOptionGroup);
|
|
816
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
816
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqOptionGroup, decorators: [{
|
|
817
817
|
type: Component,
|
|
818
818
|
args: [{
|
|
819
819
|
selector: 'bq-option-group',
|
|
@@ -832,8 +832,8 @@ let BqOptionList = class BqOptionList {
|
|
|
832
832
|
this.el = r.nativeElement;
|
|
833
833
|
proxyOutputs(this, this.el, ['bqSelect']);
|
|
834
834
|
}
|
|
835
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
836
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
835
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqOptionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
836
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", type: BqOptionList, selector: "bq-option-list", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
837
837
|
};
|
|
838
838
|
BqOptionList = __decorate([
|
|
839
839
|
ProxyCmp({
|
|
@@ -841,7 +841,7 @@ BqOptionList = __decorate([
|
|
|
841
841
|
}),
|
|
842
842
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
843
843
|
], BqOptionList);
|
|
844
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
844
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqOptionList, decorators: [{
|
|
845
845
|
type: Component,
|
|
846
846
|
args: [{
|
|
847
847
|
selector: 'bq-option-list',
|
|
@@ -859,8 +859,8 @@ let BqPanel = class BqPanel {
|
|
|
859
859
|
c.detach();
|
|
860
860
|
this.el = r.nativeElement;
|
|
861
861
|
}
|
|
862
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
863
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
862
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
863
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
864
864
|
};
|
|
865
865
|
BqPanel = __decorate([
|
|
866
866
|
ProxyCmp({
|
|
@@ -868,7 +868,7 @@ BqPanel = __decorate([
|
|
|
868
868
|
}),
|
|
869
869
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
870
870
|
], BqPanel);
|
|
871
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
871
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqPanel, decorators: [{
|
|
872
872
|
type: Component,
|
|
873
873
|
args: [{
|
|
874
874
|
selector: 'bq-panel',
|
|
@@ -886,8 +886,8 @@ let BqProgress = class BqProgress {
|
|
|
886
886
|
c.detach();
|
|
887
887
|
this.el = r.nativeElement;
|
|
888
888
|
}
|
|
889
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
890
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
889
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
890
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
891
891
|
};
|
|
892
892
|
BqProgress = __decorate([
|
|
893
893
|
ProxyCmp({
|
|
@@ -895,7 +895,7 @@ BqProgress = __decorate([
|
|
|
895
895
|
}),
|
|
896
896
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
897
897
|
], BqProgress);
|
|
898
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
898
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqProgress, decorators: [{
|
|
899
899
|
type: Component,
|
|
900
900
|
args: [{
|
|
901
901
|
selector: 'bq-progress',
|
|
@@ -914,8 +914,8 @@ let BqRadio = class BqRadio {
|
|
|
914
914
|
this.el = r.nativeElement;
|
|
915
915
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
916
916
|
}
|
|
917
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
918
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
917
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
918
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
919
919
|
};
|
|
920
920
|
BqRadio = __decorate([
|
|
921
921
|
ProxyCmp({
|
|
@@ -924,7 +924,7 @@ BqRadio = __decorate([
|
|
|
924
924
|
}),
|
|
925
925
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
926
926
|
], BqRadio);
|
|
927
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
927
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqRadio, decorators: [{
|
|
928
928
|
type: Component,
|
|
929
929
|
args: [{
|
|
930
930
|
selector: 'bq-radio',
|
|
@@ -943,8 +943,8 @@ let BqRadioGroup = class BqRadioGroup {
|
|
|
943
943
|
this.el = r.nativeElement;
|
|
944
944
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
945
945
|
}
|
|
946
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
947
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
946
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
947
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
948
948
|
};
|
|
949
949
|
BqRadioGroup = __decorate([
|
|
950
950
|
ProxyCmp({
|
|
@@ -952,7 +952,7 @@ BqRadioGroup = __decorate([
|
|
|
952
952
|
}),
|
|
953
953
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
954
954
|
], BqRadioGroup);
|
|
955
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
955
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqRadioGroup, decorators: [{
|
|
956
956
|
type: Component,
|
|
957
957
|
args: [{
|
|
958
958
|
selector: 'bq-radio-group',
|
|
@@ -971,8 +971,8 @@ let BqSelect = class BqSelect {
|
|
|
971
971
|
this.el = r.nativeElement;
|
|
972
972
|
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect']);
|
|
973
973
|
}
|
|
974
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
975
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
974
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
975
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
976
976
|
};
|
|
977
977
|
BqSelect = __decorate([
|
|
978
978
|
ProxyCmp({
|
|
@@ -981,7 +981,7 @@ BqSelect = __decorate([
|
|
|
981
981
|
}),
|
|
982
982
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
983
983
|
], BqSelect);
|
|
984
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
984
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqSelect, decorators: [{
|
|
985
985
|
type: Component,
|
|
986
986
|
args: [{
|
|
987
987
|
selector: 'bq-select',
|
|
@@ -1000,8 +1000,8 @@ let BqSideMenu = class BqSideMenu {
|
|
|
1000
1000
|
this.el = r.nativeElement;
|
|
1001
1001
|
proxyOutputs(this, this.el, ['bqCollapse', 'bqSelect']);
|
|
1002
1002
|
}
|
|
1003
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1004
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
1003
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqSideMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1004
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
1005
1005
|
};
|
|
1006
1006
|
BqSideMenu = __decorate([
|
|
1007
1007
|
ProxyCmp({
|
|
@@ -1010,7 +1010,7 @@ BqSideMenu = __decorate([
|
|
|
1010
1010
|
}),
|
|
1011
1011
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1012
1012
|
], BqSideMenu);
|
|
1013
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1013
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqSideMenu, decorators: [{
|
|
1014
1014
|
type: Component,
|
|
1015
1015
|
args: [{
|
|
1016
1016
|
selector: 'bq-side-menu',
|
|
@@ -1029,8 +1029,8 @@ let BqSideMenuItem = class BqSideMenuItem {
|
|
|
1029
1029
|
this.el = r.nativeElement;
|
|
1030
1030
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
1031
1031
|
}
|
|
1032
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1033
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
1032
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqSideMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1033
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
1034
1034
|
};
|
|
1035
1035
|
BqSideMenuItem = __decorate([
|
|
1036
1036
|
ProxyCmp({
|
|
@@ -1038,7 +1038,7 @@ BqSideMenuItem = __decorate([
|
|
|
1038
1038
|
}),
|
|
1039
1039
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1040
1040
|
], BqSideMenuItem);
|
|
1041
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1041
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqSideMenuItem, decorators: [{
|
|
1042
1042
|
type: Component,
|
|
1043
1043
|
args: [{
|
|
1044
1044
|
selector: 'bq-side-menu-item',
|
|
@@ -1057,8 +1057,8 @@ let BqSlider = class BqSlider {
|
|
|
1057
1057
|
this.el = r.nativeElement;
|
|
1058
1058
|
proxyOutputs(this, this.el, ['bqChange', 'bqBlur', 'bqFocus']);
|
|
1059
1059
|
}
|
|
1060
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1061
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
1060
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1061
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
1062
1062
|
};
|
|
1063
1063
|
BqSlider = __decorate([
|
|
1064
1064
|
ProxyCmp({
|
|
@@ -1066,7 +1066,7 @@ BqSlider = __decorate([
|
|
|
1066
1066
|
}),
|
|
1067
1067
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1068
1068
|
], BqSlider);
|
|
1069
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1069
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqSlider, decorators: [{
|
|
1070
1070
|
type: Component,
|
|
1071
1071
|
args: [{
|
|
1072
1072
|
selector: 'bq-slider',
|
|
@@ -1084,8 +1084,8 @@ let BqSpinner = class BqSpinner {
|
|
|
1084
1084
|
c.detach();
|
|
1085
1085
|
this.el = r.nativeElement;
|
|
1086
1086
|
}
|
|
1087
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1088
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
1087
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1088
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
1089
1089
|
};
|
|
1090
1090
|
BqSpinner = __decorate([
|
|
1091
1091
|
ProxyCmp({
|
|
@@ -1093,7 +1093,7 @@ BqSpinner = __decorate([
|
|
|
1093
1093
|
}),
|
|
1094
1094
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1095
1095
|
], BqSpinner);
|
|
1096
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1096
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqSpinner, decorators: [{
|
|
1097
1097
|
type: Component,
|
|
1098
1098
|
args: [{
|
|
1099
1099
|
selector: 'bq-spinner',
|
|
@@ -1111,8 +1111,8 @@ let BqStatus = class BqStatus {
|
|
|
1111
1111
|
c.detach();
|
|
1112
1112
|
this.el = r.nativeElement;
|
|
1113
1113
|
}
|
|
1114
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1115
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
1114
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1115
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", type: BqStatus, selector: "bq-status", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1116
1116
|
};
|
|
1117
1117
|
BqStatus = __decorate([
|
|
1118
1118
|
ProxyCmp({
|
|
@@ -1120,7 +1120,7 @@ BqStatus = __decorate([
|
|
|
1120
1120
|
}),
|
|
1121
1121
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1122
1122
|
], BqStatus);
|
|
1123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1123
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqStatus, decorators: [{
|
|
1124
1124
|
type: Component,
|
|
1125
1125
|
args: [{
|
|
1126
1126
|
selector: 'bq-status',
|
|
@@ -1139,8 +1139,8 @@ let BqStepItem = class BqStepItem {
|
|
|
1139
1139
|
this.el = r.nativeElement;
|
|
1140
1140
|
proxyOutputs(this, this.el, ['bqClick']);
|
|
1141
1141
|
}
|
|
1142
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1143
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
1142
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqStepItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1143
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
1144
1144
|
};
|
|
1145
1145
|
BqStepItem = __decorate([
|
|
1146
1146
|
ProxyCmp({
|
|
@@ -1148,7 +1148,7 @@ BqStepItem = __decorate([
|
|
|
1148
1148
|
}),
|
|
1149
1149
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1150
1150
|
], BqStepItem);
|
|
1151
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1151
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqStepItem, decorators: [{
|
|
1152
1152
|
type: Component,
|
|
1153
1153
|
args: [{
|
|
1154
1154
|
selector: 'bq-step-item',
|
|
@@ -1166,8 +1166,8 @@ let BqSteps = class BqSteps {
|
|
|
1166
1166
|
c.detach();
|
|
1167
1167
|
this.el = r.nativeElement;
|
|
1168
1168
|
}
|
|
1169
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1170
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
1169
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1170
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
1171
1171
|
};
|
|
1172
1172
|
BqSteps = __decorate([
|
|
1173
1173
|
ProxyCmp({
|
|
@@ -1175,7 +1175,7 @@ BqSteps = __decorate([
|
|
|
1175
1175
|
}),
|
|
1176
1176
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1177
1177
|
], BqSteps);
|
|
1178
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1178
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqSteps, decorators: [{
|
|
1179
1179
|
type: Component,
|
|
1180
1180
|
args: [{
|
|
1181
1181
|
selector: 'bq-steps',
|
|
@@ -1194,8 +1194,8 @@ let BqSwitch = class BqSwitch {
|
|
|
1194
1194
|
this.el = r.nativeElement;
|
|
1195
1195
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
1196
1196
|
}
|
|
1197
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1198
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
1197
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1198
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
1199
1199
|
};
|
|
1200
1200
|
BqSwitch = __decorate([
|
|
1201
1201
|
ProxyCmp({
|
|
@@ -1204,7 +1204,7 @@ BqSwitch = __decorate([
|
|
|
1204
1204
|
}),
|
|
1205
1205
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1206
1206
|
], BqSwitch);
|
|
1207
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqSwitch, decorators: [{
|
|
1208
1208
|
type: Component,
|
|
1209
1209
|
args: [{
|
|
1210
1210
|
selector: 'bq-switch',
|
|
@@ -1223,8 +1223,8 @@ let BqTab = class BqTab {
|
|
|
1223
1223
|
this.el = r.nativeElement;
|
|
1224
1224
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
1225
1225
|
}
|
|
1226
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1227
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
1226
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1227
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", type: BqTab, selector: "bq-tab", inputs: { active: "active", controls: "controls", disabled: "disabled", size: "size", tabId: "tabId" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1228
1228
|
};
|
|
1229
1229
|
BqTab = __decorate([
|
|
1230
1230
|
ProxyCmp({
|
|
@@ -1233,7 +1233,7 @@ BqTab = __decorate([
|
|
|
1233
1233
|
}),
|
|
1234
1234
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1235
1235
|
], BqTab);
|
|
1236
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1236
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqTab, decorators: [{
|
|
1237
1237
|
type: Component,
|
|
1238
1238
|
args: [{
|
|
1239
1239
|
selector: 'bq-tab',
|
|
@@ -1252,8 +1252,8 @@ let BqTabGroup = class BqTabGroup {
|
|
|
1252
1252
|
this.el = r.nativeElement;
|
|
1253
1253
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
1254
1254
|
}
|
|
1255
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1256
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
1255
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1256
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", type: BqTabGroup, selector: "bq-tab-group", inputs: { debounceTime: "debounceTime", disableDivider: "disableDivider", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1257
1257
|
};
|
|
1258
1258
|
BqTabGroup = __decorate([
|
|
1259
1259
|
ProxyCmp({
|
|
@@ -1261,7 +1261,7 @@ BqTabGroup = __decorate([
|
|
|
1261
1261
|
}),
|
|
1262
1262
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1263
1263
|
], BqTabGroup);
|
|
1264
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1264
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqTabGroup, decorators: [{
|
|
1265
1265
|
type: Component,
|
|
1266
1266
|
args: [{
|
|
1267
1267
|
selector: 'bq-tab-group',
|
|
@@ -1280,8 +1280,8 @@ let BqTag = class BqTag {
|
|
|
1280
1280
|
this.el = r.nativeElement;
|
|
1281
1281
|
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus']);
|
|
1282
1282
|
}
|
|
1283
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1284
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
1283
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1284
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
1285
1285
|
};
|
|
1286
1286
|
BqTag = __decorate([
|
|
1287
1287
|
ProxyCmp({
|
|
@@ -1290,7 +1290,7 @@ BqTag = __decorate([
|
|
|
1290
1290
|
}),
|
|
1291
1291
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1292
1292
|
], BqTag);
|
|
1293
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1293
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqTag, decorators: [{
|
|
1294
1294
|
type: Component,
|
|
1295
1295
|
args: [{
|
|
1296
1296
|
selector: 'bq-tag',
|
|
@@ -1309,8 +1309,8 @@ let BqTextarea = class BqTextarea {
|
|
|
1309
1309
|
this.el = r.nativeElement;
|
|
1310
1310
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
1311
1311
|
}
|
|
1312
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1313
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
1312
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1313
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
1314
1314
|
};
|
|
1315
1315
|
BqTextarea = __decorate([
|
|
1316
1316
|
ProxyCmp({
|
|
@@ -1318,7 +1318,7 @@ BqTextarea = __decorate([
|
|
|
1318
1318
|
}),
|
|
1319
1319
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1320
1320
|
], BqTextarea);
|
|
1321
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1321
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqTextarea, decorators: [{
|
|
1322
1322
|
type: Component,
|
|
1323
1323
|
args: [{
|
|
1324
1324
|
selector: 'bq-textarea',
|
|
@@ -1337,8 +1337,8 @@ let BqToast = class BqToast {
|
|
|
1337
1337
|
this.el = r.nativeElement;
|
|
1338
1338
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow']);
|
|
1339
1339
|
}
|
|
1340
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1341
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
1340
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1341
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
1342
1342
|
};
|
|
1343
1343
|
BqToast = __decorate([
|
|
1344
1344
|
ProxyCmp({
|
|
@@ -1347,7 +1347,7 @@ BqToast = __decorate([
|
|
|
1347
1347
|
}),
|
|
1348
1348
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1349
1349
|
], BqToast);
|
|
1350
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqToast, decorators: [{
|
|
1351
1351
|
type: Component,
|
|
1352
1352
|
args: [{
|
|
1353
1353
|
selector: 'bq-toast',
|
|
@@ -1365,8 +1365,8 @@ let BqTooltip = class BqTooltip {
|
|
|
1365
1365
|
c.detach();
|
|
1366
1366
|
this.el = r.nativeElement;
|
|
1367
1367
|
}
|
|
1368
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1369
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
1368
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1369
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", 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 });
|
|
1370
1370
|
};
|
|
1371
1371
|
BqTooltip = __decorate([
|
|
1372
1372
|
ProxyCmp({
|
|
@@ -1375,7 +1375,7 @@ BqTooltip = __decorate([
|
|
|
1375
1375
|
}),
|
|
1376
1376
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1377
1377
|
], BqTooltip);
|
|
1378
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1378
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BqTooltip, decorators: [{
|
|
1379
1379
|
type: Component,
|
|
1380
1380
|
args: [{
|
|
1381
1381
|
selector: 'bq-tooltip',
|
|
@@ -1452,8 +1452,8 @@ class BeeQModule {
|
|
|
1452
1452
|
],
|
|
1453
1453
|
};
|
|
1454
1454
|
}
|
|
1455
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1456
|
-
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.
|
|
1455
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BeeQModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1456
|
+
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.8", ngImport: i0, type: BeeQModule, declarations: [BqAccordion, BqAccordionGroup, BqAlert, BqAvatar, BqBadge, BqBreadcrumb, BqBreadcrumbItem, BqButton, BqCard, BqCheckbox, BqDialog, BqDivider, BqDrawer, BqDropdown, BqEmptyState, BqIcon, BqInput, BqNotification, BqOption, BqOptionGroup, BqOptionList, BqPanel, BqProgress, BqRadio, BqRadioGroup, BqSelect, BqSideMenu, BqSideMenuItem, BqSlider, BqSpinner, BqStatus, BqStepItem, BqSteps, BqSwitch, BqTab, BqTabGroup, BqTag, BqTextarea, BqToast, BqTooltip,
|
|
1457
1457
|
// ngModel Accessors
|
|
1458
1458
|
BooleanValueAccessor,
|
|
1459
1459
|
NumericValueAccessor,
|
|
@@ -1466,9 +1466,9 @@ class BeeQModule {
|
|
|
1466
1466
|
RadioValueAccessor,
|
|
1467
1467
|
SelectValueAccessor,
|
|
1468
1468
|
TextValueAccessor] });
|
|
1469
|
-
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.
|
|
1469
|
+
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BeeQModule, imports: [CommonModule] });
|
|
1470
1470
|
}
|
|
1471
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1471
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: BeeQModule, decorators: [{
|
|
1472
1472
|
type: NgModule,
|
|
1473
1473
|
args: [{
|
|
1474
1474
|
imports: [CommonModule],
|