@beeq/angular 1.0.1 → 1.1.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/README.md +50 -5
- package/beeq.module.d.ts +7 -2
- package/directives/components.d.ts +2 -2
- package/directives/number-value-accessor.d.ts +9 -0
- package/directives/radio-value-accessor.d.ts +8 -0
- package/directives/select-value-accessor.d.ts +8 -0
- package/directives/text-value-accessor.d.ts +1 -1
- package/esm2022/beeq.module.mjs +43 -10
- package/esm2022/directives/boolean-value-accessor.mjs +3 -3
- package/esm2022/directives/components.mjs +119 -119
- package/esm2022/directives/number-value-accessor.mjs +40 -0
- package/esm2022/directives/radio-value-accessor.mjs +35 -0
- package/esm2022/directives/select-value-accessor.mjs +35 -0
- package/esm2022/directives/text-value-accessor.mjs +5 -5
- package/esm2022/directives/value-accessor.mjs +3 -3
- package/esm2022/index.mjs +4 -1
- package/esm2022/standalone/beeq-angular-standalone.mjs +5 -0
- package/esm2022/standalone/directives/angular-component-lib/utils.mjs +59 -0
- package/esm2022/standalone/directives/components.mjs +1222 -0
- package/esm2022/standalone/index.mjs +6 -0
- package/fesm2022/beeq-angular-standalone.mjs +1252 -0
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -0
- package/fesm2022/beeq-angular.mjs +264 -138
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/index.d.ts +3 -0
- package/package.json +9 -2
- package/standalone/directives/angular-component-lib/utils.d.ts +9 -0
- package/standalone/directives/components.d.ts +696 -0
- package/standalone/index.d.ts +1 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Directive, HostListener, ChangeDetectorRef, ElementRef, NgZone, Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
|
|
2
|
+
import { Directive, HostListener, ChangeDetectorRef, ElementRef, NgZone, Component, ChangeDetectionStrategy, 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';
|
|
6
|
-
import { CommonModule } from '@angular/common';
|
|
6
|
+
import { DOCUMENT, CommonModule } from '@angular/common';
|
|
7
7
|
import { defineCustomElements } from '@beeq/core/dist/loader';
|
|
8
8
|
|
|
9
9
|
class ValueAccessor {
|
|
@@ -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.2.
|
|
39
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.
|
|
38
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
39
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.4", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
40
40
|
}
|
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
41
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", 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.2.
|
|
57
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.
|
|
56
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
57
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.4", 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.2.
|
|
65
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
66
66
|
type: Directive,
|
|
67
67
|
args: [{
|
|
68
68
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -80,12 +80,110 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImpor
|
|
|
80
80
|
}]
|
|
81
81
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
82
82
|
|
|
83
|
+
class NumericValueAccessor extends ValueAccessor {
|
|
84
|
+
constructor(el) {
|
|
85
|
+
super(el);
|
|
86
|
+
}
|
|
87
|
+
registerOnChange(fn) {
|
|
88
|
+
super.registerOnChange(value => {
|
|
89
|
+
fn(value === '' ? null : parseFloat(value));
|
|
90
|
+
});
|
|
91
|
+
}
|
|
92
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
93
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.4", type: NumericValueAccessor, selector: "bq-input[type=\"number\"], bq-slider", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
94
|
+
{
|
|
95
|
+
provide: NG_VALUE_ACCESSOR,
|
|
96
|
+
useExisting: NumericValueAccessor,
|
|
97
|
+
multi: true
|
|
98
|
+
}
|
|
99
|
+
], usesInheritance: true, ngImport: i0 });
|
|
100
|
+
}
|
|
101
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
102
|
+
type: Directive,
|
|
103
|
+
args: [{
|
|
104
|
+
/* tslint:disable-next-line:directive-selector */
|
|
105
|
+
selector: 'bq-input[type="number"], bq-slider',
|
|
106
|
+
host: {
|
|
107
|
+
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
108
|
+
},
|
|
109
|
+
providers: [
|
|
110
|
+
{
|
|
111
|
+
provide: NG_VALUE_ACCESSOR,
|
|
112
|
+
useExisting: NumericValueAccessor,
|
|
113
|
+
multi: true
|
|
114
|
+
}
|
|
115
|
+
]
|
|
116
|
+
}]
|
|
117
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
118
|
+
|
|
119
|
+
class RadioValueAccessor extends ValueAccessor {
|
|
120
|
+
constructor(el) {
|
|
121
|
+
super(el);
|
|
122
|
+
}
|
|
123
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
124
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.4", type: RadioValueAccessor, selector: "bq-radio-group", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
125
|
+
{
|
|
126
|
+
provide: NG_VALUE_ACCESSOR,
|
|
127
|
+
useExisting: RadioValueAccessor,
|
|
128
|
+
multi: true
|
|
129
|
+
}
|
|
130
|
+
], usesInheritance: true, ngImport: i0 });
|
|
131
|
+
}
|
|
132
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
133
|
+
type: Directive,
|
|
134
|
+
args: [{
|
|
135
|
+
/* tslint:disable-next-line:directive-selector */
|
|
136
|
+
selector: 'bq-radio-group',
|
|
137
|
+
host: {
|
|
138
|
+
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
139
|
+
},
|
|
140
|
+
providers: [
|
|
141
|
+
{
|
|
142
|
+
provide: NG_VALUE_ACCESSOR,
|
|
143
|
+
useExisting: RadioValueAccessor,
|
|
144
|
+
multi: true
|
|
145
|
+
}
|
|
146
|
+
]
|
|
147
|
+
}]
|
|
148
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
149
|
+
|
|
150
|
+
class SelectValueAccessor extends ValueAccessor {
|
|
151
|
+
constructor(el) {
|
|
152
|
+
super(el);
|
|
153
|
+
}
|
|
154
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
155
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.4", type: SelectValueAccessor, selector: "bq-select", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
156
|
+
{
|
|
157
|
+
provide: NG_VALUE_ACCESSOR,
|
|
158
|
+
useExisting: SelectValueAccessor,
|
|
159
|
+
multi: true
|
|
160
|
+
}
|
|
161
|
+
], usesInheritance: true, ngImport: i0 });
|
|
162
|
+
}
|
|
163
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
164
|
+
type: Directive,
|
|
165
|
+
args: [{
|
|
166
|
+
/* tslint:disable-next-line:directive-selector */
|
|
167
|
+
selector: 'bq-select',
|
|
168
|
+
host: {
|
|
169
|
+
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
170
|
+
},
|
|
171
|
+
providers: [
|
|
172
|
+
{
|
|
173
|
+
provide: NG_VALUE_ACCESSOR,
|
|
174
|
+
useExisting: SelectValueAccessor,
|
|
175
|
+
multi: true
|
|
176
|
+
}
|
|
177
|
+
]
|
|
178
|
+
}]
|
|
179
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
180
|
+
|
|
83
181
|
class TextValueAccessor extends ValueAccessor {
|
|
84
182
|
constructor(el) {
|
|
85
183
|
super(el);
|
|
86
184
|
}
|
|
87
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
88
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.
|
|
185
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
186
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.4", type: TextValueAccessor, selector: "bq-input:not[type=\"number\"], bq-textarea", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
89
187
|
{
|
|
90
188
|
provide: NG_VALUE_ACCESSOR,
|
|
91
189
|
useExisting: TextValueAccessor,
|
|
@@ -93,11 +191,11 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
93
191
|
}
|
|
94
192
|
], usesInheritance: true, ngImport: i0 });
|
|
95
193
|
}
|
|
96
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
194
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
97
195
|
type: Directive,
|
|
98
196
|
args: [{
|
|
99
197
|
/* tslint:disable-next-line:directive-selector */
|
|
100
|
-
selector: 'bq-input, bq-
|
|
198
|
+
selector: 'bq-input:not[type="number"], bq-textarea',
|
|
101
199
|
host: {
|
|
102
200
|
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
103
201
|
},
|
|
@@ -178,8 +276,8 @@ let BqAccordion = class BqAccordion {
|
|
|
178
276
|
this.el = r.nativeElement;
|
|
179
277
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur']);
|
|
180
278
|
}
|
|
181
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
182
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
279
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", 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.2.4", 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 });
|
|
183
281
|
};
|
|
184
282
|
BqAccordion = __decorate([
|
|
185
283
|
ProxyCmp({
|
|
@@ -187,7 +285,7 @@ BqAccordion = __decorate([
|
|
|
187
285
|
}),
|
|
188
286
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
189
287
|
], BqAccordion);
|
|
190
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
288
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqAccordion, decorators: [{
|
|
191
289
|
type: Component,
|
|
192
290
|
args: [{
|
|
193
291
|
selector: 'bq-accordion',
|
|
@@ -205,23 +303,23 @@ let BqAccordionGroup = class BqAccordionGroup {
|
|
|
205
303
|
c.detach();
|
|
206
304
|
this.el = r.nativeElement;
|
|
207
305
|
}
|
|
208
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
209
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
306
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", 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.2.4", 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 });
|
|
210
308
|
};
|
|
211
309
|
BqAccordionGroup = __decorate([
|
|
212
310
|
ProxyCmp({
|
|
213
|
-
inputs: ['expandAll', 'multiple']
|
|
311
|
+
inputs: ['appearance', 'expandAll', 'multiple', 'size']
|
|
214
312
|
}),
|
|
215
313
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
216
314
|
], BqAccordionGroup);
|
|
217
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
315
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqAccordionGroup, decorators: [{
|
|
218
316
|
type: Component,
|
|
219
317
|
args: [{
|
|
220
318
|
selector: 'bq-accordion-group',
|
|
221
319
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
222
320
|
template: '<ng-content></ng-content>',
|
|
223
321
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
224
|
-
inputs: ['expandAll', 'multiple'],
|
|
322
|
+
inputs: ['appearance', 'expandAll', 'multiple', 'size'],
|
|
225
323
|
}]
|
|
226
324
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
227
325
|
let BqAlert = class BqAlert {
|
|
@@ -233,8 +331,8 @@ let BqAlert = class BqAlert {
|
|
|
233
331
|
this.el = r.nativeElement;
|
|
234
332
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
|
|
235
333
|
}
|
|
236
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
237
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
334
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", 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.2.4", 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 });
|
|
238
336
|
};
|
|
239
337
|
BqAlert = __decorate([
|
|
240
338
|
ProxyCmp({
|
|
@@ -243,7 +341,7 @@ BqAlert = __decorate([
|
|
|
243
341
|
}),
|
|
244
342
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
245
343
|
], BqAlert);
|
|
246
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
344
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqAlert, decorators: [{
|
|
247
345
|
type: Component,
|
|
248
346
|
args: [{
|
|
249
347
|
selector: 'bq-alert',
|
|
@@ -261,8 +359,8 @@ let BqAvatar = class BqAvatar {
|
|
|
261
359
|
c.detach();
|
|
262
360
|
this.el = r.nativeElement;
|
|
263
361
|
}
|
|
264
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
265
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
362
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", 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.2.4", 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 });
|
|
266
364
|
};
|
|
267
365
|
BqAvatar = __decorate([
|
|
268
366
|
ProxyCmp({
|
|
@@ -270,7 +368,7 @@ BqAvatar = __decorate([
|
|
|
270
368
|
}),
|
|
271
369
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
272
370
|
], BqAvatar);
|
|
273
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
371
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqAvatar, decorators: [{
|
|
274
372
|
type: Component,
|
|
275
373
|
args: [{
|
|
276
374
|
selector: 'bq-avatar',
|
|
@@ -288,8 +386,8 @@ let BqBadge = class BqBadge {
|
|
|
288
386
|
c.detach();
|
|
289
387
|
this.el = r.nativeElement;
|
|
290
388
|
}
|
|
291
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
292
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
389
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", 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.2.4", 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 });
|
|
293
391
|
};
|
|
294
392
|
BqBadge = __decorate([
|
|
295
393
|
ProxyCmp({
|
|
@@ -297,7 +395,7 @@ BqBadge = __decorate([
|
|
|
297
395
|
}),
|
|
298
396
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
299
397
|
], BqBadge);
|
|
300
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqBadge, decorators: [{
|
|
301
399
|
type: Component,
|
|
302
400
|
args: [{
|
|
303
401
|
selector: 'bq-badge',
|
|
@@ -316,8 +414,8 @@ let BqBreadcrumb = class BqBreadcrumb {
|
|
|
316
414
|
this.el = r.nativeElement;
|
|
317
415
|
proxyOutputs(this, this.el, ['bqBreadcrumbBlur', 'bqBreadcrumbFocus', 'bqBreadcrumbClick']);
|
|
318
416
|
}
|
|
319
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
320
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
417
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", 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.2.4", type: BqBreadcrumb, selector: "bq-breadcrumb", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
321
419
|
};
|
|
322
420
|
BqBreadcrumb = __decorate([
|
|
323
421
|
ProxyCmp({
|
|
@@ -325,7 +423,7 @@ BqBreadcrumb = __decorate([
|
|
|
325
423
|
}),
|
|
326
424
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
327
425
|
], BqBreadcrumb);
|
|
328
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
426
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqBreadcrumb, decorators: [{
|
|
329
427
|
type: Component,
|
|
330
428
|
args: [{
|
|
331
429
|
selector: 'bq-breadcrumb',
|
|
@@ -344,8 +442,8 @@ let BqBreadcrumbItem = class BqBreadcrumbItem {
|
|
|
344
442
|
this.el = r.nativeElement;
|
|
345
443
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
346
444
|
}
|
|
347
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
348
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
445
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", 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.2.4", 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 });
|
|
349
447
|
};
|
|
350
448
|
BqBreadcrumbItem = __decorate([
|
|
351
449
|
ProxyCmp({
|
|
@@ -353,7 +451,7 @@ BqBreadcrumbItem = __decorate([
|
|
|
353
451
|
}),
|
|
354
452
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
355
453
|
], BqBreadcrumbItem);
|
|
356
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
454
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqBreadcrumbItem, decorators: [{
|
|
357
455
|
type: Component,
|
|
358
456
|
args: [{
|
|
359
457
|
selector: 'bq-breadcrumb-item',
|
|
@@ -372,8 +470,8 @@ let BqButton = class BqButton {
|
|
|
372
470
|
this.el = r.nativeElement;
|
|
373
471
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
374
472
|
}
|
|
375
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
376
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
473
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", 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.2.4", 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 });
|
|
377
475
|
};
|
|
378
476
|
BqButton = __decorate([
|
|
379
477
|
ProxyCmp({
|
|
@@ -381,7 +479,7 @@ BqButton = __decorate([
|
|
|
381
479
|
}),
|
|
382
480
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
383
481
|
], BqButton);
|
|
384
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
482
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqButton, decorators: [{
|
|
385
483
|
type: Component,
|
|
386
484
|
args: [{
|
|
387
485
|
selector: 'bq-button',
|
|
@@ -399,8 +497,8 @@ let BqCard = class BqCard {
|
|
|
399
497
|
c.detach();
|
|
400
498
|
this.el = r.nativeElement;
|
|
401
499
|
}
|
|
402
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
403
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
500
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", 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.2.4", type: BqCard, selector: "bq-card", inputs: { border: "border", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
404
502
|
};
|
|
405
503
|
BqCard = __decorate([
|
|
406
504
|
ProxyCmp({
|
|
@@ -408,7 +506,7 @@ BqCard = __decorate([
|
|
|
408
506
|
}),
|
|
409
507
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
410
508
|
], BqCard);
|
|
411
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
509
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqCard, decorators: [{
|
|
412
510
|
type: Component,
|
|
413
511
|
args: [{
|
|
414
512
|
selector: 'bq-card',
|
|
@@ -427,8 +525,8 @@ let BqCheckbox = class BqCheckbox {
|
|
|
427
525
|
this.el = r.nativeElement;
|
|
428
526
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
429
527
|
}
|
|
430
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
431
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
528
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", 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.2.4", 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 });
|
|
432
530
|
};
|
|
433
531
|
BqCheckbox = __decorate([
|
|
434
532
|
ProxyCmp({
|
|
@@ -437,7 +535,7 @@ BqCheckbox = __decorate([
|
|
|
437
535
|
}),
|
|
438
536
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
439
537
|
], BqCheckbox);
|
|
440
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
538
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqCheckbox, decorators: [{
|
|
441
539
|
type: Component,
|
|
442
540
|
args: [{
|
|
443
541
|
selector: 'bq-checkbox',
|
|
@@ -456,8 +554,8 @@ let BqDialog = class BqDialog {
|
|
|
456
554
|
this.el = r.nativeElement;
|
|
457
555
|
proxyOutputs(this, this.el, ['bqCancel', 'bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
458
556
|
}
|
|
459
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
460
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
557
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", 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.2.4", 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 });
|
|
461
559
|
};
|
|
462
560
|
BqDialog = __decorate([
|
|
463
561
|
ProxyCmp({
|
|
@@ -466,7 +564,7 @@ BqDialog = __decorate([
|
|
|
466
564
|
}),
|
|
467
565
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
468
566
|
], BqDialog);
|
|
469
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
567
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqDialog, decorators: [{
|
|
470
568
|
type: Component,
|
|
471
569
|
args: [{
|
|
472
570
|
selector: 'bq-dialog',
|
|
@@ -484,8 +582,8 @@ let BqDivider = class BqDivider {
|
|
|
484
582
|
c.detach();
|
|
485
583
|
this.el = r.nativeElement;
|
|
486
584
|
}
|
|
487
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
488
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
585
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", 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.2.4", 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 });
|
|
489
587
|
};
|
|
490
588
|
BqDivider = __decorate([
|
|
491
589
|
ProxyCmp({
|
|
@@ -493,7 +591,7 @@ BqDivider = __decorate([
|
|
|
493
591
|
}),
|
|
494
592
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
495
593
|
], BqDivider);
|
|
496
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
594
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqDivider, decorators: [{
|
|
497
595
|
type: Component,
|
|
498
596
|
args: [{
|
|
499
597
|
selector: 'bq-divider',
|
|
@@ -512,8 +610,8 @@ let BqDropdown = class BqDropdown {
|
|
|
512
610
|
this.el = r.nativeElement;
|
|
513
611
|
proxyOutputs(this, this.el, ['bqOpen']);
|
|
514
612
|
}
|
|
515
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
516
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
613
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqDropdown, 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.2.4", 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 });
|
|
517
615
|
};
|
|
518
616
|
BqDropdown = __decorate([
|
|
519
617
|
ProxyCmp({
|
|
@@ -521,7 +619,7 @@ BqDropdown = __decorate([
|
|
|
521
619
|
}),
|
|
522
620
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
523
621
|
], BqDropdown);
|
|
524
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
622
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqDropdown, decorators: [{
|
|
525
623
|
type: Component,
|
|
526
624
|
args: [{
|
|
527
625
|
selector: 'bq-dropdown',
|
|
@@ -539,8 +637,8 @@ let BqEmptyState = class BqEmptyState {
|
|
|
539
637
|
c.detach();
|
|
540
638
|
this.el = r.nativeElement;
|
|
541
639
|
}
|
|
542
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
543
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
640
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
641
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", type: BqEmptyState, selector: "bq-empty-state", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
544
642
|
};
|
|
545
643
|
BqEmptyState = __decorate([
|
|
546
644
|
ProxyCmp({
|
|
@@ -548,7 +646,7 @@ BqEmptyState = __decorate([
|
|
|
548
646
|
}),
|
|
549
647
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
550
648
|
], BqEmptyState);
|
|
551
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
649
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqEmptyState, decorators: [{
|
|
552
650
|
type: Component,
|
|
553
651
|
args: [{
|
|
554
652
|
selector: 'bq-empty-state',
|
|
@@ -567,23 +665,23 @@ let BqIcon = class BqIcon {
|
|
|
567
665
|
this.el = r.nativeElement;
|
|
568
666
|
proxyOutputs(this, this.el, ['svgLoaded']);
|
|
569
667
|
}
|
|
570
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
571
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
668
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
669
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", 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 });
|
|
572
670
|
};
|
|
573
671
|
BqIcon = __decorate([
|
|
574
672
|
ProxyCmp({
|
|
575
|
-
inputs: ['color', 'name', 'size', 'src', 'weight']
|
|
673
|
+
inputs: ['color', 'label', 'name', 'size', 'src', 'weight']
|
|
576
674
|
}),
|
|
577
675
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
578
676
|
], BqIcon);
|
|
579
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
677
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqIcon, decorators: [{
|
|
580
678
|
type: Component,
|
|
581
679
|
args: [{
|
|
582
680
|
selector: 'bq-icon',
|
|
583
681
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
584
682
|
template: '<ng-content></ng-content>',
|
|
585
683
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
586
|
-
inputs: ['color', 'name', 'size', 'src', 'weight'],
|
|
684
|
+
inputs: ['color', 'label', 'name', 'size', 'src', 'weight'],
|
|
587
685
|
}]
|
|
588
686
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
589
687
|
let BqInput = class BqInput {
|
|
@@ -595,8 +693,8 @@ let BqInput = class BqInput {
|
|
|
595
693
|
this.el = r.nativeElement;
|
|
596
694
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
597
695
|
}
|
|
598
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
599
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
696
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
697
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", 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 });
|
|
600
698
|
};
|
|
601
699
|
BqInput = __decorate([
|
|
602
700
|
ProxyCmp({
|
|
@@ -604,7 +702,7 @@ BqInput = __decorate([
|
|
|
604
702
|
}),
|
|
605
703
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
606
704
|
], BqInput);
|
|
607
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
705
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqInput, decorators: [{
|
|
608
706
|
type: Component,
|
|
609
707
|
args: [{
|
|
610
708
|
selector: 'bq-input',
|
|
@@ -623,8 +721,8 @@ let BqNotification = class BqNotification {
|
|
|
623
721
|
this.el = r.nativeElement;
|
|
624
722
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
|
|
625
723
|
}
|
|
626
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
627
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
724
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
725
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", 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 });
|
|
628
726
|
};
|
|
629
727
|
BqNotification = __decorate([
|
|
630
728
|
ProxyCmp({
|
|
@@ -633,7 +731,7 @@ BqNotification = __decorate([
|
|
|
633
731
|
}),
|
|
634
732
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
635
733
|
], BqNotification);
|
|
636
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
734
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqNotification, decorators: [{
|
|
637
735
|
type: Component,
|
|
638
736
|
args: [{
|
|
639
737
|
selector: 'bq-notification',
|
|
@@ -652,8 +750,8 @@ let BqOption = class BqOption {
|
|
|
652
750
|
this.el = r.nativeElement;
|
|
653
751
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick', 'bqEnter']);
|
|
654
752
|
}
|
|
655
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
656
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
753
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqOption, 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.2.4", type: BqOption, selector: "bq-option", inputs: { disabled: "disabled", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
657
755
|
};
|
|
658
756
|
BqOption = __decorate([
|
|
659
757
|
ProxyCmp({
|
|
@@ -661,7 +759,7 @@ BqOption = __decorate([
|
|
|
661
759
|
}),
|
|
662
760
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
663
761
|
], BqOption);
|
|
664
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
762
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqOption, decorators: [{
|
|
665
763
|
type: Component,
|
|
666
764
|
args: [{
|
|
667
765
|
selector: 'bq-option',
|
|
@@ -679,14 +777,14 @@ let BqOptionGroup = class BqOptionGroup {
|
|
|
679
777
|
c.detach();
|
|
680
778
|
this.el = r.nativeElement;
|
|
681
779
|
}
|
|
682
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
683
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
780
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqOptionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
781
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", type: BqOptionGroup, selector: "bq-option-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
684
782
|
};
|
|
685
783
|
BqOptionGroup = __decorate([
|
|
686
784
|
ProxyCmp({}),
|
|
687
785
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
688
786
|
], BqOptionGroup);
|
|
689
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
787
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqOptionGroup, decorators: [{
|
|
690
788
|
type: Component,
|
|
691
789
|
args: [{
|
|
692
790
|
selector: 'bq-option-group',
|
|
@@ -705,8 +803,8 @@ let BqOptionList = class BqOptionList {
|
|
|
705
803
|
this.el = r.nativeElement;
|
|
706
804
|
proxyOutputs(this, this.el, ['bqSelect']);
|
|
707
805
|
}
|
|
708
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
709
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
806
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqOptionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
807
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", type: BqOptionList, selector: "bq-option-list", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
710
808
|
};
|
|
711
809
|
BqOptionList = __decorate([
|
|
712
810
|
ProxyCmp({
|
|
@@ -714,7 +812,7 @@ BqOptionList = __decorate([
|
|
|
714
812
|
}),
|
|
715
813
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
716
814
|
], BqOptionList);
|
|
717
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
815
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqOptionList, decorators: [{
|
|
718
816
|
type: Component,
|
|
719
817
|
args: [{
|
|
720
818
|
selector: 'bq-option-list',
|
|
@@ -732,8 +830,8 @@ let BqPanel = class BqPanel {
|
|
|
732
830
|
c.detach();
|
|
733
831
|
this.el = r.nativeElement;
|
|
734
832
|
}
|
|
735
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
736
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
833
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
834
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", 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 });
|
|
737
835
|
};
|
|
738
836
|
BqPanel = __decorate([
|
|
739
837
|
ProxyCmp({
|
|
@@ -741,7 +839,7 @@ BqPanel = __decorate([
|
|
|
741
839
|
}),
|
|
742
840
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
743
841
|
], BqPanel);
|
|
744
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
842
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqPanel, decorators: [{
|
|
745
843
|
type: Component,
|
|
746
844
|
args: [{
|
|
747
845
|
selector: 'bq-panel',
|
|
@@ -760,8 +858,8 @@ let BqRadio = class BqRadio {
|
|
|
760
858
|
this.el = r.nativeElement;
|
|
761
859
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
762
860
|
}
|
|
763
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
764
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
861
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
862
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", 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 });
|
|
765
863
|
};
|
|
766
864
|
BqRadio = __decorate([
|
|
767
865
|
ProxyCmp({
|
|
@@ -770,7 +868,7 @@ BqRadio = __decorate([
|
|
|
770
868
|
}),
|
|
771
869
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
772
870
|
], BqRadio);
|
|
773
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
871
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqRadio, decorators: [{
|
|
774
872
|
type: Component,
|
|
775
873
|
args: [{
|
|
776
874
|
selector: 'bq-radio',
|
|
@@ -789,8 +887,8 @@ let BqRadioGroup = class BqRadioGroup {
|
|
|
789
887
|
this.el = r.nativeElement;
|
|
790
888
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
791
889
|
}
|
|
792
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
793
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
890
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
891
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", 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 });
|
|
794
892
|
};
|
|
795
893
|
BqRadioGroup = __decorate([
|
|
796
894
|
ProxyCmp({
|
|
@@ -798,7 +896,7 @@ BqRadioGroup = __decorate([
|
|
|
798
896
|
}),
|
|
799
897
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
800
898
|
], BqRadioGroup);
|
|
801
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
899
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqRadioGroup, decorators: [{
|
|
802
900
|
type: Component,
|
|
803
901
|
args: [{
|
|
804
902
|
selector: 'bq-radio-group',
|
|
@@ -817,8 +915,8 @@ let BqSelect = class BqSelect {
|
|
|
817
915
|
this.el = r.nativeElement;
|
|
818
916
|
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect']);
|
|
819
917
|
}
|
|
820
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
821
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
918
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
919
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", type: BqSelect, selector: "bq-select", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", disableClear: "disableClear", disabled: "disabled", distance: "distance", form: "form", keepOpenOnSelect: "keepOpenOnSelect", 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 });
|
|
822
920
|
};
|
|
823
921
|
BqSelect = __decorate([
|
|
824
922
|
ProxyCmp({
|
|
@@ -827,7 +925,7 @@ BqSelect = __decorate([
|
|
|
827
925
|
}),
|
|
828
926
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
829
927
|
], BqSelect);
|
|
830
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
928
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqSelect, decorators: [{
|
|
831
929
|
type: Component,
|
|
832
930
|
args: [{
|
|
833
931
|
selector: 'bq-select',
|
|
@@ -846,8 +944,8 @@ let BqSideMenu = class BqSideMenu {
|
|
|
846
944
|
this.el = r.nativeElement;
|
|
847
945
|
proxyOutputs(this, this.el, ['bqCollapse', 'bqSelect']);
|
|
848
946
|
}
|
|
849
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
850
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
947
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqSideMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
948
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", 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 });
|
|
851
949
|
};
|
|
852
950
|
BqSideMenu = __decorate([
|
|
853
951
|
ProxyCmp({
|
|
@@ -856,7 +954,7 @@ BqSideMenu = __decorate([
|
|
|
856
954
|
}),
|
|
857
955
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
858
956
|
], BqSideMenu);
|
|
859
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
957
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqSideMenu, decorators: [{
|
|
860
958
|
type: Component,
|
|
861
959
|
args: [{
|
|
862
960
|
selector: 'bq-side-menu',
|
|
@@ -875,8 +973,8 @@ let BqSideMenuItem = class BqSideMenuItem {
|
|
|
875
973
|
this.el = r.nativeElement;
|
|
876
974
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
877
975
|
}
|
|
878
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
879
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
976
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqSideMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
977
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", 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 });
|
|
880
978
|
};
|
|
881
979
|
BqSideMenuItem = __decorate([
|
|
882
980
|
ProxyCmp({
|
|
@@ -884,7 +982,7 @@ BqSideMenuItem = __decorate([
|
|
|
884
982
|
}),
|
|
885
983
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
886
984
|
], BqSideMenuItem);
|
|
887
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
985
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqSideMenuItem, decorators: [{
|
|
888
986
|
type: Component,
|
|
889
987
|
args: [{
|
|
890
988
|
selector: 'bq-side-menu-item',
|
|
@@ -903,8 +1001,8 @@ let BqSlider = class BqSlider {
|
|
|
903
1001
|
this.el = r.nativeElement;
|
|
904
1002
|
proxyOutputs(this, this.el, ['bqChange', 'bqBlur', 'bqFocus']);
|
|
905
1003
|
}
|
|
906
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
907
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
1004
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1005
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", type: BqSlider, selector: "bq-slider", inputs: { debounceTime: "debounceTime", disabled: "disabled", gap: "gap", max: "max", min: "min", step: "step", type: "type", value: "value", valueIndicator: "valueIndicator" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
908
1006
|
};
|
|
909
1007
|
BqSlider = __decorate([
|
|
910
1008
|
ProxyCmp({
|
|
@@ -912,7 +1010,7 @@ BqSlider = __decorate([
|
|
|
912
1010
|
}),
|
|
913
1011
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
914
1012
|
], BqSlider);
|
|
915
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
1013
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqSlider, decorators: [{
|
|
916
1014
|
type: Component,
|
|
917
1015
|
args: [{
|
|
918
1016
|
selector: 'bq-slider',
|
|
@@ -930,8 +1028,8 @@ let BqSpinner = class BqSpinner {
|
|
|
930
1028
|
c.detach();
|
|
931
1029
|
this.el = r.nativeElement;
|
|
932
1030
|
}
|
|
933
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
934
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
1031
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1032
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", 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 });
|
|
935
1033
|
};
|
|
936
1034
|
BqSpinner = __decorate([
|
|
937
1035
|
ProxyCmp({
|
|
@@ -939,7 +1037,7 @@ BqSpinner = __decorate([
|
|
|
939
1037
|
}),
|
|
940
1038
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
941
1039
|
], BqSpinner);
|
|
942
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
1040
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqSpinner, decorators: [{
|
|
943
1041
|
type: Component,
|
|
944
1042
|
args: [{
|
|
945
1043
|
selector: 'bq-spinner',
|
|
@@ -957,8 +1055,8 @@ let BqStatus = class BqStatus {
|
|
|
957
1055
|
c.detach();
|
|
958
1056
|
this.el = r.nativeElement;
|
|
959
1057
|
}
|
|
960
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
961
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
1058
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1059
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", type: BqStatus, selector: "bq-status", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
962
1060
|
};
|
|
963
1061
|
BqStatus = __decorate([
|
|
964
1062
|
ProxyCmp({
|
|
@@ -966,7 +1064,7 @@ BqStatus = __decorate([
|
|
|
966
1064
|
}),
|
|
967
1065
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
968
1066
|
], BqStatus);
|
|
969
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
1067
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqStatus, decorators: [{
|
|
970
1068
|
type: Component,
|
|
971
1069
|
args: [{
|
|
972
1070
|
selector: 'bq-status',
|
|
@@ -985,8 +1083,8 @@ let BqStepItem = class BqStepItem {
|
|
|
985
1083
|
this.el = r.nativeElement;
|
|
986
1084
|
proxyOutputs(this, this.el, ['bqClick']);
|
|
987
1085
|
}
|
|
988
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
989
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
1086
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqStepItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1087
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", 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 });
|
|
990
1088
|
};
|
|
991
1089
|
BqStepItem = __decorate([
|
|
992
1090
|
ProxyCmp({
|
|
@@ -994,7 +1092,7 @@ BqStepItem = __decorate([
|
|
|
994
1092
|
}),
|
|
995
1093
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
996
1094
|
], BqStepItem);
|
|
997
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
1095
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqStepItem, decorators: [{
|
|
998
1096
|
type: Component,
|
|
999
1097
|
args: [{
|
|
1000
1098
|
selector: 'bq-step-item',
|
|
@@ -1012,8 +1110,8 @@ let BqSteps = class BqSteps {
|
|
|
1012
1110
|
c.detach();
|
|
1013
1111
|
this.el = r.nativeElement;
|
|
1014
1112
|
}
|
|
1015
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
1016
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
1113
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1114
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", 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 });
|
|
1017
1115
|
};
|
|
1018
1116
|
BqSteps = __decorate([
|
|
1019
1117
|
ProxyCmp({
|
|
@@ -1021,7 +1119,7 @@ BqSteps = __decorate([
|
|
|
1021
1119
|
}),
|
|
1022
1120
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1023
1121
|
], BqSteps);
|
|
1024
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
1122
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqSteps, decorators: [{
|
|
1025
1123
|
type: Component,
|
|
1026
1124
|
args: [{
|
|
1027
1125
|
selector: 'bq-steps',
|
|
@@ -1040,8 +1138,8 @@ let BqSwitch = class BqSwitch {
|
|
|
1040
1138
|
this.el = r.nativeElement;
|
|
1041
1139
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
1042
1140
|
}
|
|
1043
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
1044
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
1141
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1142
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", 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 });
|
|
1045
1143
|
};
|
|
1046
1144
|
BqSwitch = __decorate([
|
|
1047
1145
|
ProxyCmp({
|
|
@@ -1050,7 +1148,7 @@ BqSwitch = __decorate([
|
|
|
1050
1148
|
}),
|
|
1051
1149
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1052
1150
|
], BqSwitch);
|
|
1053
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
1151
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqSwitch, decorators: [{
|
|
1054
1152
|
type: Component,
|
|
1055
1153
|
args: [{
|
|
1056
1154
|
selector: 'bq-switch',
|
|
@@ -1069,8 +1167,8 @@ let BqTab = class BqTab {
|
|
|
1069
1167
|
this.el = r.nativeElement;
|
|
1070
1168
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
1071
1169
|
}
|
|
1072
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
1073
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
1170
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1171
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", 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 });
|
|
1074
1172
|
};
|
|
1075
1173
|
BqTab = __decorate([
|
|
1076
1174
|
ProxyCmp({
|
|
@@ -1079,7 +1177,7 @@ BqTab = __decorate([
|
|
|
1079
1177
|
}),
|
|
1080
1178
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1081
1179
|
], BqTab);
|
|
1082
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
1180
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqTab, decorators: [{
|
|
1083
1181
|
type: Component,
|
|
1084
1182
|
args: [{
|
|
1085
1183
|
selector: 'bq-tab',
|
|
@@ -1098,8 +1196,8 @@ let BqTabGroup = class BqTabGroup {
|
|
|
1098
1196
|
this.el = r.nativeElement;
|
|
1099
1197
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
1100
1198
|
}
|
|
1101
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
1102
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
1199
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1200
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", 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 });
|
|
1103
1201
|
};
|
|
1104
1202
|
BqTabGroup = __decorate([
|
|
1105
1203
|
ProxyCmp({
|
|
@@ -1107,7 +1205,7 @@ BqTabGroup = __decorate([
|
|
|
1107
1205
|
}),
|
|
1108
1206
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1109
1207
|
], BqTabGroup);
|
|
1110
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
1208
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqTabGroup, decorators: [{
|
|
1111
1209
|
type: Component,
|
|
1112
1210
|
args: [{
|
|
1113
1211
|
selector: 'bq-tab-group',
|
|
@@ -1126,8 +1224,8 @@ let BqTag = class BqTag {
|
|
|
1126
1224
|
this.el = r.nativeElement;
|
|
1127
1225
|
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus']);
|
|
1128
1226
|
}
|
|
1129
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
1130
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
1227
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1228
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", 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 });
|
|
1131
1229
|
};
|
|
1132
1230
|
BqTag = __decorate([
|
|
1133
1231
|
ProxyCmp({
|
|
@@ -1136,7 +1234,7 @@ BqTag = __decorate([
|
|
|
1136
1234
|
}),
|
|
1137
1235
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1138
1236
|
], BqTag);
|
|
1139
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
1237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqTag, decorators: [{
|
|
1140
1238
|
type: Component,
|
|
1141
1239
|
args: [{
|
|
1142
1240
|
selector: 'bq-tag',
|
|
@@ -1155,8 +1253,8 @@ let BqTextarea = class BqTextarea {
|
|
|
1155
1253
|
this.el = r.nativeElement;
|
|
1156
1254
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
1157
1255
|
}
|
|
1158
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
1159
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
1256
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1257
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", 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 });
|
|
1160
1258
|
};
|
|
1161
1259
|
BqTextarea = __decorate([
|
|
1162
1260
|
ProxyCmp({
|
|
@@ -1164,7 +1262,7 @@ BqTextarea = __decorate([
|
|
|
1164
1262
|
}),
|
|
1165
1263
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1166
1264
|
], BqTextarea);
|
|
1167
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
1265
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqTextarea, decorators: [{
|
|
1168
1266
|
type: Component,
|
|
1169
1267
|
args: [{
|
|
1170
1268
|
selector: 'bq-textarea',
|
|
@@ -1183,8 +1281,8 @@ let BqToast = class BqToast {
|
|
|
1183
1281
|
this.el = r.nativeElement;
|
|
1184
1282
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow']);
|
|
1185
1283
|
}
|
|
1186
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
1187
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
1284
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1285
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", 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 });
|
|
1188
1286
|
};
|
|
1189
1287
|
BqToast = __decorate([
|
|
1190
1288
|
ProxyCmp({
|
|
@@ -1193,7 +1291,7 @@ BqToast = __decorate([
|
|
|
1193
1291
|
}),
|
|
1194
1292
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1195
1293
|
], BqToast);
|
|
1196
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
1294
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqToast, decorators: [{
|
|
1197
1295
|
type: Component,
|
|
1198
1296
|
args: [{
|
|
1199
1297
|
selector: 'bq-toast',
|
|
@@ -1211,8 +1309,8 @@ let BqTooltip = class BqTooltip {
|
|
|
1211
1309
|
c.detach();
|
|
1212
1310
|
this.el = r.nativeElement;
|
|
1213
1311
|
}
|
|
1214
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
1215
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.
|
|
1312
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqTooltip, 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.2.4", type: BqTooltip, selector: "bq-tooltip", inputs: { 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 });
|
|
1216
1314
|
};
|
|
1217
1315
|
BqTooltip = __decorate([
|
|
1218
1316
|
ProxyCmp({
|
|
@@ -1221,7 +1319,7 @@ BqTooltip = __decorate([
|
|
|
1221
1319
|
}),
|
|
1222
1320
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1223
1321
|
], BqTooltip);
|
|
1224
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
1322
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BqTooltip, decorators: [{
|
|
1225
1323
|
type: Component,
|
|
1226
1324
|
args: [{
|
|
1227
1325
|
selector: 'bq-tooltip',
|
|
@@ -1273,23 +1371,51 @@ const DIRECTIVES = [
|
|
|
1273
1371
|
BqTooltip
|
|
1274
1372
|
];
|
|
1275
1373
|
|
|
1374
|
+
const DECLARATIONS = [
|
|
1375
|
+
...DIRECTIVES,
|
|
1376
|
+
// ngModel Accessors
|
|
1377
|
+
BooleanValueAccessor,
|
|
1378
|
+
NumericValueAccessor,
|
|
1379
|
+
RadioValueAccessor,
|
|
1380
|
+
SelectValueAccessor,
|
|
1381
|
+
TextValueAccessor,
|
|
1382
|
+
];
|
|
1276
1383
|
class BeeQModule {
|
|
1277
1384
|
static forRoot() {
|
|
1278
|
-
defineCustomElements();
|
|
1279
1385
|
return {
|
|
1280
1386
|
ngModule: BeeQModule,
|
|
1387
|
+
providers: [
|
|
1388
|
+
{
|
|
1389
|
+
provide: APP_INITIALIZER,
|
|
1390
|
+
useFactory: () => defineCustomElements,
|
|
1391
|
+
multi: true,
|
|
1392
|
+
deps: [DOCUMENT, NgZone],
|
|
1393
|
+
},
|
|
1394
|
+
],
|
|
1281
1395
|
};
|
|
1282
1396
|
}
|
|
1283
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.
|
|
1284
|
-
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.
|
|
1285
|
-
|
|
1397
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BeeQModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1398
|
+
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: BeeQModule, declarations: [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,
|
|
1399
|
+
// ngModel Accessors
|
|
1400
|
+
BooleanValueAccessor,
|
|
1401
|
+
NumericValueAccessor,
|
|
1402
|
+
RadioValueAccessor,
|
|
1403
|
+
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,
|
|
1405
|
+
// ngModel Accessors
|
|
1406
|
+
BooleanValueAccessor,
|
|
1407
|
+
NumericValueAccessor,
|
|
1408
|
+
RadioValueAccessor,
|
|
1409
|
+
SelectValueAccessor,
|
|
1410
|
+
TextValueAccessor] });
|
|
1411
|
+
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BeeQModule, imports: [CommonModule] });
|
|
1286
1412
|
}
|
|
1287
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.
|
|
1413
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: BeeQModule, decorators: [{
|
|
1288
1414
|
type: NgModule,
|
|
1289
1415
|
args: [{
|
|
1290
1416
|
imports: [CommonModule],
|
|
1291
|
-
declarations:
|
|
1292
|
-
exports:
|
|
1417
|
+
declarations: DECLARATIONS,
|
|
1418
|
+
exports: DECLARATIONS,
|
|
1293
1419
|
}]
|
|
1294
1420
|
}] });
|
|
1295
1421
|
|
|
@@ -1301,5 +1427,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImpor
|
|
|
1301
1427
|
* Generated bundle index. Do not edit.
|
|
1302
1428
|
*/
|
|
1303
1429
|
|
|
1304
|
-
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, TextValueAccessor };
|
|
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 };
|
|
1305
1431
|
//# sourceMappingURL=beeq-angular.mjs.map
|