@beeq/angular 1.8.0-beta.15 → 1.8.0-beta.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/directives/components.d.ts +400 -393
- package/esm2022/beeq.module.mjs +5 -5
- package/esm2022/directives/boolean-value-accessor.mjs +4 -4
- package/esm2022/directives/components.mjs +1708 -145
- package/esm2022/directives/number-value-accessor.mjs +4 -4
- package/esm2022/directives/radio-value-accessor.mjs +4 -4
- package/esm2022/directives/select-value-accessor.mjs +4 -4
- package/esm2022/directives/text-value-accessor.mjs +4 -4
- package/esm2022/directives/value-accessor.mjs +4 -4
- package/esm2022/standalone/directives/boolean-value-accessor.mjs +4 -4
- package/esm2022/standalone/directives/components.mjs +144 -145
- package/esm2022/standalone/directives/number-value-accessor.mjs +4 -4
- package/esm2022/standalone/directives/radio-value-accessor.mjs +4 -4
- package/esm2022/standalone/directives/select-value-accessor.mjs +4 -4
- package/esm2022/standalone/directives/text-value-accessor.mjs +4 -4
- package/esm2022/standalone/directives/value-accessor.mjs +4 -4
- package/fesm2022/beeq-angular-standalone.mjs +161 -162
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +1729 -166
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/standalone/directives/components.d.ts +53 -61
|
@@ -33,10 +33,10 @@ class ValueAccessor {
|
|
|
33
33
|
setDisabledState(isDisabled) {
|
|
34
34
|
this.el.nativeElement.disabled = isDisabled;
|
|
35
35
|
}
|
|
36
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
37
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
36
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
37
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 }); }
|
|
38
38
|
}
|
|
39
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
40
40
|
type: Directive,
|
|
41
41
|
args: [{}]
|
|
42
42
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
@@ -51,8 +51,8 @@ class BooleanValueAccessor extends ValueAccessor {
|
|
|
51
51
|
writeValue(value) {
|
|
52
52
|
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
53
53
|
}
|
|
54
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
55
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
54
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
55
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: BooleanValueAccessor, selector: "bq-checkbox, bq-switch", host: { listeners: { "bqChange": "handleChangeEvent($event.target.checked)" } }, providers: [
|
|
56
56
|
{
|
|
57
57
|
provide: NG_VALUE_ACCESSOR,
|
|
58
58
|
useExisting: BooleanValueAccessor,
|
|
@@ -60,7 +60,7 @@ class BooleanValueAccessor extends ValueAccessor {
|
|
|
60
60
|
}
|
|
61
61
|
], usesInheritance: true, ngImport: i0 }); }
|
|
62
62
|
}
|
|
63
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
63
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
64
64
|
type: Directive,
|
|
65
65
|
args: [{
|
|
66
66
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -87,8 +87,8 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
87
87
|
fn(value === '' ? null : parseFloat(value));
|
|
88
88
|
});
|
|
89
89
|
}
|
|
90
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
91
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
90
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
91
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NumericValueAccessor, selector: "bq-input[type=\"number\"], bq-slider:not[type=\"range\"]", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
92
92
|
{
|
|
93
93
|
provide: NG_VALUE_ACCESSOR,
|
|
94
94
|
useExisting: NumericValueAccessor,
|
|
@@ -96,7 +96,7 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
96
96
|
}
|
|
97
97
|
], usesInheritance: true, ngImport: i0 }); }
|
|
98
98
|
}
|
|
99
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
99
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
100
100
|
type: Directive,
|
|
101
101
|
args: [{
|
|
102
102
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -118,8 +118,8 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
118
118
|
constructor(el) {
|
|
119
119
|
super(el);
|
|
120
120
|
}
|
|
121
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
122
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
121
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
122
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: RadioValueAccessor, selector: "bq-radio-group", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
123
123
|
{
|
|
124
124
|
provide: NG_VALUE_ACCESSOR,
|
|
125
125
|
useExisting: RadioValueAccessor,
|
|
@@ -127,7 +127,7 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
127
127
|
}
|
|
128
128
|
], usesInheritance: true, ngImport: i0 }); }
|
|
129
129
|
}
|
|
130
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
130
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
131
131
|
type: Directive,
|
|
132
132
|
args: [{
|
|
133
133
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -149,8 +149,8 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
149
149
|
constructor(el) {
|
|
150
150
|
super(el);
|
|
151
151
|
}
|
|
152
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
153
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
152
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
153
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: SelectValueAccessor, selector: "bq-select", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
154
154
|
{
|
|
155
155
|
provide: NG_VALUE_ACCESSOR,
|
|
156
156
|
useExisting: SelectValueAccessor,
|
|
@@ -158,7 +158,7 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
158
158
|
}
|
|
159
159
|
], usesInheritance: true, ngImport: i0 }); }
|
|
160
160
|
}
|
|
161
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
161
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
162
162
|
type: Directive,
|
|
163
163
|
args: [{
|
|
164
164
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -180,8 +180,8 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
180
180
|
constructor(el) {
|
|
181
181
|
super(el);
|
|
182
182
|
}
|
|
183
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
184
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
183
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
184
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: TextValueAccessor, selector: "bq-date-picker, bq-input:not[type=\"number\"], bq-slider[type=\"range\", bq-textarea", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
185
185
|
{
|
|
186
186
|
provide: NG_VALUE_ACCESSOR,
|
|
187
187
|
useExisting: TextValueAccessor,
|
|
@@ -189,7 +189,7 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
189
189
|
}
|
|
190
190
|
], usesInheritance: true, ngImport: i0 }); }
|
|
191
191
|
}
|
|
192
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
192
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
193
193
|
type: Directive,
|
|
194
194
|
args: [{
|
|
195
195
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -266,14 +266,45 @@ function ProxyCmp(opts) {
|
|
|
266
266
|
}
|
|
267
267
|
|
|
268
268
|
let BqAccordion = class BqAccordion {
|
|
269
|
+
/**
|
|
270
|
+
* The appearance style of the Accordion
|
|
271
|
+
*/
|
|
272
|
+
set appearance(_) { }
|
|
273
|
+
;
|
|
274
|
+
/**
|
|
275
|
+
* If true, the Accordion is disabled
|
|
276
|
+
*/
|
|
277
|
+
set disabled(_) { }
|
|
278
|
+
;
|
|
279
|
+
/**
|
|
280
|
+
* If true, the Accordion is expanded
|
|
281
|
+
*/
|
|
282
|
+
set expanded(_) { }
|
|
283
|
+
;
|
|
284
|
+
/**
|
|
285
|
+
* Animation is set through JS when the browser does not support CSS calc-size()
|
|
286
|
+
If true, the Accordion animation, will be disabled. No animation will be applied.
|
|
287
|
+
*/
|
|
288
|
+
set noAnimation(_) { }
|
|
289
|
+
;
|
|
290
|
+
/**
|
|
291
|
+
* If true, the Accordion expand icon is rotate 180deg when expanded
|
|
292
|
+
*/
|
|
293
|
+
set rotate(_) { }
|
|
294
|
+
;
|
|
295
|
+
/**
|
|
296
|
+
* The size of the Accordion
|
|
297
|
+
*/
|
|
298
|
+
set size(_) { }
|
|
299
|
+
;
|
|
269
300
|
constructor(c, r, z) {
|
|
270
301
|
this.z = z;
|
|
271
302
|
c.detach();
|
|
272
303
|
this.el = r.nativeElement;
|
|
273
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqOpen', 'bqAfterOpen', 'bqClose', 'bqAfterClose']);
|
|
304
|
+
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqOpen', 'bqAfterOpen', 'bqClose', 'bqAfterClose', 'bqClick']);
|
|
274
305
|
}
|
|
275
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
276
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
306
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
307
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqAccordion, selector: "bq-accordion", inputs: { appearance: "appearance", disabled: "disabled", expanded: "expanded", noAnimation: "noAnimation", rotate: "rotate", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
277
308
|
};
|
|
278
309
|
BqAccordion = __decorate([
|
|
279
310
|
ProxyCmp({
|
|
@@ -281,7 +312,7 @@ BqAccordion = __decorate([
|
|
|
281
312
|
}),
|
|
282
313
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
283
314
|
], BqAccordion);
|
|
284
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
315
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAccordion, decorators: [{
|
|
285
316
|
type: Component,
|
|
286
317
|
args: [{
|
|
287
318
|
selector: 'bq-accordion',
|
|
@@ -292,13 +323,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
292
323
|
}]
|
|
293
324
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
294
325
|
let BqAccordionGroup = class BqAccordionGroup {
|
|
326
|
+
/**
|
|
327
|
+
* The appearance style of accordion to be applied to all accordions
|
|
328
|
+
*/
|
|
329
|
+
set appearance(_) { }
|
|
330
|
+
;
|
|
331
|
+
/**
|
|
332
|
+
* If true all accordions are expanded
|
|
333
|
+
*/
|
|
334
|
+
set expandAll(_) { }
|
|
335
|
+
;
|
|
336
|
+
/**
|
|
337
|
+
* Animation is set through JS when the browser does not support CSS calc-size()
|
|
338
|
+
If true, the accordion animation, will be disabled. No animation will be applied.
|
|
339
|
+
*/
|
|
340
|
+
set noAnimation(_) { }
|
|
341
|
+
;
|
|
342
|
+
/**
|
|
343
|
+
* If true multiple accordions can be expanded at the same time
|
|
344
|
+
*/
|
|
345
|
+
set multiple(_) { }
|
|
346
|
+
;
|
|
347
|
+
/**
|
|
348
|
+
* The size of accordion to be applied to all accordions
|
|
349
|
+
*/
|
|
350
|
+
set size(_) { }
|
|
351
|
+
;
|
|
295
352
|
constructor(c, r, z) {
|
|
296
353
|
this.z = z;
|
|
297
354
|
c.detach();
|
|
298
355
|
this.el = r.nativeElement;
|
|
299
356
|
}
|
|
300
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
301
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
357
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
358
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqAccordionGroup, selector: "bq-accordion-group", inputs: { appearance: "appearance", expandAll: "expandAll", multiple: "multiple", noAnimation: "noAnimation", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
302
359
|
};
|
|
303
360
|
BqAccordionGroup = __decorate([
|
|
304
361
|
ProxyCmp({
|
|
@@ -306,7 +363,7 @@ BqAccordionGroup = __decorate([
|
|
|
306
363
|
}),
|
|
307
364
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
308
365
|
], BqAccordionGroup);
|
|
309
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
366
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAccordionGroup, decorators: [{
|
|
310
367
|
type: Component,
|
|
311
368
|
args: [{
|
|
312
369
|
selector: 'bq-accordion-group',
|
|
@@ -317,14 +374,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
317
374
|
}]
|
|
318
375
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
319
376
|
let BqAlert = class BqAlert {
|
|
377
|
+
/**
|
|
378
|
+
* If true, the alert will automatically hide after the specified amount of time
|
|
379
|
+
*/
|
|
380
|
+
set autoDismiss(_) { }
|
|
381
|
+
;
|
|
382
|
+
/**
|
|
383
|
+
* The corner radius of the alert component
|
|
384
|
+
*/
|
|
385
|
+
set border(_) { }
|
|
386
|
+
;
|
|
387
|
+
/**
|
|
388
|
+
* If true, the close button at the top right of the alert won't be shown
|
|
389
|
+
*/
|
|
390
|
+
set disableClose(_) { }
|
|
391
|
+
;
|
|
392
|
+
/**
|
|
393
|
+
* If true, the alert icon won't be shown
|
|
394
|
+
*/
|
|
395
|
+
set hideIcon(_) { }
|
|
396
|
+
;
|
|
397
|
+
/**
|
|
398
|
+
* If true, the alert will be shown
|
|
399
|
+
*/
|
|
400
|
+
set open(_) { }
|
|
401
|
+
;
|
|
402
|
+
/**
|
|
403
|
+
* The length of time, in milliseconds, after which the alert will close itself. Only valid if `autoDismiss="true"`
|
|
404
|
+
*/
|
|
405
|
+
set time(_) { }
|
|
406
|
+
;
|
|
407
|
+
/**
|
|
408
|
+
* Type of Alert
|
|
409
|
+
*/
|
|
410
|
+
set type(_) { }
|
|
411
|
+
;
|
|
412
|
+
/**
|
|
413
|
+
* If true, the alert component will remain fixed at the top of the page, occupying the full viewport
|
|
414
|
+
*/
|
|
415
|
+
set sticky(_) { }
|
|
416
|
+
;
|
|
320
417
|
constructor(c, r, z) {
|
|
321
418
|
this.z = z;
|
|
322
419
|
c.detach();
|
|
323
420
|
this.el = r.nativeElement;
|
|
324
421
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterShow', 'bqAfterHide']);
|
|
325
422
|
}
|
|
326
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
327
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
423
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
424
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
328
425
|
};
|
|
329
426
|
BqAlert = __decorate([
|
|
330
427
|
ProxyCmp({
|
|
@@ -333,7 +430,7 @@ BqAlert = __decorate([
|
|
|
333
430
|
}),
|
|
334
431
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
335
432
|
], BqAlert);
|
|
336
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAlert, decorators: [{
|
|
337
434
|
type: Component,
|
|
338
435
|
args: [{
|
|
339
436
|
selector: 'bq-alert',
|
|
@@ -344,13 +441,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
344
441
|
}]
|
|
345
442
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
346
443
|
let BqAvatar = class BqAvatar {
|
|
444
|
+
/**
|
|
445
|
+
* Alternate text for the avatar image if the image cannot be displayed
|
|
446
|
+
*/
|
|
447
|
+
set altText(_) { }
|
|
448
|
+
;
|
|
449
|
+
/**
|
|
450
|
+
* The image source to load on the avatar (this can be also a base64 encoded image)
|
|
451
|
+
*/
|
|
452
|
+
set image(_) { }
|
|
453
|
+
;
|
|
454
|
+
/**
|
|
455
|
+
* A text to use for describing the avatar on assistive devices
|
|
456
|
+
*/
|
|
457
|
+
set label(_) { }
|
|
458
|
+
;
|
|
459
|
+
/**
|
|
460
|
+
* The text to display on avatar
|
|
461
|
+
*/
|
|
462
|
+
set initials(_) { }
|
|
463
|
+
;
|
|
464
|
+
/**
|
|
465
|
+
* The shape of the avatar
|
|
466
|
+
*/
|
|
467
|
+
set shape(_) { }
|
|
468
|
+
;
|
|
469
|
+
/**
|
|
470
|
+
* The size of the avatar
|
|
471
|
+
*/
|
|
472
|
+
set size(_) { }
|
|
473
|
+
;
|
|
347
474
|
constructor(c, r, z) {
|
|
348
475
|
this.z = z;
|
|
349
476
|
c.detach();
|
|
350
477
|
this.el = r.nativeElement;
|
|
351
478
|
}
|
|
352
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
353
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
479
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
480
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
354
481
|
};
|
|
355
482
|
BqAvatar = __decorate([
|
|
356
483
|
ProxyCmp({
|
|
@@ -358,7 +485,7 @@ BqAvatar = __decorate([
|
|
|
358
485
|
}),
|
|
359
486
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
360
487
|
], BqAvatar);
|
|
361
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
488
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAvatar, decorators: [{
|
|
362
489
|
type: Component,
|
|
363
490
|
args: [{
|
|
364
491
|
selector: 'bq-avatar',
|
|
@@ -369,13 +496,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
369
496
|
}]
|
|
370
497
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
371
498
|
let BqBadge = class BqBadge {
|
|
499
|
+
/**
|
|
500
|
+
* Badge background color. The value should be a valid value of the palette color
|
|
501
|
+
*/
|
|
502
|
+
set backgroundColor(_) { }
|
|
503
|
+
;
|
|
504
|
+
/**
|
|
505
|
+
* Badge number color. The value should be a valid value of the palette color
|
|
506
|
+
*/
|
|
507
|
+
set textColor(_) { }
|
|
508
|
+
;
|
|
509
|
+
/**
|
|
510
|
+
* The size of the badge. Relevant if badge has no content.
|
|
511
|
+
*/
|
|
512
|
+
set size(_) { }
|
|
513
|
+
;
|
|
372
514
|
constructor(c, r, z) {
|
|
373
515
|
this.z = z;
|
|
374
516
|
c.detach();
|
|
375
517
|
this.el = r.nativeElement;
|
|
376
518
|
}
|
|
377
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
378
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
519
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
520
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
379
521
|
};
|
|
380
522
|
BqBadge = __decorate([
|
|
381
523
|
ProxyCmp({
|
|
@@ -383,7 +525,7 @@ BqBadge = __decorate([
|
|
|
383
525
|
}),
|
|
384
526
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
385
527
|
], BqBadge);
|
|
386
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
528
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBadge, decorators: [{
|
|
387
529
|
type: Component,
|
|
388
530
|
args: [{
|
|
389
531
|
selector: 'bq-badge',
|
|
@@ -394,66 +536,147 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
394
536
|
}]
|
|
395
537
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
396
538
|
let BqBreadcrumb = class BqBreadcrumb {
|
|
539
|
+
/**
|
|
540
|
+
* The `aria-label` attribute to describe the type of navigation
|
|
541
|
+
*/
|
|
542
|
+
set label(_) { }
|
|
543
|
+
;
|
|
397
544
|
constructor(c, r, z) {
|
|
398
545
|
this.z = z;
|
|
399
546
|
c.detach();
|
|
400
547
|
this.el = r.nativeElement;
|
|
401
|
-
proxyOutputs(this, this.el, ['bqBreadcrumbBlur', 'bqBreadcrumbFocus', 'bqBreadcrumbClick']);
|
|
402
548
|
}
|
|
403
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
404
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
549
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
550
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqBreadcrumb, selector: "bq-breadcrumb", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
405
551
|
};
|
|
406
552
|
BqBreadcrumb = __decorate([
|
|
407
553
|
ProxyCmp({
|
|
408
|
-
inputs: ['
|
|
554
|
+
inputs: ['label']
|
|
409
555
|
}),
|
|
410
556
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
411
557
|
], BqBreadcrumb);
|
|
412
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
558
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBreadcrumb, decorators: [{
|
|
413
559
|
type: Component,
|
|
414
560
|
args: [{
|
|
415
561
|
selector: 'bq-breadcrumb',
|
|
416
562
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
417
563
|
template: '<ng-content></ng-content>',
|
|
418
564
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
419
|
-
inputs: ['
|
|
565
|
+
inputs: ['label'],
|
|
420
566
|
}]
|
|
421
567
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
422
568
|
let BqBreadcrumbItem = class BqBreadcrumbItem {
|
|
569
|
+
/**
|
|
570
|
+
* If set, the breadcrumb item will be rendered as an `<a>` with this `href`, otherwise, a `<button>` will be rendered.
|
|
571
|
+
*/
|
|
572
|
+
set href(_) { }
|
|
573
|
+
;
|
|
574
|
+
/**
|
|
575
|
+
* Where to display the link in the browser context. Relevant only if `href` is set.
|
|
576
|
+
*/
|
|
577
|
+
set target(_) { }
|
|
578
|
+
;
|
|
579
|
+
/**
|
|
580
|
+
* Where to display the link in the browser context. Relevant only if `href` is set.
|
|
581
|
+
*/
|
|
582
|
+
set rel(_) { }
|
|
583
|
+
;
|
|
423
584
|
constructor(c, r, z) {
|
|
424
585
|
this.z = z;
|
|
425
586
|
c.detach();
|
|
426
587
|
this.el = r.nativeElement;
|
|
427
588
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
428
589
|
}
|
|
429
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
430
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
590
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
591
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqBreadcrumbItem, selector: "bq-breadcrumb-item", inputs: { href: "href", rel: "rel", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
431
592
|
};
|
|
432
593
|
BqBreadcrumbItem = __decorate([
|
|
433
594
|
ProxyCmp({
|
|
434
|
-
inputs: ['
|
|
595
|
+
inputs: ['href', 'rel', 'target']
|
|
435
596
|
}),
|
|
436
597
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
437
598
|
], BqBreadcrumbItem);
|
|
438
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
599
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBreadcrumbItem, decorators: [{
|
|
439
600
|
type: Component,
|
|
440
601
|
args: [{
|
|
441
602
|
selector: 'bq-breadcrumb-item',
|
|
442
603
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
443
604
|
template: '<ng-content></ng-content>',
|
|
444
605
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
445
|
-
inputs: ['
|
|
606
|
+
inputs: ['href', 'rel', 'target'],
|
|
446
607
|
}]
|
|
447
608
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
448
609
|
let BqButton = class BqButton {
|
|
610
|
+
/**
|
|
611
|
+
* The appearance style to apply to the button
|
|
612
|
+
*/
|
|
613
|
+
set appearance(_) { }
|
|
614
|
+
;
|
|
615
|
+
/**
|
|
616
|
+
* If `true`, it will make the button fit to its parent width.
|
|
617
|
+
*/
|
|
618
|
+
set block(_) { }
|
|
619
|
+
;
|
|
620
|
+
/**
|
|
621
|
+
* The corner radius of the button
|
|
622
|
+
*/
|
|
623
|
+
set border(_) { }
|
|
624
|
+
;
|
|
625
|
+
/**
|
|
626
|
+
* If true, the button will be disabled (no interaction allowed)
|
|
627
|
+
*/
|
|
628
|
+
set disabled(_) { }
|
|
629
|
+
;
|
|
630
|
+
/**
|
|
631
|
+
* Tells the browser to treat the linked URL as a download. Only used when `href` is set.
|
|
632
|
+
Details: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-download
|
|
633
|
+
*/
|
|
634
|
+
set download(_) { }
|
|
635
|
+
;
|
|
636
|
+
/**
|
|
637
|
+
* When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`
|
|
638
|
+
*/
|
|
639
|
+
set href(_) { }
|
|
640
|
+
;
|
|
641
|
+
/**
|
|
642
|
+
* It determinate how the content should be aligned
|
|
643
|
+
*/
|
|
644
|
+
set justifyContent(_) { }
|
|
645
|
+
;
|
|
646
|
+
/**
|
|
647
|
+
* If `true` it will display the button in a loading state
|
|
648
|
+
*/
|
|
649
|
+
set loading(_) { }
|
|
650
|
+
;
|
|
651
|
+
/**
|
|
652
|
+
* The size of the button
|
|
653
|
+
*/
|
|
654
|
+
set size(_) { }
|
|
655
|
+
;
|
|
656
|
+
/**
|
|
657
|
+
* Where to display the linked URL, as the name for a browsing context (a `tab`, `window`, or `<iframe>`)
|
|
658
|
+
Details: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-target
|
|
659
|
+
*/
|
|
660
|
+
set target(_) { }
|
|
661
|
+
;
|
|
662
|
+
/**
|
|
663
|
+
* The default behavior of the button
|
|
664
|
+
*/
|
|
665
|
+
set type(_) { }
|
|
666
|
+
;
|
|
667
|
+
/**
|
|
668
|
+
* The variant of button to apply on top of the appearance (applicable only to `appearance="primary"`)
|
|
669
|
+
*/
|
|
670
|
+
set variant(_) { }
|
|
671
|
+
;
|
|
449
672
|
constructor(c, r, z) {
|
|
450
673
|
this.z = z;
|
|
451
674
|
c.detach();
|
|
452
675
|
this.el = r.nativeElement;
|
|
453
676
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
454
677
|
}
|
|
455
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
456
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
678
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
679
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
457
680
|
};
|
|
458
681
|
BqButton = __decorate([
|
|
459
682
|
ProxyCmp({
|
|
@@ -461,7 +684,7 @@ BqButton = __decorate([
|
|
|
461
684
|
}),
|
|
462
685
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
463
686
|
], BqButton);
|
|
464
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
687
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqButton, decorators: [{
|
|
465
688
|
type: Component,
|
|
466
689
|
args: [{
|
|
467
690
|
selector: 'bq-button',
|
|
@@ -472,13 +695,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
472
695
|
}]
|
|
473
696
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
474
697
|
let BqCard = class BqCard {
|
|
698
|
+
/**
|
|
699
|
+
* Type of card component
|
|
700
|
+
*/
|
|
701
|
+
set type(_) { }
|
|
702
|
+
;
|
|
703
|
+
/**
|
|
704
|
+
* The corner radius of the card component
|
|
705
|
+
*/
|
|
706
|
+
set border(_) { }
|
|
707
|
+
;
|
|
475
708
|
constructor(c, r, z) {
|
|
476
709
|
this.z = z;
|
|
477
710
|
c.detach();
|
|
478
711
|
this.el = r.nativeElement;
|
|
479
712
|
}
|
|
480
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
481
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
713
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
714
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqCard, selector: "bq-card", inputs: { border: "border", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
482
715
|
};
|
|
483
716
|
BqCard = __decorate([
|
|
484
717
|
ProxyCmp({
|
|
@@ -486,7 +719,7 @@ BqCard = __decorate([
|
|
|
486
719
|
}),
|
|
487
720
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
488
721
|
], BqCard);
|
|
489
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
722
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqCard, decorators: [{
|
|
490
723
|
type: Component,
|
|
491
724
|
args: [{
|
|
492
725
|
selector: 'bq-card',
|
|
@@ -497,14 +730,59 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
497
730
|
}]
|
|
498
731
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
499
732
|
let BqCheckbox = class BqCheckbox {
|
|
733
|
+
/**
|
|
734
|
+
* If true checkbox displays background on hover
|
|
735
|
+
*/
|
|
736
|
+
set backgroundOnHover(_) { }
|
|
737
|
+
;
|
|
738
|
+
/**
|
|
739
|
+
* The form ID that the checkbox is associated with
|
|
740
|
+
*/
|
|
741
|
+
set formId(_) { }
|
|
742
|
+
;
|
|
743
|
+
/**
|
|
744
|
+
* The native form validation message
|
|
745
|
+
*/
|
|
746
|
+
set formValidationMessage(_) { }
|
|
747
|
+
;
|
|
748
|
+
/**
|
|
749
|
+
* If true checkbox is checked
|
|
750
|
+
*/
|
|
751
|
+
set checked(_) { }
|
|
752
|
+
;
|
|
753
|
+
/**
|
|
754
|
+
* If true checkbox is disabled
|
|
755
|
+
*/
|
|
756
|
+
set disabled(_) { }
|
|
757
|
+
;
|
|
758
|
+
/**
|
|
759
|
+
* A state that is neither checked nor unchecked
|
|
760
|
+
*/
|
|
761
|
+
set indeterminate(_) { }
|
|
762
|
+
;
|
|
763
|
+
/**
|
|
764
|
+
* Name of the HTML input form control. Submitted with the form as part of a name/value pair.
|
|
765
|
+
*/
|
|
766
|
+
set name(_) { }
|
|
767
|
+
;
|
|
768
|
+
/**
|
|
769
|
+
* If `true`, it will indicate that the user must specify a value for the checkbox before the owning form can be submitted
|
|
770
|
+
*/
|
|
771
|
+
set required(_) { }
|
|
772
|
+
;
|
|
773
|
+
/**
|
|
774
|
+
* A string representing the value of the checkbox. Primarily used to differentiate a list of related checkboxes that have the same name.
|
|
775
|
+
*/
|
|
776
|
+
set value(_) { }
|
|
777
|
+
;
|
|
500
778
|
constructor(c, r, z) {
|
|
501
779
|
this.z = z;
|
|
502
780
|
c.detach();
|
|
503
781
|
this.el = r.nativeElement;
|
|
504
782
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
505
783
|
}
|
|
506
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
507
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
784
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
785
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqCheckbox, selector: "bq-checkbox", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", formValidationMessage: "formValidationMessage", indeterminate: "indeterminate", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
508
786
|
};
|
|
509
787
|
BqCheckbox = __decorate([
|
|
510
788
|
ProxyCmp({
|
|
@@ -513,7 +791,7 @@ BqCheckbox = __decorate([
|
|
|
513
791
|
}),
|
|
514
792
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
515
793
|
], BqCheckbox);
|
|
516
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
794
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqCheckbox, decorators: [{
|
|
517
795
|
type: Component,
|
|
518
796
|
args: [{
|
|
519
797
|
selector: 'bq-checkbox',
|
|
@@ -524,14 +802,159 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
524
802
|
}]
|
|
525
803
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
526
804
|
let BqDatePicker = class BqDatePicker {
|
|
805
|
+
/**
|
|
806
|
+
* If `true`, the Date picker input will be focused on component render
|
|
807
|
+
*/
|
|
808
|
+
set autofocus(_) { }
|
|
809
|
+
;
|
|
810
|
+
/**
|
|
811
|
+
* The clear button aria label
|
|
812
|
+
*/
|
|
813
|
+
set clearButtonLabel(_) { }
|
|
814
|
+
;
|
|
815
|
+
/**
|
|
816
|
+
* If `true`, the clear button won't be displayed
|
|
817
|
+
*/
|
|
818
|
+
set disableClear(_) { }
|
|
819
|
+
;
|
|
820
|
+
/**
|
|
821
|
+
* Indicates whether the Date picker input is disabled or not.
|
|
822
|
+
If `true`, the Date picker is disabled and cannot be interacted with.
|
|
823
|
+
*/
|
|
824
|
+
set disabled(_) { }
|
|
825
|
+
;
|
|
826
|
+
/**
|
|
827
|
+
* Represents the distance (gutter or margin) between the Date picker panel and the input element.
|
|
828
|
+
*/
|
|
829
|
+
set distance(_) { }
|
|
830
|
+
;
|
|
831
|
+
/**
|
|
832
|
+
* The first day of the week, where Sunday is 0, Monday is 1, etc
|
|
833
|
+
*/
|
|
834
|
+
set firstDayOfWeek(_) { }
|
|
835
|
+
;
|
|
836
|
+
/**
|
|
837
|
+
* The options to use when formatting the displayed value.
|
|
838
|
+
Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat#using_options
|
|
839
|
+
*/
|
|
840
|
+
set formatOptions(_) { }
|
|
841
|
+
;
|
|
842
|
+
/**
|
|
843
|
+
* The ID of the form that the Date picker input belongs to.
|
|
844
|
+
*/
|
|
845
|
+
set form(_) { }
|
|
846
|
+
;
|
|
847
|
+
/**
|
|
848
|
+
* A function that takes a date and returns true if the date should not be selectable
|
|
849
|
+
*/
|
|
850
|
+
set isDateDisallowed(_) { }
|
|
851
|
+
;
|
|
852
|
+
/**
|
|
853
|
+
* The locale for formatting dates. If not set, will use the browser's locale.
|
|
854
|
+
Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument
|
|
855
|
+
*/
|
|
856
|
+
set locale(_) { }
|
|
857
|
+
;
|
|
858
|
+
/**
|
|
859
|
+
* The latest date that can be selected
|
|
860
|
+
*/
|
|
861
|
+
set max(_) { }
|
|
862
|
+
;
|
|
863
|
+
/**
|
|
864
|
+
* The earliest date that can be selected
|
|
865
|
+
*/
|
|
866
|
+
set min(_) { }
|
|
867
|
+
;
|
|
868
|
+
/**
|
|
869
|
+
* Number of months to show when range is `true`
|
|
870
|
+
*/
|
|
871
|
+
set months(_) { }
|
|
872
|
+
;
|
|
873
|
+
/**
|
|
874
|
+
* Specifies how the next/previous buttons should navigate the calendar.
|
|
875
|
+
- single: The buttons will navigate by a single month at a time.
|
|
876
|
+
- months: The buttons will navigate by the number of months displayed per view.
|
|
877
|
+
*/
|
|
878
|
+
set monthsPerView(_) { }
|
|
879
|
+
;
|
|
880
|
+
/**
|
|
881
|
+
* The Date picker input name.
|
|
882
|
+
*/
|
|
883
|
+
set name(_) { }
|
|
884
|
+
;
|
|
885
|
+
/**
|
|
886
|
+
* If `true`, the Date picker panel will be visible.
|
|
887
|
+
*/
|
|
888
|
+
set open(_) { }
|
|
889
|
+
;
|
|
890
|
+
/**
|
|
891
|
+
* When set, it will override the height of the Date picker panel.
|
|
892
|
+
*/
|
|
893
|
+
set panelHeight(_) { }
|
|
894
|
+
;
|
|
895
|
+
/**
|
|
896
|
+
* The Date picker input placeholder text value
|
|
897
|
+
*/
|
|
898
|
+
set placeholder(_) { }
|
|
899
|
+
;
|
|
900
|
+
/**
|
|
901
|
+
* Position of the Date picker panel
|
|
902
|
+
*/
|
|
903
|
+
set placement(_) { }
|
|
904
|
+
;
|
|
905
|
+
/**
|
|
906
|
+
* Indicates whether or not the Date picker input is required to be filled out before submitting the form.
|
|
907
|
+
*/
|
|
908
|
+
set required(_) { }
|
|
909
|
+
;
|
|
910
|
+
/**
|
|
911
|
+
* Represents the skidding between the Date picker panel and the input element.
|
|
912
|
+
*/
|
|
913
|
+
set skidding(_) { }
|
|
914
|
+
;
|
|
915
|
+
/**
|
|
916
|
+
* Whether to show days outside the month
|
|
917
|
+
*/
|
|
918
|
+
set showOutsideDays(_) { }
|
|
919
|
+
;
|
|
920
|
+
/**
|
|
921
|
+
* Defines the strategy to position the Date picker panel
|
|
922
|
+
*/
|
|
923
|
+
set strategy(_) { }
|
|
924
|
+
;
|
|
925
|
+
/**
|
|
926
|
+
* The date that is tentatively selected e.g. the start of a range selection
|
|
927
|
+
*/
|
|
928
|
+
set tentative(_) { }
|
|
929
|
+
;
|
|
930
|
+
/**
|
|
931
|
+
* It defines how the calendar will behave, allowing single date selection, range selection, or multiple date selection
|
|
932
|
+
*/
|
|
933
|
+
set type(_) { }
|
|
934
|
+
;
|
|
935
|
+
/**
|
|
936
|
+
* The validation status of the Select input. @remarks This property is used to indicate the validation status of the select input. It can be set to one of the following values:
|
|
937
|
+
- `'none'`: No validation status is set.
|
|
938
|
+
- `'error'`: The input has a validation error.
|
|
939
|
+
- `'warning'`: The input has a validation warning.
|
|
940
|
+
- `'success'`: The input has passed validation.
|
|
941
|
+
*/
|
|
942
|
+
set validationStatus(_) { }
|
|
943
|
+
;
|
|
944
|
+
/**
|
|
945
|
+
* The select input value represents the currently selected date or range and can be used to reset the field to a previous value.
|
|
946
|
+
All dates are expected in ISO-8601 format (YYYY-MM-DD).
|
|
947
|
+
*/
|
|
948
|
+
set value(_) { }
|
|
949
|
+
;
|
|
527
950
|
constructor(c, r, z) {
|
|
528
951
|
this.z = z;
|
|
529
952
|
c.detach();
|
|
530
953
|
this.el = r.nativeElement;
|
|
531
954
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus']);
|
|
532
955
|
}
|
|
533
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
534
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
956
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
957
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqDatePicker, selector: "bq-date-picker", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", disableClear: "disableClear", disabled: "disabled", distance: "distance", firstDayOfWeek: "firstDayOfWeek", form: "form", formatOptions: "formatOptions", isDateDisallowed: "isDateDisallowed", locale: "locale", max: "max", min: "min", months: "months", monthsPerView: "monthsPerView", name: "name", open: "open", panelHeight: "panelHeight", placeholder: "placeholder", placement: "placement", required: "required", showOutsideDays: "showOutsideDays", skidding: "skidding", strategy: "strategy", tentative: "tentative", type: "type", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
535
958
|
};
|
|
536
959
|
BqDatePicker = __decorate([
|
|
537
960
|
ProxyCmp({
|
|
@@ -540,7 +963,7 @@ BqDatePicker = __decorate([
|
|
|
540
963
|
}),
|
|
541
964
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
542
965
|
], BqDatePicker);
|
|
543
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
966
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDatePicker, decorators: [{
|
|
544
967
|
type: Component,
|
|
545
968
|
args: [{
|
|
546
969
|
selector: 'bq-date-picker',
|
|
@@ -551,14 +974,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
551
974
|
}]
|
|
552
975
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
553
976
|
let BqDialog = class BqDialog {
|
|
977
|
+
/**
|
|
978
|
+
* Border radius of the dialog component
|
|
979
|
+
*/
|
|
980
|
+
set border(_) { }
|
|
981
|
+
;
|
|
982
|
+
/**
|
|
983
|
+
* If true, the backdrop overlay won't be shown when the dialog opens
|
|
984
|
+
*/
|
|
985
|
+
set disableBackdrop(_) { }
|
|
986
|
+
;
|
|
987
|
+
/**
|
|
988
|
+
* If true, the dialog will not close when the [Esc] key is press
|
|
989
|
+
*/
|
|
990
|
+
set disableCloseEscKeydown(_) { }
|
|
991
|
+
;
|
|
992
|
+
/**
|
|
993
|
+
* If true, the dialog will not close when clicking on the backdrop overlay
|
|
994
|
+
*/
|
|
995
|
+
set disableCloseClickOutside(_) { }
|
|
996
|
+
;
|
|
997
|
+
/**
|
|
998
|
+
* The appearance of footer
|
|
999
|
+
*/
|
|
1000
|
+
set footerAppearance(_) { }
|
|
1001
|
+
;
|
|
1002
|
+
/**
|
|
1003
|
+
* If true, it hides the close button
|
|
1004
|
+
*/
|
|
1005
|
+
set hideCloseButton(_) { }
|
|
1006
|
+
;
|
|
1007
|
+
/**
|
|
1008
|
+
* If true, the dialog will be shown as open
|
|
1009
|
+
*/
|
|
1010
|
+
set open(_) { }
|
|
1011
|
+
;
|
|
1012
|
+
/**
|
|
1013
|
+
* The size of the dialog
|
|
1014
|
+
*/
|
|
1015
|
+
set size(_) { }
|
|
1016
|
+
;
|
|
554
1017
|
constructor(c, r, z) {
|
|
555
1018
|
this.z = z;
|
|
556
1019
|
c.detach();
|
|
557
1020
|
this.el = r.nativeElement;
|
|
558
1021
|
proxyOutputs(this, this.el, ['bqCancel', 'bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
559
1022
|
}
|
|
560
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
561
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1023
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1024
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
562
1025
|
};
|
|
563
1026
|
BqDialog = __decorate([
|
|
564
1027
|
ProxyCmp({
|
|
@@ -567,7 +1030,7 @@ BqDialog = __decorate([
|
|
|
567
1030
|
}),
|
|
568
1031
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
569
1032
|
], BqDialog);
|
|
570
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1033
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDialog, decorators: [{
|
|
571
1034
|
type: Component,
|
|
572
1035
|
args: [{
|
|
573
1036
|
selector: 'bq-dialog',
|
|
@@ -578,13 +1041,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
578
1041
|
}]
|
|
579
1042
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
580
1043
|
let BqDivider = class BqDivider {
|
|
1044
|
+
/**
|
|
1045
|
+
* If true, the divider has a dashed pattern
|
|
1046
|
+
*/
|
|
1047
|
+
set dashed(_) { }
|
|
1048
|
+
;
|
|
1049
|
+
/**
|
|
1050
|
+
* The default orientation of the divider
|
|
1051
|
+
*/
|
|
1052
|
+
set orientation(_) { }
|
|
1053
|
+
;
|
|
1054
|
+
/**
|
|
1055
|
+
* Set the stroke color of the divider. The value should be a valid value of the palette color
|
|
1056
|
+
*/
|
|
1057
|
+
set strokeColor(_) { }
|
|
1058
|
+
;
|
|
1059
|
+
/**
|
|
1060
|
+
* Set the alignment of the title on the main axis of the divider (horizontal / vertical)
|
|
1061
|
+
*/
|
|
1062
|
+
set titleAlignment(_) { }
|
|
1063
|
+
;
|
|
1064
|
+
/**
|
|
1065
|
+
* Set the width of each dash of the divider's stroke. This is applicable when the stroke is dashed
|
|
1066
|
+
*/
|
|
1067
|
+
set strokeDashWidth(_) { }
|
|
1068
|
+
;
|
|
1069
|
+
/**
|
|
1070
|
+
* Set the gap of the divider's stroke. This is applicable when the stroke is dashed
|
|
1071
|
+
*/
|
|
1072
|
+
set strokeDashGap(_) { }
|
|
1073
|
+
;
|
|
1074
|
+
/**
|
|
1075
|
+
* Set the thickness of the divider's stroke. Value expressed in px
|
|
1076
|
+
*/
|
|
1077
|
+
set strokeThickness(_) { }
|
|
1078
|
+
;
|
|
1079
|
+
/**
|
|
1080
|
+
* Set the min width of the divider's stroke when text is not centered. Value expressed in px
|
|
1081
|
+
*/
|
|
1082
|
+
set strokeBasis(_) { }
|
|
1083
|
+
;
|
|
1084
|
+
/**
|
|
1085
|
+
* Set the line of the divider's stroke. This is applicable when the stroke is dashed
|
|
1086
|
+
*/
|
|
1087
|
+
set strokeLinecap(_) { }
|
|
1088
|
+
;
|
|
581
1089
|
constructor(c, r, z) {
|
|
582
1090
|
this.z = z;
|
|
583
1091
|
c.detach();
|
|
584
1092
|
this.el = r.nativeElement;
|
|
585
1093
|
}
|
|
586
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
587
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1094
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1095
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
588
1096
|
};
|
|
589
1097
|
BqDivider = __decorate([
|
|
590
1098
|
ProxyCmp({
|
|
@@ -592,7 +1100,7 @@ BqDivider = __decorate([
|
|
|
592
1100
|
}),
|
|
593
1101
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
594
1102
|
], BqDivider);
|
|
595
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1103
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDivider, decorators: [{
|
|
596
1104
|
type: Component,
|
|
597
1105
|
args: [{
|
|
598
1106
|
selector: 'bq-divider',
|
|
@@ -603,14 +1111,44 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
603
1111
|
}]
|
|
604
1112
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
605
1113
|
let BqDrawer = class BqDrawer {
|
|
1114
|
+
/**
|
|
1115
|
+
* If true, the backdrop overlay will be shown when the drawer opens
|
|
1116
|
+
*/
|
|
1117
|
+
set enableBackdrop(_) { }
|
|
1118
|
+
;
|
|
1119
|
+
/**
|
|
1120
|
+
* If true, the drawer will not close when clicking outside the panel
|
|
1121
|
+
*/
|
|
1122
|
+
set closeOnClickOutside(_) { }
|
|
1123
|
+
;
|
|
1124
|
+
/**
|
|
1125
|
+
* If true, the dialog will not close when the [Esc] key is pressed
|
|
1126
|
+
*/
|
|
1127
|
+
set closeOnEsc(_) { }
|
|
1128
|
+
;
|
|
1129
|
+
/**
|
|
1130
|
+
* If true, the drawer component will be shown
|
|
1131
|
+
*/
|
|
1132
|
+
set open(_) { }
|
|
1133
|
+
;
|
|
1134
|
+
/**
|
|
1135
|
+
* @deprecated Defines the position of the drawer
|
|
1136
|
+
*/
|
|
1137
|
+
set placement(_) { }
|
|
1138
|
+
;
|
|
1139
|
+
/**
|
|
1140
|
+
* Defines the position of the drawer
|
|
1141
|
+
*/
|
|
1142
|
+
set position(_) { }
|
|
1143
|
+
;
|
|
606
1144
|
constructor(c, r, z) {
|
|
607
1145
|
this.z = z;
|
|
608
1146
|
c.detach();
|
|
609
1147
|
this.el = r.nativeElement;
|
|
610
1148
|
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
611
1149
|
}
|
|
612
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
613
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1150
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1151
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqDrawer, selector: "bq-drawer", inputs: { closeOnClickOutside: "closeOnClickOutside", closeOnEsc: "closeOnEsc", enableBackdrop: "enableBackdrop", open: "open", placement: "placement", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
614
1152
|
};
|
|
615
1153
|
BqDrawer = __decorate([
|
|
616
1154
|
ProxyCmp({
|
|
@@ -619,7 +1157,7 @@ BqDrawer = __decorate([
|
|
|
619
1157
|
}),
|
|
620
1158
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
621
1159
|
], BqDrawer);
|
|
622
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1160
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDrawer, decorators: [{
|
|
623
1161
|
type: Component,
|
|
624
1162
|
args: [{
|
|
625
1163
|
selector: 'bq-drawer',
|
|
@@ -630,14 +1168,59 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
630
1168
|
}]
|
|
631
1169
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
632
1170
|
let BqDropdown = class BqDropdown {
|
|
1171
|
+
/**
|
|
1172
|
+
* If true, the dropdown panel will be visible and won't be shown.
|
|
1173
|
+
*/
|
|
1174
|
+
set disabled(_) { }
|
|
1175
|
+
;
|
|
1176
|
+
/**
|
|
1177
|
+
* Represents the distance (gutter or margin) between the panel and the trigger element.
|
|
1178
|
+
*/
|
|
1179
|
+
set distance(_) { }
|
|
1180
|
+
;
|
|
1181
|
+
/**
|
|
1182
|
+
* If true, the panel will remain open after a selection is made.
|
|
1183
|
+
*/
|
|
1184
|
+
set keepOpenOnSelect(_) { }
|
|
1185
|
+
;
|
|
1186
|
+
/**
|
|
1187
|
+
* Position of the panel
|
|
1188
|
+
*/
|
|
1189
|
+
set placement(_) { }
|
|
1190
|
+
;
|
|
1191
|
+
/**
|
|
1192
|
+
* If true, the panel will be visible.
|
|
1193
|
+
*/
|
|
1194
|
+
set open(_) { }
|
|
1195
|
+
;
|
|
1196
|
+
/**
|
|
1197
|
+
* When set, it will override the height of the dropdown panel
|
|
1198
|
+
*/
|
|
1199
|
+
set panelHeight(_) { }
|
|
1200
|
+
;
|
|
1201
|
+
/**
|
|
1202
|
+
* Whether the panel should have the same width as the trigger element
|
|
1203
|
+
*/
|
|
1204
|
+
set sameWidth(_) { }
|
|
1205
|
+
;
|
|
1206
|
+
/**
|
|
1207
|
+
* Represents the skidding between the panel and the trigger element.
|
|
1208
|
+
*/
|
|
1209
|
+
set skidding(_) { }
|
|
1210
|
+
;
|
|
1211
|
+
/**
|
|
1212
|
+
* Defines the strategy to position the panel
|
|
1213
|
+
*/
|
|
1214
|
+
set strategy(_) { }
|
|
1215
|
+
;
|
|
633
1216
|
constructor(c, r, z) {
|
|
634
1217
|
this.z = z;
|
|
635
1218
|
c.detach();
|
|
636
1219
|
this.el = r.nativeElement;
|
|
637
1220
|
proxyOutputs(this, this.el, ['bqOpen']);
|
|
638
1221
|
}
|
|
639
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
640
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1222
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1223
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
641
1224
|
};
|
|
642
1225
|
BqDropdown = __decorate([
|
|
643
1226
|
ProxyCmp({
|
|
@@ -645,7 +1228,7 @@ BqDropdown = __decorate([
|
|
|
645
1228
|
}),
|
|
646
1229
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
647
1230
|
], BqDropdown);
|
|
648
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1231
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDropdown, decorators: [{
|
|
649
1232
|
type: Component,
|
|
650
1233
|
args: [{
|
|
651
1234
|
selector: 'bq-dropdown',
|
|
@@ -656,13 +1239,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
656
1239
|
}]
|
|
657
1240
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
658
1241
|
let BqEmptyState = class BqEmptyState {
|
|
1242
|
+
/**
|
|
1243
|
+
* The size of the empty state component
|
|
1244
|
+
*/
|
|
1245
|
+
set size(_) { }
|
|
1246
|
+
;
|
|
659
1247
|
constructor(c, r, z) {
|
|
660
1248
|
this.z = z;
|
|
661
1249
|
c.detach();
|
|
662
1250
|
this.el = r.nativeElement;
|
|
663
1251
|
}
|
|
664
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
665
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1252
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1253
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqEmptyState, selector: "bq-empty-state", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
666
1254
|
};
|
|
667
1255
|
BqEmptyState = __decorate([
|
|
668
1256
|
ProxyCmp({
|
|
@@ -670,7 +1258,7 @@ BqEmptyState = __decorate([
|
|
|
670
1258
|
}),
|
|
671
1259
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
672
1260
|
], BqEmptyState);
|
|
673
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1261
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqEmptyState, decorators: [{
|
|
674
1262
|
type: Component,
|
|
675
1263
|
args: [{
|
|
676
1264
|
selector: 'bq-empty-state',
|
|
@@ -681,14 +1269,44 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
681
1269
|
}]
|
|
682
1270
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
683
1271
|
let BqIcon = class BqIcon {
|
|
1272
|
+
/**
|
|
1273
|
+
* Label for the icon, used for accessibility
|
|
1274
|
+
*/
|
|
1275
|
+
set label(_) { }
|
|
1276
|
+
;
|
|
1277
|
+
/**
|
|
1278
|
+
* Set the stroke color of the SVG. The value should be a valid value of the palette color
|
|
1279
|
+
*/
|
|
1280
|
+
set color(_) { }
|
|
1281
|
+
;
|
|
1282
|
+
/**
|
|
1283
|
+
* Icon name to load. Please check all available icons [here](https://phosphoricons.com/)
|
|
1284
|
+
*/
|
|
1285
|
+
set name(_) { }
|
|
1286
|
+
;
|
|
1287
|
+
/**
|
|
1288
|
+
* Set the size of the SVG
|
|
1289
|
+
*/
|
|
1290
|
+
set size(_) { }
|
|
1291
|
+
;
|
|
1292
|
+
/**
|
|
1293
|
+
* Set the source of the SVG. If the source is set, the name property will be ignored
|
|
1294
|
+
*/
|
|
1295
|
+
set src(_) { }
|
|
1296
|
+
;
|
|
1297
|
+
/**
|
|
1298
|
+
* @deprecated It set the icon weight/style
|
|
1299
|
+
*/
|
|
1300
|
+
set weight(_) { }
|
|
1301
|
+
;
|
|
684
1302
|
constructor(c, r, z) {
|
|
685
1303
|
this.z = z;
|
|
686
1304
|
c.detach();
|
|
687
1305
|
this.el = r.nativeElement;
|
|
688
1306
|
proxyOutputs(this, this.el, ['svgLoaded']);
|
|
689
1307
|
}
|
|
690
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
691
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1308
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1309
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
692
1310
|
};
|
|
693
1311
|
BqIcon = __decorate([
|
|
694
1312
|
ProxyCmp({
|
|
@@ -696,7 +1314,7 @@ BqIcon = __decorate([
|
|
|
696
1314
|
}),
|
|
697
1315
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
698
1316
|
], BqIcon);
|
|
699
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1317
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqIcon, decorators: [{
|
|
700
1318
|
type: Component,
|
|
701
1319
|
args: [{
|
|
702
1320
|
selector: 'bq-icon',
|
|
@@ -707,40 +1325,214 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
707
1325
|
}]
|
|
708
1326
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
709
1327
|
let BqInput = class BqInput {
|
|
1328
|
+
/**
|
|
1329
|
+
* Controls whether or not the input field should be capitalized and how.
|
|
1330
|
+
Possible values are 'off', 'none', 'on', 'sentences', 'words', and 'characters'.
|
|
1331
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize
|
|
1332
|
+
*/
|
|
1333
|
+
set autocapitalize(_) { }
|
|
1334
|
+
;
|
|
1335
|
+
/**
|
|
1336
|
+
* Specifies whether or not the input field should have autocomplete enabled.
|
|
1337
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values
|
|
1338
|
+
*/
|
|
1339
|
+
set autocomplete(_) { }
|
|
1340
|
+
;
|
|
1341
|
+
/**
|
|
1342
|
+
* Controls whether or not the input field should have autocorrect enabled.
|
|
1343
|
+
Possible values are 'on' and 'off'.
|
|
1344
|
+
*/
|
|
1345
|
+
set autocorrect(_) { }
|
|
1346
|
+
;
|
|
1347
|
+
/**
|
|
1348
|
+
* If true, the input will be focused on component render
|
|
1349
|
+
*/
|
|
1350
|
+
set autofocus(_) { }
|
|
1351
|
+
;
|
|
1352
|
+
/**
|
|
1353
|
+
* The clear button aria label
|
|
1354
|
+
*/
|
|
1355
|
+
set clearButtonLabel(_) { }
|
|
1356
|
+
;
|
|
1357
|
+
/**
|
|
1358
|
+
* The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the input value changes.
|
|
1359
|
+
A value of 0 means no debouncing will occur.
|
|
1360
|
+
*/
|
|
1361
|
+
set debounceTime(_) { }
|
|
1362
|
+
;
|
|
1363
|
+
/**
|
|
1364
|
+
* Indicates whether the input is disabled or not.
|
|
1365
|
+
If `true`, the input is disabled and cannot be interacted with.
|
|
1366
|
+
*/
|
|
1367
|
+
set disabled(_) { }
|
|
1368
|
+
;
|
|
1369
|
+
/**
|
|
1370
|
+
* If true, the clear button won't be displayed
|
|
1371
|
+
*/
|
|
1372
|
+
set disableClear(_) { }
|
|
1373
|
+
;
|
|
1374
|
+
/**
|
|
1375
|
+
* The ID of the form that the input field belongs to.
|
|
1376
|
+
*/
|
|
1377
|
+
set form(_) { }
|
|
1378
|
+
;
|
|
1379
|
+
/**
|
|
1380
|
+
* The native form validation message (mandatory if `required` is set)
|
|
1381
|
+
*/
|
|
1382
|
+
set formValidationMessage(_) { }
|
|
1383
|
+
;
|
|
1384
|
+
/**
|
|
1385
|
+
* The inputmode attribute specifies what kind of input mechanism would be most helpful for users entering content into the input field.
|
|
1386
|
+
This allows a browser to display an appropriate virtual keyboard while editing.
|
|
1387
|
+
Possible values are 'none', 'text', 'decimal', 'numeric', 'tel', 'search', 'email', 'url', and 'date'.
|
|
1388
|
+
*/
|
|
1389
|
+
set inputmode(_) { }
|
|
1390
|
+
;
|
|
1391
|
+
/**
|
|
1392
|
+
* The maximum value that the input field can accept.
|
|
1393
|
+
Only applies to date and number input types.
|
|
1394
|
+
*/
|
|
1395
|
+
set max(_) { }
|
|
1396
|
+
;
|
|
1397
|
+
/**
|
|
1398
|
+
* The maximum number of characters that the input field can accept.
|
|
1399
|
+
*/
|
|
1400
|
+
set maxlength(_) { }
|
|
1401
|
+
;
|
|
1402
|
+
/**
|
|
1403
|
+
* The minimum value that the input field can accept.
|
|
1404
|
+
Only applies to date and number input types.
|
|
1405
|
+
*/
|
|
1406
|
+
set min(_) { }
|
|
1407
|
+
;
|
|
1408
|
+
/**
|
|
1409
|
+
* The minimum number of characters that the input field can accept.
|
|
1410
|
+
*/
|
|
1411
|
+
set minlength(_) { }
|
|
1412
|
+
;
|
|
1413
|
+
/**
|
|
1414
|
+
* The input field name.
|
|
1415
|
+
*/
|
|
1416
|
+
set name(_) { }
|
|
1417
|
+
;
|
|
1418
|
+
/**
|
|
1419
|
+
* Specifies a regular expression the form control's value should match.
|
|
1420
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern
|
|
1421
|
+
*/
|
|
1422
|
+
set pattern(_) { }
|
|
1423
|
+
;
|
|
1424
|
+
/**
|
|
1425
|
+
* The input placeholder text value
|
|
1426
|
+
*/
|
|
1427
|
+
set placeholder(_) { }
|
|
1428
|
+
;
|
|
1429
|
+
/**
|
|
1430
|
+
* If true, the input field cannot be modified.
|
|
1431
|
+
*/
|
|
1432
|
+
set readonly(_) { }
|
|
1433
|
+
;
|
|
1434
|
+
/**
|
|
1435
|
+
* Indicates whether or not the input field is required to be filled out before submitting the form.
|
|
1436
|
+
*/
|
|
1437
|
+
set required(_) { }
|
|
1438
|
+
;
|
|
1439
|
+
/**
|
|
1440
|
+
* A number that specifies the granularity that the value must adhere to.
|
|
1441
|
+
Valid for date, month, week, time, datetime-local, number, and range.
|
|
1442
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#step
|
|
1443
|
+
*/
|
|
1444
|
+
set step(_) { }
|
|
1445
|
+
;
|
|
1446
|
+
/**
|
|
1447
|
+
* The type attribute specifies the type of input field to display.
|
|
1448
|
+
Possible values are 'text', 'password', 'email', 'number', 'tel', 'search', 'url', and more.
|
|
1449
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#input_types
|
|
1450
|
+
*/
|
|
1451
|
+
set type(_) { }
|
|
1452
|
+
;
|
|
1453
|
+
/**
|
|
1454
|
+
* The validation status of the input. @remarks This property is used to indicate the validation status of the input. It can be set to one of the following values:
|
|
1455
|
+
- `'none'`: No validation status is set.
|
|
1456
|
+
- `'error'`: The input has a validation error.
|
|
1457
|
+
- `'warning'`: The input has a validation warning.
|
|
1458
|
+
- `'success'`: The input has passed validation.
|
|
1459
|
+
*/
|
|
1460
|
+
set validationStatus(_) { }
|
|
1461
|
+
;
|
|
1462
|
+
/**
|
|
1463
|
+
* The input value, it can be used to reset the input to a previous value
|
|
1464
|
+
*/
|
|
1465
|
+
set value(_) { }
|
|
1466
|
+
;
|
|
710
1467
|
constructor(c, r, z) {
|
|
711
1468
|
this.z = z;
|
|
712
1469
|
c.detach();
|
|
713
1470
|
this.el = r.nativeElement;
|
|
714
1471
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
715
1472
|
}
|
|
716
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
717
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1473
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1474
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqInput, selector: "bq-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disabled: "disabled", form: "form", formValidationMessage: "formValidationMessage", inputmode: "inputmode", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", step: "step", type: "type", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
718
1475
|
};
|
|
719
1476
|
BqInput = __decorate([
|
|
720
1477
|
ProxyCmp({
|
|
721
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value']
|
|
1478
|
+
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'formValidationMessage', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value']
|
|
722
1479
|
}),
|
|
723
1480
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
724
1481
|
], BqInput);
|
|
725
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1482
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqInput, decorators: [{
|
|
726
1483
|
type: Component,
|
|
727
1484
|
args: [{
|
|
728
1485
|
selector: 'bq-input',
|
|
729
1486
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
730
1487
|
template: '<ng-content></ng-content>',
|
|
731
1488
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
732
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value'],
|
|
1489
|
+
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'formValidationMessage', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value'],
|
|
733
1490
|
}]
|
|
734
1491
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
735
1492
|
let BqNotification = class BqNotification {
|
|
1493
|
+
/**
|
|
1494
|
+
* If true, the notification will automatically hide after the specified amount of time
|
|
1495
|
+
*/
|
|
1496
|
+
set autoDismiss(_) { }
|
|
1497
|
+
;
|
|
1498
|
+
/**
|
|
1499
|
+
* The corder radius of the notification component
|
|
1500
|
+
*/
|
|
1501
|
+
set border(_) { }
|
|
1502
|
+
;
|
|
1503
|
+
/**
|
|
1504
|
+
* If true, the close button at the top right of the notification won't be shown
|
|
1505
|
+
*/
|
|
1506
|
+
set disableClose(_) { }
|
|
1507
|
+
;
|
|
1508
|
+
/**
|
|
1509
|
+
* If true, the notification icon won't be shown
|
|
1510
|
+
*/
|
|
1511
|
+
set hideIcon(_) { }
|
|
1512
|
+
;
|
|
1513
|
+
/**
|
|
1514
|
+
* If true, the notification will be shown
|
|
1515
|
+
*/
|
|
1516
|
+
set open(_) { }
|
|
1517
|
+
;
|
|
1518
|
+
/**
|
|
1519
|
+
* The length of time, in milliseconds, after which the notification will close itself. Only valid if `autoDismiss="true"`
|
|
1520
|
+
*/
|
|
1521
|
+
set time(_) { }
|
|
1522
|
+
;
|
|
1523
|
+
/**
|
|
1524
|
+
* Type of Notification
|
|
1525
|
+
*/
|
|
1526
|
+
set type(_) { }
|
|
1527
|
+
;
|
|
736
1528
|
constructor(c, r, z) {
|
|
737
1529
|
this.z = z;
|
|
738
1530
|
c.detach();
|
|
739
1531
|
this.el = r.nativeElement;
|
|
740
1532
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
|
|
741
1533
|
}
|
|
742
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
743
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1534
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1535
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
744
1536
|
};
|
|
745
1537
|
BqNotification = __decorate([
|
|
746
1538
|
ProxyCmp({
|
|
@@ -749,7 +1541,7 @@ BqNotification = __decorate([
|
|
|
749
1541
|
}),
|
|
750
1542
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
751
1543
|
], BqNotification);
|
|
752
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1544
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqNotification, decorators: [{
|
|
753
1545
|
type: Component,
|
|
754
1546
|
args: [{
|
|
755
1547
|
selector: 'bq-notification',
|
|
@@ -760,14 +1552,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
760
1552
|
}]
|
|
761
1553
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
762
1554
|
let BqOption = class BqOption {
|
|
1555
|
+
/**
|
|
1556
|
+
* If true, the option is hidden.
|
|
1557
|
+
*/
|
|
1558
|
+
set hidden(_) { }
|
|
1559
|
+
;
|
|
1560
|
+
/**
|
|
1561
|
+
* If true, the option is disabled.
|
|
1562
|
+
*/
|
|
1563
|
+
set disabled(_) { }
|
|
1564
|
+
;
|
|
1565
|
+
/**
|
|
1566
|
+
* A string representing the value of the option. Can be used to identify the item
|
|
1567
|
+
*/
|
|
1568
|
+
set value(_) { }
|
|
1569
|
+
;
|
|
1570
|
+
/**
|
|
1571
|
+
* If true, the option is selected and active.
|
|
1572
|
+
*/
|
|
1573
|
+
set selected(_) { }
|
|
1574
|
+
;
|
|
763
1575
|
constructor(c, r, z) {
|
|
764
1576
|
this.z = z;
|
|
765
1577
|
c.detach();
|
|
766
1578
|
this.el = r.nativeElement;
|
|
767
1579
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick', 'bqEnter']);
|
|
768
1580
|
}
|
|
769
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
770
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1581
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1582
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
771
1583
|
};
|
|
772
1584
|
BqOption = __decorate([
|
|
773
1585
|
ProxyCmp({
|
|
@@ -775,7 +1587,7 @@ BqOption = __decorate([
|
|
|
775
1587
|
}),
|
|
776
1588
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
777
1589
|
], BqOption);
|
|
778
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1590
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOption, decorators: [{
|
|
779
1591
|
type: Component,
|
|
780
1592
|
args: [{
|
|
781
1593
|
selector: 'bq-option',
|
|
@@ -791,14 +1603,14 @@ let BqOptionGroup = class BqOptionGroup {
|
|
|
791
1603
|
c.detach();
|
|
792
1604
|
this.el = r.nativeElement;
|
|
793
1605
|
}
|
|
794
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
795
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1606
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOptionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1607
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqOptionGroup, selector: "bq-option-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
796
1608
|
};
|
|
797
1609
|
BqOptionGroup = __decorate([
|
|
798
1610
|
ProxyCmp({}),
|
|
799
1611
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
800
1612
|
], BqOptionGroup);
|
|
801
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1613
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOptionGroup, decorators: [{
|
|
802
1614
|
type: Component,
|
|
803
1615
|
args: [{
|
|
804
1616
|
selector: 'bq-option-group',
|
|
@@ -809,14 +1621,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
809
1621
|
}]
|
|
810
1622
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
811
1623
|
let BqOptionList = class BqOptionList {
|
|
1624
|
+
/**
|
|
1625
|
+
* Aria label for the list.
|
|
1626
|
+
*/
|
|
1627
|
+
set ariaLabel(_) { }
|
|
1628
|
+
;
|
|
812
1629
|
constructor(c, r, z) {
|
|
813
1630
|
this.z = z;
|
|
814
1631
|
c.detach();
|
|
815
1632
|
this.el = r.nativeElement;
|
|
816
1633
|
proxyOutputs(this, this.el, ['bqSelect']);
|
|
817
1634
|
}
|
|
818
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
819
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1635
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOptionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1636
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqOptionList, selector: "bq-option-list", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
820
1637
|
};
|
|
821
1638
|
BqOptionList = __decorate([
|
|
822
1639
|
ProxyCmp({
|
|
@@ -824,7 +1641,7 @@ BqOptionList = __decorate([
|
|
|
824
1641
|
}),
|
|
825
1642
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
826
1643
|
], BqOptionList);
|
|
827
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1644
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOptionList, decorators: [{
|
|
828
1645
|
type: Component,
|
|
829
1646
|
args: [{
|
|
830
1647
|
selector: 'bq-option-list',
|
|
@@ -840,14 +1657,14 @@ let BqPageTitle = class BqPageTitle {
|
|
|
840
1657
|
c.detach();
|
|
841
1658
|
this.el = r.nativeElement;
|
|
842
1659
|
}
|
|
843
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
844
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1660
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqPageTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1661
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqPageTitle, selector: "bq-page-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
845
1662
|
};
|
|
846
1663
|
BqPageTitle = __decorate([
|
|
847
1664
|
ProxyCmp({}),
|
|
848
1665
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
849
1666
|
], BqPageTitle);
|
|
850
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1667
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqPageTitle, decorators: [{
|
|
851
1668
|
type: Component,
|
|
852
1669
|
args: [{
|
|
853
1670
|
selector: 'bq-page-title',
|
|
@@ -858,13 +1675,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
858
1675
|
}]
|
|
859
1676
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
860
1677
|
let BqPanel = class BqPanel {
|
|
1678
|
+
/**
|
|
1679
|
+
* Represents the distance (gutter or margin) between the panel and the trigger element.
|
|
1680
|
+
*/
|
|
1681
|
+
set distance(_) { }
|
|
1682
|
+
;
|
|
1683
|
+
/**
|
|
1684
|
+
* Position of the panel
|
|
1685
|
+
*/
|
|
1686
|
+
set placement(_) { }
|
|
1687
|
+
;
|
|
1688
|
+
/**
|
|
1689
|
+
* If true, the panel will be visible.
|
|
1690
|
+
*/
|
|
1691
|
+
set open(_) { }
|
|
1692
|
+
;
|
|
1693
|
+
/**
|
|
1694
|
+
* Whether the panel should have the same width as the trigger element
|
|
1695
|
+
*/
|
|
1696
|
+
set sameWidth(_) { }
|
|
1697
|
+
;
|
|
1698
|
+
/**
|
|
1699
|
+
* Represents the skidding between the panel and the trigger element.
|
|
1700
|
+
*/
|
|
1701
|
+
set skidding(_) { }
|
|
1702
|
+
;
|
|
1703
|
+
/**
|
|
1704
|
+
* Defines the strategy to position the panel
|
|
1705
|
+
*/
|
|
1706
|
+
set strategy(_) { }
|
|
1707
|
+
;
|
|
861
1708
|
constructor(c, r, z) {
|
|
862
1709
|
this.z = z;
|
|
863
1710
|
c.detach();
|
|
864
1711
|
this.el = r.nativeElement;
|
|
865
1712
|
}
|
|
866
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
867
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1713
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1714
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
868
1715
|
};
|
|
869
1716
|
BqPanel = __decorate([
|
|
870
1717
|
ProxyCmp({
|
|
@@ -872,7 +1719,7 @@ BqPanel = __decorate([
|
|
|
872
1719
|
}),
|
|
873
1720
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
874
1721
|
], BqPanel);
|
|
875
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1722
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqPanel, decorators: [{
|
|
876
1723
|
type: Component,
|
|
877
1724
|
args: [{
|
|
878
1725
|
selector: 'bq-panel',
|
|
@@ -883,13 +1730,48 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
883
1730
|
}]
|
|
884
1731
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
885
1732
|
let BqProgress = class BqProgress {
|
|
1733
|
+
/**
|
|
1734
|
+
* It will set the border style of the progress bar
|
|
1735
|
+
*/
|
|
1736
|
+
set borderShape(_) { }
|
|
1737
|
+
;
|
|
1738
|
+
/**
|
|
1739
|
+
* If `true`, a tooltip will be shown displaying the progress value
|
|
1740
|
+
*/
|
|
1741
|
+
set enableTooltip(_) { }
|
|
1742
|
+
;
|
|
1743
|
+
/**
|
|
1744
|
+
* If `true` the indeterminate state of progress bar is enabled
|
|
1745
|
+
*/
|
|
1746
|
+
set indeterminate(_) { }
|
|
1747
|
+
;
|
|
1748
|
+
/**
|
|
1749
|
+
* If `true, a label text showing the value (in percentage) will be shown
|
|
1750
|
+
*/
|
|
1751
|
+
set label(_) { }
|
|
1752
|
+
;
|
|
1753
|
+
/**
|
|
1754
|
+
* Progress bar thickness
|
|
1755
|
+
*/
|
|
1756
|
+
set thickness(_) { }
|
|
1757
|
+
;
|
|
1758
|
+
/**
|
|
1759
|
+
* Progress type
|
|
1760
|
+
*/
|
|
1761
|
+
set type(_) { }
|
|
1762
|
+
;
|
|
1763
|
+
/**
|
|
1764
|
+
* A number representing the current value of the progress bar
|
|
1765
|
+
*/
|
|
1766
|
+
set value(_) { }
|
|
1767
|
+
;
|
|
886
1768
|
constructor(c, r, z) {
|
|
887
1769
|
this.z = z;
|
|
888
1770
|
c.detach();
|
|
889
1771
|
this.el = r.nativeElement;
|
|
890
1772
|
}
|
|
891
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
892
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1773
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1774
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
893
1775
|
};
|
|
894
1776
|
BqProgress = __decorate([
|
|
895
1777
|
ProxyCmp({
|
|
@@ -897,7 +1779,7 @@ BqProgress = __decorate([
|
|
|
897
1779
|
}),
|
|
898
1780
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
899
1781
|
], BqProgress);
|
|
900
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1782
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqProgress, decorators: [{
|
|
901
1783
|
type: Component,
|
|
902
1784
|
args: [{
|
|
903
1785
|
selector: 'bq-progress',
|
|
@@ -908,23 +1790,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
908
1790
|
}]
|
|
909
1791
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
910
1792
|
let BqRadio = class BqRadio {
|
|
1793
|
+
/**
|
|
1794
|
+
* If true radio input is checked
|
|
1795
|
+
*/
|
|
1796
|
+
set checked(_) { }
|
|
1797
|
+
;
|
|
1798
|
+
/**
|
|
1799
|
+
* If true radio input is disabled
|
|
1800
|
+
*/
|
|
1801
|
+
set disabled(_) { }
|
|
1802
|
+
;
|
|
1803
|
+
/**
|
|
1804
|
+
* If true radio displays background on hover
|
|
1805
|
+
*/
|
|
1806
|
+
set backgroundOnHover(_) { }
|
|
1807
|
+
;
|
|
1808
|
+
/**
|
|
1809
|
+
* The form ID that the radio input is associated with
|
|
1810
|
+
*/
|
|
1811
|
+
set formId(_) { }
|
|
1812
|
+
;
|
|
1813
|
+
/**
|
|
1814
|
+
* Name of the HTML input form control. Submitted with the form as part of a name/value pair.
|
|
1815
|
+
*/
|
|
1816
|
+
set name(_) { }
|
|
1817
|
+
;
|
|
1818
|
+
/**
|
|
1819
|
+
* If `true`, it will indicate that the user must specify a value for the radio before the owning form can be submitted
|
|
1820
|
+
*/
|
|
1821
|
+
set required(_) { }
|
|
1822
|
+
;
|
|
1823
|
+
/**
|
|
1824
|
+
* A string representing the value of the radio.
|
|
1825
|
+
*/
|
|
1826
|
+
set value(_) { }
|
|
1827
|
+
;
|
|
911
1828
|
constructor(c, r, z) {
|
|
912
1829
|
this.z = z;
|
|
913
1830
|
c.detach();
|
|
914
1831
|
this.el = r.nativeElement;
|
|
915
1832
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
916
1833
|
}
|
|
917
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
918
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1834
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1835
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqRadio, selector: "bq-radio", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
919
1836
|
};
|
|
920
1837
|
BqRadio = __decorate([
|
|
921
1838
|
ProxyCmp({
|
|
922
1839
|
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'name', 'required', 'value'],
|
|
923
|
-
methods: ['vClick', 'vFocus', 'vBlur']
|
|
1840
|
+
methods: ['vClick', 'vFocus', 'vBlur', 'getNativeInput']
|
|
924
1841
|
}),
|
|
925
1842
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
926
1843
|
], BqRadio);
|
|
927
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1844
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqRadio, decorators: [{
|
|
928
1845
|
type: Component,
|
|
929
1846
|
args: [{
|
|
930
1847
|
selector: 'bq-radio',
|
|
@@ -935,40 +1852,201 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
935
1852
|
}]
|
|
936
1853
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
937
1854
|
let BqRadioGroup = class BqRadioGroup {
|
|
1855
|
+
/**
|
|
1856
|
+
* If true, all radio inputs in the group will display a background on hover
|
|
1857
|
+
*/
|
|
1858
|
+
set backgroundOnHover(_) { }
|
|
1859
|
+
;
|
|
1860
|
+
/**
|
|
1861
|
+
* A number representing the delay time (in milliseconds) that `bqChange` event handler gets triggered once the value change
|
|
1862
|
+
*/
|
|
1863
|
+
set debounceTime(_) { }
|
|
1864
|
+
;
|
|
1865
|
+
/**
|
|
1866
|
+
* If true radio inputs are disabled
|
|
1867
|
+
*/
|
|
1868
|
+
set disabled(_) { }
|
|
1869
|
+
;
|
|
1870
|
+
/**
|
|
1871
|
+
* If true displays fieldset
|
|
1872
|
+
*/
|
|
1873
|
+
set fieldset(_) { }
|
|
1874
|
+
;
|
|
1875
|
+
/**
|
|
1876
|
+
* Name of the HTML input form control. Submitted with the form as part of a name/value pair.
|
|
1877
|
+
*/
|
|
1878
|
+
set name(_) { }
|
|
1879
|
+
;
|
|
1880
|
+
/**
|
|
1881
|
+
* The display orientation of the radio inputs
|
|
1882
|
+
*/
|
|
1883
|
+
set orientation(_) { }
|
|
1884
|
+
;
|
|
1885
|
+
/**
|
|
1886
|
+
* If true, the radio group is required
|
|
1887
|
+
*/
|
|
1888
|
+
set required(_) { }
|
|
1889
|
+
;
|
|
1890
|
+
/**
|
|
1891
|
+
* The native form validation message when the radio group is required
|
|
1892
|
+
*/
|
|
1893
|
+
set requiredValidationMessage(_) { }
|
|
1894
|
+
;
|
|
1895
|
+
/**
|
|
1896
|
+
* A string representing the value of the radio.
|
|
1897
|
+
*/
|
|
1898
|
+
set value(_) { }
|
|
1899
|
+
;
|
|
938
1900
|
constructor(c, r, z) {
|
|
939
1901
|
this.z = z;
|
|
940
1902
|
c.detach();
|
|
941
1903
|
this.el = r.nativeElement;
|
|
942
1904
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
943
1905
|
}
|
|
944
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
945
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1906
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1907
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqRadioGroup, selector: "bq-radio-group", inputs: { backgroundOnHover: "backgroundOnHover", debounceTime: "debounceTime", disabled: "disabled", fieldset: "fieldset", name: "name", orientation: "orientation", required: "required", requiredValidationMessage: "requiredValidationMessage", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
946
1908
|
};
|
|
947
1909
|
BqRadioGroup = __decorate([
|
|
948
1910
|
ProxyCmp({
|
|
949
|
-
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', 'name', 'orientation', 'value']
|
|
1911
|
+
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', 'name', 'orientation', 'required', 'requiredValidationMessage', 'value']
|
|
950
1912
|
}),
|
|
951
1913
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
952
1914
|
], BqRadioGroup);
|
|
953
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1915
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqRadioGroup, decorators: [{
|
|
954
1916
|
type: Component,
|
|
955
1917
|
args: [{
|
|
956
1918
|
selector: 'bq-radio-group',
|
|
957
1919
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
958
1920
|
template: '<ng-content></ng-content>',
|
|
959
1921
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
960
|
-
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', 'name', 'orientation', 'value'],
|
|
1922
|
+
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', 'name', 'orientation', 'required', 'requiredValidationMessage', 'value'],
|
|
961
1923
|
}]
|
|
962
1924
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
963
1925
|
let BqSelect = class BqSelect {
|
|
1926
|
+
/**
|
|
1927
|
+
* If true, the Select input will be focused on component render
|
|
1928
|
+
*/
|
|
1929
|
+
set autofocus(_) { }
|
|
1930
|
+
;
|
|
1931
|
+
/**
|
|
1932
|
+
* The clear button aria label
|
|
1933
|
+
*/
|
|
1934
|
+
set clearButtonLabel(_) { }
|
|
1935
|
+
;
|
|
1936
|
+
/**
|
|
1937
|
+
* The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the input value changes.
|
|
1938
|
+
A value of 0 means no debouncing will occur.
|
|
1939
|
+
*/
|
|
1940
|
+
set debounceTime(_) { }
|
|
1941
|
+
;
|
|
1942
|
+
/**
|
|
1943
|
+
* Indicates whether the Select input is disabled or not.
|
|
1944
|
+
If `true`, the Select is disabled and cannot be interacted with.
|
|
1945
|
+
*/
|
|
1946
|
+
set disabled(_) { }
|
|
1947
|
+
;
|
|
1948
|
+
/**
|
|
1949
|
+
* If true, the clear button won't be displayed
|
|
1950
|
+
*/
|
|
1951
|
+
set disableClear(_) { }
|
|
1952
|
+
;
|
|
1953
|
+
/**
|
|
1954
|
+
* Represents the distance (gutter or margin) between the Select panel and the input element.
|
|
1955
|
+
*/
|
|
1956
|
+
set distance(_) { }
|
|
1957
|
+
;
|
|
1958
|
+
/**
|
|
1959
|
+
* The ID of the form that the Select input belongs to.
|
|
1960
|
+
*/
|
|
1961
|
+
set form(_) { }
|
|
1962
|
+
;
|
|
1963
|
+
/**
|
|
1964
|
+
* If true, the Select panel will remain open after a selection is made.
|
|
1965
|
+
*/
|
|
1966
|
+
set keepOpenOnSelect(_) { }
|
|
1967
|
+
;
|
|
1968
|
+
/**
|
|
1969
|
+
* The Select input name.
|
|
1970
|
+
*/
|
|
1971
|
+
set name(_) { }
|
|
1972
|
+
;
|
|
1973
|
+
/**
|
|
1974
|
+
* The maximum number of tags to display when multiple selection is enabled
|
|
1975
|
+
*/
|
|
1976
|
+
set maxTagsVisible(_) { }
|
|
1977
|
+
;
|
|
1978
|
+
/**
|
|
1979
|
+
* If true, the Select input will allow multiple selections.
|
|
1980
|
+
*/
|
|
1981
|
+
set multiple(_) { }
|
|
1982
|
+
;
|
|
1983
|
+
/**
|
|
1984
|
+
* If true, the Select panel will be visible.
|
|
1985
|
+
*/
|
|
1986
|
+
set open(_) { }
|
|
1987
|
+
;
|
|
1988
|
+
/**
|
|
1989
|
+
* When set, it will override the height of the Select panel.
|
|
1990
|
+
*/
|
|
1991
|
+
set panelHeight(_) { }
|
|
1992
|
+
;
|
|
1993
|
+
/**
|
|
1994
|
+
* The Select input placeholder text value
|
|
1995
|
+
*/
|
|
1996
|
+
set placeholder(_) { }
|
|
1997
|
+
;
|
|
1998
|
+
/**
|
|
1999
|
+
* Position of the Select panel
|
|
2000
|
+
*/
|
|
2001
|
+
set placement(_) { }
|
|
2002
|
+
;
|
|
2003
|
+
/**
|
|
2004
|
+
* If true, the list of options cannot be filtered (searching won't be available)
|
|
2005
|
+
*/
|
|
2006
|
+
set readonly(_) { }
|
|
2007
|
+
;
|
|
2008
|
+
/**
|
|
2009
|
+
* Indicates whether or not the Select input is required to be filled out before submitting the form.
|
|
2010
|
+
*/
|
|
2011
|
+
set required(_) { }
|
|
2012
|
+
;
|
|
2013
|
+
/**
|
|
2014
|
+
* Whether the panel should have the Select same width as the input element
|
|
2015
|
+
*/
|
|
2016
|
+
set sameWidth(_) { }
|
|
2017
|
+
;
|
|
2018
|
+
/**
|
|
2019
|
+
* Represents the skidding between the Select panel and the input element.
|
|
2020
|
+
*/
|
|
2021
|
+
set skidding(_) { }
|
|
2022
|
+
;
|
|
2023
|
+
/**
|
|
2024
|
+
* Defines the strategy to position the Select panel
|
|
2025
|
+
*/
|
|
2026
|
+
set strategy(_) { }
|
|
2027
|
+
;
|
|
2028
|
+
/**
|
|
2029
|
+
* The validation status of the Select input. @remarks This property is used to indicate the validation status of the select input. It can be set to one of the following values:
|
|
2030
|
+
- `'none'`: No validation status is set.
|
|
2031
|
+
- `'error'`: The input has a validation error.
|
|
2032
|
+
- `'warning'`: The input has a validation warning.
|
|
2033
|
+
- `'success'`: The input has passed validation.
|
|
2034
|
+
*/
|
|
2035
|
+
set validationStatus(_) { }
|
|
2036
|
+
;
|
|
2037
|
+
/**
|
|
2038
|
+
* The select input value, it can be used to reset the field to a previous value
|
|
2039
|
+
*/
|
|
2040
|
+
set value(_) { }
|
|
2041
|
+
;
|
|
964
2042
|
constructor(c, r, z) {
|
|
965
2043
|
this.z = z;
|
|
966
2044
|
c.detach();
|
|
967
2045
|
this.el = r.nativeElement;
|
|
968
2046
|
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect']);
|
|
969
2047
|
}
|
|
970
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
971
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
2048
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2049
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
972
2050
|
};
|
|
973
2051
|
BqSelect = __decorate([
|
|
974
2052
|
ProxyCmp({
|
|
@@ -977,7 +2055,7 @@ BqSelect = __decorate([
|
|
|
977
2055
|
}),
|
|
978
2056
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
979
2057
|
], BqSelect);
|
|
980
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
2058
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSelect, decorators: [{
|
|
981
2059
|
type: Component,
|
|
982
2060
|
args: [{
|
|
983
2061
|
selector: 'bq-select',
|
|
@@ -988,14 +2066,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
988
2066
|
}]
|
|
989
2067
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
990
2068
|
let BqSideMenu = class BqSideMenu {
|
|
2069
|
+
/**
|
|
2070
|
+
* It sets a predefined appearance of the side menu
|
|
2071
|
+
*/
|
|
2072
|
+
set appearance(_) { }
|
|
2073
|
+
;
|
|
2074
|
+
/**
|
|
2075
|
+
* If true, the container will reduce its width
|
|
2076
|
+
*/
|
|
2077
|
+
set collapse(_) { }
|
|
2078
|
+
;
|
|
2079
|
+
/**
|
|
2080
|
+
* It sets the size of the navigation menu items
|
|
2081
|
+
*/
|
|
2082
|
+
set size(_) { }
|
|
2083
|
+
;
|
|
991
2084
|
constructor(c, r, z) {
|
|
992
2085
|
this.z = z;
|
|
993
2086
|
c.detach();
|
|
994
2087
|
this.el = r.nativeElement;
|
|
995
2088
|
proxyOutputs(this, this.el, ['bqCollapse', 'bqSelect']);
|
|
996
2089
|
}
|
|
997
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
998
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
2090
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSideMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2091
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
999
2092
|
};
|
|
1000
2093
|
BqSideMenu = __decorate([
|
|
1001
2094
|
ProxyCmp({
|
|
@@ -1004,7 +2097,7 @@ BqSideMenu = __decorate([
|
|
|
1004
2097
|
}),
|
|
1005
2098
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1006
2099
|
], BqSideMenu);
|
|
1007
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
2100
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSideMenu, decorators: [{
|
|
1008
2101
|
type: Component,
|
|
1009
2102
|
args: [{
|
|
1010
2103
|
selector: 'bq-side-menu',
|
|
@@ -1015,14 +2108,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1015
2108
|
}]
|
|
1016
2109
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1017
2110
|
let BqSideMenuItem = class BqSideMenuItem {
|
|
2111
|
+
/**
|
|
2112
|
+
* If true, the menu item will be shown as active/selected.
|
|
2113
|
+
*/
|
|
2114
|
+
set active(_) { }
|
|
2115
|
+
;
|
|
2116
|
+
/**
|
|
2117
|
+
* If true, the item label and suffix will be hidden and the with will be reduce according to its parent
|
|
2118
|
+
*/
|
|
2119
|
+
set collapse(_) { }
|
|
2120
|
+
;
|
|
2121
|
+
/**
|
|
2122
|
+
* If true, the menu item will be disabled (no interaction allowed)
|
|
2123
|
+
*/
|
|
2124
|
+
set disabled(_) { }
|
|
2125
|
+
;
|
|
1018
2126
|
constructor(c, r, z) {
|
|
1019
2127
|
this.z = z;
|
|
1020
2128
|
c.detach();
|
|
1021
2129
|
this.el = r.nativeElement;
|
|
1022
2130
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
1023
2131
|
}
|
|
1024
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1025
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
2132
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSideMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2133
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
1026
2134
|
};
|
|
1027
2135
|
BqSideMenuItem = __decorate([
|
|
1028
2136
|
ProxyCmp({
|
|
@@ -1030,7 +2138,7 @@ BqSideMenuItem = __decorate([
|
|
|
1030
2138
|
}),
|
|
1031
2139
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1032
2140
|
], BqSideMenuItem);
|
|
1033
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
2141
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSideMenuItem, decorators: [{
|
|
1034
2142
|
type: Component,
|
|
1035
2143
|
args: [{
|
|
1036
2144
|
selector: 'bq-side-menu-item',
|
|
@@ -1041,39 +2149,118 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1041
2149
|
}]
|
|
1042
2150
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1043
2151
|
let BqSlider = class BqSlider {
|
|
2152
|
+
/**
|
|
2153
|
+
* The amount of time, in milliseconds, to wait to trigger the `bqChange` event after each value change.
|
|
2154
|
+
*/
|
|
2155
|
+
set debounceTime(_) { }
|
|
2156
|
+
;
|
|
2157
|
+
/**
|
|
2158
|
+
* If `true` the slider is disabled.
|
|
2159
|
+
*/
|
|
2160
|
+
set disabled(_) { }
|
|
2161
|
+
;
|
|
2162
|
+
/**
|
|
2163
|
+
* If `true` it will show the value label on a side of the slider track area
|
|
2164
|
+
*/
|
|
2165
|
+
set enableValueIndicator(_) { }
|
|
2166
|
+
;
|
|
2167
|
+
/**
|
|
2168
|
+
* A number representing the amount to remain between the minimum and maximum values (only for range type).
|
|
2169
|
+
*/
|
|
2170
|
+
set gap(_) { }
|
|
2171
|
+
;
|
|
2172
|
+
/**
|
|
2173
|
+
* A number representing the max value of the slider.
|
|
2174
|
+
*/
|
|
2175
|
+
set max(_) { }
|
|
2176
|
+
;
|
|
2177
|
+
/**
|
|
2178
|
+
* A number representing the min value of the slider.
|
|
2179
|
+
*/
|
|
2180
|
+
set min(_) { }
|
|
2181
|
+
;
|
|
2182
|
+
/**
|
|
2183
|
+
* Name of the form control. Submitted with the form as part of a name/value pair
|
|
2184
|
+
*/
|
|
2185
|
+
set name(_) { }
|
|
2186
|
+
;
|
|
2187
|
+
/**
|
|
2188
|
+
* A number representing the step of the slider.
|
|
2189
|
+
⚠️ Please notice that the value (or list of values if the slider type is `range`) will be rounded to the nearest multiple of `step`.
|
|
2190
|
+
*/
|
|
2191
|
+
set step(_) { }
|
|
2192
|
+
;
|
|
2193
|
+
/**
|
|
2194
|
+
* It defines the type of slider to display
|
|
2195
|
+
*/
|
|
2196
|
+
set type(_) { }
|
|
2197
|
+
;
|
|
2198
|
+
/**
|
|
2199
|
+
* The value of the slider.
|
|
2200
|
+
- If the slider type is `single`, the value is a number.
|
|
2201
|
+
- If the slider type is `range`, the value is an array of two numbers (the first number represents the `min` value and the second number represents the `max` value).
|
|
2202
|
+
*/
|
|
2203
|
+
set value(_) { }
|
|
2204
|
+
;
|
|
2205
|
+
/**
|
|
2206
|
+
* If `true`, a tooltip will be shown displaying the progress value
|
|
2207
|
+
*/
|
|
2208
|
+
set enableTooltip(_) { }
|
|
2209
|
+
;
|
|
2210
|
+
/**
|
|
2211
|
+
* If `true`, a tooltip will always display the progress value.
|
|
2212
|
+
It relies on enableTooltip and if enableTooltip is false, tooltipAlwaysVisible cannot be true.
|
|
2213
|
+
*/
|
|
2214
|
+
set tooltipAlwaysVisible(_) { }
|
|
2215
|
+
;
|
|
1044
2216
|
constructor(c, r, z) {
|
|
1045
2217
|
this.z = z;
|
|
1046
2218
|
c.detach();
|
|
1047
2219
|
this.el = r.nativeElement;
|
|
1048
2220
|
proxyOutputs(this, this.el, ['bqChange', 'bqBlur', 'bqFocus']);
|
|
1049
2221
|
}
|
|
1050
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1051
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
2222
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2223
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqSlider, selector: "bq-slider", inputs: { debounceTime: "debounceTime", disabled: "disabled", enableTooltip: "enableTooltip", enableValueIndicator: "enableValueIndicator", gap: "gap", max: "max", min: "min", name: "name", step: "step", tooltipAlwaysVisible: "tooltipAlwaysVisible", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1052
2224
|
};
|
|
1053
2225
|
BqSlider = __decorate([
|
|
1054
2226
|
ProxyCmp({
|
|
1055
|
-
inputs: ['debounceTime', 'disabled', 'enableTooltip', 'enableValueIndicator', 'gap', 'max', 'min', 'step', 'tooltipAlwaysVisible', 'type', 'value']
|
|
2227
|
+
inputs: ['debounceTime', 'disabled', 'enableTooltip', 'enableValueIndicator', 'gap', 'max', 'min', 'name', 'step', 'tooltipAlwaysVisible', 'type', 'value']
|
|
1056
2228
|
}),
|
|
1057
2229
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1058
2230
|
], BqSlider);
|
|
1059
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
2231
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSlider, decorators: [{
|
|
1060
2232
|
type: Component,
|
|
1061
2233
|
args: [{
|
|
1062
2234
|
selector: 'bq-slider',
|
|
1063
2235
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1064
2236
|
template: '<ng-content></ng-content>',
|
|
1065
2237
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1066
|
-
inputs: ['debounceTime', 'disabled', 'enableTooltip', 'enableValueIndicator', 'gap', 'max', 'min', 'step', 'tooltipAlwaysVisible', 'type', 'value'],
|
|
2238
|
+
inputs: ['debounceTime', 'disabled', 'enableTooltip', 'enableValueIndicator', 'gap', 'max', 'min', 'name', 'step', 'tooltipAlwaysVisible', 'type', 'value'],
|
|
1067
2239
|
}]
|
|
1068
2240
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1069
2241
|
let BqSpinner = class BqSpinner {
|
|
2242
|
+
/**
|
|
2243
|
+
* If `false`, the animation on the icon element will be stopped
|
|
2244
|
+
*/
|
|
2245
|
+
set animation(_) { }
|
|
2246
|
+
;
|
|
2247
|
+
/**
|
|
2248
|
+
* It defines the position of the label text
|
|
2249
|
+
*/
|
|
2250
|
+
set textPosition(_) { }
|
|
2251
|
+
;
|
|
2252
|
+
/**
|
|
2253
|
+
* It defines the size of the icon element displayed
|
|
2254
|
+
*/
|
|
2255
|
+
set size(_) { }
|
|
2256
|
+
;
|
|
1070
2257
|
constructor(c, r, z) {
|
|
1071
2258
|
this.z = z;
|
|
1072
2259
|
c.detach();
|
|
1073
2260
|
this.el = r.nativeElement;
|
|
1074
2261
|
}
|
|
1075
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1076
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
2262
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2263
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
1077
2264
|
};
|
|
1078
2265
|
BqSpinner = __decorate([
|
|
1079
2266
|
ProxyCmp({
|
|
@@ -1081,7 +2268,7 @@ BqSpinner = __decorate([
|
|
|
1081
2268
|
}),
|
|
1082
2269
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1083
2270
|
], BqSpinner);
|
|
1084
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
2271
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSpinner, decorators: [{
|
|
1085
2272
|
type: Component,
|
|
1086
2273
|
args: [{
|
|
1087
2274
|
selector: 'bq-spinner',
|
|
@@ -1092,13 +2279,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1092
2279
|
}]
|
|
1093
2280
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1094
2281
|
let BqStatus = class BqStatus {
|
|
2282
|
+
/**
|
|
2283
|
+
* It defines the type of status to display
|
|
2284
|
+
*/
|
|
2285
|
+
set type(_) { }
|
|
2286
|
+
;
|
|
1095
2287
|
constructor(c, r, z) {
|
|
1096
2288
|
this.z = z;
|
|
1097
2289
|
c.detach();
|
|
1098
2290
|
this.el = r.nativeElement;
|
|
1099
2291
|
}
|
|
1100
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1101
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
2292
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2293
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqStatus, selector: "bq-status", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1102
2294
|
};
|
|
1103
2295
|
BqStatus = __decorate([
|
|
1104
2296
|
ProxyCmp({
|
|
@@ -1106,7 +2298,7 @@ BqStatus = __decorate([
|
|
|
1106
2298
|
}),
|
|
1107
2299
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1108
2300
|
], BqStatus);
|
|
1109
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
2301
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqStatus, decorators: [{
|
|
1110
2302
|
type: Component,
|
|
1111
2303
|
args: [{
|
|
1112
2304
|
selector: 'bq-status',
|
|
@@ -1117,14 +2309,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1117
2309
|
}]
|
|
1118
2310
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1119
2311
|
let BqStepItem = class BqStepItem {
|
|
2312
|
+
/**
|
|
2313
|
+
* It defines prefix size
|
|
2314
|
+
*/
|
|
2315
|
+
set size(_) { }
|
|
2316
|
+
;
|
|
2317
|
+
/**
|
|
2318
|
+
* It defines step item appearance based on its status
|
|
2319
|
+
*/
|
|
2320
|
+
set status(_) { }
|
|
2321
|
+
;
|
|
2322
|
+
/**
|
|
2323
|
+
* It defines the step item type used
|
|
2324
|
+
*/
|
|
2325
|
+
set type(_) { }
|
|
2326
|
+
;
|
|
1120
2327
|
constructor(c, r, z) {
|
|
1121
2328
|
this.z = z;
|
|
1122
2329
|
c.detach();
|
|
1123
2330
|
this.el = r.nativeElement;
|
|
1124
2331
|
proxyOutputs(this, this.el, ['bqClick']);
|
|
1125
2332
|
}
|
|
1126
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1127
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
2333
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqStepItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2334
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
1128
2335
|
};
|
|
1129
2336
|
BqStepItem = __decorate([
|
|
1130
2337
|
ProxyCmp({
|
|
@@ -1132,7 +2339,7 @@ BqStepItem = __decorate([
|
|
|
1132
2339
|
}),
|
|
1133
2340
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1134
2341
|
], BqStepItem);
|
|
1135
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
2342
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqStepItem, decorators: [{
|
|
1136
2343
|
type: Component,
|
|
1137
2344
|
args: [{
|
|
1138
2345
|
selector: 'bq-step-item',
|
|
@@ -1143,13 +2350,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1143
2350
|
}]
|
|
1144
2351
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1145
2352
|
let BqSteps = class BqSteps {
|
|
2353
|
+
/**
|
|
2354
|
+
* The color of the line that connects the steps. It should be a valid declarative color token.
|
|
2355
|
+
*/
|
|
2356
|
+
set dividerColor(_) { }
|
|
2357
|
+
;
|
|
2358
|
+
/**
|
|
2359
|
+
* The size of the steps
|
|
2360
|
+
*/
|
|
2361
|
+
set size(_) { }
|
|
2362
|
+
;
|
|
2363
|
+
/**
|
|
2364
|
+
* The type of prefix element to use on the step items
|
|
2365
|
+
*/
|
|
2366
|
+
set type(_) { }
|
|
2367
|
+
;
|
|
1146
2368
|
constructor(c, r, z) {
|
|
1147
2369
|
this.z = z;
|
|
1148
2370
|
c.detach();
|
|
1149
2371
|
this.el = r.nativeElement;
|
|
1150
2372
|
}
|
|
1151
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1152
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
2373
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2374
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
1153
2375
|
};
|
|
1154
2376
|
BqSteps = __decorate([
|
|
1155
2377
|
ProxyCmp({
|
|
@@ -1157,7 +2379,7 @@ BqSteps = __decorate([
|
|
|
1157
2379
|
}),
|
|
1158
2380
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1159
2381
|
], BqSteps);
|
|
1160
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
2382
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSteps, decorators: [{
|
|
1161
2383
|
type: Component,
|
|
1162
2384
|
args: [{
|
|
1163
2385
|
selector: 'bq-steps',
|
|
@@ -1168,50 +2390,141 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1168
2390
|
}]
|
|
1169
2391
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1170
2392
|
let BqSwitch = class BqSwitch {
|
|
2393
|
+
/**
|
|
2394
|
+
* If true, a background will be displayed on hover
|
|
2395
|
+
*/
|
|
2396
|
+
set backgroundOnHover(_) { }
|
|
2397
|
+
;
|
|
2398
|
+
/**
|
|
2399
|
+
* It indicates whether if the switch is `ON` by default (when the page loads)
|
|
2400
|
+
*/
|
|
2401
|
+
set checked(_) { }
|
|
2402
|
+
;
|
|
2403
|
+
/**
|
|
2404
|
+
* If true, the switch control will be disabled and no interaction will be allowed
|
|
2405
|
+
*/
|
|
2406
|
+
set disabled(_) { }
|
|
2407
|
+
;
|
|
2408
|
+
/**
|
|
2409
|
+
* The native form validation message
|
|
2410
|
+
*/
|
|
2411
|
+
set formValidationMessage(_) { }
|
|
2412
|
+
;
|
|
2413
|
+
/**
|
|
2414
|
+
* If true, the component will take the full width space available on the parent container
|
|
2415
|
+
*/
|
|
2416
|
+
set fullWidth(_) { }
|
|
2417
|
+
;
|
|
2418
|
+
/**
|
|
2419
|
+
* It indicates how to to display the on/off marks inside the control, with icons or none (default)
|
|
2420
|
+
*/
|
|
2421
|
+
set innerLabel(_) { }
|
|
2422
|
+
;
|
|
2423
|
+
/**
|
|
2424
|
+
* It defines how to distribute the space between and around the control and the label text
|
|
2425
|
+
(https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content)
|
|
2426
|
+
*/
|
|
2427
|
+
set justifyContent(_) { }
|
|
2428
|
+
;
|
|
2429
|
+
/**
|
|
2430
|
+
* Name of the form control. Submitted with the form as part of a name/value pair
|
|
2431
|
+
*/
|
|
2432
|
+
set name(_) { }
|
|
2433
|
+
;
|
|
2434
|
+
/**
|
|
2435
|
+
* If `true`, it will indicate that the user must switch `ON` the element before the owning form can be submitted
|
|
2436
|
+
*/
|
|
2437
|
+
set required(_) { }
|
|
2438
|
+
;
|
|
2439
|
+
/**
|
|
2440
|
+
* If true, the order of the control and the label text will be changed
|
|
2441
|
+
*/
|
|
2442
|
+
set reverseOrder(_) { }
|
|
2443
|
+
;
|
|
2444
|
+
/**
|
|
2445
|
+
* The input control's value, submitted as a name/value pair with form data.
|
|
2446
|
+
*/
|
|
2447
|
+
set value(_) { }
|
|
2448
|
+
;
|
|
1171
2449
|
constructor(c, r, z) {
|
|
1172
2450
|
this.z = z;
|
|
1173
2451
|
c.detach();
|
|
1174
2452
|
this.el = r.nativeElement;
|
|
1175
2453
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
1176
2454
|
}
|
|
1177
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1178
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
2455
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2456
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqSwitch, selector: "bq-switch", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formValidationMessage: "formValidationMessage", fullWidth: "fullWidth", innerLabel: "innerLabel", justifyContent: "justifyContent", name: "name", required: "required", reverseOrder: "reverseOrder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1179
2457
|
};
|
|
1180
2458
|
BqSwitch = __decorate([
|
|
1181
2459
|
ProxyCmp({
|
|
1182
|
-
inputs: ['backgroundOnHover', 'checked', 'disabled', 'fullWidth', 'innerLabel', 'justifyContent', 'name', 'required', 'reverseOrder', 'value'],
|
|
2460
|
+
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formValidationMessage', 'fullWidth', 'innerLabel', 'justifyContent', 'name', 'required', 'reverseOrder', 'value'],
|
|
1183
2461
|
methods: ['vClick', 'vFocus', 'vBlur']
|
|
1184
2462
|
}),
|
|
1185
2463
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1186
2464
|
], BqSwitch);
|
|
1187
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
2465
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSwitch, decorators: [{
|
|
1188
2466
|
type: Component,
|
|
1189
2467
|
args: [{
|
|
1190
2468
|
selector: 'bq-switch',
|
|
1191
2469
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1192
2470
|
template: '<ng-content></ng-content>',
|
|
1193
2471
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1194
|
-
inputs: ['backgroundOnHover', 'checked', 'disabled', 'fullWidth', 'innerLabel', 'justifyContent', 'name', 'required', 'reverseOrder', 'value'],
|
|
2472
|
+
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formValidationMessage', 'fullWidth', 'innerLabel', 'justifyContent', 'name', 'required', 'reverseOrder', 'value'],
|
|
1195
2473
|
}]
|
|
1196
2474
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1197
2475
|
let BqTab = class BqTab {
|
|
2476
|
+
/**
|
|
2477
|
+
* If true tab is active
|
|
2478
|
+
*/
|
|
2479
|
+
set active(_) { }
|
|
2480
|
+
;
|
|
2481
|
+
/**
|
|
2482
|
+
* The tab panel id that the tab controls
|
|
2483
|
+
*/
|
|
2484
|
+
set controls(_) { }
|
|
2485
|
+
;
|
|
2486
|
+
/**
|
|
2487
|
+
* If true tab is disabled
|
|
2488
|
+
*/
|
|
2489
|
+
set disabled(_) { }
|
|
2490
|
+
;
|
|
2491
|
+
/**
|
|
2492
|
+
* The direction that tab should be render
|
|
2493
|
+
*/
|
|
2494
|
+
set orientation(_) { }
|
|
2495
|
+
;
|
|
2496
|
+
/**
|
|
2497
|
+
* The placement that tab should be render
|
|
2498
|
+
*/
|
|
2499
|
+
set placement(_) { }
|
|
2500
|
+
;
|
|
2501
|
+
/**
|
|
2502
|
+
* The size of the tab
|
|
2503
|
+
*/
|
|
2504
|
+
set size(_) { }
|
|
2505
|
+
;
|
|
2506
|
+
/**
|
|
2507
|
+
* The id of the tab
|
|
2508
|
+
*/
|
|
2509
|
+
set tabId(_) { }
|
|
2510
|
+
;
|
|
1198
2511
|
constructor(c, r, z) {
|
|
1199
2512
|
this.z = z;
|
|
1200
2513
|
c.detach();
|
|
1201
2514
|
this.el = r.nativeElement;
|
|
1202
2515
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
1203
2516
|
}
|
|
1204
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1205
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
2517
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2518
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqTab, selector: "bq-tab", inputs: { active: "active", controls: "controls", disabled: "disabled", orientation: "orientation", placement: "placement", size: "size", tabId: "tabId" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1206
2519
|
};
|
|
1207
2520
|
BqTab = __decorate([
|
|
1208
2521
|
ProxyCmp({
|
|
1209
2522
|
inputs: ['active', 'controls', 'disabled', 'orientation', 'placement', 'size', 'tabId'],
|
|
1210
|
-
methods: ['vClick', 'vFocus', 'vBlur'
|
|
2523
|
+
methods: ['vClick', 'vFocus', 'vBlur']
|
|
1211
2524
|
}),
|
|
1212
2525
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1213
2526
|
], BqTab);
|
|
1214
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
2527
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTab, decorators: [{
|
|
1215
2528
|
type: Component,
|
|
1216
2529
|
args: [{
|
|
1217
2530
|
selector: 'bq-tab',
|
|
@@ -1222,14 +2535,44 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1222
2535
|
}]
|
|
1223
2536
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1224
2537
|
let BqTabGroup = class BqTabGroup {
|
|
2538
|
+
/**
|
|
2539
|
+
* A number representing the delay value applied to bqChange event handler
|
|
2540
|
+
*/
|
|
2541
|
+
set debounceTime(_) { }
|
|
2542
|
+
;
|
|
2543
|
+
/**
|
|
2544
|
+
* If true, the underline divider below the tabs won't be shown
|
|
2545
|
+
*/
|
|
2546
|
+
set disableDivider(_) { }
|
|
2547
|
+
;
|
|
2548
|
+
/**
|
|
2549
|
+
* The direction that tab should be render
|
|
2550
|
+
*/
|
|
2551
|
+
set orientation(_) { }
|
|
2552
|
+
;
|
|
2553
|
+
/**
|
|
2554
|
+
* The placement that tab should be render
|
|
2555
|
+
*/
|
|
2556
|
+
set placement(_) { }
|
|
2557
|
+
;
|
|
2558
|
+
/**
|
|
2559
|
+
* The size of the tab
|
|
2560
|
+
*/
|
|
2561
|
+
set size(_) { }
|
|
2562
|
+
;
|
|
2563
|
+
/**
|
|
2564
|
+
* A string representing the id of the selected tab.
|
|
2565
|
+
*/
|
|
2566
|
+
set value(_) { }
|
|
2567
|
+
;
|
|
1225
2568
|
constructor(c, r, z) {
|
|
1226
2569
|
this.z = z;
|
|
1227
2570
|
c.detach();
|
|
1228
2571
|
this.el = r.nativeElement;
|
|
1229
2572
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
1230
2573
|
}
|
|
1231
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1232
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
2574
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2575
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqTabGroup, selector: "bq-tab-group", inputs: { debounceTime: "debounceTime", disableDivider: "disableDivider", orientation: "orientation", placement: "placement", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1233
2576
|
};
|
|
1234
2577
|
BqTabGroup = __decorate([
|
|
1235
2578
|
ProxyCmp({
|
|
@@ -1237,7 +2580,7 @@ BqTabGroup = __decorate([
|
|
|
1237
2580
|
}),
|
|
1238
2581
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1239
2582
|
], BqTabGroup);
|
|
1240
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
2583
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTabGroup, decorators: [{
|
|
1241
2584
|
type: Component,
|
|
1242
2585
|
args: [{
|
|
1243
2586
|
selector: 'bq-tab-group',
|
|
@@ -1248,14 +2591,59 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1248
2591
|
}]
|
|
1249
2592
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1250
2593
|
let BqTag = class BqTag {
|
|
2594
|
+
/**
|
|
2595
|
+
* The corner radius of the Tag (will override size's predefined border)
|
|
2596
|
+
*/
|
|
2597
|
+
set border(_) { }
|
|
2598
|
+
;
|
|
2599
|
+
/**
|
|
2600
|
+
* If true, the Tag can be clickable
|
|
2601
|
+
*/
|
|
2602
|
+
set clickable(_) { }
|
|
2603
|
+
;
|
|
2604
|
+
/**
|
|
2605
|
+
* The color style of the Tag
|
|
2606
|
+
*/
|
|
2607
|
+
set color(_) { }
|
|
2608
|
+
;
|
|
2609
|
+
/**
|
|
2610
|
+
* If true, the Tag will be disabled (only if clickable = `true`, no interaction allowed)
|
|
2611
|
+
*/
|
|
2612
|
+
set disabled(_) { }
|
|
2613
|
+
;
|
|
2614
|
+
/**
|
|
2615
|
+
* If true, the Tag component will hidden (only if removable = `true`)
|
|
2616
|
+
*/
|
|
2617
|
+
set hidden(_) { }
|
|
2618
|
+
;
|
|
2619
|
+
/**
|
|
2620
|
+
* If true, the Tag component can be removed
|
|
2621
|
+
*/
|
|
2622
|
+
set removable(_) { }
|
|
2623
|
+
;
|
|
2624
|
+
/**
|
|
2625
|
+
* If true, the Tag is selected (only if clickable = `true`)
|
|
2626
|
+
*/
|
|
2627
|
+
set selected(_) { }
|
|
2628
|
+
;
|
|
2629
|
+
/**
|
|
2630
|
+
* The size of the Tag component
|
|
2631
|
+
*/
|
|
2632
|
+
set size(_) { }
|
|
2633
|
+
;
|
|
2634
|
+
/**
|
|
2635
|
+
* The variant of Tag to apply on top of the variant
|
|
2636
|
+
*/
|
|
2637
|
+
set variant(_) { }
|
|
2638
|
+
;
|
|
1251
2639
|
constructor(c, r, z) {
|
|
1252
2640
|
this.z = z;
|
|
1253
2641
|
c.detach();
|
|
1254
2642
|
this.el = r.nativeElement;
|
|
1255
2643
|
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus']);
|
|
1256
2644
|
}
|
|
1257
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1258
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
2645
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2646
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
1259
2647
|
};
|
|
1260
2648
|
BqTag = __decorate([
|
|
1261
2649
|
ProxyCmp({
|
|
@@ -1264,7 +2652,7 @@ BqTag = __decorate([
|
|
|
1264
2652
|
}),
|
|
1265
2653
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1266
2654
|
], BqTag);
|
|
1267
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
2655
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTag, decorators: [{
|
|
1268
2656
|
type: Component,
|
|
1269
2657
|
args: [{
|
|
1270
2658
|
selector: 'bq-tag',
|
|
@@ -1275,40 +2663,181 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1275
2663
|
}]
|
|
1276
2664
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1277
2665
|
let BqTextarea = class BqTextarea {
|
|
2666
|
+
/**
|
|
2667
|
+
* Controls whether or not the textarea field should be capitalized and how.
|
|
2668
|
+
Possible values are 'off', 'none', 'on', 'sentences', 'words', and 'characters'.
|
|
2669
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize
|
|
2670
|
+
*/
|
|
2671
|
+
set autocapitalize(_) { }
|
|
2672
|
+
;
|
|
2673
|
+
/**
|
|
2674
|
+
* Specifies whether or not the textarea field should have autocomplete enabled.
|
|
2675
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values
|
|
2676
|
+
*/
|
|
2677
|
+
set autocomplete(_) { }
|
|
2678
|
+
;
|
|
2679
|
+
/**
|
|
2680
|
+
* Controls whether or not the textarea field should have autocorrect enabled.
|
|
2681
|
+
Possible values are 'on' and 'off'.
|
|
2682
|
+
*/
|
|
2683
|
+
set autocorrect(_) { }
|
|
2684
|
+
;
|
|
2685
|
+
/**
|
|
2686
|
+
* If true, the textarea will be focused on component render
|
|
2687
|
+
*/
|
|
2688
|
+
set autofocus(_) { }
|
|
2689
|
+
;
|
|
2690
|
+
/**
|
|
2691
|
+
* If `true`, the textarea will automatically grow and shrink to fit its contents.
|
|
2692
|
+
If `false`, the textarea will have a fixed height specified by the `rows` property.
|
|
2693
|
+
*/
|
|
2694
|
+
set autoGrow(_) { }
|
|
2695
|
+
;
|
|
2696
|
+
/**
|
|
2697
|
+
* The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the textarea value changes.
|
|
2698
|
+
A value of 0 means no debouncing will occur.
|
|
2699
|
+
*/
|
|
2700
|
+
set debounceTime(_) { }
|
|
2701
|
+
;
|
|
2702
|
+
/**
|
|
2703
|
+
* If `true`, the user cannot interact with the textarea.
|
|
2704
|
+
*/
|
|
2705
|
+
set disabled(_) { }
|
|
2706
|
+
;
|
|
2707
|
+
/**
|
|
2708
|
+
* If `true`, it will block the user's ability to resize the textarea.
|
|
2709
|
+
*/
|
|
2710
|
+
set disableResize(_) { }
|
|
2711
|
+
;
|
|
2712
|
+
/**
|
|
2713
|
+
* The ID of the form that the textarea field belongs to.
|
|
2714
|
+
*/
|
|
2715
|
+
set form(_) { }
|
|
2716
|
+
;
|
|
2717
|
+
/**
|
|
2718
|
+
* The native form validation message
|
|
2719
|
+
*/
|
|
2720
|
+
set formValidationMessage(_) { }
|
|
2721
|
+
;
|
|
2722
|
+
/**
|
|
2723
|
+
* The maximum number of characters that can be entered into the textarea (`0`: no limit).
|
|
2724
|
+
When enabled, a character counter will be shown underneath the textarea.
|
|
2725
|
+
*/
|
|
2726
|
+
set maxlength(_) { }
|
|
2727
|
+
;
|
|
2728
|
+
/**
|
|
2729
|
+
* The name of the textarea element.
|
|
2730
|
+
*/
|
|
2731
|
+
set name(_) { }
|
|
2732
|
+
;
|
|
2733
|
+
/**
|
|
2734
|
+
* The placeholder text to show when there is no value.
|
|
2735
|
+
*/
|
|
2736
|
+
set placeholder(_) { }
|
|
2737
|
+
;
|
|
2738
|
+
/**
|
|
2739
|
+
* If true, the textarea field cannot be modified.
|
|
2740
|
+
*/
|
|
2741
|
+
set readonly(_) { }
|
|
2742
|
+
;
|
|
2743
|
+
/**
|
|
2744
|
+
* Indicates whether or not the textarea field is required to be filled out before submitting the form.
|
|
2745
|
+
*/
|
|
2746
|
+
set required(_) { }
|
|
2747
|
+
;
|
|
2748
|
+
/**
|
|
2749
|
+
* The number of visible text lines for the control. It must be a positive integer.
|
|
2750
|
+
*/
|
|
2751
|
+
set rows(_) { }
|
|
2752
|
+
;
|
|
2753
|
+
/**
|
|
2754
|
+
* If true, the textarea content may be checked for spelling errors.
|
|
2755
|
+
*/
|
|
2756
|
+
set spellcheck(_) { }
|
|
2757
|
+
;
|
|
2758
|
+
/**
|
|
2759
|
+
* The validation status of the textarea. @remarks This property is used to indicate the validation status of the textarea. It can be set to one of the following values:
|
|
2760
|
+
- `'none'`: No validation status is set.
|
|
2761
|
+
- `'error'`: The textarea has a validation error.
|
|
2762
|
+
- `'warning'`: The textarea has a validation warning.
|
|
2763
|
+
- `'success'`: The textarea has passed validation.
|
|
2764
|
+
*/
|
|
2765
|
+
set validationStatus(_) { }
|
|
2766
|
+
;
|
|
2767
|
+
/**
|
|
2768
|
+
* The value of the textarea. It can be used to reset the textarea to a previous value.
|
|
2769
|
+
*/
|
|
2770
|
+
set value(_) { }
|
|
2771
|
+
;
|
|
2772
|
+
/**
|
|
2773
|
+
* Specifies how the text in a text area is to be wrapped when submitted in a form
|
|
2774
|
+
*/
|
|
2775
|
+
set wrap(_) { }
|
|
2776
|
+
;
|
|
1278
2777
|
constructor(c, r, z) {
|
|
1279
2778
|
this.z = z;
|
|
1280
2779
|
c.detach();
|
|
1281
2780
|
this.el = r.nativeElement;
|
|
1282
2781
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
1283
2782
|
}
|
|
1284
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1285
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
2783
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2784
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqTextarea, selector: "bq-textarea", inputs: { autoGrow: "autoGrow", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", debounceTime: "debounceTime", disableResize: "disableResize", disabled: "disabled", form: "form", formValidationMessage: "formValidationMessage", maxlength: "maxlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", spellcheck: "spellcheck", validationStatus: "validationStatus", value: "value", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1286
2785
|
};
|
|
1287
2786
|
BqTextarea = __decorate([
|
|
1288
2787
|
ProxyCmp({
|
|
1289
|
-
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap']
|
|
2788
|
+
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'formValidationMessage', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap']
|
|
1290
2789
|
}),
|
|
1291
2790
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1292
2791
|
], BqTextarea);
|
|
1293
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
2792
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTextarea, decorators: [{
|
|
1294
2793
|
type: Component,
|
|
1295
2794
|
args: [{
|
|
1296
2795
|
selector: 'bq-textarea',
|
|
1297
2796
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1298
2797
|
template: '<ng-content></ng-content>',
|
|
1299
2798
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1300
|
-
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap'],
|
|
2799
|
+
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'formValidationMessage', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap'],
|
|
1301
2800
|
}]
|
|
1302
2801
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1303
2802
|
let BqToast = class BqToast {
|
|
2803
|
+
/**
|
|
2804
|
+
* The corder radius of the toast component
|
|
2805
|
+
*/
|
|
2806
|
+
set border(_) { }
|
|
2807
|
+
;
|
|
2808
|
+
/**
|
|
2809
|
+
* Type of toast
|
|
2810
|
+
*/
|
|
2811
|
+
set type(_) { }
|
|
2812
|
+
;
|
|
2813
|
+
/**
|
|
2814
|
+
* Placement of toast
|
|
2815
|
+
*/
|
|
2816
|
+
set placement(_) { }
|
|
2817
|
+
;
|
|
2818
|
+
/**
|
|
2819
|
+
* If true will hide toast icon
|
|
2820
|
+
*/
|
|
2821
|
+
set hideIcon(_) { }
|
|
2822
|
+
;
|
|
2823
|
+
/**
|
|
2824
|
+
* If true, the toast will be shown
|
|
2825
|
+
*/
|
|
2826
|
+
set open(_) { }
|
|
2827
|
+
;
|
|
2828
|
+
/**
|
|
2829
|
+
* The length of time, in milliseconds, after which the toast will close itself
|
|
2830
|
+
*/
|
|
2831
|
+
set time(_) { }
|
|
2832
|
+
;
|
|
1304
2833
|
constructor(c, r, z) {
|
|
1305
2834
|
this.z = z;
|
|
1306
2835
|
c.detach();
|
|
1307
2836
|
this.el = r.nativeElement;
|
|
1308
2837
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow']);
|
|
1309
2838
|
}
|
|
1310
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1311
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
2839
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2840
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
1312
2841
|
};
|
|
1313
2842
|
BqToast = __decorate([
|
|
1314
2843
|
ProxyCmp({
|
|
@@ -1317,7 +2846,7 @@ BqToast = __decorate([
|
|
|
1317
2846
|
}),
|
|
1318
2847
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1319
2848
|
], BqToast);
|
|
1320
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
2849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqToast, decorators: [{
|
|
1321
2850
|
type: Component,
|
|
1322
2851
|
args: [{
|
|
1323
2852
|
selector: 'bq-toast',
|
|
@@ -1328,13 +2857,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImpor
|
|
|
1328
2857
|
}]
|
|
1329
2858
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1330
2859
|
let BqTooltip = class BqTooltip {
|
|
2860
|
+
/**
|
|
2861
|
+
* If true, the tooltip will always be visible
|
|
2862
|
+
*/
|
|
2863
|
+
set alwaysVisible(_) { }
|
|
2864
|
+
;
|
|
2865
|
+
/**
|
|
2866
|
+
* Distance between trigger element and tooltip
|
|
2867
|
+
*/
|
|
2868
|
+
set distance(_) { }
|
|
2869
|
+
;
|
|
2870
|
+
/**
|
|
2871
|
+
* If true, the arrow on the tooltip content won't be shown
|
|
2872
|
+
*/
|
|
2873
|
+
set hideArrow(_) { }
|
|
2874
|
+
;
|
|
2875
|
+
set placement(_) { }
|
|
2876
|
+
;
|
|
2877
|
+
/**
|
|
2878
|
+
* Whether the tooltip should have the same width as the trigger element
|
|
2879
|
+
(applicable only for content shorter than the trigger element)
|
|
2880
|
+
*/
|
|
2881
|
+
set sameWidth(_) { }
|
|
2882
|
+
;
|
|
2883
|
+
/**
|
|
2884
|
+
* Set the action when the tooltip should be displayed, on hover (default) or click
|
|
2885
|
+
*/
|
|
2886
|
+
set displayOn(_) { }
|
|
2887
|
+
;
|
|
2888
|
+
/**
|
|
2889
|
+
* Indicates whether or not the tooltip is visible when the component is first rendered,
|
|
2890
|
+
and when interacting with the trigger
|
|
2891
|
+
*/
|
|
2892
|
+
set visible(_) { }
|
|
2893
|
+
;
|
|
1331
2894
|
constructor(c, r, z) {
|
|
1332
2895
|
this.z = z;
|
|
1333
2896
|
c.detach();
|
|
1334
2897
|
this.el = r.nativeElement;
|
|
1335
2898
|
}
|
|
1336
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1337
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
2899
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2900
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
1338
2901
|
};
|
|
1339
2902
|
BqTooltip = __decorate([
|
|
1340
2903
|
ProxyCmp({
|
|
@@ -1343,7 +2906,7 @@ BqTooltip = __decorate([
|
|
|
1343
2906
|
}),
|
|
1344
2907
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1345
2908
|
], BqTooltip);
|
|
1346
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
2909
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTooltip, decorators: [{
|
|
1347
2910
|
type: Component,
|
|
1348
2911
|
args: [{
|
|
1349
2912
|
selector: 'bq-tooltip',
|
|
@@ -1422,8 +2985,8 @@ class BeeQModule {
|
|
|
1422
2985
|
],
|
|
1423
2986
|
};
|
|
1424
2987
|
}
|
|
1425
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1426
|
-
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.
|
|
2988
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BeeQModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2989
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: BeeQModule, declarations: [BqAccordion, BqAccordionGroup, BqAlert, BqAvatar, BqBadge, BqBreadcrumb, BqBreadcrumbItem, BqButton, BqCard, BqCheckbox, BqDatePicker, BqDialog, BqDivider, BqDrawer, BqDropdown, BqEmptyState, BqIcon, BqInput, BqNotification, BqOption, BqOptionGroup, BqOptionList, BqPageTitle, BqPanel, BqProgress, BqRadio, BqRadioGroup, BqSelect, BqSideMenu, BqSideMenuItem, BqSlider, BqSpinner, BqStatus, BqStepItem, BqSteps, BqSwitch, BqTab, BqTabGroup, BqTag, BqTextarea, BqToast, BqTooltip,
|
|
1427
2990
|
// ngModel Accessors
|
|
1428
2991
|
BooleanValueAccessor,
|
|
1429
2992
|
NumericValueAccessor,
|
|
@@ -1436,9 +2999,9 @@ class BeeQModule {
|
|
|
1436
2999
|
RadioValueAccessor,
|
|
1437
3000
|
SelectValueAccessor,
|
|
1438
3001
|
TextValueAccessor] }); }
|
|
1439
|
-
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.
|
|
3002
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BeeQModule, imports: [CommonModule] }); }
|
|
1440
3003
|
}
|
|
1441
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
3004
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BeeQModule, decorators: [{
|
|
1442
3005
|
type: NgModule,
|
|
1443
3006
|
args: [{
|
|
1444
3007
|
imports: [CommonModule],
|