@beeq/angular 1.8.0-beta.0 → 1.8.0-beta.10
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 +4 -4
- package/esm2022/beeq.module.mjs +4 -4
- package/esm2022/directives/boolean-value-accessor.mjs +3 -3
- package/esm2022/directives/components.mjs +128 -128
- package/esm2022/directives/number-value-accessor.mjs +3 -3
- package/esm2022/directives/radio-value-accessor.mjs +3 -3
- package/esm2022/directives/select-value-accessor.mjs +3 -3
- package/esm2022/directives/text-value-accessor.mjs +3 -3
- package/esm2022/directives/value-accessor.mjs +3 -3
- package/esm2022/standalone/directives/boolean-value-accessor.mjs +38 -0
- package/esm2022/standalone/directives/components.mjs +128 -128
- package/esm2022/standalone/directives/number-value-accessor.mjs +40 -0
- package/esm2022/standalone/directives/radio-value-accessor.mjs +35 -0
- package/esm2022/standalone/directives/select-value-accessor.mjs +35 -0
- package/esm2022/standalone/directives/text-value-accessor.mjs +35 -0
- package/esm2022/standalone/directives/value-accessor.mjs +42 -0
- package/esm2022/standalone/index.mjs +6 -2
- package/fesm2022/beeq-angular-standalone.mjs +334 -131
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +149 -149
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/standalone/directives/boolean-value-accessor.d.ts +9 -0
- package/standalone/directives/components.d.ts +4 -4
- package/standalone/directives/number-value-accessor.d.ts +9 -0
- package/standalone/directives/radio-value-accessor.d.ts +8 -0
- package/standalone/directives/select-value-accessor.d.ts +8 -0
- package/standalone/directives/text-value-accessor.d.ts +8 -0
- package/standalone/directives/value-accessor.d.ts +18 -0
- package/standalone/index.d.ts +5 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { __decorate, __metadata } from 'tslib';
|
|
2
1
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { ChangeDetectorRef, ElementRef, NgZone, Component, ChangeDetectionStrategy } from '@angular/core';
|
|
2
|
+
import { Directive, HostListener, ChangeDetectorRef, ElementRef, NgZone, Component, ChangeDetectionStrategy } from '@angular/core';
|
|
3
|
+
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
4
|
+
import { __decorate, __metadata } from 'tslib';
|
|
4
5
|
import { fromEvent } from 'rxjs';
|
|
5
6
|
import { defineCustomElement as defineCustomElement$1 } from '@beeq/core/dist/components/bq-accordion.js';
|
|
6
7
|
import { defineCustomElement as defineCustomElement$2 } from '@beeq/core/dist/components/bq-accordion-group.js';
|
|
@@ -45,6 +46,209 @@ import { defineCustomElement as defineCustomElement$E } from '@beeq/core/dist/co
|
|
|
45
46
|
import { defineCustomElement as defineCustomElement$F } from '@beeq/core/dist/components/bq-toast.js';
|
|
46
47
|
import { defineCustomElement as defineCustomElement$G } from '@beeq/core/dist/components/bq-tooltip.js';
|
|
47
48
|
|
|
49
|
+
class ValueAccessor {
|
|
50
|
+
el;
|
|
51
|
+
onChange = () => { };
|
|
52
|
+
onTouched = () => { };
|
|
53
|
+
lastValue;
|
|
54
|
+
constructor(el) {
|
|
55
|
+
this.el = el;
|
|
56
|
+
}
|
|
57
|
+
writeValue(value) {
|
|
58
|
+
this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
|
|
59
|
+
}
|
|
60
|
+
handleChangeEvent(value) {
|
|
61
|
+
if (value !== this.lastValue) {
|
|
62
|
+
this.lastValue = value;
|
|
63
|
+
this.onChange(value);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
_handleBlurEvent() {
|
|
67
|
+
this.onTouched();
|
|
68
|
+
}
|
|
69
|
+
registerOnChange(fn) {
|
|
70
|
+
this.onChange = fn;
|
|
71
|
+
}
|
|
72
|
+
registerOnTouched(fn) {
|
|
73
|
+
this.onTouched = fn;
|
|
74
|
+
}
|
|
75
|
+
setDisabledState(isDisabled) {
|
|
76
|
+
this.el.nativeElement.disabled = isDisabled;
|
|
77
|
+
}
|
|
78
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
79
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.8", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
80
|
+
}
|
|
81
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
82
|
+
type: Directive,
|
|
83
|
+
args: [{}]
|
|
84
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
85
|
+
type: HostListener,
|
|
86
|
+
args: ['focusout']
|
|
87
|
+
}] } });
|
|
88
|
+
|
|
89
|
+
class BooleanValueAccessor extends ValueAccessor {
|
|
90
|
+
constructor(el) {
|
|
91
|
+
super(el);
|
|
92
|
+
}
|
|
93
|
+
writeValue(value) {
|
|
94
|
+
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
95
|
+
}
|
|
96
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
97
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.8", type: BooleanValueAccessor, isStandalone: true, selector: "bq-checkbox, bq-switch", host: { listeners: { "bqChange": "handleChangeEvent($event.target.checked)" } }, providers: [
|
|
98
|
+
{
|
|
99
|
+
provide: NG_VALUE_ACCESSOR,
|
|
100
|
+
useExisting: BooleanValueAccessor,
|
|
101
|
+
multi: true
|
|
102
|
+
}
|
|
103
|
+
], usesInheritance: true, ngImport: i0 });
|
|
104
|
+
}
|
|
105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
106
|
+
type: Directive,
|
|
107
|
+
args: [{
|
|
108
|
+
/* tslint:disable-next-line:directive-selector */
|
|
109
|
+
selector: 'bq-checkbox, bq-switch',
|
|
110
|
+
host: {
|
|
111
|
+
'(bqChange)': 'handleChangeEvent($event.target.checked)'
|
|
112
|
+
},
|
|
113
|
+
providers: [
|
|
114
|
+
{
|
|
115
|
+
provide: NG_VALUE_ACCESSOR,
|
|
116
|
+
useExisting: BooleanValueAccessor,
|
|
117
|
+
multi: true
|
|
118
|
+
}
|
|
119
|
+
], standalone: true
|
|
120
|
+
}]
|
|
121
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
122
|
+
|
|
123
|
+
class NumericValueAccessor extends ValueAccessor {
|
|
124
|
+
constructor(el) {
|
|
125
|
+
super(el);
|
|
126
|
+
}
|
|
127
|
+
registerOnChange(fn) {
|
|
128
|
+
super.registerOnChange(value => {
|
|
129
|
+
fn(value === '' ? null : parseFloat(value));
|
|
130
|
+
});
|
|
131
|
+
}
|
|
132
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
133
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.8", type: NumericValueAccessor, isStandalone: true, selector: "bq-input[type=\"number\"], bq-slider:not[type=\"range\"]", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
134
|
+
{
|
|
135
|
+
provide: NG_VALUE_ACCESSOR,
|
|
136
|
+
useExisting: NumericValueAccessor,
|
|
137
|
+
multi: true
|
|
138
|
+
}
|
|
139
|
+
], usesInheritance: true, ngImport: i0 });
|
|
140
|
+
}
|
|
141
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
142
|
+
type: Directive,
|
|
143
|
+
args: [{
|
|
144
|
+
/* tslint:disable-next-line:directive-selector */
|
|
145
|
+
selector: 'bq-input[type="number"], bq-slider:not[type="range"]',
|
|
146
|
+
host: {
|
|
147
|
+
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
148
|
+
},
|
|
149
|
+
providers: [
|
|
150
|
+
{
|
|
151
|
+
provide: NG_VALUE_ACCESSOR,
|
|
152
|
+
useExisting: NumericValueAccessor,
|
|
153
|
+
multi: true
|
|
154
|
+
}
|
|
155
|
+
], standalone: true
|
|
156
|
+
}]
|
|
157
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
158
|
+
|
|
159
|
+
class RadioValueAccessor extends ValueAccessor {
|
|
160
|
+
constructor(el) {
|
|
161
|
+
super(el);
|
|
162
|
+
}
|
|
163
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
164
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.8", type: RadioValueAccessor, isStandalone: true, selector: "bq-radio-group", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
165
|
+
{
|
|
166
|
+
provide: NG_VALUE_ACCESSOR,
|
|
167
|
+
useExisting: RadioValueAccessor,
|
|
168
|
+
multi: true
|
|
169
|
+
}
|
|
170
|
+
], usesInheritance: true, ngImport: i0 });
|
|
171
|
+
}
|
|
172
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
173
|
+
type: Directive,
|
|
174
|
+
args: [{
|
|
175
|
+
/* tslint:disable-next-line:directive-selector */
|
|
176
|
+
selector: 'bq-radio-group',
|
|
177
|
+
host: {
|
|
178
|
+
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
179
|
+
},
|
|
180
|
+
providers: [
|
|
181
|
+
{
|
|
182
|
+
provide: NG_VALUE_ACCESSOR,
|
|
183
|
+
useExisting: RadioValueAccessor,
|
|
184
|
+
multi: true
|
|
185
|
+
}
|
|
186
|
+
], standalone: true
|
|
187
|
+
}]
|
|
188
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
189
|
+
|
|
190
|
+
class SelectValueAccessor extends ValueAccessor {
|
|
191
|
+
constructor(el) {
|
|
192
|
+
super(el);
|
|
193
|
+
}
|
|
194
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
195
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.8", type: SelectValueAccessor, isStandalone: true, selector: "bq-select", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
196
|
+
{
|
|
197
|
+
provide: NG_VALUE_ACCESSOR,
|
|
198
|
+
useExisting: SelectValueAccessor,
|
|
199
|
+
multi: true
|
|
200
|
+
}
|
|
201
|
+
], usesInheritance: true, ngImport: i0 });
|
|
202
|
+
}
|
|
203
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
204
|
+
type: Directive,
|
|
205
|
+
args: [{
|
|
206
|
+
/* tslint:disable-next-line:directive-selector */
|
|
207
|
+
selector: 'bq-select',
|
|
208
|
+
host: {
|
|
209
|
+
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
210
|
+
},
|
|
211
|
+
providers: [
|
|
212
|
+
{
|
|
213
|
+
provide: NG_VALUE_ACCESSOR,
|
|
214
|
+
useExisting: SelectValueAccessor,
|
|
215
|
+
multi: true
|
|
216
|
+
}
|
|
217
|
+
], standalone: true
|
|
218
|
+
}]
|
|
219
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
220
|
+
|
|
221
|
+
class TextValueAccessor extends ValueAccessor {
|
|
222
|
+
constructor(el) {
|
|
223
|
+
super(el);
|
|
224
|
+
}
|
|
225
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
226
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.8", type: TextValueAccessor, isStandalone: true, selector: "bq-date-picker, bq-input:not[type=\"number\"], bq-slider[type=\"range\", bq-textarea", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
227
|
+
{
|
|
228
|
+
provide: NG_VALUE_ACCESSOR,
|
|
229
|
+
useExisting: TextValueAccessor,
|
|
230
|
+
multi: true
|
|
231
|
+
}
|
|
232
|
+
], usesInheritance: true, ngImport: i0 });
|
|
233
|
+
}
|
|
234
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
235
|
+
type: Directive,
|
|
236
|
+
args: [{
|
|
237
|
+
/* tslint:disable-next-line:directive-selector */
|
|
238
|
+
selector: 'bq-date-picker, bq-input:not[type="number"], bq-slider[type="range", bq-textarea',
|
|
239
|
+
host: {
|
|
240
|
+
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
241
|
+
},
|
|
242
|
+
providers: [
|
|
243
|
+
{
|
|
244
|
+
provide: NG_VALUE_ACCESSOR,
|
|
245
|
+
useExisting: TextValueAccessor,
|
|
246
|
+
multi: true
|
|
247
|
+
}
|
|
248
|
+
], standalone: true
|
|
249
|
+
}]
|
|
250
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
251
|
+
|
|
48
252
|
/* eslint-disable */
|
|
49
253
|
/* tslint:disable */
|
|
50
254
|
const proxyInputs = (Cmp, inputs) => {
|
|
@@ -112,8 +316,8 @@ let BqAccordion = class BqAccordion {
|
|
|
112
316
|
this.el = r.nativeElement;
|
|
113
317
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqOpen', 'bqAfterOpen', 'bqClose', 'bqAfterClose']);
|
|
114
318
|
}
|
|
115
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
116
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
319
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
320
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqAccordion, isStandalone: true, 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 });
|
|
117
321
|
};
|
|
118
322
|
BqAccordion = __decorate([
|
|
119
323
|
ProxyCmp({
|
|
@@ -122,7 +326,7 @@ BqAccordion = __decorate([
|
|
|
122
326
|
}),
|
|
123
327
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
124
328
|
], BqAccordion);
|
|
125
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
329
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqAccordion, decorators: [{
|
|
126
330
|
type: Component,
|
|
127
331
|
args: [{
|
|
128
332
|
selector: 'bq-accordion',
|
|
@@ -141,8 +345,8 @@ let BqAccordionGroup = class BqAccordionGroup {
|
|
|
141
345
|
c.detach();
|
|
142
346
|
this.el = r.nativeElement;
|
|
143
347
|
}
|
|
144
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
145
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
348
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
349
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqAccordionGroup, isStandalone: true, selector: "bq-accordion-group", inputs: { appearance: "appearance", expandAll: "expandAll", multiple: "multiple", noAnimation: "noAnimation", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
146
350
|
};
|
|
147
351
|
BqAccordionGroup = __decorate([
|
|
148
352
|
ProxyCmp({
|
|
@@ -151,7 +355,7 @@ BqAccordionGroup = __decorate([
|
|
|
151
355
|
}),
|
|
152
356
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
153
357
|
], BqAccordionGroup);
|
|
154
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
358
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqAccordionGroup, decorators: [{
|
|
155
359
|
type: Component,
|
|
156
360
|
args: [{
|
|
157
361
|
selector: 'bq-accordion-group',
|
|
@@ -169,10 +373,10 @@ let BqAlert = class BqAlert {
|
|
|
169
373
|
this.z = z;
|
|
170
374
|
c.detach();
|
|
171
375
|
this.el = r.nativeElement;
|
|
172
|
-
proxyOutputs(this, this.el, ['bqHide', 'bqShow', '
|
|
376
|
+
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterShow', 'bqAfterHide']);
|
|
173
377
|
}
|
|
174
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
175
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
378
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
379
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqAlert, isStandalone: true, 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 });
|
|
176
380
|
};
|
|
177
381
|
BqAlert = __decorate([
|
|
178
382
|
ProxyCmp({
|
|
@@ -182,7 +386,7 @@ BqAlert = __decorate([
|
|
|
182
386
|
}),
|
|
183
387
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
184
388
|
], BqAlert);
|
|
185
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
389
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqAlert, decorators: [{
|
|
186
390
|
type: Component,
|
|
187
391
|
args: [{
|
|
188
392
|
selector: 'bq-alert',
|
|
@@ -201,8 +405,8 @@ let BqAvatar = class BqAvatar {
|
|
|
201
405
|
c.detach();
|
|
202
406
|
this.el = r.nativeElement;
|
|
203
407
|
}
|
|
204
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
205
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
408
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
409
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqAvatar, isStandalone: true, selector: "bq-avatar", inputs: { altText: "altText", image: "image", initials: "initials", label: "label", shape: "shape", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
206
410
|
};
|
|
207
411
|
BqAvatar = __decorate([
|
|
208
412
|
ProxyCmp({
|
|
@@ -211,7 +415,7 @@ BqAvatar = __decorate([
|
|
|
211
415
|
}),
|
|
212
416
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
213
417
|
], BqAvatar);
|
|
214
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
418
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqAvatar, decorators: [{
|
|
215
419
|
type: Component,
|
|
216
420
|
args: [{
|
|
217
421
|
selector: 'bq-avatar',
|
|
@@ -230,8 +434,8 @@ let BqBadge = class BqBadge {
|
|
|
230
434
|
c.detach();
|
|
231
435
|
this.el = r.nativeElement;
|
|
232
436
|
}
|
|
233
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
234
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
437
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
438
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqBadge, isStandalone: true, selector: "bq-badge", inputs: { backgroundColor: "backgroundColor", size: "size", textColor: "textColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
235
439
|
};
|
|
236
440
|
BqBadge = __decorate([
|
|
237
441
|
ProxyCmp({
|
|
@@ -240,7 +444,7 @@ BqBadge = __decorate([
|
|
|
240
444
|
}),
|
|
241
445
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
242
446
|
], BqBadge);
|
|
243
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
447
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqBadge, decorators: [{
|
|
244
448
|
type: Component,
|
|
245
449
|
args: [{
|
|
246
450
|
selector: 'bq-badge',
|
|
@@ -260,8 +464,8 @@ let BqBreadcrumb = class BqBreadcrumb {
|
|
|
260
464
|
this.el = r.nativeElement;
|
|
261
465
|
proxyOutputs(this, this.el, ['bqBreadcrumbBlur', 'bqBreadcrumbFocus', 'bqBreadcrumbClick']);
|
|
262
466
|
}
|
|
263
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
264
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
467
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
468
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqBreadcrumb, isStandalone: true, selector: "bq-breadcrumb", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
265
469
|
};
|
|
266
470
|
BqBreadcrumb = __decorate([
|
|
267
471
|
ProxyCmp({
|
|
@@ -270,7 +474,7 @@ BqBreadcrumb = __decorate([
|
|
|
270
474
|
}),
|
|
271
475
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
272
476
|
], BqBreadcrumb);
|
|
273
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
477
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqBreadcrumb, decorators: [{
|
|
274
478
|
type: Component,
|
|
275
479
|
args: [{
|
|
276
480
|
selector: 'bq-breadcrumb',
|
|
@@ -290,8 +494,8 @@ let BqBreadcrumbItem = class BqBreadcrumbItem {
|
|
|
290
494
|
this.el = r.nativeElement;
|
|
291
495
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
292
496
|
}
|
|
293
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
294
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
497
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
498
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqBreadcrumbItem, isStandalone: true, selector: "bq-breadcrumb-item", inputs: { ariaLabel: "ariaLabel", href: "href", isLastItem: "isLastItem", rel: "rel", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
295
499
|
};
|
|
296
500
|
BqBreadcrumbItem = __decorate([
|
|
297
501
|
ProxyCmp({
|
|
@@ -300,7 +504,7 @@ BqBreadcrumbItem = __decorate([
|
|
|
300
504
|
}),
|
|
301
505
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
302
506
|
], BqBreadcrumbItem);
|
|
303
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
507
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqBreadcrumbItem, decorators: [{
|
|
304
508
|
type: Component,
|
|
305
509
|
args: [{
|
|
306
510
|
selector: 'bq-breadcrumb-item',
|
|
@@ -320,8 +524,8 @@ let BqButton = class BqButton {
|
|
|
320
524
|
this.el = r.nativeElement;
|
|
321
525
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
322
526
|
}
|
|
323
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
324
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
527
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
528
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqButton, isStandalone: true, selector: "bq-button", inputs: { appearance: "appearance", block: "block", border: "border", disabled: "disabled", download: "download", href: "href", justifyContent: "justifyContent", loading: "loading", size: "size", target: "target", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
325
529
|
};
|
|
326
530
|
BqButton = __decorate([
|
|
327
531
|
ProxyCmp({
|
|
@@ -330,7 +534,7 @@ BqButton = __decorate([
|
|
|
330
534
|
}),
|
|
331
535
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
332
536
|
], BqButton);
|
|
333
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
537
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqButton, decorators: [{
|
|
334
538
|
type: Component,
|
|
335
539
|
args: [{
|
|
336
540
|
selector: 'bq-button',
|
|
@@ -349,8 +553,8 @@ let BqCard = class BqCard {
|
|
|
349
553
|
c.detach();
|
|
350
554
|
this.el = r.nativeElement;
|
|
351
555
|
}
|
|
352
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
353
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
556
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
557
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqCard, isStandalone: true, selector: "bq-card", inputs: { border: "border", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
354
558
|
};
|
|
355
559
|
BqCard = __decorate([
|
|
356
560
|
ProxyCmp({
|
|
@@ -359,7 +563,7 @@ BqCard = __decorate([
|
|
|
359
563
|
}),
|
|
360
564
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
361
565
|
], BqCard);
|
|
362
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
566
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqCard, decorators: [{
|
|
363
567
|
type: Component,
|
|
364
568
|
args: [{
|
|
365
569
|
selector: 'bq-card',
|
|
@@ -379,8 +583,8 @@ let BqCheckbox = class BqCheckbox {
|
|
|
379
583
|
this.el = r.nativeElement;
|
|
380
584
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
381
585
|
}
|
|
382
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
383
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
586
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
587
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqCheckbox, isStandalone: true, selector: "bq-checkbox", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", formValidationMessage: "formValidationMessage", indeterminate: "indeterminate", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
384
588
|
};
|
|
385
589
|
BqCheckbox = __decorate([
|
|
386
590
|
ProxyCmp({
|
|
@@ -390,7 +594,7 @@ BqCheckbox = __decorate([
|
|
|
390
594
|
}),
|
|
391
595
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
392
596
|
], BqCheckbox);
|
|
393
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
597
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqCheckbox, decorators: [{
|
|
394
598
|
type: Component,
|
|
395
599
|
args: [{
|
|
396
600
|
selector: 'bq-checkbox',
|
|
@@ -410,8 +614,8 @@ let BqDatePicker = class BqDatePicker {
|
|
|
410
614
|
this.el = r.nativeElement;
|
|
411
615
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus']);
|
|
412
616
|
}
|
|
413
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
414
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
617
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
618
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqDatePicker, isStandalone: true, 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 });
|
|
415
619
|
};
|
|
416
620
|
BqDatePicker = __decorate([
|
|
417
621
|
ProxyCmp({
|
|
@@ -421,7 +625,7 @@ BqDatePicker = __decorate([
|
|
|
421
625
|
}),
|
|
422
626
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
423
627
|
], BqDatePicker);
|
|
424
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
628
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDatePicker, decorators: [{
|
|
425
629
|
type: Component,
|
|
426
630
|
args: [{
|
|
427
631
|
selector: 'bq-date-picker',
|
|
@@ -441,8 +645,8 @@ let BqDialog = class BqDialog {
|
|
|
441
645
|
this.el = r.nativeElement;
|
|
442
646
|
proxyOutputs(this, this.el, ['bqCancel', 'bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
443
647
|
}
|
|
444
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
445
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
648
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
649
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqDialog, isStandalone: true, 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 });
|
|
446
650
|
};
|
|
447
651
|
BqDialog = __decorate([
|
|
448
652
|
ProxyCmp({
|
|
@@ -452,7 +656,7 @@ BqDialog = __decorate([
|
|
|
452
656
|
}),
|
|
453
657
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
454
658
|
], BqDialog);
|
|
455
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
659
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDialog, decorators: [{
|
|
456
660
|
type: Component,
|
|
457
661
|
args: [{
|
|
458
662
|
selector: 'bq-dialog',
|
|
@@ -471,8 +675,8 @@ let BqDivider = class BqDivider {
|
|
|
471
675
|
c.detach();
|
|
472
676
|
this.el = r.nativeElement;
|
|
473
677
|
}
|
|
474
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
475
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
678
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
679
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqDivider, isStandalone: true, selector: "bq-divider", inputs: { dashed: "dashed", orientation: "orientation", strokeBasis: "strokeBasis", strokeColor: "strokeColor", strokeDashGap: "strokeDashGap", strokeDashWidth: "strokeDashWidth", strokeLinecap: "strokeLinecap", strokeThickness: "strokeThickness", titleAlignment: "titleAlignment" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
476
680
|
};
|
|
477
681
|
BqDivider = __decorate([
|
|
478
682
|
ProxyCmp({
|
|
@@ -481,7 +685,7 @@ BqDivider = __decorate([
|
|
|
481
685
|
}),
|
|
482
686
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
483
687
|
], BqDivider);
|
|
484
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
688
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDivider, decorators: [{
|
|
485
689
|
type: Component,
|
|
486
690
|
args: [{
|
|
487
691
|
selector: 'bq-divider',
|
|
@@ -501,8 +705,8 @@ let BqDrawer = class BqDrawer {
|
|
|
501
705
|
this.el = r.nativeElement;
|
|
502
706
|
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
503
707
|
}
|
|
504
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
505
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
708
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
709
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqDrawer, isStandalone: true, 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 });
|
|
506
710
|
};
|
|
507
711
|
BqDrawer = __decorate([
|
|
508
712
|
ProxyCmp({
|
|
@@ -512,7 +716,7 @@ BqDrawer = __decorate([
|
|
|
512
716
|
}),
|
|
513
717
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
514
718
|
], BqDrawer);
|
|
515
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
719
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDrawer, decorators: [{
|
|
516
720
|
type: Component,
|
|
517
721
|
args: [{
|
|
518
722
|
selector: 'bq-drawer',
|
|
@@ -532,8 +736,8 @@ let BqDropdown = class BqDropdown {
|
|
|
532
736
|
this.el = r.nativeElement;
|
|
533
737
|
proxyOutputs(this, this.el, ['bqOpen']);
|
|
534
738
|
}
|
|
535
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
536
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
739
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
740
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqDropdown, isStandalone: true, 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 });
|
|
537
741
|
};
|
|
538
742
|
BqDropdown = __decorate([
|
|
539
743
|
ProxyCmp({
|
|
@@ -542,7 +746,7 @@ BqDropdown = __decorate([
|
|
|
542
746
|
}),
|
|
543
747
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
544
748
|
], BqDropdown);
|
|
545
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
749
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDropdown, decorators: [{
|
|
546
750
|
type: Component,
|
|
547
751
|
args: [{
|
|
548
752
|
selector: 'bq-dropdown',
|
|
@@ -561,8 +765,8 @@ let BqEmptyState = class BqEmptyState {
|
|
|
561
765
|
c.detach();
|
|
562
766
|
this.el = r.nativeElement;
|
|
563
767
|
}
|
|
564
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
565
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
768
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
769
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqEmptyState, isStandalone: true, selector: "bq-empty-state", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
566
770
|
};
|
|
567
771
|
BqEmptyState = __decorate([
|
|
568
772
|
ProxyCmp({
|
|
@@ -571,7 +775,7 @@ BqEmptyState = __decorate([
|
|
|
571
775
|
}),
|
|
572
776
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
573
777
|
], BqEmptyState);
|
|
574
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
778
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqEmptyState, decorators: [{
|
|
575
779
|
type: Component,
|
|
576
780
|
args: [{
|
|
577
781
|
selector: 'bq-empty-state',
|
|
@@ -591,8 +795,8 @@ let BqIcon = class BqIcon {
|
|
|
591
795
|
this.el = r.nativeElement;
|
|
592
796
|
proxyOutputs(this, this.el, ['svgLoaded']);
|
|
593
797
|
}
|
|
594
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
595
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
798
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
799
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqIcon, isStandalone: true, 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 });
|
|
596
800
|
};
|
|
597
801
|
BqIcon = __decorate([
|
|
598
802
|
ProxyCmp({
|
|
@@ -601,7 +805,7 @@ BqIcon = __decorate([
|
|
|
601
805
|
}),
|
|
602
806
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
603
807
|
], BqIcon);
|
|
604
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
808
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqIcon, decorators: [{
|
|
605
809
|
type: Component,
|
|
606
810
|
args: [{
|
|
607
811
|
selector: 'bq-icon',
|
|
@@ -621,8 +825,8 @@ let BqInput = class BqInput {
|
|
|
621
825
|
this.el = r.nativeElement;
|
|
622
826
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
623
827
|
}
|
|
624
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
625
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
828
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
829
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqInput, isStandalone: true, selector: "bq-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disabled: "disabled", form: "form", inputmode: "inputmode", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", step: "step", type: "type", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
626
830
|
};
|
|
627
831
|
BqInput = __decorate([
|
|
628
832
|
ProxyCmp({
|
|
@@ -631,7 +835,7 @@ BqInput = __decorate([
|
|
|
631
835
|
}),
|
|
632
836
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
633
837
|
], BqInput);
|
|
634
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
838
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqInput, decorators: [{
|
|
635
839
|
type: Component,
|
|
636
840
|
args: [{
|
|
637
841
|
selector: 'bq-input',
|
|
@@ -651,8 +855,8 @@ let BqNotification = class BqNotification {
|
|
|
651
855
|
this.el = r.nativeElement;
|
|
652
856
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
|
|
653
857
|
}
|
|
654
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
655
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
858
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
859
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqNotification, isStandalone: true, 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 });
|
|
656
860
|
};
|
|
657
861
|
BqNotification = __decorate([
|
|
658
862
|
ProxyCmp({
|
|
@@ -662,7 +866,7 @@ BqNotification = __decorate([
|
|
|
662
866
|
}),
|
|
663
867
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
664
868
|
], BqNotification);
|
|
665
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
869
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqNotification, decorators: [{
|
|
666
870
|
type: Component,
|
|
667
871
|
args: [{
|
|
668
872
|
selector: 'bq-notification',
|
|
@@ -682,8 +886,8 @@ let BqOption = class BqOption {
|
|
|
682
886
|
this.el = r.nativeElement;
|
|
683
887
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick', 'bqEnter']);
|
|
684
888
|
}
|
|
685
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
686
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
889
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
890
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqOption, isStandalone: true, 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 });
|
|
687
891
|
};
|
|
688
892
|
BqOption = __decorate([
|
|
689
893
|
ProxyCmp({
|
|
@@ -692,7 +896,7 @@ BqOption = __decorate([
|
|
|
692
896
|
}),
|
|
693
897
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
694
898
|
], BqOption);
|
|
695
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
899
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqOption, decorators: [{
|
|
696
900
|
type: Component,
|
|
697
901
|
args: [{
|
|
698
902
|
selector: 'bq-option',
|
|
@@ -711,8 +915,8 @@ let BqOptionGroup = class BqOptionGroup {
|
|
|
711
915
|
c.detach();
|
|
712
916
|
this.el = r.nativeElement;
|
|
713
917
|
}
|
|
714
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
715
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
918
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqOptionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
919
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqOptionGroup, isStandalone: true, selector: "bq-option-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
716
920
|
};
|
|
717
921
|
BqOptionGroup = __decorate([
|
|
718
922
|
ProxyCmp({
|
|
@@ -720,7 +924,7 @@ BqOptionGroup = __decorate([
|
|
|
720
924
|
}),
|
|
721
925
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
722
926
|
], BqOptionGroup);
|
|
723
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
927
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqOptionGroup, decorators: [{
|
|
724
928
|
type: Component,
|
|
725
929
|
args: [{
|
|
726
930
|
selector: 'bq-option-group',
|
|
@@ -740,8 +944,8 @@ let BqOptionList = class BqOptionList {
|
|
|
740
944
|
this.el = r.nativeElement;
|
|
741
945
|
proxyOutputs(this, this.el, ['bqSelect']);
|
|
742
946
|
}
|
|
743
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
744
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
947
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqOptionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
948
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqOptionList, isStandalone: true, selector: "bq-option-list", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
745
949
|
};
|
|
746
950
|
BqOptionList = __decorate([
|
|
747
951
|
ProxyCmp({
|
|
@@ -750,7 +954,7 @@ BqOptionList = __decorate([
|
|
|
750
954
|
}),
|
|
751
955
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
752
956
|
], BqOptionList);
|
|
753
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
957
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqOptionList, decorators: [{
|
|
754
958
|
type: Component,
|
|
755
959
|
args: [{
|
|
756
960
|
selector: 'bq-option-list',
|
|
@@ -769,8 +973,8 @@ let BqPageTitle = class BqPageTitle {
|
|
|
769
973
|
c.detach();
|
|
770
974
|
this.el = r.nativeElement;
|
|
771
975
|
}
|
|
772
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
773
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
976
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqPageTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
977
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqPageTitle, isStandalone: true, selector: "bq-page-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
774
978
|
};
|
|
775
979
|
BqPageTitle = __decorate([
|
|
776
980
|
ProxyCmp({
|
|
@@ -778,7 +982,7 @@ BqPageTitle = __decorate([
|
|
|
778
982
|
}),
|
|
779
983
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
780
984
|
], BqPageTitle);
|
|
781
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
985
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqPageTitle, decorators: [{
|
|
782
986
|
type: Component,
|
|
783
987
|
args: [{
|
|
784
988
|
selector: 'bq-page-title',
|
|
@@ -797,8 +1001,8 @@ let BqPanel = class BqPanel {
|
|
|
797
1001
|
c.detach();
|
|
798
1002
|
this.el = r.nativeElement;
|
|
799
1003
|
}
|
|
800
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
801
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1004
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1005
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqPanel, isStandalone: true, 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 });
|
|
802
1006
|
};
|
|
803
1007
|
BqPanel = __decorate([
|
|
804
1008
|
ProxyCmp({
|
|
@@ -807,7 +1011,7 @@ BqPanel = __decorate([
|
|
|
807
1011
|
}),
|
|
808
1012
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
809
1013
|
], BqPanel);
|
|
810
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1014
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqPanel, decorators: [{
|
|
811
1015
|
type: Component,
|
|
812
1016
|
args: [{
|
|
813
1017
|
selector: 'bq-panel',
|
|
@@ -826,8 +1030,8 @@ let BqProgress = class BqProgress {
|
|
|
826
1030
|
c.detach();
|
|
827
1031
|
this.el = r.nativeElement;
|
|
828
1032
|
}
|
|
829
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
830
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1033
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1034
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqProgress, isStandalone: true, selector: "bq-progress", inputs: { borderShape: "borderShape", enableTooltip: "enableTooltip", indeterminate: "indeterminate", label: "label", thickness: "thickness", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
831
1035
|
};
|
|
832
1036
|
BqProgress = __decorate([
|
|
833
1037
|
ProxyCmp({
|
|
@@ -836,7 +1040,7 @@ BqProgress = __decorate([
|
|
|
836
1040
|
}),
|
|
837
1041
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
838
1042
|
], BqProgress);
|
|
839
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1043
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqProgress, decorators: [{
|
|
840
1044
|
type: Component,
|
|
841
1045
|
args: [{
|
|
842
1046
|
selector: 'bq-progress',
|
|
@@ -856,8 +1060,8 @@ let BqRadio = class BqRadio {
|
|
|
856
1060
|
this.el = r.nativeElement;
|
|
857
1061
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
858
1062
|
}
|
|
859
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
860
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1063
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1064
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqRadio, isStandalone: true, 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 });
|
|
861
1065
|
};
|
|
862
1066
|
BqRadio = __decorate([
|
|
863
1067
|
ProxyCmp({
|
|
@@ -867,7 +1071,7 @@ BqRadio = __decorate([
|
|
|
867
1071
|
}),
|
|
868
1072
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
869
1073
|
], BqRadio);
|
|
870
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1074
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqRadio, decorators: [{
|
|
871
1075
|
type: Component,
|
|
872
1076
|
args: [{
|
|
873
1077
|
selector: 'bq-radio',
|
|
@@ -887,8 +1091,8 @@ let BqRadioGroup = class BqRadioGroup {
|
|
|
887
1091
|
this.el = r.nativeElement;
|
|
888
1092
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
889
1093
|
}
|
|
890
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
891
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1094
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1095
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqRadioGroup, isStandalone: true, selector: "bq-radio-group", inputs: { backgroundOnHover: "backgroundOnHover", debounceTime: "debounceTime", disabled: "disabled", fieldset: "fieldset", name: "name", orientation: "orientation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
892
1096
|
};
|
|
893
1097
|
BqRadioGroup = __decorate([
|
|
894
1098
|
ProxyCmp({
|
|
@@ -897,7 +1101,7 @@ BqRadioGroup = __decorate([
|
|
|
897
1101
|
}),
|
|
898
1102
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
899
1103
|
], BqRadioGroup);
|
|
900
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1104
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqRadioGroup, decorators: [{
|
|
901
1105
|
type: Component,
|
|
902
1106
|
args: [{
|
|
903
1107
|
selector: 'bq-radio-group',
|
|
@@ -917,8 +1121,8 @@ let BqSelect = class BqSelect {
|
|
|
917
1121
|
this.el = r.nativeElement;
|
|
918
1122
|
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect']);
|
|
919
1123
|
}
|
|
920
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
921
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1124
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1125
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqSelect, isStandalone: true, 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 });
|
|
922
1126
|
};
|
|
923
1127
|
BqSelect = __decorate([
|
|
924
1128
|
ProxyCmp({
|
|
@@ -928,7 +1132,7 @@ BqSelect = __decorate([
|
|
|
928
1132
|
}),
|
|
929
1133
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
930
1134
|
], BqSelect);
|
|
931
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1135
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSelect, decorators: [{
|
|
932
1136
|
type: Component,
|
|
933
1137
|
args: [{
|
|
934
1138
|
selector: 'bq-select',
|
|
@@ -948,8 +1152,8 @@ let BqSideMenu = class BqSideMenu {
|
|
|
948
1152
|
this.el = r.nativeElement;
|
|
949
1153
|
proxyOutputs(this, this.el, ['bqCollapse', 'bqSelect']);
|
|
950
1154
|
}
|
|
951
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
952
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1155
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSideMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1156
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqSideMenu, isStandalone: true, selector: "bq-side-menu", inputs: { appearance: "appearance", collapse: "collapse", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
953
1157
|
};
|
|
954
1158
|
BqSideMenu = __decorate([
|
|
955
1159
|
ProxyCmp({
|
|
@@ -959,7 +1163,7 @@ BqSideMenu = __decorate([
|
|
|
959
1163
|
}),
|
|
960
1164
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
961
1165
|
], BqSideMenu);
|
|
962
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1166
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSideMenu, decorators: [{
|
|
963
1167
|
type: Component,
|
|
964
1168
|
args: [{
|
|
965
1169
|
selector: 'bq-side-menu',
|
|
@@ -979,8 +1183,8 @@ let BqSideMenuItem = class BqSideMenuItem {
|
|
|
979
1183
|
this.el = r.nativeElement;
|
|
980
1184
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
981
1185
|
}
|
|
982
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
983
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1186
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSideMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1187
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqSideMenuItem, isStandalone: true, 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 });
|
|
984
1188
|
};
|
|
985
1189
|
BqSideMenuItem = __decorate([
|
|
986
1190
|
ProxyCmp({
|
|
@@ -989,7 +1193,7 @@ BqSideMenuItem = __decorate([
|
|
|
989
1193
|
}),
|
|
990
1194
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
991
1195
|
], BqSideMenuItem);
|
|
992
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1196
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSideMenuItem, decorators: [{
|
|
993
1197
|
type: Component,
|
|
994
1198
|
args: [{
|
|
995
1199
|
selector: 'bq-side-menu-item',
|
|
@@ -1009,8 +1213,8 @@ let BqSlider = class BqSlider {
|
|
|
1009
1213
|
this.el = r.nativeElement;
|
|
1010
1214
|
proxyOutputs(this, this.el, ['bqChange', 'bqBlur', 'bqFocus']);
|
|
1011
1215
|
}
|
|
1012
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1013
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1216
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1217
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqSlider, isStandalone: true, selector: "bq-slider", inputs: { debounceTime: "debounceTime", disabled: "disabled", enableTooltip: "enableTooltip", enableValueIndicator: "enableValueIndicator", gap: "gap", max: "max", min: "min", step: "step", tooltipAlwaysVisible: "tooltipAlwaysVisible", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1014
1218
|
};
|
|
1015
1219
|
BqSlider = __decorate([
|
|
1016
1220
|
ProxyCmp({
|
|
@@ -1019,7 +1223,7 @@ BqSlider = __decorate([
|
|
|
1019
1223
|
}),
|
|
1020
1224
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1021
1225
|
], BqSlider);
|
|
1022
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1226
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSlider, decorators: [{
|
|
1023
1227
|
type: Component,
|
|
1024
1228
|
args: [{
|
|
1025
1229
|
selector: 'bq-slider',
|
|
@@ -1038,8 +1242,8 @@ let BqSpinner = class BqSpinner {
|
|
|
1038
1242
|
c.detach();
|
|
1039
1243
|
this.el = r.nativeElement;
|
|
1040
1244
|
}
|
|
1041
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1042
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1245
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1246
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqSpinner, isStandalone: true, selector: "bq-spinner", inputs: { animation: "animation", size: "size", textPosition: "textPosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1043
1247
|
};
|
|
1044
1248
|
BqSpinner = __decorate([
|
|
1045
1249
|
ProxyCmp({
|
|
@@ -1048,7 +1252,7 @@ BqSpinner = __decorate([
|
|
|
1048
1252
|
}),
|
|
1049
1253
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1050
1254
|
], BqSpinner);
|
|
1051
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1255
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSpinner, decorators: [{
|
|
1052
1256
|
type: Component,
|
|
1053
1257
|
args: [{
|
|
1054
1258
|
selector: 'bq-spinner',
|
|
@@ -1067,8 +1271,8 @@ let BqStatus = class BqStatus {
|
|
|
1067
1271
|
c.detach();
|
|
1068
1272
|
this.el = r.nativeElement;
|
|
1069
1273
|
}
|
|
1070
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1071
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1274
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1275
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqStatus, isStandalone: true, selector: "bq-status", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1072
1276
|
};
|
|
1073
1277
|
BqStatus = __decorate([
|
|
1074
1278
|
ProxyCmp({
|
|
@@ -1077,7 +1281,7 @@ BqStatus = __decorate([
|
|
|
1077
1281
|
}),
|
|
1078
1282
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1079
1283
|
], BqStatus);
|
|
1080
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1284
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqStatus, decorators: [{
|
|
1081
1285
|
type: Component,
|
|
1082
1286
|
args: [{
|
|
1083
1287
|
selector: 'bq-status',
|
|
@@ -1097,8 +1301,8 @@ let BqStepItem = class BqStepItem {
|
|
|
1097
1301
|
this.el = r.nativeElement;
|
|
1098
1302
|
proxyOutputs(this, this.el, ['bqClick']);
|
|
1099
1303
|
}
|
|
1100
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1101
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1304
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqStepItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1305
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqStepItem, isStandalone: true, selector: "bq-step-item", inputs: { size: "size", status: "status", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1102
1306
|
};
|
|
1103
1307
|
BqStepItem = __decorate([
|
|
1104
1308
|
ProxyCmp({
|
|
@@ -1107,7 +1311,7 @@ BqStepItem = __decorate([
|
|
|
1107
1311
|
}),
|
|
1108
1312
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1109
1313
|
], BqStepItem);
|
|
1110
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1314
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqStepItem, decorators: [{
|
|
1111
1315
|
type: Component,
|
|
1112
1316
|
args: [{
|
|
1113
1317
|
selector: 'bq-step-item',
|
|
@@ -1126,8 +1330,8 @@ let BqSteps = class BqSteps {
|
|
|
1126
1330
|
c.detach();
|
|
1127
1331
|
this.el = r.nativeElement;
|
|
1128
1332
|
}
|
|
1129
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1130
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1333
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1334
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqSteps, isStandalone: true, selector: "bq-steps", inputs: { dividerColor: "dividerColor", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1131
1335
|
};
|
|
1132
1336
|
BqSteps = __decorate([
|
|
1133
1337
|
ProxyCmp({
|
|
@@ -1136,7 +1340,7 @@ BqSteps = __decorate([
|
|
|
1136
1340
|
}),
|
|
1137
1341
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1138
1342
|
], BqSteps);
|
|
1139
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSteps, decorators: [{
|
|
1140
1344
|
type: Component,
|
|
1141
1345
|
args: [{
|
|
1142
1346
|
selector: 'bq-steps',
|
|
@@ -1156,8 +1360,8 @@ let BqSwitch = class BqSwitch {
|
|
|
1156
1360
|
this.el = r.nativeElement;
|
|
1157
1361
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
1158
1362
|
}
|
|
1159
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1160
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1363
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1364
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqSwitch, isStandalone: true, selector: "bq-switch", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", fullWidth: "fullWidth", innerLabel: "innerLabel", justifyContent: "justifyContent", name: "name", required: "required", reverseOrder: "reverseOrder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1161
1365
|
};
|
|
1162
1366
|
BqSwitch = __decorate([
|
|
1163
1367
|
ProxyCmp({
|
|
@@ -1167,7 +1371,7 @@ BqSwitch = __decorate([
|
|
|
1167
1371
|
}),
|
|
1168
1372
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1169
1373
|
], BqSwitch);
|
|
1170
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1374
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSwitch, decorators: [{
|
|
1171
1375
|
type: Component,
|
|
1172
1376
|
args: [{
|
|
1173
1377
|
selector: 'bq-switch',
|
|
@@ -1187,8 +1391,8 @@ let BqTab = class BqTab {
|
|
|
1187
1391
|
this.el = r.nativeElement;
|
|
1188
1392
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
1189
1393
|
}
|
|
1190
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1191
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1394
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1395
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqTab, isStandalone: true, 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 });
|
|
1192
1396
|
};
|
|
1193
1397
|
BqTab = __decorate([
|
|
1194
1398
|
ProxyCmp({
|
|
@@ -1198,7 +1402,7 @@ BqTab = __decorate([
|
|
|
1198
1402
|
}),
|
|
1199
1403
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1200
1404
|
], BqTab);
|
|
1201
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1405
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTab, decorators: [{
|
|
1202
1406
|
type: Component,
|
|
1203
1407
|
args: [{
|
|
1204
1408
|
selector: 'bq-tab',
|
|
@@ -1218,8 +1422,8 @@ let BqTabGroup = class BqTabGroup {
|
|
|
1218
1422
|
this.el = r.nativeElement;
|
|
1219
1423
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
1220
1424
|
}
|
|
1221
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1222
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1425
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1426
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqTabGroup, isStandalone: true, 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 });
|
|
1223
1427
|
};
|
|
1224
1428
|
BqTabGroup = __decorate([
|
|
1225
1429
|
ProxyCmp({
|
|
@@ -1228,7 +1432,7 @@ BqTabGroup = __decorate([
|
|
|
1228
1432
|
}),
|
|
1229
1433
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1230
1434
|
], BqTabGroup);
|
|
1231
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1435
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTabGroup, decorators: [{
|
|
1232
1436
|
type: Component,
|
|
1233
1437
|
args: [{
|
|
1234
1438
|
selector: 'bq-tab-group',
|
|
@@ -1248,8 +1452,8 @@ let BqTag = class BqTag {
|
|
|
1248
1452
|
this.el = r.nativeElement;
|
|
1249
1453
|
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus']);
|
|
1250
1454
|
}
|
|
1251
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1252
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1455
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1456
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqTag, isStandalone: true, selector: "bq-tag", inputs: { border: "border", clickable: "clickable", color: "color", disabled: "disabled", hidden: "hidden", removable: "removable", selected: "selected", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1253
1457
|
};
|
|
1254
1458
|
BqTag = __decorate([
|
|
1255
1459
|
ProxyCmp({
|
|
@@ -1259,7 +1463,7 @@ BqTag = __decorate([
|
|
|
1259
1463
|
}),
|
|
1260
1464
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1261
1465
|
], BqTag);
|
|
1262
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1466
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTag, decorators: [{
|
|
1263
1467
|
type: Component,
|
|
1264
1468
|
args: [{
|
|
1265
1469
|
selector: 'bq-tag',
|
|
@@ -1279,8 +1483,8 @@ let BqTextarea = class BqTextarea {
|
|
|
1279
1483
|
this.el = r.nativeElement;
|
|
1280
1484
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
1281
1485
|
}
|
|
1282
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1283
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1486
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1487
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqTextarea, isStandalone: true, selector: "bq-textarea", inputs: { autoGrow: "autoGrow", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", debounceTime: "debounceTime", disableResize: "disableResize", disabled: "disabled", form: "form", maxlength: "maxlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", spellcheck: "spellcheck", validationStatus: "validationStatus", value: "value", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1284
1488
|
};
|
|
1285
1489
|
BqTextarea = __decorate([
|
|
1286
1490
|
ProxyCmp({
|
|
@@ -1289,7 +1493,7 @@ BqTextarea = __decorate([
|
|
|
1289
1493
|
}),
|
|
1290
1494
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1291
1495
|
], BqTextarea);
|
|
1292
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1496
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTextarea, decorators: [{
|
|
1293
1497
|
type: Component,
|
|
1294
1498
|
args: [{
|
|
1295
1499
|
selector: 'bq-textarea',
|
|
@@ -1309,8 +1513,8 @@ let BqToast = class BqToast {
|
|
|
1309
1513
|
this.el = r.nativeElement;
|
|
1310
1514
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow']);
|
|
1311
1515
|
}
|
|
1312
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1313
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1516
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1517
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqToast, isStandalone: true, 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 });
|
|
1314
1518
|
};
|
|
1315
1519
|
BqToast = __decorate([
|
|
1316
1520
|
ProxyCmp({
|
|
@@ -1320,7 +1524,7 @@ BqToast = __decorate([
|
|
|
1320
1524
|
}),
|
|
1321
1525
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1322
1526
|
], BqToast);
|
|
1323
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1527
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqToast, decorators: [{
|
|
1324
1528
|
type: Component,
|
|
1325
1529
|
args: [{
|
|
1326
1530
|
selector: 'bq-toast',
|
|
@@ -1339,8 +1543,8 @@ let BqTooltip = class BqTooltip {
|
|
|
1339
1543
|
c.detach();
|
|
1340
1544
|
this.el = r.nativeElement;
|
|
1341
1545
|
}
|
|
1342
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1343
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1546
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1547
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqTooltip, isStandalone: true, 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 });
|
|
1344
1548
|
};
|
|
1345
1549
|
BqTooltip = __decorate([
|
|
1346
1550
|
ProxyCmp({
|
|
@@ -1350,7 +1554,7 @@ BqTooltip = __decorate([
|
|
|
1350
1554
|
}),
|
|
1351
1555
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1352
1556
|
], BqTooltip);
|
|
1353
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1557
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTooltip, decorators: [{
|
|
1354
1558
|
type: Component,
|
|
1355
1559
|
args: [{
|
|
1356
1560
|
selector: 'bq-tooltip',
|
|
@@ -1365,11 +1569,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
1365
1569
|
/* -------------------------------------------------------------------------- */
|
|
1366
1570
|
/* DIRECTIVES */
|
|
1367
1571
|
/* -------------------------------------------------------------------------- */
|
|
1368
|
-
// @ts-ignore
|
|
1369
1572
|
|
|
1370
1573
|
/**
|
|
1371
1574
|
* Generated bundle index. Do not edit.
|
|
1372
1575
|
*/
|
|
1373
1576
|
|
|
1374
|
-
export { 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 };
|
|
1577
|
+
export { BooleanValueAccessor, 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, NumericValueAccessor, RadioValueAccessor, SelectValueAccessor, TextValueAccessor };
|
|
1375
1578
|
//# sourceMappingURL=beeq-angular-standalone.mjs.map
|