@beeq/angular 1.1.0 → 1.3.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/beeq.module.d.ts +1 -1
- package/directives/components.d.ts +56 -9
- package/directives/index.d.ts +1 -1
- package/esm2022/beeq.module.mjs +5 -5
- package/esm2022/directives/angular-component-lib/utils.mjs +1 -1
- package/esm2022/directives/boolean-value-accessor.mjs +3 -3
- package/esm2022/directives/components.mjs +182 -124
- package/esm2022/directives/index.mjs +3 -1
- package/esm2022/directives/number-value-accessor.mjs +3 -3
- package/esm2022/directives/radio-value-accessor.mjs +3 -3
- package/esm2022/directives/select-value-accessor.mjs +3 -3
- package/esm2022/directives/text-value-accessor.mjs +3 -3
- package/esm2022/directives/value-accessor.mjs +4 -4
- package/esm2022/standalone/directives/angular-component-lib/utils.mjs +1 -1
- package/esm2022/standalone/directives/components.mjs +188 -124
- package/fesm2022/beeq-angular-standalone.mjs +238 -176
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +205 -147
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/package.json +2 -3
- package/standalone/directives/components.d.ts +56 -9
|
@@ -35,10 +35,10 @@ class ValueAccessor {
|
|
|
35
35
|
setDisabledState(isDisabled) {
|
|
36
36
|
this.el.nativeElement.disabled = isDisabled;
|
|
37
37
|
}
|
|
38
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
39
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.
|
|
38
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
39
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.5", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
40
40
|
}
|
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
41
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
42
42
|
type: Directive,
|
|
43
43
|
args: [{}]
|
|
44
44
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
@@ -53,8 +53,8 @@ class BooleanValueAccessor extends ValueAccessor {
|
|
|
53
53
|
writeValue(value) {
|
|
54
54
|
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
55
55
|
}
|
|
56
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
57
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.
|
|
56
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
57
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.5", type: BooleanValueAccessor, selector: "bq-checkbox, bq-switch", host: { listeners: { "bqChange": "handleChangeEvent($event.target.checked)" } }, providers: [
|
|
58
58
|
{
|
|
59
59
|
provide: NG_VALUE_ACCESSOR,
|
|
60
60
|
useExisting: BooleanValueAccessor,
|
|
@@ -62,7 +62,7 @@ class BooleanValueAccessor extends ValueAccessor {
|
|
|
62
62
|
}
|
|
63
63
|
], usesInheritance: true, ngImport: i0 });
|
|
64
64
|
}
|
|
65
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
65
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
66
66
|
type: Directive,
|
|
67
67
|
args: [{
|
|
68
68
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -89,8 +89,8 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
89
89
|
fn(value === '' ? null : parseFloat(value));
|
|
90
90
|
});
|
|
91
91
|
}
|
|
92
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
93
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.
|
|
92
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
93
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.5", type: NumericValueAccessor, selector: "bq-input[type=\"number\"], bq-slider", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
94
94
|
{
|
|
95
95
|
provide: NG_VALUE_ACCESSOR,
|
|
96
96
|
useExisting: NumericValueAccessor,
|
|
@@ -98,7 +98,7 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
98
98
|
}
|
|
99
99
|
], usesInheritance: true, ngImport: i0 });
|
|
100
100
|
}
|
|
101
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
101
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
102
102
|
type: Directive,
|
|
103
103
|
args: [{
|
|
104
104
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -120,8 +120,8 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
120
120
|
constructor(el) {
|
|
121
121
|
super(el);
|
|
122
122
|
}
|
|
123
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
124
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.
|
|
123
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
124
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.5", type: RadioValueAccessor, selector: "bq-radio-group", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
125
125
|
{
|
|
126
126
|
provide: NG_VALUE_ACCESSOR,
|
|
127
127
|
useExisting: RadioValueAccessor,
|
|
@@ -129,7 +129,7 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
129
129
|
}
|
|
130
130
|
], usesInheritance: true, ngImport: i0 });
|
|
131
131
|
}
|
|
132
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
132
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
133
133
|
type: Directive,
|
|
134
134
|
args: [{
|
|
135
135
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -151,8 +151,8 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
151
151
|
constructor(el) {
|
|
152
152
|
super(el);
|
|
153
153
|
}
|
|
154
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
155
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.
|
|
154
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
155
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.5", type: SelectValueAccessor, selector: "bq-select", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
156
156
|
{
|
|
157
157
|
provide: NG_VALUE_ACCESSOR,
|
|
158
158
|
useExisting: SelectValueAccessor,
|
|
@@ -160,7 +160,7 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
160
160
|
}
|
|
161
161
|
], usesInheritance: true, ngImport: i0 });
|
|
162
162
|
}
|
|
163
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
163
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
164
164
|
type: Directive,
|
|
165
165
|
args: [{
|
|
166
166
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -182,8 +182,8 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
182
182
|
constructor(el) {
|
|
183
183
|
super(el);
|
|
184
184
|
}
|
|
185
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
186
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.
|
|
185
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
186
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.5", type: TextValueAccessor, selector: "bq-input:not[type=\"number\"], bq-textarea", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
187
187
|
{
|
|
188
188
|
provide: NG_VALUE_ACCESSOR,
|
|
189
189
|
useExisting: TextValueAccessor,
|
|
@@ -191,7 +191,7 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
191
191
|
}
|
|
192
192
|
], usesInheritance: true, ngImport: i0 });
|
|
193
193
|
}
|
|
194
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
194
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
195
195
|
type: Directive,
|
|
196
196
|
args: [{
|
|
197
197
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -274,10 +274,10 @@ let BqAccordion = class BqAccordion {
|
|
|
274
274
|
this.z = z;
|
|
275
275
|
c.detach();
|
|
276
276
|
this.el = r.nativeElement;
|
|
277
|
-
proxyOutputs(this, this.el, ['
|
|
277
|
+
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqOpen', 'bqAfterOpen', 'bqClose', 'bqAfterClose']);
|
|
278
278
|
}
|
|
279
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
280
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
279
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
280
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqAccordion, selector: "bq-accordion", inputs: { appearance: "appearance", disabled: "disabled", expanded: "expanded", rotate: "rotate", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
281
281
|
};
|
|
282
282
|
BqAccordion = __decorate([
|
|
283
283
|
ProxyCmp({
|
|
@@ -285,7 +285,7 @@ BqAccordion = __decorate([
|
|
|
285
285
|
}),
|
|
286
286
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
287
287
|
], BqAccordion);
|
|
288
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
288
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqAccordion, decorators: [{
|
|
289
289
|
type: Component,
|
|
290
290
|
args: [{
|
|
291
291
|
selector: 'bq-accordion',
|
|
@@ -303,8 +303,8 @@ let BqAccordionGroup = class BqAccordionGroup {
|
|
|
303
303
|
c.detach();
|
|
304
304
|
this.el = r.nativeElement;
|
|
305
305
|
}
|
|
306
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
307
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
306
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
307
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqAccordionGroup, selector: "bq-accordion-group", inputs: { appearance: "appearance", expandAll: "expandAll", multiple: "multiple", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
308
308
|
};
|
|
309
309
|
BqAccordionGroup = __decorate([
|
|
310
310
|
ProxyCmp({
|
|
@@ -312,7 +312,7 @@ BqAccordionGroup = __decorate([
|
|
|
312
312
|
}),
|
|
313
313
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
314
314
|
], BqAccordionGroup);
|
|
315
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
315
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqAccordionGroup, decorators: [{
|
|
316
316
|
type: Component,
|
|
317
317
|
args: [{
|
|
318
318
|
selector: 'bq-accordion-group',
|
|
@@ -331,8 +331,8 @@ let BqAlert = class BqAlert {
|
|
|
331
331
|
this.el = r.nativeElement;
|
|
332
332
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
|
|
333
333
|
}
|
|
334
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
335
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
334
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
335
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqAlert, selector: "bq-alert", inputs: { autoDismiss: "autoDismiss", border: "border", disableClose: "disableClose", hideIcon: "hideIcon", open: "open", sticky: "sticky", time: "time", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
336
336
|
};
|
|
337
337
|
BqAlert = __decorate([
|
|
338
338
|
ProxyCmp({
|
|
@@ -341,7 +341,7 @@ BqAlert = __decorate([
|
|
|
341
341
|
}),
|
|
342
342
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
343
343
|
], BqAlert);
|
|
344
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
344
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqAlert, decorators: [{
|
|
345
345
|
type: Component,
|
|
346
346
|
args: [{
|
|
347
347
|
selector: 'bq-alert',
|
|
@@ -359,8 +359,8 @@ let BqAvatar = class BqAvatar {
|
|
|
359
359
|
c.detach();
|
|
360
360
|
this.el = r.nativeElement;
|
|
361
361
|
}
|
|
362
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
363
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
362
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
363
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqAvatar, selector: "bq-avatar", inputs: { altText: "altText", image: "image", initials: "initials", label: "label", shape: "shape", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
364
364
|
};
|
|
365
365
|
BqAvatar = __decorate([
|
|
366
366
|
ProxyCmp({
|
|
@@ -368,7 +368,7 @@ BqAvatar = __decorate([
|
|
|
368
368
|
}),
|
|
369
369
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
370
370
|
], BqAvatar);
|
|
371
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
371
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqAvatar, decorators: [{
|
|
372
372
|
type: Component,
|
|
373
373
|
args: [{
|
|
374
374
|
selector: 'bq-avatar',
|
|
@@ -386,8 +386,8 @@ let BqBadge = class BqBadge {
|
|
|
386
386
|
c.detach();
|
|
387
387
|
this.el = r.nativeElement;
|
|
388
388
|
}
|
|
389
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
390
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
389
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
390
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqBadge, selector: "bq-badge", inputs: { backgroundColor: "backgroundColor", size: "size", textColor: "textColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
391
391
|
};
|
|
392
392
|
BqBadge = __decorate([
|
|
393
393
|
ProxyCmp({
|
|
@@ -395,7 +395,7 @@ BqBadge = __decorate([
|
|
|
395
395
|
}),
|
|
396
396
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
397
397
|
], BqBadge);
|
|
398
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqBadge, decorators: [{
|
|
399
399
|
type: Component,
|
|
400
400
|
args: [{
|
|
401
401
|
selector: 'bq-badge',
|
|
@@ -414,8 +414,8 @@ let BqBreadcrumb = class BqBreadcrumb {
|
|
|
414
414
|
this.el = r.nativeElement;
|
|
415
415
|
proxyOutputs(this, this.el, ['bqBreadcrumbBlur', 'bqBreadcrumbFocus', 'bqBreadcrumbClick']);
|
|
416
416
|
}
|
|
417
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
418
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
417
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
418
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqBreadcrumb, selector: "bq-breadcrumb", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
419
419
|
};
|
|
420
420
|
BqBreadcrumb = __decorate([
|
|
421
421
|
ProxyCmp({
|
|
@@ -423,7 +423,7 @@ BqBreadcrumb = __decorate([
|
|
|
423
423
|
}),
|
|
424
424
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
425
425
|
], BqBreadcrumb);
|
|
426
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
426
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqBreadcrumb, decorators: [{
|
|
427
427
|
type: Component,
|
|
428
428
|
args: [{
|
|
429
429
|
selector: 'bq-breadcrumb',
|
|
@@ -442,8 +442,8 @@ let BqBreadcrumbItem = class BqBreadcrumbItem {
|
|
|
442
442
|
this.el = r.nativeElement;
|
|
443
443
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
444
444
|
}
|
|
445
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
446
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
445
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
446
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqBreadcrumbItem, selector: "bq-breadcrumb-item", inputs: { ariaLabel: "ariaLabel", href: "href", isLastItem: "isLastItem", rel: "rel", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
447
447
|
};
|
|
448
448
|
BqBreadcrumbItem = __decorate([
|
|
449
449
|
ProxyCmp({
|
|
@@ -451,7 +451,7 @@ BqBreadcrumbItem = __decorate([
|
|
|
451
451
|
}),
|
|
452
452
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
453
453
|
], BqBreadcrumbItem);
|
|
454
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
454
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqBreadcrumbItem, decorators: [{
|
|
455
455
|
type: Component,
|
|
456
456
|
args: [{
|
|
457
457
|
selector: 'bq-breadcrumb-item',
|
|
@@ -470,8 +470,8 @@ let BqButton = class BqButton {
|
|
|
470
470
|
this.el = r.nativeElement;
|
|
471
471
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
472
472
|
}
|
|
473
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
474
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
473
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
474
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqButton, selector: "bq-button", inputs: { appearance: "appearance", block: "block", border: "border", disabled: "disabled", download: "download", href: "href", justifyContent: "justifyContent", loading: "loading", size: "size", target: "target", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
475
475
|
};
|
|
476
476
|
BqButton = __decorate([
|
|
477
477
|
ProxyCmp({
|
|
@@ -479,7 +479,7 @@ BqButton = __decorate([
|
|
|
479
479
|
}),
|
|
480
480
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
481
481
|
], BqButton);
|
|
482
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
482
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqButton, decorators: [{
|
|
483
483
|
type: Component,
|
|
484
484
|
args: [{
|
|
485
485
|
selector: 'bq-button',
|
|
@@ -497,8 +497,8 @@ let BqCard = class BqCard {
|
|
|
497
497
|
c.detach();
|
|
498
498
|
this.el = r.nativeElement;
|
|
499
499
|
}
|
|
500
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
501
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
500
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
501
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqCard, selector: "bq-card", inputs: { border: "border", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
502
502
|
};
|
|
503
503
|
BqCard = __decorate([
|
|
504
504
|
ProxyCmp({
|
|
@@ -506,7 +506,7 @@ BqCard = __decorate([
|
|
|
506
506
|
}),
|
|
507
507
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
508
508
|
], BqCard);
|
|
509
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
509
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqCard, decorators: [{
|
|
510
510
|
type: Component,
|
|
511
511
|
args: [{
|
|
512
512
|
selector: 'bq-card',
|
|
@@ -525,8 +525,8 @@ let BqCheckbox = class BqCheckbox {
|
|
|
525
525
|
this.el = r.nativeElement;
|
|
526
526
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
527
527
|
}
|
|
528
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
529
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
528
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
529
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqCheckbox, selector: "bq-checkbox", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", indeterminate: "indeterminate", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
530
530
|
};
|
|
531
531
|
BqCheckbox = __decorate([
|
|
532
532
|
ProxyCmp({
|
|
@@ -535,7 +535,7 @@ BqCheckbox = __decorate([
|
|
|
535
535
|
}),
|
|
536
536
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
537
537
|
], BqCheckbox);
|
|
538
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
538
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqCheckbox, decorators: [{
|
|
539
539
|
type: Component,
|
|
540
540
|
args: [{
|
|
541
541
|
selector: 'bq-checkbox',
|
|
@@ -554,8 +554,8 @@ let BqDialog = class BqDialog {
|
|
|
554
554
|
this.el = r.nativeElement;
|
|
555
555
|
proxyOutputs(this, this.el, ['bqCancel', 'bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
556
556
|
}
|
|
557
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
558
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
557
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
558
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqDialog, selector: "bq-dialog", inputs: { border: "border", disableBackdrop: "disableBackdrop", disableCloseClickOutside: "disableCloseClickOutside", disableCloseEscKeydown: "disableCloseEscKeydown", footerAppearance: "footerAppearance", hideCloseButton: "hideCloseButton", open: "open", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
559
559
|
};
|
|
560
560
|
BqDialog = __decorate([
|
|
561
561
|
ProxyCmp({
|
|
@@ -564,7 +564,7 @@ BqDialog = __decorate([
|
|
|
564
564
|
}),
|
|
565
565
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
566
566
|
], BqDialog);
|
|
567
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
567
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqDialog, decorators: [{
|
|
568
568
|
type: Component,
|
|
569
569
|
args: [{
|
|
570
570
|
selector: 'bq-dialog',
|
|
@@ -582,8 +582,8 @@ let BqDivider = class BqDivider {
|
|
|
582
582
|
c.detach();
|
|
583
583
|
this.el = r.nativeElement;
|
|
584
584
|
}
|
|
585
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
586
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
585
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
586
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqDivider, selector: "bq-divider", inputs: { dashed: "dashed", orientation: "orientation", strokeBasis: "strokeBasis", strokeColor: "strokeColor", strokeDashGap: "strokeDashGap", strokeDashWidth: "strokeDashWidth", strokeLinecap: "strokeLinecap", strokeThickness: "strokeThickness", titleAlignment: "titleAlignment" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
587
587
|
};
|
|
588
588
|
BqDivider = __decorate([
|
|
589
589
|
ProxyCmp({
|
|
@@ -591,7 +591,7 @@ BqDivider = __decorate([
|
|
|
591
591
|
}),
|
|
592
592
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
593
593
|
], BqDivider);
|
|
594
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
594
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqDivider, decorators: [{
|
|
595
595
|
type: Component,
|
|
596
596
|
args: [{
|
|
597
597
|
selector: 'bq-divider',
|
|
@@ -601,6 +601,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImpor
|
|
|
601
601
|
inputs: ['dashed', 'orientation', 'strokeBasis', 'strokeColor', 'strokeDashGap', 'strokeDashWidth', 'strokeLinecap', 'strokeThickness', 'titleAlignment'],
|
|
602
602
|
}]
|
|
603
603
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
604
|
+
let BqDrawer = class BqDrawer {
|
|
605
|
+
z;
|
|
606
|
+
el;
|
|
607
|
+
constructor(c, r, z) {
|
|
608
|
+
this.z = z;
|
|
609
|
+
c.detach();
|
|
610
|
+
this.el = r.nativeElement;
|
|
611
|
+
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
612
|
+
}
|
|
613
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
614
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqDrawer, selector: "bq-drawer", inputs: { closeOnClickOutside: "closeOnClickOutside", closeOnEsc: "closeOnEsc", enableBackdrop: "enableBackdrop", open: "open", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
615
|
+
};
|
|
616
|
+
BqDrawer = __decorate([
|
|
617
|
+
ProxyCmp({
|
|
618
|
+
inputs: ['closeOnClickOutside', 'closeOnEsc', 'enableBackdrop', 'open', 'placement'],
|
|
619
|
+
methods: ['hide', 'show']
|
|
620
|
+
}),
|
|
621
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
622
|
+
], BqDrawer);
|
|
623
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqDrawer, decorators: [{
|
|
624
|
+
type: Component,
|
|
625
|
+
args: [{
|
|
626
|
+
selector: 'bq-drawer',
|
|
627
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
628
|
+
template: '<ng-content></ng-content>',
|
|
629
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
630
|
+
inputs: ['closeOnClickOutside', 'closeOnEsc', 'enableBackdrop', 'open', 'placement'],
|
|
631
|
+
}]
|
|
632
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
604
633
|
let BqDropdown = class BqDropdown {
|
|
605
634
|
z;
|
|
606
635
|
el;
|
|
@@ -610,8 +639,8 @@ let BqDropdown = class BqDropdown {
|
|
|
610
639
|
this.el = r.nativeElement;
|
|
611
640
|
proxyOutputs(this, this.el, ['bqOpen']);
|
|
612
641
|
}
|
|
613
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
614
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
642
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
643
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqDropdown, selector: "bq-dropdown", inputs: { disabled: "disabled", distance: "distance", keepOpenOnSelect: "keepOpenOnSelect", open: "open", panelHeight: "panelHeight", placement: "placement", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
615
644
|
};
|
|
616
645
|
BqDropdown = __decorate([
|
|
617
646
|
ProxyCmp({
|
|
@@ -619,7 +648,7 @@ BqDropdown = __decorate([
|
|
|
619
648
|
}),
|
|
620
649
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
621
650
|
], BqDropdown);
|
|
622
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
651
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqDropdown, decorators: [{
|
|
623
652
|
type: Component,
|
|
624
653
|
args: [{
|
|
625
654
|
selector: 'bq-dropdown',
|
|
@@ -637,8 +666,8 @@ let BqEmptyState = class BqEmptyState {
|
|
|
637
666
|
c.detach();
|
|
638
667
|
this.el = r.nativeElement;
|
|
639
668
|
}
|
|
640
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
641
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
669
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
670
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqEmptyState, selector: "bq-empty-state", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
642
671
|
};
|
|
643
672
|
BqEmptyState = __decorate([
|
|
644
673
|
ProxyCmp({
|
|
@@ -646,7 +675,7 @@ BqEmptyState = __decorate([
|
|
|
646
675
|
}),
|
|
647
676
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
648
677
|
], BqEmptyState);
|
|
649
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
678
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqEmptyState, decorators: [{
|
|
650
679
|
type: Component,
|
|
651
680
|
args: [{
|
|
652
681
|
selector: 'bq-empty-state',
|
|
@@ -665,8 +694,8 @@ let BqIcon = class BqIcon {
|
|
|
665
694
|
this.el = r.nativeElement;
|
|
666
695
|
proxyOutputs(this, this.el, ['svgLoaded']);
|
|
667
696
|
}
|
|
668
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
669
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
697
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
698
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqIcon, selector: "bq-icon", inputs: { color: "color", label: "label", name: "name", size: "size", src: "src", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
670
699
|
};
|
|
671
700
|
BqIcon = __decorate([
|
|
672
701
|
ProxyCmp({
|
|
@@ -674,7 +703,7 @@ BqIcon = __decorate([
|
|
|
674
703
|
}),
|
|
675
704
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
676
705
|
], BqIcon);
|
|
677
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
706
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqIcon, decorators: [{
|
|
678
707
|
type: Component,
|
|
679
708
|
args: [{
|
|
680
709
|
selector: 'bq-icon',
|
|
@@ -693,8 +722,8 @@ let BqInput = class BqInput {
|
|
|
693
722
|
this.el = r.nativeElement;
|
|
694
723
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
695
724
|
}
|
|
696
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
697
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
725
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
726
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqInput, selector: "bq-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disabled: "disabled", form: "form", inputmode: "inputmode", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", step: "step", type: "type", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
698
727
|
};
|
|
699
728
|
BqInput = __decorate([
|
|
700
729
|
ProxyCmp({
|
|
@@ -702,7 +731,7 @@ BqInput = __decorate([
|
|
|
702
731
|
}),
|
|
703
732
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
704
733
|
], BqInput);
|
|
705
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
734
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqInput, decorators: [{
|
|
706
735
|
type: Component,
|
|
707
736
|
args: [{
|
|
708
737
|
selector: 'bq-input',
|
|
@@ -721,8 +750,8 @@ let BqNotification = class BqNotification {
|
|
|
721
750
|
this.el = r.nativeElement;
|
|
722
751
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
|
|
723
752
|
}
|
|
724
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
725
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
753
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
754
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqNotification, selector: "bq-notification", inputs: { autoDismiss: "autoDismiss", border: "border", disableClose: "disableClose", hideIcon: "hideIcon", open: "open", time: "time", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
726
755
|
};
|
|
727
756
|
BqNotification = __decorate([
|
|
728
757
|
ProxyCmp({
|
|
@@ -731,7 +760,7 @@ BqNotification = __decorate([
|
|
|
731
760
|
}),
|
|
732
761
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
733
762
|
], BqNotification);
|
|
734
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
763
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqNotification, decorators: [{
|
|
735
764
|
type: Component,
|
|
736
765
|
args: [{
|
|
737
766
|
selector: 'bq-notification',
|
|
@@ -750,23 +779,23 @@ let BqOption = class BqOption {
|
|
|
750
779
|
this.el = r.nativeElement;
|
|
751
780
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick', 'bqEnter']);
|
|
752
781
|
}
|
|
753
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
754
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
782
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
783
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqOption, selector: "bq-option", inputs: { disabled: "disabled", hidden: "hidden", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
755
784
|
};
|
|
756
785
|
BqOption = __decorate([
|
|
757
786
|
ProxyCmp({
|
|
758
|
-
inputs: ['disabled', 'selected', 'value']
|
|
787
|
+
inputs: ['disabled', 'hidden', 'selected', 'value']
|
|
759
788
|
}),
|
|
760
789
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
761
790
|
], BqOption);
|
|
762
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
791
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqOption, decorators: [{
|
|
763
792
|
type: Component,
|
|
764
793
|
args: [{
|
|
765
794
|
selector: 'bq-option',
|
|
766
795
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
767
796
|
template: '<ng-content></ng-content>',
|
|
768
797
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
769
|
-
inputs: ['disabled', 'selected', 'value'],
|
|
798
|
+
inputs: ['disabled', 'hidden', 'selected', 'value'],
|
|
770
799
|
}]
|
|
771
800
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
772
801
|
let BqOptionGroup = class BqOptionGroup {
|
|
@@ -777,14 +806,14 @@ let BqOptionGroup = class BqOptionGroup {
|
|
|
777
806
|
c.detach();
|
|
778
807
|
this.el = r.nativeElement;
|
|
779
808
|
}
|
|
780
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
781
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
809
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqOptionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
810
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqOptionGroup, selector: "bq-option-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
782
811
|
};
|
|
783
812
|
BqOptionGroup = __decorate([
|
|
784
813
|
ProxyCmp({}),
|
|
785
814
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
786
815
|
], BqOptionGroup);
|
|
787
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
816
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqOptionGroup, decorators: [{
|
|
788
817
|
type: Component,
|
|
789
818
|
args: [{
|
|
790
819
|
selector: 'bq-option-group',
|
|
@@ -803,8 +832,8 @@ let BqOptionList = class BqOptionList {
|
|
|
803
832
|
this.el = r.nativeElement;
|
|
804
833
|
proxyOutputs(this, this.el, ['bqSelect']);
|
|
805
834
|
}
|
|
806
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
807
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
835
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqOptionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
836
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqOptionList, selector: "bq-option-list", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
808
837
|
};
|
|
809
838
|
BqOptionList = __decorate([
|
|
810
839
|
ProxyCmp({
|
|
@@ -812,7 +841,7 @@ BqOptionList = __decorate([
|
|
|
812
841
|
}),
|
|
813
842
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
814
843
|
], BqOptionList);
|
|
815
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
844
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqOptionList, decorators: [{
|
|
816
845
|
type: Component,
|
|
817
846
|
args: [{
|
|
818
847
|
selector: 'bq-option-list',
|
|
@@ -830,8 +859,8 @@ let BqPanel = class BqPanel {
|
|
|
830
859
|
c.detach();
|
|
831
860
|
this.el = r.nativeElement;
|
|
832
861
|
}
|
|
833
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
834
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
862
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
863
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqPanel, selector: "bq-panel", inputs: { distance: "distance", open: "open", placement: "placement", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
835
864
|
};
|
|
836
865
|
BqPanel = __decorate([
|
|
837
866
|
ProxyCmp({
|
|
@@ -839,7 +868,7 @@ BqPanel = __decorate([
|
|
|
839
868
|
}),
|
|
840
869
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
841
870
|
], BqPanel);
|
|
842
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
871
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqPanel, decorators: [{
|
|
843
872
|
type: Component,
|
|
844
873
|
args: [{
|
|
845
874
|
selector: 'bq-panel',
|
|
@@ -849,6 +878,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImpor
|
|
|
849
878
|
inputs: ['distance', 'open', 'placement', 'sameWidth', 'skidding', 'strategy'],
|
|
850
879
|
}]
|
|
851
880
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
881
|
+
let BqProgress = class BqProgress {
|
|
882
|
+
z;
|
|
883
|
+
el;
|
|
884
|
+
constructor(c, r, z) {
|
|
885
|
+
this.z = z;
|
|
886
|
+
c.detach();
|
|
887
|
+
this.el = r.nativeElement;
|
|
888
|
+
}
|
|
889
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
890
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqProgress, selector: "bq-progress", inputs: { borderShape: "borderShape", enableTooltip: "enableTooltip", indeterminate: "indeterminate", label: "label", thickness: "thickness", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
891
|
+
};
|
|
892
|
+
BqProgress = __decorate([
|
|
893
|
+
ProxyCmp({
|
|
894
|
+
inputs: ['borderShape', 'enableTooltip', 'indeterminate', 'label', 'thickness', 'type', 'value']
|
|
895
|
+
}),
|
|
896
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
897
|
+
], BqProgress);
|
|
898
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqProgress, decorators: [{
|
|
899
|
+
type: Component,
|
|
900
|
+
args: [{
|
|
901
|
+
selector: 'bq-progress',
|
|
902
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
903
|
+
template: '<ng-content></ng-content>',
|
|
904
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
905
|
+
inputs: ['borderShape', 'enableTooltip', 'indeterminate', 'label', 'thickness', 'type', 'value'],
|
|
906
|
+
}]
|
|
907
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
852
908
|
let BqRadio = class BqRadio {
|
|
853
909
|
z;
|
|
854
910
|
el;
|
|
@@ -858,8 +914,8 @@ let BqRadio = class BqRadio {
|
|
|
858
914
|
this.el = r.nativeElement;
|
|
859
915
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
860
916
|
}
|
|
861
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
862
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
917
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
918
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqRadio, selector: "bq-radio", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
863
919
|
};
|
|
864
920
|
BqRadio = __decorate([
|
|
865
921
|
ProxyCmp({
|
|
@@ -868,7 +924,7 @@ BqRadio = __decorate([
|
|
|
868
924
|
}),
|
|
869
925
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
870
926
|
], BqRadio);
|
|
871
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
927
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqRadio, decorators: [{
|
|
872
928
|
type: Component,
|
|
873
929
|
args: [{
|
|
874
930
|
selector: 'bq-radio',
|
|
@@ -887,8 +943,8 @@ let BqRadioGroup = class BqRadioGroup {
|
|
|
887
943
|
this.el = r.nativeElement;
|
|
888
944
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
889
945
|
}
|
|
890
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
891
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
946
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
947
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqRadioGroup, selector: "bq-radio-group", inputs: { backgroundOnHover: "backgroundOnHover", debounceTime: "debounceTime", disabled: "disabled", fieldset: "fieldset", name: "name", orientation: "orientation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
892
948
|
};
|
|
893
949
|
BqRadioGroup = __decorate([
|
|
894
950
|
ProxyCmp({
|
|
@@ -896,7 +952,7 @@ BqRadioGroup = __decorate([
|
|
|
896
952
|
}),
|
|
897
953
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
898
954
|
], BqRadioGroup);
|
|
899
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
955
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqRadioGroup, decorators: [{
|
|
900
956
|
type: Component,
|
|
901
957
|
args: [{
|
|
902
958
|
selector: 'bq-radio-group',
|
|
@@ -915,24 +971,24 @@ let BqSelect = class BqSelect {
|
|
|
915
971
|
this.el = r.nativeElement;
|
|
916
972
|
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect']);
|
|
917
973
|
}
|
|
918
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
919
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
974
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
975
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqSelect, selector: "bq-select", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disabled: "disabled", distance: "distance", form: "form", keepOpenOnSelect: "keepOpenOnSelect", maxTagsVisible: "maxTagsVisible", multiple: "multiple", name: "name", open: "open", panelHeight: "panelHeight", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
920
976
|
};
|
|
921
977
|
BqSelect = __decorate([
|
|
922
978
|
ProxyCmp({
|
|
923
|
-
inputs: ['autofocus', 'clearButtonLabel', 'disableClear', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
|
|
979
|
+
inputs: ['autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'maxTagsVisible', 'multiple', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
|
|
924
980
|
methods: ['clear']
|
|
925
981
|
}),
|
|
926
982
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
927
983
|
], BqSelect);
|
|
928
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
984
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqSelect, decorators: [{
|
|
929
985
|
type: Component,
|
|
930
986
|
args: [{
|
|
931
987
|
selector: 'bq-select',
|
|
932
988
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
933
989
|
template: '<ng-content></ng-content>',
|
|
934
990
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
935
|
-
inputs: ['autofocus', 'clearButtonLabel', 'disableClear', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
|
|
991
|
+
inputs: ['autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'maxTagsVisible', 'multiple', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
|
|
936
992
|
}]
|
|
937
993
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
938
994
|
let BqSideMenu = class BqSideMenu {
|
|
@@ -944,8 +1000,8 @@ let BqSideMenu = class BqSideMenu {
|
|
|
944
1000
|
this.el = r.nativeElement;
|
|
945
1001
|
proxyOutputs(this, this.el, ['bqCollapse', 'bqSelect']);
|
|
946
1002
|
}
|
|
947
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
948
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1003
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqSideMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1004
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqSideMenu, selector: "bq-side-menu", inputs: { appearance: "appearance", collapse: "collapse", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
949
1005
|
};
|
|
950
1006
|
BqSideMenu = __decorate([
|
|
951
1007
|
ProxyCmp({
|
|
@@ -954,7 +1010,7 @@ BqSideMenu = __decorate([
|
|
|
954
1010
|
}),
|
|
955
1011
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
956
1012
|
], BqSideMenu);
|
|
957
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1013
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqSideMenu, decorators: [{
|
|
958
1014
|
type: Component,
|
|
959
1015
|
args: [{
|
|
960
1016
|
selector: 'bq-side-menu',
|
|
@@ -973,8 +1029,8 @@ let BqSideMenuItem = class BqSideMenuItem {
|
|
|
973
1029
|
this.el = r.nativeElement;
|
|
974
1030
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
975
1031
|
}
|
|
976
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
977
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1032
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqSideMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1033
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqSideMenuItem, selector: "bq-side-menu-item", inputs: { active: "active", collapse: "collapse", disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
978
1034
|
};
|
|
979
1035
|
BqSideMenuItem = __decorate([
|
|
980
1036
|
ProxyCmp({
|
|
@@ -982,7 +1038,7 @@ BqSideMenuItem = __decorate([
|
|
|
982
1038
|
}),
|
|
983
1039
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
984
1040
|
], BqSideMenuItem);
|
|
985
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1041
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqSideMenuItem, decorators: [{
|
|
986
1042
|
type: Component,
|
|
987
1043
|
args: [{
|
|
988
1044
|
selector: 'bq-side-menu-item',
|
|
@@ -1001,23 +1057,23 @@ let BqSlider = class BqSlider {
|
|
|
1001
1057
|
this.el = r.nativeElement;
|
|
1002
1058
|
proxyOutputs(this, this.el, ['bqChange', 'bqBlur', 'bqFocus']);
|
|
1003
1059
|
}
|
|
1004
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1005
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1060
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1061
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqSlider, selector: "bq-slider", inputs: { debounceTime: "debounceTime", disabled: "disabled", enableTooltip: "enableTooltip", enableValueIndicator: "enableValueIndicator", gap: "gap", max: "max", min: "min", step: "step", tooltipAlwaysVisible: "tooltipAlwaysVisible", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1006
1062
|
};
|
|
1007
1063
|
BqSlider = __decorate([
|
|
1008
1064
|
ProxyCmp({
|
|
1009
|
-
inputs: ['debounceTime', 'disabled', 'gap', 'max', 'min', 'step', '
|
|
1065
|
+
inputs: ['debounceTime', 'disabled', 'enableTooltip', 'enableValueIndicator', 'gap', 'max', 'min', 'step', 'tooltipAlwaysVisible', 'type', 'value']
|
|
1010
1066
|
}),
|
|
1011
1067
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1012
1068
|
], BqSlider);
|
|
1013
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1069
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqSlider, decorators: [{
|
|
1014
1070
|
type: Component,
|
|
1015
1071
|
args: [{
|
|
1016
1072
|
selector: 'bq-slider',
|
|
1017
1073
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1018
1074
|
template: '<ng-content></ng-content>',
|
|
1019
1075
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1020
|
-
inputs: ['debounceTime', 'disabled', 'gap', 'max', 'min', 'step', '
|
|
1076
|
+
inputs: ['debounceTime', 'disabled', 'enableTooltip', 'enableValueIndicator', 'gap', 'max', 'min', 'step', 'tooltipAlwaysVisible', 'type', 'value'],
|
|
1021
1077
|
}]
|
|
1022
1078
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1023
1079
|
let BqSpinner = class BqSpinner {
|
|
@@ -1028,8 +1084,8 @@ let BqSpinner = class BqSpinner {
|
|
|
1028
1084
|
c.detach();
|
|
1029
1085
|
this.el = r.nativeElement;
|
|
1030
1086
|
}
|
|
1031
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1032
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1087
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1088
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqSpinner, selector: "bq-spinner", inputs: { animation: "animation", size: "size", textPosition: "textPosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1033
1089
|
};
|
|
1034
1090
|
BqSpinner = __decorate([
|
|
1035
1091
|
ProxyCmp({
|
|
@@ -1037,7 +1093,7 @@ BqSpinner = __decorate([
|
|
|
1037
1093
|
}),
|
|
1038
1094
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1039
1095
|
], BqSpinner);
|
|
1040
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1096
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqSpinner, decorators: [{
|
|
1041
1097
|
type: Component,
|
|
1042
1098
|
args: [{
|
|
1043
1099
|
selector: 'bq-spinner',
|
|
@@ -1055,8 +1111,8 @@ let BqStatus = class BqStatus {
|
|
|
1055
1111
|
c.detach();
|
|
1056
1112
|
this.el = r.nativeElement;
|
|
1057
1113
|
}
|
|
1058
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1059
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1114
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1115
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqStatus, selector: "bq-status", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1060
1116
|
};
|
|
1061
1117
|
BqStatus = __decorate([
|
|
1062
1118
|
ProxyCmp({
|
|
@@ -1064,7 +1120,7 @@ BqStatus = __decorate([
|
|
|
1064
1120
|
}),
|
|
1065
1121
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1066
1122
|
], BqStatus);
|
|
1067
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1123
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqStatus, decorators: [{
|
|
1068
1124
|
type: Component,
|
|
1069
1125
|
args: [{
|
|
1070
1126
|
selector: 'bq-status',
|
|
@@ -1083,8 +1139,8 @@ let BqStepItem = class BqStepItem {
|
|
|
1083
1139
|
this.el = r.nativeElement;
|
|
1084
1140
|
proxyOutputs(this, this.el, ['bqClick']);
|
|
1085
1141
|
}
|
|
1086
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1087
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1142
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqStepItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1143
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqStepItem, selector: "bq-step-item", inputs: { size: "size", status: "status", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1088
1144
|
};
|
|
1089
1145
|
BqStepItem = __decorate([
|
|
1090
1146
|
ProxyCmp({
|
|
@@ -1092,7 +1148,7 @@ BqStepItem = __decorate([
|
|
|
1092
1148
|
}),
|
|
1093
1149
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1094
1150
|
], BqStepItem);
|
|
1095
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1151
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqStepItem, decorators: [{
|
|
1096
1152
|
type: Component,
|
|
1097
1153
|
args: [{
|
|
1098
1154
|
selector: 'bq-step-item',
|
|
@@ -1110,8 +1166,8 @@ let BqSteps = class BqSteps {
|
|
|
1110
1166
|
c.detach();
|
|
1111
1167
|
this.el = r.nativeElement;
|
|
1112
1168
|
}
|
|
1113
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1114
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1169
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1170
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqSteps, selector: "bq-steps", inputs: { dividerColor: "dividerColor", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1115
1171
|
};
|
|
1116
1172
|
BqSteps = __decorate([
|
|
1117
1173
|
ProxyCmp({
|
|
@@ -1119,7 +1175,7 @@ BqSteps = __decorate([
|
|
|
1119
1175
|
}),
|
|
1120
1176
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1121
1177
|
], BqSteps);
|
|
1122
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1178
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqSteps, decorators: [{
|
|
1123
1179
|
type: Component,
|
|
1124
1180
|
args: [{
|
|
1125
1181
|
selector: 'bq-steps',
|
|
@@ -1138,8 +1194,8 @@ let BqSwitch = class BqSwitch {
|
|
|
1138
1194
|
this.el = r.nativeElement;
|
|
1139
1195
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
1140
1196
|
}
|
|
1141
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1142
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1197
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1198
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqSwitch, selector: "bq-switch", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", fullWidth: "fullWidth", innerLabel: "innerLabel", justifyContent: "justifyContent", name: "name", required: "required", reverseOrder: "reverseOrder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1143
1199
|
};
|
|
1144
1200
|
BqSwitch = __decorate([
|
|
1145
1201
|
ProxyCmp({
|
|
@@ -1148,7 +1204,7 @@ BqSwitch = __decorate([
|
|
|
1148
1204
|
}),
|
|
1149
1205
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1150
1206
|
], BqSwitch);
|
|
1151
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqSwitch, decorators: [{
|
|
1152
1208
|
type: Component,
|
|
1153
1209
|
args: [{
|
|
1154
1210
|
selector: 'bq-switch',
|
|
@@ -1167,8 +1223,8 @@ let BqTab = class BqTab {
|
|
|
1167
1223
|
this.el = r.nativeElement;
|
|
1168
1224
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
1169
1225
|
}
|
|
1170
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1171
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1226
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1227
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqTab, selector: "bq-tab", inputs: { active: "active", controls: "controls", disabled: "disabled", size: "size", tabId: "tabId" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1172
1228
|
};
|
|
1173
1229
|
BqTab = __decorate([
|
|
1174
1230
|
ProxyCmp({
|
|
@@ -1177,7 +1233,7 @@ BqTab = __decorate([
|
|
|
1177
1233
|
}),
|
|
1178
1234
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1179
1235
|
], BqTab);
|
|
1180
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1236
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqTab, decorators: [{
|
|
1181
1237
|
type: Component,
|
|
1182
1238
|
args: [{
|
|
1183
1239
|
selector: 'bq-tab',
|
|
@@ -1196,8 +1252,8 @@ let BqTabGroup = class BqTabGroup {
|
|
|
1196
1252
|
this.el = r.nativeElement;
|
|
1197
1253
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
1198
1254
|
}
|
|
1199
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1200
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1255
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1256
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqTabGroup, selector: "bq-tab-group", inputs: { debounceTime: "debounceTime", disableDivider: "disableDivider", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1201
1257
|
};
|
|
1202
1258
|
BqTabGroup = __decorate([
|
|
1203
1259
|
ProxyCmp({
|
|
@@ -1205,7 +1261,7 @@ BqTabGroup = __decorate([
|
|
|
1205
1261
|
}),
|
|
1206
1262
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1207
1263
|
], BqTabGroup);
|
|
1208
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1264
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqTabGroup, decorators: [{
|
|
1209
1265
|
type: Component,
|
|
1210
1266
|
args: [{
|
|
1211
1267
|
selector: 'bq-tab-group',
|
|
@@ -1224,8 +1280,8 @@ let BqTag = class BqTag {
|
|
|
1224
1280
|
this.el = r.nativeElement;
|
|
1225
1281
|
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus']);
|
|
1226
1282
|
}
|
|
1227
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1228
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1283
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1284
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqTag, selector: "bq-tag", inputs: { border: "border", clickable: "clickable", color: "color", disabled: "disabled", hidden: "hidden", removable: "removable", selected: "selected", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1229
1285
|
};
|
|
1230
1286
|
BqTag = __decorate([
|
|
1231
1287
|
ProxyCmp({
|
|
@@ -1234,7 +1290,7 @@ BqTag = __decorate([
|
|
|
1234
1290
|
}),
|
|
1235
1291
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1236
1292
|
], BqTag);
|
|
1237
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1293
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqTag, decorators: [{
|
|
1238
1294
|
type: Component,
|
|
1239
1295
|
args: [{
|
|
1240
1296
|
selector: 'bq-tag',
|
|
@@ -1253,8 +1309,8 @@ let BqTextarea = class BqTextarea {
|
|
|
1253
1309
|
this.el = r.nativeElement;
|
|
1254
1310
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
1255
1311
|
}
|
|
1256
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1257
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1312
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1313
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqTextarea, selector: "bq-textarea", inputs: { autoGrow: "autoGrow", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", debounceTime: "debounceTime", disableResize: "disableResize", disabled: "disabled", form: "form", maxlength: "maxlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", spellcheck: "spellcheck", validationStatus: "validationStatus", value: "value", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1258
1314
|
};
|
|
1259
1315
|
BqTextarea = __decorate([
|
|
1260
1316
|
ProxyCmp({
|
|
@@ -1262,7 +1318,7 @@ BqTextarea = __decorate([
|
|
|
1262
1318
|
}),
|
|
1263
1319
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1264
1320
|
], BqTextarea);
|
|
1265
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1321
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqTextarea, decorators: [{
|
|
1266
1322
|
type: Component,
|
|
1267
1323
|
args: [{
|
|
1268
1324
|
selector: 'bq-textarea',
|
|
@@ -1281,8 +1337,8 @@ let BqToast = class BqToast {
|
|
|
1281
1337
|
this.el = r.nativeElement;
|
|
1282
1338
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow']);
|
|
1283
1339
|
}
|
|
1284
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1285
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1340
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1341
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqToast, selector: "bq-toast", inputs: { border: "border", hideIcon: "hideIcon", open: "open", placement: "placement", time: "time", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1286
1342
|
};
|
|
1287
1343
|
BqToast = __decorate([
|
|
1288
1344
|
ProxyCmp({
|
|
@@ -1291,7 +1347,7 @@ BqToast = __decorate([
|
|
|
1291
1347
|
}),
|
|
1292
1348
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1293
1349
|
], BqToast);
|
|
1294
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqToast, decorators: [{
|
|
1295
1351
|
type: Component,
|
|
1296
1352
|
args: [{
|
|
1297
1353
|
selector: 'bq-toast',
|
|
@@ -1309,24 +1365,24 @@ let BqTooltip = class BqTooltip {
|
|
|
1309
1365
|
c.detach();
|
|
1310
1366
|
this.el = r.nativeElement;
|
|
1311
1367
|
}
|
|
1312
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1313
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1368
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1369
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: BqTooltip, selector: "bq-tooltip", inputs: { alwaysVisible: "alwaysVisible", displayOn: "displayOn", distance: "distance", hideArrow: "hideArrow", placement: "placement", sameWidth: "sameWidth", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1314
1370
|
};
|
|
1315
1371
|
BqTooltip = __decorate([
|
|
1316
1372
|
ProxyCmp({
|
|
1317
|
-
inputs: ['displayOn', 'distance', 'hideArrow', 'placement', 'sameWidth', 'visible'],
|
|
1373
|
+
inputs: ['alwaysVisible', 'displayOn', 'distance', 'hideArrow', 'placement', 'sameWidth', 'visible'],
|
|
1318
1374
|
methods: ['show', 'hide']
|
|
1319
1375
|
}),
|
|
1320
1376
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1321
1377
|
], BqTooltip);
|
|
1322
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1378
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BqTooltip, decorators: [{
|
|
1323
1379
|
type: Component,
|
|
1324
1380
|
args: [{
|
|
1325
1381
|
selector: 'bq-tooltip',
|
|
1326
1382
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1327
1383
|
template: '<ng-content></ng-content>',
|
|
1328
1384
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1329
|
-
inputs: ['displayOn', 'distance', 'hideArrow', 'placement', 'sameWidth', 'visible'],
|
|
1385
|
+
inputs: ['alwaysVisible', 'displayOn', 'distance', 'hideArrow', 'placement', 'sameWidth', 'visible'],
|
|
1330
1386
|
}]
|
|
1331
1387
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1332
1388
|
|
|
@@ -1343,6 +1399,7 @@ const DIRECTIVES = [
|
|
|
1343
1399
|
BqCheckbox,
|
|
1344
1400
|
BqDialog,
|
|
1345
1401
|
BqDivider,
|
|
1402
|
+
BqDrawer,
|
|
1346
1403
|
BqDropdown,
|
|
1347
1404
|
BqEmptyState,
|
|
1348
1405
|
BqIcon,
|
|
@@ -1352,6 +1409,7 @@ const DIRECTIVES = [
|
|
|
1352
1409
|
BqOptionGroup,
|
|
1353
1410
|
BqOptionList,
|
|
1354
1411
|
BqPanel,
|
|
1412
|
+
BqProgress,
|
|
1355
1413
|
BqRadio,
|
|
1356
1414
|
BqRadioGroup,
|
|
1357
1415
|
BqSelect,
|
|
@@ -1394,23 +1452,23 @@ class BeeQModule {
|
|
|
1394
1452
|
],
|
|
1395
1453
|
};
|
|
1396
1454
|
}
|
|
1397
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1398
|
-
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.
|
|
1455
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BeeQModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1456
|
+
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.5", ngImport: i0, type: BeeQModule, declarations: [BqAccordion, BqAccordionGroup, BqAlert, BqAvatar, BqBadge, BqBreadcrumb, BqBreadcrumbItem, BqButton, BqCard, BqCheckbox, BqDialog, BqDivider, BqDrawer, BqDropdown, BqEmptyState, BqIcon, BqInput, BqNotification, BqOption, BqOptionGroup, BqOptionList, BqPanel, BqProgress, BqRadio, BqRadioGroup, BqSelect, BqSideMenu, BqSideMenuItem, BqSlider, BqSpinner, BqStatus, BqStepItem, BqSteps, BqSwitch, BqTab, BqTabGroup, BqTag, BqTextarea, BqToast, BqTooltip,
|
|
1399
1457
|
// ngModel Accessors
|
|
1400
1458
|
BooleanValueAccessor,
|
|
1401
1459
|
NumericValueAccessor,
|
|
1402
1460
|
RadioValueAccessor,
|
|
1403
1461
|
SelectValueAccessor,
|
|
1404
|
-
TextValueAccessor], imports: [CommonModule], exports: [BqAccordion, BqAccordionGroup, BqAlert, BqAvatar, BqBadge, BqBreadcrumb, BqBreadcrumbItem, BqButton, BqCard, BqCheckbox, BqDialog, BqDivider, BqDropdown, BqEmptyState, BqIcon, BqInput, BqNotification, BqOption, BqOptionGroup, BqOptionList, BqPanel, BqRadio, BqRadioGroup, BqSelect, BqSideMenu, BqSideMenuItem, BqSlider, BqSpinner, BqStatus, BqStepItem, BqSteps, BqSwitch, BqTab, BqTabGroup, BqTag, BqTextarea, BqToast, BqTooltip,
|
|
1462
|
+
TextValueAccessor], imports: [CommonModule], exports: [BqAccordion, BqAccordionGroup, BqAlert, BqAvatar, BqBadge, BqBreadcrumb, BqBreadcrumbItem, BqButton, BqCard, BqCheckbox, BqDialog, BqDivider, BqDrawer, BqDropdown, BqEmptyState, BqIcon, BqInput, BqNotification, BqOption, BqOptionGroup, BqOptionList, BqPanel, BqProgress, BqRadio, BqRadioGroup, BqSelect, BqSideMenu, BqSideMenuItem, BqSlider, BqSpinner, BqStatus, BqStepItem, BqSteps, BqSwitch, BqTab, BqTabGroup, BqTag, BqTextarea, BqToast, BqTooltip,
|
|
1405
1463
|
// ngModel Accessors
|
|
1406
1464
|
BooleanValueAccessor,
|
|
1407
1465
|
NumericValueAccessor,
|
|
1408
1466
|
RadioValueAccessor,
|
|
1409
1467
|
SelectValueAccessor,
|
|
1410
1468
|
TextValueAccessor] });
|
|
1411
|
-
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.
|
|
1469
|
+
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BeeQModule, imports: [CommonModule] });
|
|
1412
1470
|
}
|
|
1413
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1471
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BeeQModule, decorators: [{
|
|
1414
1472
|
type: NgModule,
|
|
1415
1473
|
args: [{
|
|
1416
1474
|
imports: [CommonModule],
|
|
@@ -1427,5 +1485,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImpor
|
|
|
1427
1485
|
* Generated bundle index. Do not edit.
|
|
1428
1486
|
*/
|
|
1429
1487
|
|
|
1430
|
-
export { BeeQModule, BooleanValueAccessor, BqAccordion, BqAccordionGroup, BqAlert, BqAvatar, BqBadge, BqBreadcrumb, BqBreadcrumbItem, BqButton, BqCard, BqCheckbox, BqDialog, BqDivider, BqDropdown, BqEmptyState, BqIcon, BqInput, BqNotification, BqOption, BqOptionGroup, BqOptionList, BqPanel, BqRadio, BqRadioGroup, BqSelect, BqSideMenu, BqSideMenuItem, BqSlider, BqSpinner, BqStatus, BqStepItem, BqSteps, BqSwitch, BqTab, BqTabGroup, BqTag, BqTextarea, BqToast, BqTooltip, NumericValueAccessor, RadioValueAccessor, SelectValueAccessor, TextValueAccessor };
|
|
1488
|
+
export { BeeQModule, BooleanValueAccessor, BqAccordion, BqAccordionGroup, BqAlert, BqAvatar, BqBadge, BqBreadcrumb, BqBreadcrumbItem, BqButton, BqCard, BqCheckbox, BqDialog, BqDivider, BqDrawer, BqDropdown, BqEmptyState, BqIcon, BqInput, BqNotification, BqOption, BqOptionGroup, BqOptionList, BqPanel, BqProgress, BqRadio, BqRadioGroup, BqSelect, BqSideMenu, BqSideMenuItem, BqSlider, BqSpinner, BqStatus, BqStepItem, BqSteps, BqSwitch, BqTab, BqTabGroup, BqTag, BqTextarea, BqToast, BqTooltip, NumericValueAccessor, RadioValueAccessor, SelectValueAccessor, TextValueAccessor };
|
|
1431
1489
|
//# sourceMappingURL=beeq-angular.mjs.map
|