@beeq/angular 1.11.1 → 1.12.0
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 +161 -161
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +191 -166
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/package.json +4 -4
- package/{standalone/index.d.ts → types/beeq-angular-standalone.d.ts} +3 -3
- package/{index.d.ts → types/beeq-angular.d.ts} +24 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { HostListener, Directive, EventEmitter, ChangeDetectorRef, ElementRef, NgZone, Output, ChangeDetectionStrategy, Component, APP_INITIALIZER, NgModule } from '@angular/core';
|
|
2
|
+
import { HostListener, Directive, forwardRef, EventEmitter, ChangeDetectorRef, ElementRef, NgZone, Output, ChangeDetectionStrategy, Component, APP_INITIALIZER, NgModule } from '@angular/core';
|
|
3
3
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
4
4
|
import { __decorate, __metadata } from 'tslib';
|
|
5
5
|
import { fromEvent } from 'rxjs';
|
|
@@ -33,10 +33,10 @@ class ValueAccessor {
|
|
|
33
33
|
setDisabledState(isDisabled) {
|
|
34
34
|
this.el.nativeElement.disabled = isDisabled;
|
|
35
35
|
}
|
|
36
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
37
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
36
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
37
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.0", type: ValueAccessor, isStandalone: true, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 }); }
|
|
38
38
|
}
|
|
39
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
40
40
|
type: Directive,
|
|
41
41
|
args: [{}]
|
|
42
42
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
@@ -51,16 +51,16 @@ class BooleanValueAccessor extends ValueAccessor {
|
|
|
51
51
|
writeValue(value) {
|
|
52
52
|
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
53
53
|
}
|
|
54
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
55
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
54
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
55
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.0", type: BooleanValueAccessor, isStandalone: false, selector: "bq-checkbox, bq-switch", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"checked\"])" } }, providers: [
|
|
56
56
|
{
|
|
57
57
|
provide: NG_VALUE_ACCESSOR,
|
|
58
|
-
useExisting: BooleanValueAccessor,
|
|
58
|
+
useExisting: forwardRef((() => BooleanValueAccessor)),
|
|
59
59
|
multi: true
|
|
60
60
|
}
|
|
61
61
|
], usesInheritance: true, ngImport: i0 }); }
|
|
62
62
|
}
|
|
63
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
63
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
64
64
|
type: Directive,
|
|
65
65
|
args: [{
|
|
66
66
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -71,7 +71,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
|
|
|
71
71
|
providers: [
|
|
72
72
|
{
|
|
73
73
|
provide: NG_VALUE_ACCESSOR,
|
|
74
|
-
useExisting: BooleanValueAccessor,
|
|
74
|
+
useExisting: forwardRef((() => BooleanValueAccessor)),
|
|
75
75
|
multi: true
|
|
76
76
|
}
|
|
77
77
|
],
|
|
@@ -88,16 +88,16 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
88
88
|
fn(value === '' ? null : parseFloat(value));
|
|
89
89
|
});
|
|
90
90
|
}
|
|
91
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
92
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
91
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
92
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.0", type: NumericValueAccessor, isStandalone: false, selector: "bq-input[type=\"number\"], bq-slider:not[type=\"range\"]", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"value\"])" } }, providers: [
|
|
93
93
|
{
|
|
94
94
|
provide: NG_VALUE_ACCESSOR,
|
|
95
|
-
useExisting: NumericValueAccessor,
|
|
95
|
+
useExisting: forwardRef((() => NumericValueAccessor)),
|
|
96
96
|
multi: true
|
|
97
97
|
}
|
|
98
98
|
], usesInheritance: true, ngImport: i0 }); }
|
|
99
99
|
}
|
|
100
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
100
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
101
101
|
type: Directive,
|
|
102
102
|
args: [{
|
|
103
103
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -108,7 +108,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
|
|
|
108
108
|
providers: [
|
|
109
109
|
{
|
|
110
110
|
provide: NG_VALUE_ACCESSOR,
|
|
111
|
-
useExisting: NumericValueAccessor,
|
|
111
|
+
useExisting: forwardRef((() => NumericValueAccessor)),
|
|
112
112
|
multi: true
|
|
113
113
|
}
|
|
114
114
|
],
|
|
@@ -120,16 +120,16 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
120
120
|
constructor(el) {
|
|
121
121
|
super(el);
|
|
122
122
|
}
|
|
123
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
124
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
123
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
124
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.0", type: RadioValueAccessor, isStandalone: false, selector: "bq-radio-group", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"value\"])" } }, providers: [
|
|
125
125
|
{
|
|
126
126
|
provide: NG_VALUE_ACCESSOR,
|
|
127
|
-
useExisting: RadioValueAccessor,
|
|
127
|
+
useExisting: forwardRef((() => RadioValueAccessor)),
|
|
128
128
|
multi: true
|
|
129
129
|
}
|
|
130
130
|
], usesInheritance: true, ngImport: i0 }); }
|
|
131
131
|
}
|
|
132
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
132
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
133
133
|
type: Directive,
|
|
134
134
|
args: [{
|
|
135
135
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -140,7 +140,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
|
|
|
140
140
|
providers: [
|
|
141
141
|
{
|
|
142
142
|
provide: NG_VALUE_ACCESSOR,
|
|
143
|
-
useExisting: RadioValueAccessor,
|
|
143
|
+
useExisting: forwardRef((() => RadioValueAccessor)),
|
|
144
144
|
multi: true
|
|
145
145
|
}
|
|
146
146
|
],
|
|
@@ -152,16 +152,16 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
152
152
|
constructor(el) {
|
|
153
153
|
super(el);
|
|
154
154
|
}
|
|
155
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
156
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
155
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
156
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.0", type: SelectValueAccessor, isStandalone: false, selector: "bq-select", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"value\"])" } }, providers: [
|
|
157
157
|
{
|
|
158
158
|
provide: NG_VALUE_ACCESSOR,
|
|
159
|
-
useExisting: SelectValueAccessor,
|
|
159
|
+
useExisting: forwardRef((() => SelectValueAccessor)),
|
|
160
160
|
multi: true
|
|
161
161
|
}
|
|
162
162
|
], usesInheritance: true, ngImport: i0 }); }
|
|
163
163
|
}
|
|
164
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
164
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
165
165
|
type: Directive,
|
|
166
166
|
args: [{
|
|
167
167
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -172,7 +172,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
|
|
|
172
172
|
providers: [
|
|
173
173
|
{
|
|
174
174
|
provide: NG_VALUE_ACCESSOR,
|
|
175
|
-
useExisting: SelectValueAccessor,
|
|
175
|
+
useExisting: forwardRef((() => SelectValueAccessor)),
|
|
176
176
|
multi: true
|
|
177
177
|
}
|
|
178
178
|
],
|
|
@@ -184,16 +184,16 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
184
184
|
constructor(el) {
|
|
185
185
|
super(el);
|
|
186
186
|
}
|
|
187
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
188
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
187
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
188
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.0", type: TextValueAccessor, isStandalone: false, selector: "bq-date-picker, bq-input:not[type=\"number\"], bq-slider[type=\"range\"], bq-textarea", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"value\"])" } }, providers: [
|
|
189
189
|
{
|
|
190
190
|
provide: NG_VALUE_ACCESSOR,
|
|
191
|
-
useExisting: TextValueAccessor,
|
|
191
|
+
useExisting: forwardRef((() => TextValueAccessor)),
|
|
192
192
|
multi: true
|
|
193
193
|
}
|
|
194
194
|
], usesInheritance: true, ngImport: i0 }); }
|
|
195
195
|
}
|
|
196
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
196
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
197
197
|
type: Directive,
|
|
198
198
|
args: [{
|
|
199
199
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -204,7 +204,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
|
|
|
204
204
|
providers: [
|
|
205
205
|
{
|
|
206
206
|
provide: NG_VALUE_ACCESSOR,
|
|
207
|
-
useExisting: TextValueAccessor,
|
|
207
|
+
useExisting: forwardRef((() => TextValueAccessor)),
|
|
208
208
|
multi: true
|
|
209
209
|
}
|
|
210
210
|
],
|
|
@@ -314,8 +314,8 @@ If true, the Accordion animation, will be disabled. No animation will be applied
|
|
|
314
314
|
c.detach();
|
|
315
315
|
this.el = r.nativeElement;
|
|
316
316
|
}
|
|
317
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
318
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
317
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
318
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqAccordion, isStandalone: false, 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 }); }
|
|
319
319
|
};
|
|
320
320
|
BqAccordion = __decorate([
|
|
321
321
|
ProxyCmp({
|
|
@@ -323,7 +323,7 @@ BqAccordion = __decorate([
|
|
|
323
323
|
}),
|
|
324
324
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
325
325
|
], BqAccordion);
|
|
326
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
326
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqAccordion, decorators: [{
|
|
327
327
|
type: Component,
|
|
328
328
|
args: [{
|
|
329
329
|
selector: 'bq-accordion',
|
|
@@ -381,8 +381,8 @@ If true, the accordion animation, will be disabled. No animation will be applied
|
|
|
381
381
|
c.detach();
|
|
382
382
|
this.el = r.nativeElement;
|
|
383
383
|
}
|
|
384
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
385
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
384
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
385
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqAccordionGroup, isStandalone: false, 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 }); }
|
|
386
386
|
};
|
|
387
387
|
BqAccordionGroup = __decorate([
|
|
388
388
|
ProxyCmp({
|
|
@@ -390,7 +390,7 @@ BqAccordionGroup = __decorate([
|
|
|
390
390
|
}),
|
|
391
391
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
392
392
|
], BqAccordionGroup);
|
|
393
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
393
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqAccordionGroup, decorators: [{
|
|
394
394
|
type: Component,
|
|
395
395
|
args: [{
|
|
396
396
|
selector: 'bq-accordion-group',
|
|
@@ -451,8 +451,8 @@ let BqAlert = class BqAlert {
|
|
|
451
451
|
c.detach();
|
|
452
452
|
this.el = r.nativeElement;
|
|
453
453
|
}
|
|
454
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
455
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
454
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqAlert, 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: "21.1.0", type: BqAlert, isStandalone: false, 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 }); }
|
|
456
456
|
};
|
|
457
457
|
BqAlert = __decorate([
|
|
458
458
|
ProxyCmp({
|
|
@@ -461,7 +461,7 @@ BqAlert = __decorate([
|
|
|
461
461
|
}),
|
|
462
462
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
463
463
|
], BqAlert);
|
|
464
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
464
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqAlert, decorators: [{
|
|
465
465
|
type: Component,
|
|
466
466
|
args: [{
|
|
467
467
|
selector: 'bq-alert',
|
|
@@ -517,8 +517,8 @@ let BqAvatar = class BqAvatar {
|
|
|
517
517
|
c.detach();
|
|
518
518
|
this.el = r.nativeElement;
|
|
519
519
|
}
|
|
520
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
521
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
520
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
521
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqAvatar, isStandalone: false, 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 }); }
|
|
522
522
|
};
|
|
523
523
|
BqAvatar = __decorate([
|
|
524
524
|
ProxyCmp({
|
|
@@ -526,7 +526,7 @@ BqAvatar = __decorate([
|
|
|
526
526
|
}),
|
|
527
527
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
528
528
|
], BqAvatar);
|
|
529
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
529
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqAvatar, decorators: [{
|
|
530
530
|
type: Component,
|
|
531
531
|
args: [{
|
|
532
532
|
selector: 'bq-avatar',
|
|
@@ -558,8 +558,8 @@ let BqBadge = class BqBadge {
|
|
|
558
558
|
c.detach();
|
|
559
559
|
this.el = r.nativeElement;
|
|
560
560
|
}
|
|
561
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
562
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
561
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
562
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqBadge, isStandalone: false, selector: "bq-badge", inputs: { backgroundColor: "backgroundColor", size: "size", textColor: "textColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
563
563
|
};
|
|
564
564
|
BqBadge = __decorate([
|
|
565
565
|
ProxyCmp({
|
|
@@ -567,7 +567,7 @@ BqBadge = __decorate([
|
|
|
567
567
|
}),
|
|
568
568
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
569
569
|
], BqBadge);
|
|
570
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
570
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqBadge, decorators: [{
|
|
571
571
|
type: Component,
|
|
572
572
|
args: [{
|
|
573
573
|
selector: 'bq-badge',
|
|
@@ -589,8 +589,8 @@ let BqBreadcrumb = class BqBreadcrumb {
|
|
|
589
589
|
c.detach();
|
|
590
590
|
this.el = r.nativeElement;
|
|
591
591
|
}
|
|
592
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
593
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
592
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
593
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqBreadcrumb, isStandalone: false, selector: "bq-breadcrumb", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
594
594
|
};
|
|
595
595
|
BqBreadcrumb = __decorate([
|
|
596
596
|
ProxyCmp({
|
|
@@ -598,7 +598,7 @@ BqBreadcrumb = __decorate([
|
|
|
598
598
|
}),
|
|
599
599
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
600
600
|
], BqBreadcrumb);
|
|
601
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
601
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqBreadcrumb, decorators: [{
|
|
602
602
|
type: Component,
|
|
603
603
|
args: [{
|
|
604
604
|
selector: 'bq-breadcrumb',
|
|
@@ -633,8 +633,8 @@ let BqBreadcrumbItem = class BqBreadcrumbItem {
|
|
|
633
633
|
c.detach();
|
|
634
634
|
this.el = r.nativeElement;
|
|
635
635
|
}
|
|
636
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
637
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
636
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
637
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqBreadcrumbItem, isStandalone: false, 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 }); }
|
|
638
638
|
};
|
|
639
639
|
BqBreadcrumbItem = __decorate([
|
|
640
640
|
ProxyCmp({
|
|
@@ -642,7 +642,7 @@ BqBreadcrumbItem = __decorate([
|
|
|
642
642
|
}),
|
|
643
643
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
644
644
|
], BqBreadcrumbItem);
|
|
645
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
645
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqBreadcrumbItem, decorators: [{
|
|
646
646
|
type: Component,
|
|
647
647
|
args: [{
|
|
648
648
|
selector: 'bq-breadcrumb-item',
|
|
@@ -698,11 +698,21 @@ Details: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-downlo
|
|
|
698
698
|
set justifyContent(_) { }
|
|
699
699
|
;
|
|
700
700
|
/**
|
|
701
|
+
* Text used for accessibility purposes, specially screen readers, to describe the button action
|
|
702
|
+
*/
|
|
703
|
+
set label(_) { }
|
|
704
|
+
;
|
|
705
|
+
/**
|
|
701
706
|
* If `true` it will display the button in a loading state @default false
|
|
702
707
|
*/
|
|
703
708
|
set loading(_) { }
|
|
704
709
|
;
|
|
705
710
|
/**
|
|
711
|
+
* If `true` it will display the button as an icon-only button with aspect ratio 1:1 (square dimensions). Make sure to set the `label` prop for accessibility purposes. @default false
|
|
712
|
+
*/
|
|
713
|
+
set onlyIcon(_) { }
|
|
714
|
+
;
|
|
715
|
+
/**
|
|
706
716
|
* The size of the button @default 'medium'
|
|
707
717
|
*/
|
|
708
718
|
set size(_) { }
|
|
@@ -731,23 +741,23 @@ Details: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-target
|
|
|
731
741
|
c.detach();
|
|
732
742
|
this.el = r.nativeElement;
|
|
733
743
|
}
|
|
734
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
735
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
744
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
745
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqButton, isStandalone: false, selector: "bq-button", inputs: { appearance: "appearance", block: "block", border: "border", disabled: "disabled", download: "download", href: "href", justifyContent: "justifyContent", label: "label", loading: "loading", onlyIcon: "onlyIcon", 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 }); }
|
|
736
746
|
};
|
|
737
747
|
BqButton = __decorate([
|
|
738
748
|
ProxyCmp({
|
|
739
|
-
inputs: ['appearance', 'block', 'border', 'disabled', 'download', 'href', 'justifyContent', 'loading', 'size', 'target', 'type', 'variant']
|
|
749
|
+
inputs: ['appearance', 'block', 'border', 'disabled', 'download', 'href', 'justifyContent', 'label', 'loading', 'onlyIcon', 'size', 'target', 'type', 'variant']
|
|
740
750
|
}),
|
|
741
751
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
742
752
|
], BqButton);
|
|
743
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
753
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqButton, decorators: [{
|
|
744
754
|
type: Component,
|
|
745
755
|
args: [{
|
|
746
756
|
selector: 'bq-button',
|
|
747
757
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
748
758
|
template: '<ng-content></ng-content>',
|
|
749
759
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
750
|
-
inputs: ['appearance', 'block', 'border', 'disabled', 'download', 'href', 'justifyContent', 'loading', 'size', 'target', 'type', 'variant'],
|
|
760
|
+
inputs: ['appearance', 'block', 'border', 'disabled', 'download', 'href', 'justifyContent', 'label', 'loading', 'onlyIcon', 'size', 'target', 'type', 'variant'],
|
|
751
761
|
outputs: ['bqBlur', 'bqFocus', 'bqClick'],
|
|
752
762
|
standalone: false
|
|
753
763
|
}]
|
|
@@ -774,8 +784,8 @@ let BqCard = class BqCard {
|
|
|
774
784
|
c.detach();
|
|
775
785
|
this.el = r.nativeElement;
|
|
776
786
|
}
|
|
777
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
778
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
787
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
788
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqCard, isStandalone: false, selector: "bq-card", inputs: { border: "border", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
779
789
|
};
|
|
780
790
|
BqCard = __decorate([
|
|
781
791
|
ProxyCmp({
|
|
@@ -783,7 +793,7 @@ BqCard = __decorate([
|
|
|
783
793
|
}),
|
|
784
794
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
785
795
|
], BqCard);
|
|
786
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
796
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqCard, decorators: [{
|
|
787
797
|
type: Component,
|
|
788
798
|
args: [{
|
|
789
799
|
selector: 'bq-card',
|
|
@@ -848,8 +858,8 @@ let BqCheckbox = class BqCheckbox {
|
|
|
848
858
|
c.detach();
|
|
849
859
|
this.el = r.nativeElement;
|
|
850
860
|
}
|
|
851
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
852
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
861
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
862
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqCheckbox, isStandalone: false, 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 }); }
|
|
853
863
|
};
|
|
854
864
|
BqCheckbox = __decorate([
|
|
855
865
|
ProxyCmp({
|
|
@@ -858,7 +868,7 @@ BqCheckbox = __decorate([
|
|
|
858
868
|
}),
|
|
859
869
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
860
870
|
], BqCheckbox);
|
|
861
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
871
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqCheckbox, decorators: [{
|
|
862
872
|
type: Component,
|
|
863
873
|
args: [{
|
|
864
874
|
selector: 'bq-checkbox',
|
|
@@ -1040,8 +1050,8 @@ All dates are expected in ISO-8601 format (YYYY-MM-DD).
|
|
|
1040
1050
|
c.detach();
|
|
1041
1051
|
this.el = r.nativeElement;
|
|
1042
1052
|
}
|
|
1043
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1044
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1053
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1054
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqDatePicker, isStandalone: false, 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 }); }
|
|
1045
1055
|
};
|
|
1046
1056
|
BqDatePicker = __decorate([
|
|
1047
1057
|
ProxyCmp({
|
|
@@ -1050,7 +1060,7 @@ BqDatePicker = __decorate([
|
|
|
1050
1060
|
}),
|
|
1051
1061
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1052
1062
|
], BqDatePicker);
|
|
1053
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1063
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqDatePicker, decorators: [{
|
|
1054
1064
|
type: Component,
|
|
1055
1065
|
args: [{
|
|
1056
1066
|
selector: 'bq-date-picker',
|
|
@@ -1121,8 +1131,8 @@ let BqDialog = class BqDialog {
|
|
|
1121
1131
|
c.detach();
|
|
1122
1132
|
this.el = r.nativeElement;
|
|
1123
1133
|
}
|
|
1124
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1125
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1134
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1135
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqDialog, isStandalone: false, 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 }); }
|
|
1126
1136
|
};
|
|
1127
1137
|
BqDialog = __decorate([
|
|
1128
1138
|
ProxyCmp({
|
|
@@ -1131,7 +1141,7 @@ BqDialog = __decorate([
|
|
|
1131
1141
|
}),
|
|
1132
1142
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1133
1143
|
], BqDialog);
|
|
1134
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1144
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqDialog, decorators: [{
|
|
1135
1145
|
type: Component,
|
|
1136
1146
|
args: [{
|
|
1137
1147
|
selector: 'bq-dialog',
|
|
@@ -1204,8 +1214,8 @@ let BqDivider = class BqDivider {
|
|
|
1204
1214
|
c.detach();
|
|
1205
1215
|
this.el = r.nativeElement;
|
|
1206
1216
|
}
|
|
1207
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1208
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1217
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1218
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqDivider, isStandalone: false, 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 }); }
|
|
1209
1219
|
};
|
|
1210
1220
|
BqDivider = __decorate([
|
|
1211
1221
|
ProxyCmp({
|
|
@@ -1213,7 +1223,7 @@ BqDivider = __decorate([
|
|
|
1213
1223
|
}),
|
|
1214
1224
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1215
1225
|
], BqDivider);
|
|
1216
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1226
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqDivider, decorators: [{
|
|
1217
1227
|
type: Component,
|
|
1218
1228
|
args: [{
|
|
1219
1229
|
selector: 'bq-divider',
|
|
@@ -1264,8 +1274,8 @@ let BqDrawer = class BqDrawer {
|
|
|
1264
1274
|
c.detach();
|
|
1265
1275
|
this.el = r.nativeElement;
|
|
1266
1276
|
}
|
|
1267
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1268
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1277
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1278
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqDrawer, isStandalone: false, 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 }); }
|
|
1269
1279
|
};
|
|
1270
1280
|
BqDrawer = __decorate([
|
|
1271
1281
|
ProxyCmp({
|
|
@@ -1274,7 +1284,7 @@ BqDrawer = __decorate([
|
|
|
1274
1284
|
}),
|
|
1275
1285
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1276
1286
|
], BqDrawer);
|
|
1277
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1287
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqDrawer, decorators: [{
|
|
1278
1288
|
type: Component,
|
|
1279
1289
|
args: [{
|
|
1280
1290
|
selector: 'bq-drawer',
|
|
@@ -1351,8 +1361,8 @@ let BqDropdown = class BqDropdown {
|
|
|
1351
1361
|
c.detach();
|
|
1352
1362
|
this.el = r.nativeElement;
|
|
1353
1363
|
}
|
|
1354
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1355
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1364
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1365
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqDropdown, isStandalone: false, 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 }); }
|
|
1356
1366
|
};
|
|
1357
1367
|
BqDropdown = __decorate([
|
|
1358
1368
|
ProxyCmp({
|
|
@@ -1360,7 +1370,7 @@ BqDropdown = __decorate([
|
|
|
1360
1370
|
}),
|
|
1361
1371
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1362
1372
|
], BqDropdown);
|
|
1363
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1373
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqDropdown, decorators: [{
|
|
1364
1374
|
type: Component,
|
|
1365
1375
|
args: [{
|
|
1366
1376
|
selector: 'bq-dropdown',
|
|
@@ -1385,8 +1395,8 @@ let BqEmptyState = class BqEmptyState {
|
|
|
1385
1395
|
c.detach();
|
|
1386
1396
|
this.el = r.nativeElement;
|
|
1387
1397
|
}
|
|
1388
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1389
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1398
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1399
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqEmptyState, isStandalone: false, selector: "bq-empty-state", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1390
1400
|
};
|
|
1391
1401
|
BqEmptyState = __decorate([
|
|
1392
1402
|
ProxyCmp({
|
|
@@ -1394,7 +1404,7 @@ BqEmptyState = __decorate([
|
|
|
1394
1404
|
}),
|
|
1395
1405
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1396
1406
|
], BqEmptyState);
|
|
1397
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1407
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqEmptyState, decorators: [{
|
|
1398
1408
|
type: Component,
|
|
1399
1409
|
args: [{
|
|
1400
1410
|
selector: 'bq-empty-state',
|
|
@@ -1442,8 +1452,8 @@ let BqIcon = class BqIcon {
|
|
|
1442
1452
|
c.detach();
|
|
1443
1453
|
this.el = r.nativeElement;
|
|
1444
1454
|
}
|
|
1445
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1446
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1455
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1456
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqIcon, isStandalone: false, 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 }); }
|
|
1447
1457
|
};
|
|
1448
1458
|
BqIcon = __decorate([
|
|
1449
1459
|
ProxyCmp({
|
|
@@ -1451,7 +1461,7 @@ BqIcon = __decorate([
|
|
|
1451
1461
|
}),
|
|
1452
1462
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1453
1463
|
], BqIcon);
|
|
1454
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1464
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqIcon, decorators: [{
|
|
1455
1465
|
type: Component,
|
|
1456
1466
|
args: [{
|
|
1457
1467
|
selector: 'bq-icon',
|
|
@@ -1604,8 +1614,8 @@ Possible values are 'text', 'password', 'email', 'number', 'tel', 'search', 'url
|
|
|
1604
1614
|
c.detach();
|
|
1605
1615
|
this.el = r.nativeElement;
|
|
1606
1616
|
}
|
|
1607
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1608
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1617
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1618
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqInput, isStandalone: false, 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 }); }
|
|
1609
1619
|
};
|
|
1610
1620
|
BqInput = __decorate([
|
|
1611
1621
|
ProxyCmp({
|
|
@@ -1613,7 +1623,7 @@ BqInput = __decorate([
|
|
|
1613
1623
|
}),
|
|
1614
1624
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1615
1625
|
], BqInput);
|
|
1616
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1626
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqInput, decorators: [{
|
|
1617
1627
|
type: Component,
|
|
1618
1628
|
args: [{
|
|
1619
1629
|
selector: 'bq-input',
|
|
@@ -1680,8 +1690,8 @@ let BqNotification = class BqNotification {
|
|
|
1680
1690
|
c.detach();
|
|
1681
1691
|
this.el = r.nativeElement;
|
|
1682
1692
|
}
|
|
1683
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1684
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1693
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1694
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqNotification, isStandalone: false, 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 }); }
|
|
1685
1695
|
};
|
|
1686
1696
|
BqNotification = __decorate([
|
|
1687
1697
|
ProxyCmp({
|
|
@@ -1690,7 +1700,7 @@ BqNotification = __decorate([
|
|
|
1690
1700
|
}),
|
|
1691
1701
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1692
1702
|
], BqNotification);
|
|
1693
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1703
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqNotification, decorators: [{
|
|
1694
1704
|
type: Component,
|
|
1695
1705
|
args: [{
|
|
1696
1706
|
selector: 'bq-notification',
|
|
@@ -1745,8 +1755,8 @@ let BqOption = class BqOption {
|
|
|
1745
1755
|
c.detach();
|
|
1746
1756
|
this.el = r.nativeElement;
|
|
1747
1757
|
}
|
|
1748
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1749
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1758
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1759
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqOption, isStandalone: false, 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 }); }
|
|
1750
1760
|
};
|
|
1751
1761
|
BqOption = __decorate([
|
|
1752
1762
|
ProxyCmp({
|
|
@@ -1754,7 +1764,7 @@ BqOption = __decorate([
|
|
|
1754
1764
|
}),
|
|
1755
1765
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1756
1766
|
], BqOption);
|
|
1757
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1767
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqOption, decorators: [{
|
|
1758
1768
|
type: Component,
|
|
1759
1769
|
args: [{
|
|
1760
1770
|
selector: 'bq-option',
|
|
@@ -1780,14 +1790,14 @@ let BqOptionGroup = class BqOptionGroup {
|
|
|
1780
1790
|
c.detach();
|
|
1781
1791
|
this.el = r.nativeElement;
|
|
1782
1792
|
}
|
|
1783
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1784
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1793
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqOptionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1794
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqOptionGroup, isStandalone: false, selector: "bq-option-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1785
1795
|
};
|
|
1786
1796
|
BqOptionGroup = __decorate([
|
|
1787
1797
|
ProxyCmp({}),
|
|
1788
1798
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1789
1799
|
], BqOptionGroup);
|
|
1790
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1800
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqOptionGroup, decorators: [{
|
|
1791
1801
|
type: Component,
|
|
1792
1802
|
args: [{
|
|
1793
1803
|
selector: 'bq-option-group',
|
|
@@ -1810,8 +1820,8 @@ let BqOptionList = class BqOptionList {
|
|
|
1810
1820
|
c.detach();
|
|
1811
1821
|
this.el = r.nativeElement;
|
|
1812
1822
|
}
|
|
1813
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1814
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1823
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqOptionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1824
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqOptionList, isStandalone: false, selector: "bq-option-list", inputs: { ariaLabel: "ariaLabel" }, outputs: { bqSelect: "bqSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1815
1825
|
};
|
|
1816
1826
|
BqOptionList = __decorate([
|
|
1817
1827
|
ProxyCmp({
|
|
@@ -1819,7 +1829,7 @@ BqOptionList = __decorate([
|
|
|
1819
1829
|
}),
|
|
1820
1830
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1821
1831
|
], BqOptionList);
|
|
1822
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1832
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqOptionList, decorators: [{
|
|
1823
1833
|
type: Component,
|
|
1824
1834
|
args: [{
|
|
1825
1835
|
selector: 'bq-option-list',
|
|
@@ -1839,14 +1849,14 @@ let BqPageTitle = class BqPageTitle {
|
|
|
1839
1849
|
c.detach();
|
|
1840
1850
|
this.el = r.nativeElement;
|
|
1841
1851
|
}
|
|
1842
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1843
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1852
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqPageTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1853
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqPageTitle, isStandalone: false, selector: "bq-page-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1844
1854
|
};
|
|
1845
1855
|
BqPageTitle = __decorate([
|
|
1846
1856
|
ProxyCmp({}),
|
|
1847
1857
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1848
1858
|
], BqPageTitle);
|
|
1849
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1859
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqPageTitle, decorators: [{
|
|
1850
1860
|
type: Component,
|
|
1851
1861
|
args: [{
|
|
1852
1862
|
selector: 'bq-page-title',
|
|
@@ -1898,8 +1908,8 @@ let BqPanel = class BqPanel {
|
|
|
1898
1908
|
c.detach();
|
|
1899
1909
|
this.el = r.nativeElement;
|
|
1900
1910
|
}
|
|
1901
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1902
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1911
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1912
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqPanel, isStandalone: false, 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 }); }
|
|
1903
1913
|
};
|
|
1904
1914
|
BqPanel = __decorate([
|
|
1905
1915
|
ProxyCmp({
|
|
@@ -1907,7 +1917,7 @@ BqPanel = __decorate([
|
|
|
1907
1917
|
}),
|
|
1908
1918
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1909
1919
|
], BqPanel);
|
|
1910
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1920
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqPanel, decorators: [{
|
|
1911
1921
|
type: Component,
|
|
1912
1922
|
args: [{
|
|
1913
1923
|
selector: 'bq-panel',
|
|
@@ -1959,8 +1969,8 @@ let BqProgress = class BqProgress {
|
|
|
1959
1969
|
c.detach();
|
|
1960
1970
|
this.el = r.nativeElement;
|
|
1961
1971
|
}
|
|
1962
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1963
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1972
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1973
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqProgress, isStandalone: false, 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 }); }
|
|
1964
1974
|
};
|
|
1965
1975
|
BqProgress = __decorate([
|
|
1966
1976
|
ProxyCmp({
|
|
@@ -1968,7 +1978,7 @@ BqProgress = __decorate([
|
|
|
1968
1978
|
}),
|
|
1969
1979
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1970
1980
|
], BqProgress);
|
|
1971
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1981
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqProgress, decorators: [{
|
|
1972
1982
|
type: Component,
|
|
1973
1983
|
args: [{
|
|
1974
1984
|
selector: 'bq-progress',
|
|
@@ -2024,8 +2034,8 @@ let BqRadio = class BqRadio {
|
|
|
2024
2034
|
c.detach();
|
|
2025
2035
|
this.el = r.nativeElement;
|
|
2026
2036
|
}
|
|
2027
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2028
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2037
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2038
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqRadio, isStandalone: false, 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 }); }
|
|
2029
2039
|
};
|
|
2030
2040
|
BqRadio = __decorate([
|
|
2031
2041
|
ProxyCmp({
|
|
@@ -2034,7 +2044,7 @@ BqRadio = __decorate([
|
|
|
2034
2044
|
}),
|
|
2035
2045
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2036
2046
|
], BqRadio);
|
|
2037
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2047
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqRadio, decorators: [{
|
|
2038
2048
|
type: Component,
|
|
2039
2049
|
args: [{
|
|
2040
2050
|
selector: 'bq-radio',
|
|
@@ -2107,8 +2117,8 @@ let BqRadioGroup = class BqRadioGroup {
|
|
|
2107
2117
|
c.detach();
|
|
2108
2118
|
this.el = r.nativeElement;
|
|
2109
2119
|
}
|
|
2110
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2111
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2120
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2121
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqRadioGroup, isStandalone: false, 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 }); }
|
|
2112
2122
|
};
|
|
2113
2123
|
BqRadioGroup = __decorate([
|
|
2114
2124
|
ProxyCmp({
|
|
@@ -2116,7 +2126,7 @@ BqRadioGroup = __decorate([
|
|
|
2116
2126
|
}),
|
|
2117
2127
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2118
2128
|
], BqRadioGroup);
|
|
2119
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2129
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqRadioGroup, decorators: [{
|
|
2120
2130
|
type: Component,
|
|
2121
2131
|
args: [{
|
|
2122
2132
|
selector: 'bq-radio-group',
|
|
@@ -2264,8 +2274,8 @@ If `true`, the Select is disabled and cannot be interacted with. @default false
|
|
|
2264
2274
|
c.detach();
|
|
2265
2275
|
this.el = r.nativeElement;
|
|
2266
2276
|
}
|
|
2267
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2268
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2277
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2278
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqSelect, isStandalone: false, 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 }); }
|
|
2269
2279
|
};
|
|
2270
2280
|
BqSelect = __decorate([
|
|
2271
2281
|
ProxyCmp({
|
|
@@ -2274,7 +2284,7 @@ BqSelect = __decorate([
|
|
|
2274
2284
|
}),
|
|
2275
2285
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2276
2286
|
], BqSelect);
|
|
2277
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2287
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqSelect, decorators: [{
|
|
2278
2288
|
type: Component,
|
|
2279
2289
|
args: [{
|
|
2280
2290
|
selector: 'bq-select',
|
|
@@ -2319,8 +2329,8 @@ let BqSideMenu = class BqSideMenu {
|
|
|
2319
2329
|
c.detach();
|
|
2320
2330
|
this.el = r.nativeElement;
|
|
2321
2331
|
}
|
|
2322
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2323
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2332
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqSideMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2333
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqSideMenu, isStandalone: false, 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 }); }
|
|
2324
2334
|
};
|
|
2325
2335
|
BqSideMenu = __decorate([
|
|
2326
2336
|
ProxyCmp({
|
|
@@ -2329,7 +2339,7 @@ BqSideMenu = __decorate([
|
|
|
2329
2339
|
}),
|
|
2330
2340
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2331
2341
|
], BqSideMenu);
|
|
2332
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2342
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqSideMenu, decorators: [{
|
|
2333
2343
|
type: Component,
|
|
2334
2344
|
args: [{
|
|
2335
2345
|
selector: 'bq-side-menu',
|
|
@@ -2369,8 +2379,8 @@ let BqSideMenuItem = class BqSideMenuItem {
|
|
|
2369
2379
|
c.detach();
|
|
2370
2380
|
this.el = r.nativeElement;
|
|
2371
2381
|
}
|
|
2372
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2373
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2382
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqSideMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2383
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqSideMenuItem, isStandalone: false, 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 }); }
|
|
2374
2384
|
};
|
|
2375
2385
|
BqSideMenuItem = __decorate([
|
|
2376
2386
|
ProxyCmp({
|
|
@@ -2378,7 +2388,7 @@ BqSideMenuItem = __decorate([
|
|
|
2378
2388
|
}),
|
|
2379
2389
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2380
2390
|
], BqSideMenuItem);
|
|
2381
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2391
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqSideMenuItem, decorators: [{
|
|
2382
2392
|
type: Component,
|
|
2383
2393
|
args: [{
|
|
2384
2394
|
selector: 'bq-side-menu-item',
|
|
@@ -2469,8 +2479,8 @@ It relies on enableTooltip and if enableTooltip is false, tooltipAlwaysVisible c
|
|
|
2469
2479
|
c.detach();
|
|
2470
2480
|
this.el = r.nativeElement;
|
|
2471
2481
|
}
|
|
2472
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2473
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2482
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2483
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqSlider, isStandalone: false, 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 }); }
|
|
2474
2484
|
};
|
|
2475
2485
|
BqSlider = __decorate([
|
|
2476
2486
|
ProxyCmp({
|
|
@@ -2478,7 +2488,7 @@ BqSlider = __decorate([
|
|
|
2478
2488
|
}),
|
|
2479
2489
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2480
2490
|
], BqSlider);
|
|
2481
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2491
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqSlider, decorators: [{
|
|
2482
2492
|
type: Component,
|
|
2483
2493
|
args: [{
|
|
2484
2494
|
selector: 'bq-slider',
|
|
@@ -2517,8 +2527,8 @@ let BqSpinner = class BqSpinner {
|
|
|
2517
2527
|
c.detach();
|
|
2518
2528
|
this.el = r.nativeElement;
|
|
2519
2529
|
}
|
|
2520
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2521
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2530
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2531
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqSpinner, isStandalone: false, selector: "bq-spinner", inputs: { animation: "animation", size: "size", textPosition: "textPosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2522
2532
|
};
|
|
2523
2533
|
BqSpinner = __decorate([
|
|
2524
2534
|
ProxyCmp({
|
|
@@ -2526,7 +2536,7 @@ BqSpinner = __decorate([
|
|
|
2526
2536
|
}),
|
|
2527
2537
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2528
2538
|
], BqSpinner);
|
|
2529
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2539
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqSpinner, decorators: [{
|
|
2530
2540
|
type: Component,
|
|
2531
2541
|
args: [{
|
|
2532
2542
|
selector: 'bq-spinner',
|
|
@@ -2548,8 +2558,8 @@ let BqStatus = class BqStatus {
|
|
|
2548
2558
|
c.detach();
|
|
2549
2559
|
this.el = r.nativeElement;
|
|
2550
2560
|
}
|
|
2551
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2552
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2561
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2562
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqStatus, isStandalone: false, selector: "bq-status", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2553
2563
|
};
|
|
2554
2564
|
BqStatus = __decorate([
|
|
2555
2565
|
ProxyCmp({
|
|
@@ -2557,7 +2567,7 @@ BqStatus = __decorate([
|
|
|
2557
2567
|
}),
|
|
2558
2568
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2559
2569
|
], BqStatus);
|
|
2560
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2570
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqStatus, decorators: [{
|
|
2561
2571
|
type: Component,
|
|
2562
2572
|
args: [{
|
|
2563
2573
|
selector: 'bq-status',
|
|
@@ -2570,6 +2580,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
|
|
|
2570
2580
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2571
2581
|
let BqStepItem = class BqStepItem {
|
|
2572
2582
|
/**
|
|
2583
|
+
* The color of the line that connects the steps. It should be a valid declarative color token. @default 'stroke--primary'
|
|
2584
|
+
*/
|
|
2585
|
+
set dividerColor(_) { }
|
|
2586
|
+
;
|
|
2587
|
+
/**
|
|
2588
|
+
* It defines the orientation of the step item @default 'horizontal'
|
|
2589
|
+
*/
|
|
2590
|
+
set orientation(_) { }
|
|
2591
|
+
;
|
|
2592
|
+
/**
|
|
2573
2593
|
* It defines prefix size @default 'medium'
|
|
2574
2594
|
*/
|
|
2575
2595
|
set size(_) { }
|
|
@@ -2592,23 +2612,23 @@ let BqStepItem = class BqStepItem {
|
|
|
2592
2612
|
c.detach();
|
|
2593
2613
|
this.el = r.nativeElement;
|
|
2594
2614
|
}
|
|
2595
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2596
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2615
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqStepItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2616
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqStepItem, isStandalone: false, selector: "bq-step-item", inputs: { dividerColor: "dividerColor", orientation: "orientation", 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 }); }
|
|
2597
2617
|
};
|
|
2598
2618
|
BqStepItem = __decorate([
|
|
2599
2619
|
ProxyCmp({
|
|
2600
|
-
inputs: ['size', 'status', 'type']
|
|
2620
|
+
inputs: ['dividerColor', 'orientation', 'size', 'status', 'type']
|
|
2601
2621
|
}),
|
|
2602
2622
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2603
2623
|
], BqStepItem);
|
|
2604
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2624
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqStepItem, decorators: [{
|
|
2605
2625
|
type: Component,
|
|
2606
2626
|
args: [{
|
|
2607
2627
|
selector: 'bq-step-item',
|
|
2608
2628
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2609
2629
|
template: '<ng-content></ng-content>',
|
|
2610
2630
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2611
|
-
inputs: ['size', 'status', 'type'],
|
|
2631
|
+
inputs: ['dividerColor', 'orientation', 'size', 'status', 'type'],
|
|
2612
2632
|
outputs: ['bqClick', 'bqFocus', 'bqBlur'],
|
|
2613
2633
|
standalone: false
|
|
2614
2634
|
}]
|
|
@@ -2626,6 +2646,11 @@ let BqSteps = class BqSteps {
|
|
|
2626
2646
|
set dividerColor(_) { }
|
|
2627
2647
|
;
|
|
2628
2648
|
/**
|
|
2649
|
+
* The orientation of the steps @default 'horizontal'
|
|
2650
|
+
*/
|
|
2651
|
+
set orientation(_) { }
|
|
2652
|
+
;
|
|
2653
|
+
/**
|
|
2629
2654
|
* The size of the steps @default 'medium'
|
|
2630
2655
|
*/
|
|
2631
2656
|
set size(_) { }
|
|
@@ -2640,24 +2665,24 @@ let BqSteps = class BqSteps {
|
|
|
2640
2665
|
c.detach();
|
|
2641
2666
|
this.el = r.nativeElement;
|
|
2642
2667
|
}
|
|
2643
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2644
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2668
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2669
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqSteps, isStandalone: false, selector: "bq-steps", inputs: { dividerColor: "dividerColor", orientation: "orientation", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2645
2670
|
};
|
|
2646
2671
|
BqSteps = __decorate([
|
|
2647
2672
|
ProxyCmp({
|
|
2648
|
-
inputs: ['dividerColor', 'size', 'type'],
|
|
2673
|
+
inputs: ['dividerColor', 'orientation', 'size', 'type'],
|
|
2649
2674
|
methods: ['setCurrentStepItem']
|
|
2650
2675
|
}),
|
|
2651
2676
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2652
2677
|
], BqSteps);
|
|
2653
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2678
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqSteps, decorators: [{
|
|
2654
2679
|
type: Component,
|
|
2655
2680
|
args: [{
|
|
2656
2681
|
selector: 'bq-steps',
|
|
2657
2682
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2658
2683
|
template: '<ng-content></ng-content>',
|
|
2659
2684
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2660
|
-
inputs: ['dividerColor', 'size', 'type'],
|
|
2685
|
+
inputs: ['dividerColor', 'orientation', 'size', 'type'],
|
|
2661
2686
|
standalone: false
|
|
2662
2687
|
}]
|
|
2663
2688
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
@@ -2726,8 +2751,8 @@ let BqSwitch = class BqSwitch {
|
|
|
2726
2751
|
c.detach();
|
|
2727
2752
|
this.el = r.nativeElement;
|
|
2728
2753
|
}
|
|
2729
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2730
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2754
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2755
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqSwitch, isStandalone: false, 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 }); }
|
|
2731
2756
|
};
|
|
2732
2757
|
BqSwitch = __decorate([
|
|
2733
2758
|
ProxyCmp({
|
|
@@ -2736,7 +2761,7 @@ BqSwitch = __decorate([
|
|
|
2736
2761
|
}),
|
|
2737
2762
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2738
2763
|
], BqSwitch);
|
|
2739
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2764
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqSwitch, decorators: [{
|
|
2740
2765
|
type: Component,
|
|
2741
2766
|
args: [{
|
|
2742
2767
|
selector: 'bq-switch',
|
|
@@ -2799,8 +2824,8 @@ let BqTab = class BqTab {
|
|
|
2799
2824
|
c.detach();
|
|
2800
2825
|
this.el = r.nativeElement;
|
|
2801
2826
|
}
|
|
2802
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2803
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2827
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2828
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqTab, isStandalone: false, 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 }); }
|
|
2804
2829
|
};
|
|
2805
2830
|
BqTab = __decorate([
|
|
2806
2831
|
ProxyCmp({
|
|
@@ -2809,7 +2834,7 @@ BqTab = __decorate([
|
|
|
2809
2834
|
}),
|
|
2810
2835
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2811
2836
|
], BqTab);
|
|
2812
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2837
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqTab, decorators: [{
|
|
2813
2838
|
type: Component,
|
|
2814
2839
|
args: [{
|
|
2815
2840
|
selector: 'bq-tab',
|
|
@@ -2866,8 +2891,8 @@ let BqTabGroup = class BqTabGroup {
|
|
|
2866
2891
|
c.detach();
|
|
2867
2892
|
this.el = r.nativeElement;
|
|
2868
2893
|
}
|
|
2869
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2870
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2894
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2895
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqTabGroup, isStandalone: false, 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 }); }
|
|
2871
2896
|
};
|
|
2872
2897
|
BqTabGroup = __decorate([
|
|
2873
2898
|
ProxyCmp({
|
|
@@ -2875,7 +2900,7 @@ BqTabGroup = __decorate([
|
|
|
2875
2900
|
}),
|
|
2876
2901
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2877
2902
|
], BqTabGroup);
|
|
2878
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2903
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqTabGroup, decorators: [{
|
|
2879
2904
|
type: Component,
|
|
2880
2905
|
args: [{
|
|
2881
2906
|
selector: 'bq-tab-group',
|
|
@@ -2911,7 +2936,7 @@ let BqTag = class BqTag {
|
|
|
2911
2936
|
set disabled(_) { }
|
|
2912
2937
|
;
|
|
2913
2938
|
/**
|
|
2914
|
-
* If true, the Tag component will hidden
|
|
2939
|
+
* If true, the Tag component will be hidden
|
|
2915
2940
|
*/
|
|
2916
2941
|
set hidden(_) { }
|
|
2917
2942
|
;
|
|
@@ -2945,8 +2970,8 @@ let BqTag = class BqTag {
|
|
|
2945
2970
|
c.detach();
|
|
2946
2971
|
this.el = r.nativeElement;
|
|
2947
2972
|
}
|
|
2948
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2949
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2973
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2974
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqTag, isStandalone: false, 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 }); }
|
|
2950
2975
|
};
|
|
2951
2976
|
BqTag = __decorate([
|
|
2952
2977
|
ProxyCmp({
|
|
@@ -2955,7 +2980,7 @@ BqTag = __decorate([
|
|
|
2955
2980
|
}),
|
|
2956
2981
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2957
2982
|
], BqTag);
|
|
2958
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2983
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqTag, decorators: [{
|
|
2959
2984
|
type: Component,
|
|
2960
2985
|
args: [{
|
|
2961
2986
|
selector: 'bq-tag',
|
|
@@ -3091,8 +3116,8 @@ When enabled, a character counter will be shown underneath the textarea.
|
|
|
3091
3116
|
c.detach();
|
|
3092
3117
|
this.el = r.nativeElement;
|
|
3093
3118
|
}
|
|
3094
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3095
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3119
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3120
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqTextarea, isStandalone: false, 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 }); }
|
|
3096
3121
|
};
|
|
3097
3122
|
BqTextarea = __decorate([
|
|
3098
3123
|
ProxyCmp({
|
|
@@ -3100,7 +3125,7 @@ BqTextarea = __decorate([
|
|
|
3100
3125
|
}),
|
|
3101
3126
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
3102
3127
|
], BqTextarea);
|
|
3103
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3128
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqTextarea, decorators: [{
|
|
3104
3129
|
type: Component,
|
|
3105
3130
|
args: [{
|
|
3106
3131
|
selector: 'bq-textarea',
|
|
@@ -3160,8 +3185,8 @@ let BqToast = class BqToast {
|
|
|
3160
3185
|
c.detach();
|
|
3161
3186
|
this.el = r.nativeElement;
|
|
3162
3187
|
}
|
|
3163
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3164
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3188
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3189
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqToast, isStandalone: false, 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 }); }
|
|
3165
3190
|
};
|
|
3166
3191
|
BqToast = __decorate([
|
|
3167
3192
|
ProxyCmp({
|
|
@@ -3170,7 +3195,7 @@ BqToast = __decorate([
|
|
|
3170
3195
|
}),
|
|
3171
3196
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
3172
3197
|
], BqToast);
|
|
3173
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3198
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqToast, decorators: [{
|
|
3174
3199
|
type: Component,
|
|
3175
3200
|
args: [{
|
|
3176
3201
|
selector: 'bq-toast',
|
|
@@ -3234,8 +3259,8 @@ and when interacting with the trigger @default false
|
|
|
3234
3259
|
c.detach();
|
|
3235
3260
|
this.el = r.nativeElement;
|
|
3236
3261
|
}
|
|
3237
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3238
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3262
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3263
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: BqTooltip, isStandalone: false, 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 }); }
|
|
3239
3264
|
};
|
|
3240
3265
|
BqTooltip = __decorate([
|
|
3241
3266
|
ProxyCmp({
|
|
@@ -3244,7 +3269,7 @@ BqTooltip = __decorate([
|
|
|
3244
3269
|
}),
|
|
3245
3270
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
3246
3271
|
], BqTooltip);
|
|
3247
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3272
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BqTooltip, decorators: [{
|
|
3248
3273
|
type: Component,
|
|
3249
3274
|
args: [{
|
|
3250
3275
|
selector: 'bq-tooltip',
|
|
@@ -3341,8 +3366,8 @@ class BeeQModule {
|
|
|
3341
3366
|
],
|
|
3342
3367
|
};
|
|
3343
3368
|
}
|
|
3344
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3345
|
-
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3369
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BeeQModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3370
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.1.0", ngImport: i0, type: BeeQModule, declarations: [BqAccordion, BqAccordionGroup, BqAlert, BqAvatar, BqBadge, BqBreadcrumb, BqBreadcrumbItem, BqButton, BqCard, BqCheckbox, BqDatePicker, BqDialog, BqDivider, BqDrawer, BqDropdown, BqEmptyState, BqIcon, BqInput, BqNotification, BqOption, BqOptionGroup, BqOptionList, BqPageTitle, BqPanel, BqProgress, BqRadio, BqRadioGroup, BqSelect, BqSideMenu, BqSideMenuItem, BqSlider, BqSpinner, BqStatus, BqStepItem, BqSteps, BqSwitch, BqTab, BqTabGroup, BqTag, BqTextarea, BqToast, BqTooltip,
|
|
3346
3371
|
// ngModel Accessors
|
|
3347
3372
|
BooleanValueAccessor,
|
|
3348
3373
|
NumericValueAccessor,
|
|
@@ -3355,9 +3380,9 @@ class BeeQModule {
|
|
|
3355
3380
|
RadioValueAccessor,
|
|
3356
3381
|
SelectValueAccessor,
|
|
3357
3382
|
TextValueAccessor] }); }
|
|
3358
|
-
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3383
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BeeQModule, imports: [CommonModule] }); }
|
|
3359
3384
|
}
|
|
3360
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3385
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BeeQModule, decorators: [{
|
|
3361
3386
|
type: NgModule,
|
|
3362
3387
|
args: [{
|
|
3363
3388
|
imports: [CommonModule],
|