@beeq/angular 1.11.0 → 1.11.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/fesm2022/beeq-angular-standalone.mjs +151 -150
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +172 -185
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/index.d.ts +19 -32
- package/package.json +1 -1
- package/standalone/index.d.ts +3 -3
|
@@ -73,10 +73,10 @@ class ValueAccessor {
|
|
|
73
73
|
setDisabledState(isDisabled) {
|
|
74
74
|
this.el.nativeElement.disabled = isDisabled;
|
|
75
75
|
}
|
|
76
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
77
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.
|
|
76
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
77
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.9", type: ValueAccessor, isStandalone: true, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 }); }
|
|
78
78
|
}
|
|
79
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
79
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
80
80
|
type: Directive,
|
|
81
81
|
args: [{}]
|
|
82
82
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
@@ -91,8 +91,8 @@ class BooleanValueAccessor extends ValueAccessor {
|
|
|
91
91
|
writeValue(value) {
|
|
92
92
|
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
93
93
|
}
|
|
94
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
95
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.
|
|
94
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
95
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.9", type: BooleanValueAccessor, isStandalone: true, selector: "bq-checkbox, bq-switch", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"checked\"])" } }, providers: [
|
|
96
96
|
{
|
|
97
97
|
provide: NG_VALUE_ACCESSOR,
|
|
98
98
|
useExisting: BooleanValueAccessor,
|
|
@@ -100,7 +100,7 @@ class BooleanValueAccessor extends ValueAccessor {
|
|
|
100
100
|
}
|
|
101
101
|
], usesInheritance: true, ngImport: i0 }); }
|
|
102
102
|
}
|
|
103
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
103
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
104
104
|
type: Directive,
|
|
105
105
|
args: [{
|
|
106
106
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -127,8 +127,8 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
127
127
|
fn(value === '' ? null : parseFloat(value));
|
|
128
128
|
});
|
|
129
129
|
}
|
|
130
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
131
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.
|
|
130
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
131
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.9", type: NumericValueAccessor, isStandalone: true, selector: "bq-input[type=\"number\"], bq-slider:not[type=\"range\"]", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"value\"])" } }, providers: [
|
|
132
132
|
{
|
|
133
133
|
provide: NG_VALUE_ACCESSOR,
|
|
134
134
|
useExisting: NumericValueAccessor,
|
|
@@ -136,7 +136,7 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
136
136
|
}
|
|
137
137
|
], usesInheritance: true, ngImport: i0 }); }
|
|
138
138
|
}
|
|
139
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
139
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
140
140
|
type: Directive,
|
|
141
141
|
args: [{
|
|
142
142
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -158,8 +158,8 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
158
158
|
constructor(el) {
|
|
159
159
|
super(el);
|
|
160
160
|
}
|
|
161
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
162
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.
|
|
161
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
162
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.9", type: RadioValueAccessor, isStandalone: true, selector: "bq-radio-group", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"value\"])" } }, providers: [
|
|
163
163
|
{
|
|
164
164
|
provide: NG_VALUE_ACCESSOR,
|
|
165
165
|
useExisting: RadioValueAccessor,
|
|
@@ -167,7 +167,7 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
167
167
|
}
|
|
168
168
|
], usesInheritance: true, ngImport: i0 }); }
|
|
169
169
|
}
|
|
170
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
171
171
|
type: Directive,
|
|
172
172
|
args: [{
|
|
173
173
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -189,8 +189,8 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
189
189
|
constructor(el) {
|
|
190
190
|
super(el);
|
|
191
191
|
}
|
|
192
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
193
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.
|
|
192
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
193
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.9", type: SelectValueAccessor, isStandalone: true, selector: "bq-select", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"value\"])" } }, providers: [
|
|
194
194
|
{
|
|
195
195
|
provide: NG_VALUE_ACCESSOR,
|
|
196
196
|
useExisting: SelectValueAccessor,
|
|
@@ -198,7 +198,7 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
198
198
|
}
|
|
199
199
|
], usesInheritance: true, ngImport: i0 }); }
|
|
200
200
|
}
|
|
201
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
201
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
202
202
|
type: Directive,
|
|
203
203
|
args: [{
|
|
204
204
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -220,8 +220,8 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
220
220
|
constructor(el) {
|
|
221
221
|
super(el);
|
|
222
222
|
}
|
|
223
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
224
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.
|
|
223
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
224
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.9", type: TextValueAccessor, isStandalone: true, selector: "bq-date-picker, bq-input:not[type=\"number\"], bq-slider[type=\"range\"], bq-textarea", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"value\"])" } }, providers: [
|
|
225
225
|
{
|
|
226
226
|
provide: NG_VALUE_ACCESSOR,
|
|
227
227
|
useExisting: TextValueAccessor,
|
|
@@ -229,7 +229,7 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
229
229
|
}
|
|
230
230
|
], usesInheritance: true, ngImport: i0 }); }
|
|
231
231
|
}
|
|
232
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
232
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
233
233
|
type: Directive,
|
|
234
234
|
args: [{
|
|
235
235
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -318,8 +318,8 @@ let BqAccordion = class BqAccordion {
|
|
|
318
318
|
c.detach();
|
|
319
319
|
this.el = r.nativeElement;
|
|
320
320
|
}
|
|
321
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
322
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
321
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
322
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqAccordion, isStandalone: true, selector: "bq-accordion", inputs: { appearance: "appearance", disabled: "disabled", expanded: "expanded", noAnimation: "noAnimation", rotate: "rotate", size: "size" }, outputs: { bqBlur: "bqBlur", bqFocus: "bqFocus", bqOpen: "bqOpen", bqAfterOpen: "bqAfterOpen", bqClose: "bqClose", bqAfterClose: "bqAfterClose", bqClick: "bqClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
323
323
|
};
|
|
324
324
|
BqAccordion = __decorate([
|
|
325
325
|
ProxyCmp({
|
|
@@ -328,7 +328,7 @@ BqAccordion = __decorate([
|
|
|
328
328
|
}),
|
|
329
329
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
330
330
|
], BqAccordion);
|
|
331
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
331
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqAccordion, decorators: [{
|
|
332
332
|
type: Component,
|
|
333
333
|
args: [{
|
|
334
334
|
selector: 'bq-accordion',
|
|
@@ -359,8 +359,8 @@ let BqAccordionGroup = class BqAccordionGroup {
|
|
|
359
359
|
c.detach();
|
|
360
360
|
this.el = r.nativeElement;
|
|
361
361
|
}
|
|
362
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
363
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
362
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
363
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqAccordionGroup, isStandalone: true, selector: "bq-accordion-group", inputs: { appearance: "appearance", expandAll: "expandAll", multiple: "multiple", noAnimation: "noAnimation", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
364
364
|
};
|
|
365
365
|
BqAccordionGroup = __decorate([
|
|
366
366
|
ProxyCmp({
|
|
@@ -369,7 +369,7 @@ BqAccordionGroup = __decorate([
|
|
|
369
369
|
}),
|
|
370
370
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
371
371
|
], BqAccordionGroup);
|
|
372
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
372
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqAccordionGroup, decorators: [{
|
|
373
373
|
type: Component,
|
|
374
374
|
args: [{
|
|
375
375
|
selector: 'bq-accordion-group',
|
|
@@ -389,8 +389,8 @@ let BqAlert = class BqAlert {
|
|
|
389
389
|
c.detach();
|
|
390
390
|
this.el = r.nativeElement;
|
|
391
391
|
}
|
|
392
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
393
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
392
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
393
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqAlert, isStandalone: true, selector: "bq-alert", inputs: { autoDismiss: "autoDismiss", border: "border", disableClose: "disableClose", hideIcon: "hideIcon", open: "open", sticky: "sticky", time: "time", type: "type" }, outputs: { bqHide: "bqHide", bqShow: "bqShow", bqAfterShow: "bqAfterShow", bqAfterHide: "bqAfterHide" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
394
394
|
};
|
|
395
395
|
BqAlert = __decorate([
|
|
396
396
|
ProxyCmp({
|
|
@@ -400,7 +400,7 @@ BqAlert = __decorate([
|
|
|
400
400
|
}),
|
|
401
401
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
402
402
|
], BqAlert);
|
|
403
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
403
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqAlert, decorators: [{
|
|
404
404
|
type: Component,
|
|
405
405
|
args: [{
|
|
406
406
|
selector: 'bq-alert',
|
|
@@ -425,8 +425,8 @@ let BqAvatar = class BqAvatar {
|
|
|
425
425
|
c.detach();
|
|
426
426
|
this.el = r.nativeElement;
|
|
427
427
|
}
|
|
428
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
429
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
428
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
429
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqAvatar, isStandalone: true, selector: "bq-avatar", inputs: { altText: "altText", image: "image", initials: "initials", label: "label", shape: "shape", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
430
430
|
};
|
|
431
431
|
BqAvatar = __decorate([
|
|
432
432
|
ProxyCmp({
|
|
@@ -435,7 +435,7 @@ BqAvatar = __decorate([
|
|
|
435
435
|
}),
|
|
436
436
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
437
437
|
], BqAvatar);
|
|
438
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
438
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqAvatar, decorators: [{
|
|
439
439
|
type: Component,
|
|
440
440
|
args: [{
|
|
441
441
|
selector: 'bq-avatar',
|
|
@@ -451,8 +451,8 @@ let BqBadge = class BqBadge {
|
|
|
451
451
|
c.detach();
|
|
452
452
|
this.el = r.nativeElement;
|
|
453
453
|
}
|
|
454
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
455
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
454
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
455
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqBadge, isStandalone: true, selector: "bq-badge", inputs: { backgroundColor: "backgroundColor", size: "size", textColor: "textColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
456
456
|
};
|
|
457
457
|
BqBadge = __decorate([
|
|
458
458
|
ProxyCmp({
|
|
@@ -461,7 +461,7 @@ BqBadge = __decorate([
|
|
|
461
461
|
}),
|
|
462
462
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
463
463
|
], BqBadge);
|
|
464
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
464
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqBadge, decorators: [{
|
|
465
465
|
type: Component,
|
|
466
466
|
args: [{
|
|
467
467
|
selector: 'bq-badge',
|
|
@@ -477,8 +477,8 @@ let BqBreadcrumb = class BqBreadcrumb {
|
|
|
477
477
|
c.detach();
|
|
478
478
|
this.el = r.nativeElement;
|
|
479
479
|
}
|
|
480
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
481
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
480
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqBreadcrumb, 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: "20.3.9", type: BqBreadcrumb, isStandalone: true, selector: "bq-breadcrumb", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
482
482
|
};
|
|
483
483
|
BqBreadcrumb = __decorate([
|
|
484
484
|
ProxyCmp({
|
|
@@ -487,7 +487,7 @@ BqBreadcrumb = __decorate([
|
|
|
487
487
|
}),
|
|
488
488
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
489
489
|
], BqBreadcrumb);
|
|
490
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
490
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqBreadcrumb, decorators: [{
|
|
491
491
|
type: Component,
|
|
492
492
|
args: [{
|
|
493
493
|
selector: 'bq-breadcrumb',
|
|
@@ -506,8 +506,8 @@ let BqBreadcrumbItem = class BqBreadcrumbItem {
|
|
|
506
506
|
c.detach();
|
|
507
507
|
this.el = r.nativeElement;
|
|
508
508
|
}
|
|
509
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
510
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
509
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
510
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqBreadcrumbItem, isStandalone: true, selector: "bq-breadcrumb-item", inputs: { href: "href", rel: "rel", target: "target" }, outputs: { bqBlur: "bqBlur", bqFocus: "bqFocus", bqClick: "bqClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
511
511
|
};
|
|
512
512
|
BqBreadcrumbItem = __decorate([
|
|
513
513
|
ProxyCmp({
|
|
@@ -516,7 +516,7 @@ BqBreadcrumbItem = __decorate([
|
|
|
516
516
|
}),
|
|
517
517
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
518
518
|
], BqBreadcrumbItem);
|
|
519
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
519
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqBreadcrumbItem, decorators: [{
|
|
520
520
|
type: Component,
|
|
521
521
|
args: [{
|
|
522
522
|
selector: 'bq-breadcrumb-item',
|
|
@@ -542,8 +542,8 @@ let BqButton = class BqButton {
|
|
|
542
542
|
c.detach();
|
|
543
543
|
this.el = r.nativeElement;
|
|
544
544
|
}
|
|
545
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
546
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
545
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
546
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqButton, isStandalone: true, selector: "bq-button", inputs: { appearance: "appearance", block: "block", border: "border", disabled: "disabled", download: "download", href: "href", justifyContent: "justifyContent", loading: "loading", size: "size", target: "target", type: "type", variant: "variant" }, outputs: { bqBlur: "bqBlur", bqFocus: "bqFocus", bqClick: "bqClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
547
547
|
};
|
|
548
548
|
BqButton = __decorate([
|
|
549
549
|
ProxyCmp({
|
|
@@ -552,7 +552,7 @@ BqButton = __decorate([
|
|
|
552
552
|
}),
|
|
553
553
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
554
554
|
], BqButton);
|
|
555
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
555
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqButton, decorators: [{
|
|
556
556
|
type: Component,
|
|
557
557
|
args: [{
|
|
558
558
|
selector: 'bq-button',
|
|
@@ -575,8 +575,8 @@ let BqCard = class BqCard {
|
|
|
575
575
|
c.detach();
|
|
576
576
|
this.el = r.nativeElement;
|
|
577
577
|
}
|
|
578
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
579
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
578
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
579
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqCard, isStandalone: true, selector: "bq-card", inputs: { border: "border", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
580
580
|
};
|
|
581
581
|
BqCard = __decorate([
|
|
582
582
|
ProxyCmp({
|
|
@@ -585,7 +585,7 @@ BqCard = __decorate([
|
|
|
585
585
|
}),
|
|
586
586
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
587
587
|
], BqCard);
|
|
588
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
588
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqCard, decorators: [{
|
|
589
589
|
type: Component,
|
|
590
590
|
args: [{
|
|
591
591
|
selector: 'bq-card',
|
|
@@ -604,8 +604,8 @@ let BqCheckbox = class BqCheckbox {
|
|
|
604
604
|
c.detach();
|
|
605
605
|
this.el = r.nativeElement;
|
|
606
606
|
}
|
|
607
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
608
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
607
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
608
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqCheckbox, isStandalone: true, selector: "bq-checkbox", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", formValidationMessage: "formValidationMessage", indeterminate: "indeterminate", name: "name", required: "required", value: "value" }, outputs: { bqChange: "bqChange", bqFocus: "bqFocus", bqBlur: "bqBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
609
609
|
};
|
|
610
610
|
BqCheckbox = __decorate([
|
|
611
611
|
ProxyCmp({
|
|
@@ -615,7 +615,7 @@ BqCheckbox = __decorate([
|
|
|
615
615
|
}),
|
|
616
616
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
617
617
|
], BqCheckbox);
|
|
618
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
618
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqCheckbox, decorators: [{
|
|
619
619
|
type: Component,
|
|
620
620
|
args: [{
|
|
621
621
|
selector: 'bq-checkbox',
|
|
@@ -642,8 +642,8 @@ let BqDatePicker = class BqDatePicker {
|
|
|
642
642
|
c.detach();
|
|
643
643
|
this.el = r.nativeElement;
|
|
644
644
|
}
|
|
645
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
646
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
645
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
646
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqDatePicker, isStandalone: true, selector: "bq-date-picker", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", disableClear: "disableClear", disabled: "disabled", distance: "distance", firstDayOfWeek: "firstDayOfWeek", form: "form", formValidationMessage: "formValidationMessage", 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" }, outputs: { bqBlur: "bqBlur", bqChange: "bqChange", bqClear: "bqClear", bqFocus: "bqFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
647
647
|
};
|
|
648
648
|
BqDatePicker = __decorate([
|
|
649
649
|
ProxyCmp({
|
|
@@ -653,7 +653,7 @@ BqDatePicker = __decorate([
|
|
|
653
653
|
}),
|
|
654
654
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
655
655
|
], BqDatePicker);
|
|
656
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
656
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqDatePicker, decorators: [{
|
|
657
657
|
type: Component,
|
|
658
658
|
args: [{
|
|
659
659
|
selector: 'bq-date-picker',
|
|
@@ -683,8 +683,8 @@ let BqDialog = class BqDialog {
|
|
|
683
683
|
c.detach();
|
|
684
684
|
this.el = r.nativeElement;
|
|
685
685
|
}
|
|
686
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
687
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
686
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
687
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqDialog, isStandalone: true, selector: "bq-dialog", inputs: { border: "border", disableBackdrop: "disableBackdrop", disableCloseClickOutside: "disableCloseClickOutside", disableCloseEscKeydown: "disableCloseEscKeydown", footerAppearance: "footerAppearance", hideCloseButton: "hideCloseButton", open: "open", size: "size" }, outputs: { bqCancel: "bqCancel", bqClose: "bqClose", bqOpen: "bqOpen", bqAfterOpen: "bqAfterOpen", bqAfterClose: "bqAfterClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
688
688
|
};
|
|
689
689
|
BqDialog = __decorate([
|
|
690
690
|
ProxyCmp({
|
|
@@ -694,7 +694,7 @@ BqDialog = __decorate([
|
|
|
694
694
|
}),
|
|
695
695
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
696
696
|
], BqDialog);
|
|
697
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqDialog, decorators: [{
|
|
698
698
|
type: Component,
|
|
699
699
|
args: [{
|
|
700
700
|
selector: 'bq-dialog',
|
|
@@ -721,8 +721,8 @@ let BqDivider = class BqDivider {
|
|
|
721
721
|
c.detach();
|
|
722
722
|
this.el = r.nativeElement;
|
|
723
723
|
}
|
|
724
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
725
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
724
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
725
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqDivider, isStandalone: true, selector: "bq-divider", inputs: { dashed: "dashed", orientation: "orientation", strokeBasis: "strokeBasis", strokeColor: "strokeColor", strokeDashGap: "strokeDashGap", strokeDashWidth: "strokeDashWidth", strokeLinecap: "strokeLinecap", strokeThickness: "strokeThickness", titleAlignment: "titleAlignment" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
726
726
|
};
|
|
727
727
|
BqDivider = __decorate([
|
|
728
728
|
ProxyCmp({
|
|
@@ -731,7 +731,7 @@ BqDivider = __decorate([
|
|
|
731
731
|
}),
|
|
732
732
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
733
733
|
], BqDivider);
|
|
734
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
734
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqDivider, decorators: [{
|
|
735
735
|
type: Component,
|
|
736
736
|
args: [{
|
|
737
737
|
selector: 'bq-divider',
|
|
@@ -751,8 +751,8 @@ let BqDrawer = class BqDrawer {
|
|
|
751
751
|
c.detach();
|
|
752
752
|
this.el = r.nativeElement;
|
|
753
753
|
}
|
|
754
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
755
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
754
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
755
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqDrawer, isStandalone: true, selector: "bq-drawer", inputs: { closeOnClickOutside: "closeOnClickOutside", closeOnEsc: "closeOnEsc", enableBackdrop: "enableBackdrop", open: "open", placement: "placement", position: "position" }, outputs: { bqClose: "bqClose", bqOpen: "bqOpen", bqAfterOpen: "bqAfterOpen", bqAfterClose: "bqAfterClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
756
756
|
};
|
|
757
757
|
BqDrawer = __decorate([
|
|
758
758
|
ProxyCmp({
|
|
@@ -762,7 +762,7 @@ BqDrawer = __decorate([
|
|
|
762
762
|
}),
|
|
763
763
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
764
764
|
], BqDrawer);
|
|
765
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
765
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqDrawer, decorators: [{
|
|
766
766
|
type: Component,
|
|
767
767
|
args: [{
|
|
768
768
|
selector: 'bq-drawer',
|
|
@@ -788,8 +788,8 @@ let BqDropdown = class BqDropdown {
|
|
|
788
788
|
c.detach();
|
|
789
789
|
this.el = r.nativeElement;
|
|
790
790
|
}
|
|
791
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
792
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
791
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
792
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqDropdown, isStandalone: true, selector: "bq-dropdown", inputs: { disableScrollLock: "disableScrollLock", disabled: "disabled", distance: "distance", keepOpenOnSelect: "keepOpenOnSelect", open: "open", panelHeight: "panelHeight", placement: "placement", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy" }, outputs: { bqOpen: "bqOpen" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
793
793
|
};
|
|
794
794
|
BqDropdown = __decorate([
|
|
795
795
|
ProxyCmp({
|
|
@@ -798,7 +798,7 @@ BqDropdown = __decorate([
|
|
|
798
798
|
}),
|
|
799
799
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
800
800
|
], BqDropdown);
|
|
801
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
801
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqDropdown, decorators: [{
|
|
802
802
|
type: Component,
|
|
803
803
|
args: [{
|
|
804
804
|
selector: 'bq-dropdown',
|
|
@@ -817,8 +817,8 @@ let BqEmptyState = class BqEmptyState {
|
|
|
817
817
|
c.detach();
|
|
818
818
|
this.el = r.nativeElement;
|
|
819
819
|
}
|
|
820
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
821
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
820
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
821
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqEmptyState, isStandalone: true, selector: "bq-empty-state", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
822
822
|
};
|
|
823
823
|
BqEmptyState = __decorate([
|
|
824
824
|
ProxyCmp({
|
|
@@ -827,7 +827,7 @@ BqEmptyState = __decorate([
|
|
|
827
827
|
}),
|
|
828
828
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
829
829
|
], BqEmptyState);
|
|
830
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
830
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqEmptyState, decorators: [{
|
|
831
831
|
type: Component,
|
|
832
832
|
args: [{
|
|
833
833
|
selector: 'bq-empty-state',
|
|
@@ -844,8 +844,8 @@ let BqIcon = class BqIcon {
|
|
|
844
844
|
c.detach();
|
|
845
845
|
this.el = r.nativeElement;
|
|
846
846
|
}
|
|
847
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
848
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
847
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
848
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqIcon, isStandalone: true, selector: "bq-icon", inputs: { color: "color", label: "label", name: "name", size: "size", src: "src", weight: "weight" }, outputs: { svgLoaded: "svgLoaded" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
849
849
|
};
|
|
850
850
|
BqIcon = __decorate([
|
|
851
851
|
ProxyCmp({
|
|
@@ -854,7 +854,7 @@ BqIcon = __decorate([
|
|
|
854
854
|
}),
|
|
855
855
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
856
856
|
], BqIcon);
|
|
857
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
857
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqIcon, decorators: [{
|
|
858
858
|
type: Component,
|
|
859
859
|
args: [{
|
|
860
860
|
selector: 'bq-icon',
|
|
@@ -878,24 +878,24 @@ let BqInput = class BqInput {
|
|
|
878
878
|
c.detach();
|
|
879
879
|
this.el = r.nativeElement;
|
|
880
880
|
}
|
|
881
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
882
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
881
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
882
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqInput, isStandalone: true, selector: "bq-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disabled: "disabled", form: "form", formValidationMessage: "formValidationMessage", 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" }, outputs: { bqBlur: "bqBlur", bqChange: "bqChange", bqClear: "bqClear", bqFocus: "bqFocus", bqInput: "bqInput" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
883
883
|
};
|
|
884
884
|
BqInput = __decorate([
|
|
885
885
|
ProxyCmp({
|
|
886
886
|
defineCustomElementFn: defineCustomElement$i,
|
|
887
|
-
inputs: ['autocapitalize', 'autocomplete', '
|
|
887
|
+
inputs: ['autocapitalize', 'autocomplete', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'formValidationMessage', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value']
|
|
888
888
|
}),
|
|
889
889
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
890
890
|
], BqInput);
|
|
891
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
891
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqInput, decorators: [{
|
|
892
892
|
type: Component,
|
|
893
893
|
args: [{
|
|
894
894
|
selector: 'bq-input',
|
|
895
895
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
896
896
|
template: '<ng-content></ng-content>',
|
|
897
897
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
898
|
-
inputs: ['autocapitalize', 'autocomplete', '
|
|
898
|
+
inputs: ['autocapitalize', 'autocomplete', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'formValidationMessage', 'inputmode', 'max', 'maxlength', 'min', 'minlength', { name: 'name', required: true }, 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value'],
|
|
899
899
|
outputs: ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput'],
|
|
900
900
|
}]
|
|
901
901
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
@@ -919,8 +919,8 @@ let BqNotification = class BqNotification {
|
|
|
919
919
|
c.detach();
|
|
920
920
|
this.el = r.nativeElement;
|
|
921
921
|
}
|
|
922
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
923
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
922
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
923
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqNotification, isStandalone: true, selector: "bq-notification", inputs: { autoDismiss: "autoDismiss", border: "border", disableClose: "disableClose", hideIcon: "hideIcon", open: "open", time: "time", type: "type" }, outputs: { bqHide: "bqHide", bqShow: "bqShow", bqAfterOpen: "bqAfterOpen", bqAfterClose: "bqAfterClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
924
924
|
};
|
|
925
925
|
BqNotification = __decorate([
|
|
926
926
|
ProxyCmp({
|
|
@@ -930,7 +930,7 @@ BqNotification = __decorate([
|
|
|
930
930
|
}),
|
|
931
931
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
932
932
|
], BqNotification);
|
|
933
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
933
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqNotification, decorators: [{
|
|
934
934
|
type: Component,
|
|
935
935
|
args: [{
|
|
936
936
|
selector: 'bq-notification',
|
|
@@ -959,24 +959,24 @@ let BqOption = class BqOption {
|
|
|
959
959
|
c.detach();
|
|
960
960
|
this.el = r.nativeElement;
|
|
961
961
|
}
|
|
962
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
963
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
962
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
963
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqOption, isStandalone: true, selector: "bq-option", inputs: { disabled: "disabled", displayValue: "displayValue", hidden: "hidden", selected: "selected", value: "value" }, outputs: { bqBlur: "bqBlur", bqFocus: "bqFocus", bqClick: "bqClick", bqEnter: "bqEnter" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
964
964
|
};
|
|
965
965
|
BqOption = __decorate([
|
|
966
966
|
ProxyCmp({
|
|
967
967
|
defineCustomElementFn: defineCustomElement$k,
|
|
968
|
-
inputs: ['disabled', 'hidden', 'selected', 'value']
|
|
968
|
+
inputs: ['disabled', 'displayValue', 'hidden', 'selected', 'value']
|
|
969
969
|
}),
|
|
970
970
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
971
971
|
], BqOption);
|
|
972
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
972
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqOption, decorators: [{
|
|
973
973
|
type: Component,
|
|
974
974
|
args: [{
|
|
975
975
|
selector: 'bq-option',
|
|
976
976
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
977
977
|
template: '<ng-content></ng-content>',
|
|
978
978
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
979
|
-
inputs: ['disabled', 'hidden', 'selected', 'value'],
|
|
979
|
+
inputs: ['disabled', 'displayValue', 'hidden', 'selected', 'value'],
|
|
980
980
|
outputs: ['bqBlur', 'bqFocus', 'bqClick', 'bqEnter'],
|
|
981
981
|
}]
|
|
982
982
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
@@ -994,8 +994,8 @@ let BqOptionGroup = class BqOptionGroup {
|
|
|
994
994
|
c.detach();
|
|
995
995
|
this.el = r.nativeElement;
|
|
996
996
|
}
|
|
997
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
998
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
997
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqOptionGroup, 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: "20.3.9", type: BqOptionGroup, isStandalone: true, selector: "bq-option-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
999
999
|
};
|
|
1000
1000
|
BqOptionGroup = __decorate([
|
|
1001
1001
|
ProxyCmp({
|
|
@@ -1003,7 +1003,7 @@ BqOptionGroup = __decorate([
|
|
|
1003
1003
|
}),
|
|
1004
1004
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1005
1005
|
], BqOptionGroup);
|
|
1006
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1006
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqOptionGroup, decorators: [{
|
|
1007
1007
|
type: Component,
|
|
1008
1008
|
args: [{
|
|
1009
1009
|
selector: 'bq-option-group',
|
|
@@ -1020,8 +1020,8 @@ let BqOptionList = class BqOptionList {
|
|
|
1020
1020
|
c.detach();
|
|
1021
1021
|
this.el = r.nativeElement;
|
|
1022
1022
|
}
|
|
1023
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1024
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1023
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqOptionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1024
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqOptionList, isStandalone: true, selector: "bq-option-list", inputs: { ariaLabel: "ariaLabel" }, outputs: { bqSelect: "bqSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1025
1025
|
};
|
|
1026
1026
|
BqOptionList = __decorate([
|
|
1027
1027
|
ProxyCmp({
|
|
@@ -1030,7 +1030,7 @@ BqOptionList = __decorate([
|
|
|
1030
1030
|
}),
|
|
1031
1031
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1032
1032
|
], BqOptionList);
|
|
1033
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1033
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqOptionList, decorators: [{
|
|
1034
1034
|
type: Component,
|
|
1035
1035
|
args: [{
|
|
1036
1036
|
selector: 'bq-option-list',
|
|
@@ -1049,8 +1049,8 @@ let BqPageTitle = class BqPageTitle {
|
|
|
1049
1049
|
c.detach();
|
|
1050
1050
|
this.el = r.nativeElement;
|
|
1051
1051
|
}
|
|
1052
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1053
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1052
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqPageTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1053
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqPageTitle, isStandalone: true, selector: "bq-page-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1054
1054
|
};
|
|
1055
1055
|
BqPageTitle = __decorate([
|
|
1056
1056
|
ProxyCmp({
|
|
@@ -1058,7 +1058,7 @@ BqPageTitle = __decorate([
|
|
|
1058
1058
|
}),
|
|
1059
1059
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1060
1060
|
], BqPageTitle);
|
|
1061
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1061
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqPageTitle, decorators: [{
|
|
1062
1062
|
type: Component,
|
|
1063
1063
|
args: [{
|
|
1064
1064
|
selector: 'bq-page-title',
|
|
@@ -1074,8 +1074,8 @@ let BqPanel = class BqPanel {
|
|
|
1074
1074
|
c.detach();
|
|
1075
1075
|
this.el = r.nativeElement;
|
|
1076
1076
|
}
|
|
1077
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1078
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1077
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1078
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqPanel, isStandalone: true, selector: "bq-panel", inputs: { disableScrollLock: "disableScrollLock", 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 }); }
|
|
1079
1079
|
};
|
|
1080
1080
|
BqPanel = __decorate([
|
|
1081
1081
|
ProxyCmp({
|
|
@@ -1084,7 +1084,7 @@ BqPanel = __decorate([
|
|
|
1084
1084
|
}),
|
|
1085
1085
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1086
1086
|
], BqPanel);
|
|
1087
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1087
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqPanel, decorators: [{
|
|
1088
1088
|
type: Component,
|
|
1089
1089
|
args: [{
|
|
1090
1090
|
selector: 'bq-panel',
|
|
@@ -1100,8 +1100,8 @@ let BqProgress = class BqProgress {
|
|
|
1100
1100
|
c.detach();
|
|
1101
1101
|
this.el = r.nativeElement;
|
|
1102
1102
|
}
|
|
1103
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1104
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1103
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1104
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqProgress, isStandalone: true, selector: "bq-progress", inputs: { borderShape: "borderShape", enableTooltip: "enableTooltip", indeterminate: "indeterminate", label: "label", thickness: "thickness", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1105
1105
|
};
|
|
1106
1106
|
BqProgress = __decorate([
|
|
1107
1107
|
ProxyCmp({
|
|
@@ -1110,7 +1110,7 @@ BqProgress = __decorate([
|
|
|
1110
1110
|
}),
|
|
1111
1111
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1112
1112
|
], BqProgress);
|
|
1113
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1113
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqProgress, decorators: [{
|
|
1114
1114
|
type: Component,
|
|
1115
1115
|
args: [{
|
|
1116
1116
|
selector: 'bq-progress',
|
|
@@ -1130,8 +1130,8 @@ let BqRadio = class BqRadio {
|
|
|
1130
1130
|
c.detach();
|
|
1131
1131
|
this.el = r.nativeElement;
|
|
1132
1132
|
}
|
|
1133
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1134
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1133
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1134
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqRadio, isStandalone: true, selector: "bq-radio", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", name: "name", required: "required", value: "value" }, outputs: { bqClick: "bqClick", bqFocus: "bqFocus", bqBlur: "bqBlur", bqKeyDown: "bqKeyDown" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1135
1135
|
};
|
|
1136
1136
|
BqRadio = __decorate([
|
|
1137
1137
|
ProxyCmp({
|
|
@@ -1141,7 +1141,7 @@ BqRadio = __decorate([
|
|
|
1141
1141
|
}),
|
|
1142
1142
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1143
1143
|
], BqRadio);
|
|
1144
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1144
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqRadio, decorators: [{
|
|
1145
1145
|
type: Component,
|
|
1146
1146
|
args: [{
|
|
1147
1147
|
selector: 'bq-radio',
|
|
@@ -1168,8 +1168,8 @@ let BqRadioGroup = class BqRadioGroup {
|
|
|
1168
1168
|
c.detach();
|
|
1169
1169
|
this.el = r.nativeElement;
|
|
1170
1170
|
}
|
|
1171
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1172
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1171
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1172
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqRadioGroup, isStandalone: true, selector: "bq-radio-group", inputs: { backgroundOnHover: "backgroundOnHover", debounceTime: "debounceTime", disabled: "disabled", fieldset: "fieldset", name: "name", orientation: "orientation", required: "required", requiredValidationMessage: "requiredValidationMessage", value: "value" }, outputs: { bqChange: "bqChange", bqBlur: "bqBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1173
1173
|
};
|
|
1174
1174
|
BqRadioGroup = __decorate([
|
|
1175
1175
|
ProxyCmp({
|
|
@@ -1178,7 +1178,7 @@ BqRadioGroup = __decorate([
|
|
|
1178
1178
|
}),
|
|
1179
1179
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1180
1180
|
], BqRadioGroup);
|
|
1181
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1181
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqRadioGroup, decorators: [{
|
|
1182
1182
|
type: Component,
|
|
1183
1183
|
args: [{
|
|
1184
1184
|
selector: 'bq-radio-group',
|
|
@@ -1204,8 +1204,8 @@ let BqSelect = class BqSelect {
|
|
|
1204
1204
|
c.detach();
|
|
1205
1205
|
this.el = r.nativeElement;
|
|
1206
1206
|
}
|
|
1207
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1208
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1207
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1208
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqSelect, isStandalone: true, selector: "bq-select", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disableScrollLock: "disableScrollLock", 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" }, outputs: { bqBlur: "bqBlur", bqClear: "bqClear", bqFocus: "bqFocus", bqSelect: "bqSelect", bqInput: "bqInput" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1209
1209
|
};
|
|
1210
1210
|
BqSelect = __decorate([
|
|
1211
1211
|
ProxyCmp({
|
|
@@ -1215,7 +1215,7 @@ BqSelect = __decorate([
|
|
|
1215
1215
|
}),
|
|
1216
1216
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1217
1217
|
], BqSelect);
|
|
1218
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1218
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqSelect, decorators: [{
|
|
1219
1219
|
type: Component,
|
|
1220
1220
|
args: [{
|
|
1221
1221
|
selector: 'bq-select',
|
|
@@ -1244,8 +1244,8 @@ let BqSideMenu = class BqSideMenu {
|
|
|
1244
1244
|
c.detach();
|
|
1245
1245
|
this.el = r.nativeElement;
|
|
1246
1246
|
}
|
|
1247
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1248
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1247
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqSideMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1248
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqSideMenu, isStandalone: true, selector: "bq-side-menu", inputs: { appearance: "appearance", collapse: "collapse", size: "size" }, outputs: { bqCollapse: "bqCollapse", bqSelect: "bqSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1249
1249
|
};
|
|
1250
1250
|
BqSideMenu = __decorate([
|
|
1251
1251
|
ProxyCmp({
|
|
@@ -1255,7 +1255,7 @@ BqSideMenu = __decorate([
|
|
|
1255
1255
|
}),
|
|
1256
1256
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1257
1257
|
], BqSideMenu);
|
|
1258
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1258
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqSideMenu, decorators: [{
|
|
1259
1259
|
type: Component,
|
|
1260
1260
|
args: [{
|
|
1261
1261
|
selector: 'bq-side-menu',
|
|
@@ -1279,8 +1279,8 @@ let BqSideMenuItem = class BqSideMenuItem {
|
|
|
1279
1279
|
c.detach();
|
|
1280
1280
|
this.el = r.nativeElement;
|
|
1281
1281
|
}
|
|
1282
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1283
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1282
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqSideMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1283
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqSideMenuItem, isStandalone: true, selector: "bq-side-menu-item", inputs: { active: "active", collapse: "collapse", disabled: "disabled" }, outputs: { bqBlur: "bqBlur", bqFocus: "bqFocus", bqClick: "bqClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1284
1284
|
};
|
|
1285
1285
|
BqSideMenuItem = __decorate([
|
|
1286
1286
|
ProxyCmp({
|
|
@@ -1289,7 +1289,7 @@ BqSideMenuItem = __decorate([
|
|
|
1289
1289
|
}),
|
|
1290
1290
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1291
1291
|
], BqSideMenuItem);
|
|
1292
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1292
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqSideMenuItem, decorators: [{
|
|
1293
1293
|
type: Component,
|
|
1294
1294
|
args: [{
|
|
1295
1295
|
selector: 'bq-side-menu-item',
|
|
@@ -1315,8 +1315,8 @@ let BqSlider = class BqSlider {
|
|
|
1315
1315
|
c.detach();
|
|
1316
1316
|
this.el = r.nativeElement;
|
|
1317
1317
|
}
|
|
1318
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1319
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1318
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1319
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqSlider, isStandalone: true, selector: "bq-slider", inputs: { debounceTime: "debounceTime", disabled: "disabled", enableTooltip: "enableTooltip", enableValueIndicator: "enableValueIndicator", gap: "gap", max: "max", min: "min", name: "name", step: "step", tooltipAlwaysVisible: "tooltipAlwaysVisible", type: "type", value: "value" }, outputs: { bqChange: "bqChange", bqBlur: "bqBlur", bqFocus: "bqFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1320
1320
|
};
|
|
1321
1321
|
BqSlider = __decorate([
|
|
1322
1322
|
ProxyCmp({
|
|
@@ -1325,7 +1325,7 @@ BqSlider = __decorate([
|
|
|
1325
1325
|
}),
|
|
1326
1326
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1327
1327
|
], BqSlider);
|
|
1328
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1328
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqSlider, decorators: [{
|
|
1329
1329
|
type: Component,
|
|
1330
1330
|
args: [{
|
|
1331
1331
|
selector: 'bq-slider',
|
|
@@ -1348,8 +1348,8 @@ let BqSpinner = class BqSpinner {
|
|
|
1348
1348
|
c.detach();
|
|
1349
1349
|
this.el = r.nativeElement;
|
|
1350
1350
|
}
|
|
1351
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1352
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1351
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1352
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqSpinner, isStandalone: true, selector: "bq-spinner", inputs: { animation: "animation", size: "size", textPosition: "textPosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1353
1353
|
};
|
|
1354
1354
|
BqSpinner = __decorate([
|
|
1355
1355
|
ProxyCmp({
|
|
@@ -1358,7 +1358,7 @@ BqSpinner = __decorate([
|
|
|
1358
1358
|
}),
|
|
1359
1359
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1360
1360
|
], BqSpinner);
|
|
1361
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1361
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqSpinner, decorators: [{
|
|
1362
1362
|
type: Component,
|
|
1363
1363
|
args: [{
|
|
1364
1364
|
selector: 'bq-spinner',
|
|
@@ -1374,8 +1374,8 @@ let BqStatus = class BqStatus {
|
|
|
1374
1374
|
c.detach();
|
|
1375
1375
|
this.el = r.nativeElement;
|
|
1376
1376
|
}
|
|
1377
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1378
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1377
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1378
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqStatus, isStandalone: true, selector: "bq-status", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1379
1379
|
};
|
|
1380
1380
|
BqStatus = __decorate([
|
|
1381
1381
|
ProxyCmp({
|
|
@@ -1384,7 +1384,7 @@ BqStatus = __decorate([
|
|
|
1384
1384
|
}),
|
|
1385
1385
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1386
1386
|
], BqStatus);
|
|
1387
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1387
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqStatus, decorators: [{
|
|
1388
1388
|
type: Component,
|
|
1389
1389
|
args: [{
|
|
1390
1390
|
selector: 'bq-status',
|
|
@@ -1403,8 +1403,8 @@ let BqStepItem = class BqStepItem {
|
|
|
1403
1403
|
c.detach();
|
|
1404
1404
|
this.el = r.nativeElement;
|
|
1405
1405
|
}
|
|
1406
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1407
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1406
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqStepItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1407
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqStepItem, isStandalone: true, selector: "bq-step-item", inputs: { size: "size", status: "status", type: "type" }, outputs: { bqClick: "bqClick", bqFocus: "bqFocus", bqBlur: "bqBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1408
1408
|
};
|
|
1409
1409
|
BqStepItem = __decorate([
|
|
1410
1410
|
ProxyCmp({
|
|
@@ -1413,7 +1413,7 @@ BqStepItem = __decorate([
|
|
|
1413
1413
|
}),
|
|
1414
1414
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1415
1415
|
], BqStepItem);
|
|
1416
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1416
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqStepItem, decorators: [{
|
|
1417
1417
|
type: Component,
|
|
1418
1418
|
args: [{
|
|
1419
1419
|
selector: 'bq-step-item',
|
|
@@ -1436,8 +1436,8 @@ let BqSteps = class BqSteps {
|
|
|
1436
1436
|
c.detach();
|
|
1437
1437
|
this.el = r.nativeElement;
|
|
1438
1438
|
}
|
|
1439
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1440
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1439
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1440
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqSteps, isStandalone: true, selector: "bq-steps", inputs: { dividerColor: "dividerColor", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1441
1441
|
};
|
|
1442
1442
|
BqSteps = __decorate([
|
|
1443
1443
|
ProxyCmp({
|
|
@@ -1447,7 +1447,7 @@ BqSteps = __decorate([
|
|
|
1447
1447
|
}),
|
|
1448
1448
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1449
1449
|
], BqSteps);
|
|
1450
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1450
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqSteps, decorators: [{
|
|
1451
1451
|
type: Component,
|
|
1452
1452
|
args: [{
|
|
1453
1453
|
selector: 'bq-steps',
|
|
@@ -1466,8 +1466,8 @@ let BqSwitch = class BqSwitch {
|
|
|
1466
1466
|
c.detach();
|
|
1467
1467
|
this.el = r.nativeElement;
|
|
1468
1468
|
}
|
|
1469
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1470
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1469
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1470
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqSwitch, isStandalone: true, selector: "bq-switch", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formValidationMessage: "formValidationMessage", fullWidth: "fullWidth", innerLabel: "innerLabel", justifyContent: "justifyContent", name: "name", required: "required", reverseOrder: "reverseOrder", value: "value" }, outputs: { bqChange: "bqChange", bqFocus: "bqFocus", bqBlur: "bqBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1471
1471
|
};
|
|
1472
1472
|
BqSwitch = __decorate([
|
|
1473
1473
|
ProxyCmp({
|
|
@@ -1477,7 +1477,7 @@ BqSwitch = __decorate([
|
|
|
1477
1477
|
}),
|
|
1478
1478
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1479
1479
|
], BqSwitch);
|
|
1480
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1480
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqSwitch, decorators: [{
|
|
1481
1481
|
type: Component,
|
|
1482
1482
|
args: [{
|
|
1483
1483
|
selector: 'bq-switch',
|
|
@@ -1504,8 +1504,8 @@ let BqTab = class BqTab {
|
|
|
1504
1504
|
c.detach();
|
|
1505
1505
|
this.el = r.nativeElement;
|
|
1506
1506
|
}
|
|
1507
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1508
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1507
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1508
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqTab, isStandalone: true, selector: "bq-tab", inputs: { active: "active", controls: "controls", disabled: "disabled", orientation: "orientation", placement: "placement", size: "size", tabId: "tabId" }, outputs: { bqClick: "bqClick", bqFocus: "bqFocus", bqBlur: "bqBlur", bqKeyDown: "bqKeyDown" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1509
1509
|
};
|
|
1510
1510
|
BqTab = __decorate([
|
|
1511
1511
|
ProxyCmp({
|
|
@@ -1515,7 +1515,7 @@ BqTab = __decorate([
|
|
|
1515
1515
|
}),
|
|
1516
1516
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1517
1517
|
], BqTab);
|
|
1518
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1518
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqTab, decorators: [{
|
|
1519
1519
|
type: Component,
|
|
1520
1520
|
args: [{
|
|
1521
1521
|
selector: 'bq-tab',
|
|
@@ -1541,8 +1541,8 @@ let BqTabGroup = class BqTabGroup {
|
|
|
1541
1541
|
c.detach();
|
|
1542
1542
|
this.el = r.nativeElement;
|
|
1543
1543
|
}
|
|
1544
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1545
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1544
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1545
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqTabGroup, isStandalone: true, selector: "bq-tab-group", inputs: { debounceTime: "debounceTime", disableDivider: "disableDivider", orientation: "orientation", placement: "placement", size: "size", value: "value" }, outputs: { bqChange: "bqChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1546
1546
|
};
|
|
1547
1547
|
BqTabGroup = __decorate([
|
|
1548
1548
|
ProxyCmp({
|
|
@@ -1551,7 +1551,7 @@ BqTabGroup = __decorate([
|
|
|
1551
1551
|
}),
|
|
1552
1552
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1553
1553
|
], BqTabGroup);
|
|
1554
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1554
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqTabGroup, decorators: [{
|
|
1555
1555
|
type: Component,
|
|
1556
1556
|
args: [{
|
|
1557
1557
|
selector: 'bq-tab-group',
|
|
@@ -1575,8 +1575,8 @@ let BqTag = class BqTag {
|
|
|
1575
1575
|
c.detach();
|
|
1576
1576
|
this.el = r.nativeElement;
|
|
1577
1577
|
}
|
|
1578
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1579
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1578
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1579
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqTag, isStandalone: true, selector: "bq-tag", inputs: { border: "border", clickable: "clickable", color: "color", disabled: "disabled", hidden: "hidden", removable: "removable", selected: "selected", size: "size", variant: "variant" }, outputs: { bqClose: "bqClose", bqOpen: "bqOpen", bqBlur: "bqBlur", bqClick: "bqClick", bqFocus: "bqFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1580
1580
|
};
|
|
1581
1581
|
BqTag = __decorate([
|
|
1582
1582
|
ProxyCmp({
|
|
@@ -1586,7 +1586,7 @@ BqTag = __decorate([
|
|
|
1586
1586
|
}),
|
|
1587
1587
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1588
1588
|
], BqTag);
|
|
1589
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1589
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqTag, decorators: [{
|
|
1590
1590
|
type: Component,
|
|
1591
1591
|
args: [{
|
|
1592
1592
|
selector: 'bq-tag',
|
|
@@ -1618,24 +1618,24 @@ let BqTextarea = class BqTextarea {
|
|
|
1618
1618
|
c.detach();
|
|
1619
1619
|
this.el = r.nativeElement;
|
|
1620
1620
|
}
|
|
1621
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1622
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1621
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1622
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqTextarea, isStandalone: true, selector: "bq-textarea", inputs: { autoGrow: "autoGrow", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autofocus: "autofocus", debounceTime: "debounceTime", disableResize: "disableResize", disabled: "disabled", form: "form", formValidationMessage: "formValidationMessage", maxlength: "maxlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", spellcheck: "spellcheck", validationStatus: "validationStatus", value: "value", wrap: "wrap" }, outputs: { bqBlur: "bqBlur", bqChange: "bqChange", bqClear: "bqClear", bqFocus: "bqFocus", bqInput: "bqInput" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1623
1623
|
};
|
|
1624
1624
|
BqTextarea = __decorate([
|
|
1625
1625
|
ProxyCmp({
|
|
1626
1626
|
defineCustomElementFn: defineCustomElement$E,
|
|
1627
|
-
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', '
|
|
1627
|
+
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'formValidationMessage', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap']
|
|
1628
1628
|
}),
|
|
1629
1629
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1630
1630
|
], BqTextarea);
|
|
1631
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1631
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqTextarea, decorators: [{
|
|
1632
1632
|
type: Component,
|
|
1633
1633
|
args: [{
|
|
1634
1634
|
selector: 'bq-textarea',
|
|
1635
1635
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1636
1636
|
template: '<ng-content></ng-content>',
|
|
1637
1637
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1638
|
-
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', '
|
|
1638
|
+
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'formValidationMessage', 'maxlength', { name: 'name', required: true }, { name: 'placeholder', required: true }, 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap'],
|
|
1639
1639
|
outputs: ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput'],
|
|
1640
1640
|
}]
|
|
1641
1641
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
@@ -1657,8 +1657,8 @@ let BqToast = class BqToast {
|
|
|
1657
1657
|
c.detach();
|
|
1658
1658
|
this.el = r.nativeElement;
|
|
1659
1659
|
}
|
|
1660
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1661
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1660
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1661
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqToast, isStandalone: true, selector: "bq-toast", inputs: { border: "border", hideIcon: "hideIcon", open: "open", placement: "placement", time: "time", type: "type" }, outputs: { bqHide: "bqHide", bqShow: "bqShow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1662
1662
|
};
|
|
1663
1663
|
BqToast = __decorate([
|
|
1664
1664
|
ProxyCmp({
|
|
@@ -1668,7 +1668,7 @@ BqToast = __decorate([
|
|
|
1668
1668
|
}),
|
|
1669
1669
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1670
1670
|
], BqToast);
|
|
1671
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1671
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqToast, decorators: [{
|
|
1672
1672
|
type: Component,
|
|
1673
1673
|
args: [{
|
|
1674
1674
|
selector: 'bq-toast',
|
|
@@ -1694,8 +1694,8 @@ let BqTooltip = class BqTooltip {
|
|
|
1694
1694
|
c.detach();
|
|
1695
1695
|
this.el = r.nativeElement;
|
|
1696
1696
|
}
|
|
1697
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
1698
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.
|
|
1697
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1698
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.9", type: BqTooltip, isStandalone: true, selector: "bq-tooltip", inputs: { alwaysVisible: "alwaysVisible", displayOn: "displayOn", distance: "distance", hideArrow: "hideArrow", placement: "placement", sameWidth: "sameWidth", visible: "visible" }, outputs: { bqClick: "bqClick", bqFocusIn: "bqFocusIn", bqFocusOut: "bqFocusOut", bqHoverIn: "bqHoverIn", bqHoverOut: "bqHoverOut" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1699
1699
|
};
|
|
1700
1700
|
BqTooltip = __decorate([
|
|
1701
1701
|
ProxyCmp({
|
|
@@ -1705,7 +1705,7 @@ BqTooltip = __decorate([
|
|
|
1705
1705
|
}),
|
|
1706
1706
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1707
1707
|
], BqTooltip);
|
|
1708
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
1708
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImport: i0, type: BqTooltip, decorators: [{
|
|
1709
1709
|
type: Component,
|
|
1710
1710
|
args: [{
|
|
1711
1711
|
selector: 'bq-tooltip',
|
|
@@ -1728,6 +1728,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImpor
|
|
|
1728
1728
|
}] } });
|
|
1729
1729
|
|
|
1730
1730
|
// @ts-nocheck
|
|
1731
|
+
/** biome-ignore-all assist/source/organizeImports: we want to keep the exports as is */
|
|
1731
1732
|
/**
|
|
1732
1733
|
* The directives folder containing the value accessors is generated dynamically
|
|
1733
1734
|
* when compiling the `beeq` package.
|