@beeq/angular 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1305 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Directive, HostListener, ChangeDetectorRef, ElementRef, NgZone, Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
3
+ import { NG_VALUE_ACCESSOR } from '@angular/forms';
4
+ import { __decorate, __metadata } from 'tslib';
5
+ import { fromEvent } from 'rxjs';
6
+ import { CommonModule } from '@angular/common';
7
+ import { defineCustomElements } from '@beeq/core/dist/loader';
8
+
9
+ class ValueAccessor {
10
+ el;
11
+ onChange = () => { };
12
+ onTouched = () => { };
13
+ lastValue;
14
+ constructor(el) {
15
+ this.el = el;
16
+ }
17
+ writeValue(value) {
18
+ this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
19
+ }
20
+ handleChangeEvent(value) {
21
+ if (value !== this.lastValue) {
22
+ this.lastValue = value;
23
+ this.onChange(value);
24
+ }
25
+ }
26
+ _handleBlurEvent() {
27
+ this.onTouched();
28
+ }
29
+ registerOnChange(fn) {
30
+ this.onChange = fn;
31
+ }
32
+ registerOnTouched(fn) {
33
+ this.onTouched = fn;
34
+ }
35
+ setDisabledState(isDisabled) {
36
+ this.el.nativeElement.disabled = isDisabled;
37
+ }
38
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
39
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.1", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
40
+ }
41
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: ValueAccessor, decorators: [{
42
+ type: Directive,
43
+ args: [{}]
44
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
45
+ type: HostListener,
46
+ args: ['focusout']
47
+ }] } });
48
+
49
+ class BooleanValueAccessor extends ValueAccessor {
50
+ constructor(el) {
51
+ super(el);
52
+ }
53
+ writeValue(value) {
54
+ this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
55
+ }
56
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
57
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.1", type: BooleanValueAccessor, selector: "bq-checkbox, bq-switch", host: { listeners: { "bqChange": "handleChangeEvent($event.target.checked)" } }, providers: [
58
+ {
59
+ provide: NG_VALUE_ACCESSOR,
60
+ useExisting: BooleanValueAccessor,
61
+ multi: true
62
+ }
63
+ ], usesInheritance: true, ngImport: i0 });
64
+ }
65
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BooleanValueAccessor, decorators: [{
66
+ type: Directive,
67
+ args: [{
68
+ /* tslint:disable-next-line:directive-selector */
69
+ selector: 'bq-checkbox, bq-switch',
70
+ host: {
71
+ '(bqChange)': 'handleChangeEvent($event.target.checked)'
72
+ },
73
+ providers: [
74
+ {
75
+ provide: NG_VALUE_ACCESSOR,
76
+ useExisting: BooleanValueAccessor,
77
+ multi: true
78
+ }
79
+ ]
80
+ }]
81
+ }], ctorParameters: () => [{ type: i0.ElementRef }] });
82
+
83
+ class TextValueAccessor extends ValueAccessor {
84
+ constructor(el) {
85
+ super(el);
86
+ }
87
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
88
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.1", type: TextValueAccessor, selector: "bq-input, bq-radio-group, bq-select, bq-slider, bq-textarea", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
89
+ {
90
+ provide: NG_VALUE_ACCESSOR,
91
+ useExisting: TextValueAccessor,
92
+ multi: true
93
+ }
94
+ ], usesInheritance: true, ngImport: i0 });
95
+ }
96
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: TextValueAccessor, decorators: [{
97
+ type: Directive,
98
+ args: [{
99
+ /* tslint:disable-next-line:directive-selector */
100
+ selector: 'bq-input, bq-radio-group, bq-select, bq-slider, bq-textarea',
101
+ host: {
102
+ '(bqChange)': 'handleChangeEvent($event.target.value)'
103
+ },
104
+ providers: [
105
+ {
106
+ provide: NG_VALUE_ACCESSOR,
107
+ useExisting: TextValueAccessor,
108
+ multi: true
109
+ }
110
+ ]
111
+ }]
112
+ }], ctorParameters: () => [{ type: i0.ElementRef }] });
113
+
114
+ /* eslint-disable */
115
+ /* tslint:disable */
116
+ const proxyInputs = (Cmp, inputs) => {
117
+ const Prototype = Cmp.prototype;
118
+ inputs.forEach((item) => {
119
+ Object.defineProperty(Prototype, item, {
120
+ get() {
121
+ return this.el[item];
122
+ },
123
+ set(val) {
124
+ this.z.runOutsideAngular(() => (this.el[item] = val));
125
+ },
126
+ /**
127
+ * In the event that proxyInputs is called
128
+ * multiple times re-defining these inputs
129
+ * will cause an error to be thrown. As a result
130
+ * we set configurable: true to indicate these
131
+ * properties can be changed.
132
+ */
133
+ configurable: true,
134
+ });
135
+ });
136
+ };
137
+ const proxyMethods = (Cmp, methods) => {
138
+ const Prototype = Cmp.prototype;
139
+ methods.forEach((methodName) => {
140
+ Prototype[methodName] = function () {
141
+ const args = arguments;
142
+ return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
143
+ };
144
+ });
145
+ };
146
+ const proxyOutputs = (instance, el, events) => {
147
+ events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
148
+ };
149
+ const defineCustomElement = (tagName, customElement) => {
150
+ if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
151
+ customElements.define(tagName, customElement);
152
+ }
153
+ };
154
+ // tslint:disable-next-line: only-arrow-functions
155
+ function ProxyCmp(opts) {
156
+ const decorator = function (cls) {
157
+ const { defineCustomElementFn, inputs, methods } = opts;
158
+ if (defineCustomElementFn !== undefined) {
159
+ defineCustomElementFn();
160
+ }
161
+ if (inputs) {
162
+ proxyInputs(cls, inputs);
163
+ }
164
+ if (methods) {
165
+ proxyMethods(cls, methods);
166
+ }
167
+ return cls;
168
+ };
169
+ return decorator;
170
+ }
171
+
172
+ let BqAccordion = class BqAccordion {
173
+ z;
174
+ el;
175
+ constructor(c, r, z) {
176
+ this.z = z;
177
+ c.detach();
178
+ this.el = r.nativeElement;
179
+ proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur']);
180
+ }
181
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
182
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqAccordion, selector: "bq-accordion", inputs: { appearance: "appearance", disabled: "disabled", expanded: "expanded", rotate: "rotate", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
183
+ };
184
+ BqAccordion = __decorate([
185
+ ProxyCmp({
186
+ inputs: ['appearance', 'disabled', 'expanded', 'rotate', 'size']
187
+ }),
188
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
189
+ ], BqAccordion);
190
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqAccordion, decorators: [{
191
+ type: Component,
192
+ args: [{
193
+ selector: 'bq-accordion',
194
+ changeDetection: ChangeDetectionStrategy.OnPush,
195
+ template: '<ng-content></ng-content>',
196
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
197
+ inputs: ['appearance', 'disabled', 'expanded', 'rotate', 'size'],
198
+ }]
199
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
200
+ let BqAccordionGroup = class BqAccordionGroup {
201
+ z;
202
+ el;
203
+ constructor(c, r, z) {
204
+ this.z = z;
205
+ c.detach();
206
+ this.el = r.nativeElement;
207
+ }
208
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
209
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqAccordionGroup, selector: "bq-accordion-group", inputs: { expandAll: "expandAll", multiple: "multiple" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
210
+ };
211
+ BqAccordionGroup = __decorate([
212
+ ProxyCmp({
213
+ inputs: ['expandAll', 'multiple']
214
+ }),
215
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
216
+ ], BqAccordionGroup);
217
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqAccordionGroup, decorators: [{
218
+ type: Component,
219
+ args: [{
220
+ selector: 'bq-accordion-group',
221
+ changeDetection: ChangeDetectionStrategy.OnPush,
222
+ template: '<ng-content></ng-content>',
223
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
224
+ inputs: ['expandAll', 'multiple'],
225
+ }]
226
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
227
+ let BqAlert = class BqAlert {
228
+ z;
229
+ el;
230
+ constructor(c, r, z) {
231
+ this.z = z;
232
+ c.detach();
233
+ this.el = r.nativeElement;
234
+ proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
235
+ }
236
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
237
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqAlert, selector: "bq-alert", inputs: { autoDismiss: "autoDismiss", border: "border", disableClose: "disableClose", hideIcon: "hideIcon", open: "open", sticky: "sticky", time: "time", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
238
+ };
239
+ BqAlert = __decorate([
240
+ ProxyCmp({
241
+ inputs: ['autoDismiss', 'border', 'disableClose', 'hideIcon', 'open', 'sticky', 'time', 'type'],
242
+ methods: ['hide', 'show']
243
+ }),
244
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
245
+ ], BqAlert);
246
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqAlert, decorators: [{
247
+ type: Component,
248
+ args: [{
249
+ selector: 'bq-alert',
250
+ changeDetection: ChangeDetectionStrategy.OnPush,
251
+ template: '<ng-content></ng-content>',
252
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
253
+ inputs: ['autoDismiss', 'border', 'disableClose', 'hideIcon', 'open', 'sticky', 'time', 'type'],
254
+ }]
255
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
256
+ let BqAvatar = class BqAvatar {
257
+ z;
258
+ el;
259
+ constructor(c, r, z) {
260
+ this.z = z;
261
+ c.detach();
262
+ this.el = r.nativeElement;
263
+ }
264
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
265
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqAvatar, selector: "bq-avatar", inputs: { altText: "altText", image: "image", initials: "initials", label: "label", shape: "shape", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
266
+ };
267
+ BqAvatar = __decorate([
268
+ ProxyCmp({
269
+ inputs: ['altText', 'image', 'initials', 'label', 'shape', 'size']
270
+ }),
271
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
272
+ ], BqAvatar);
273
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqAvatar, decorators: [{
274
+ type: Component,
275
+ args: [{
276
+ selector: 'bq-avatar',
277
+ changeDetection: ChangeDetectionStrategy.OnPush,
278
+ template: '<ng-content></ng-content>',
279
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
280
+ inputs: ['altText', 'image', 'initials', 'label', 'shape', 'size'],
281
+ }]
282
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
283
+ let BqBadge = class BqBadge {
284
+ z;
285
+ el;
286
+ constructor(c, r, z) {
287
+ this.z = z;
288
+ c.detach();
289
+ this.el = r.nativeElement;
290
+ }
291
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
292
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqBadge, selector: "bq-badge", inputs: { backgroundColor: "backgroundColor", size: "size", textColor: "textColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
293
+ };
294
+ BqBadge = __decorate([
295
+ ProxyCmp({
296
+ inputs: ['backgroundColor', 'size', 'textColor']
297
+ }),
298
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
299
+ ], BqBadge);
300
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqBadge, decorators: [{
301
+ type: Component,
302
+ args: [{
303
+ selector: 'bq-badge',
304
+ changeDetection: ChangeDetectionStrategy.OnPush,
305
+ template: '<ng-content></ng-content>',
306
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
307
+ inputs: ['backgroundColor', 'size', 'textColor'],
308
+ }]
309
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
310
+ let BqBreadcrumb = class BqBreadcrumb {
311
+ z;
312
+ el;
313
+ constructor(c, r, z) {
314
+ this.z = z;
315
+ c.detach();
316
+ this.el = r.nativeElement;
317
+ proxyOutputs(this, this.el, ['bqBreadcrumbBlur', 'bqBreadcrumbFocus', 'bqBreadcrumbClick']);
318
+ }
319
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqBreadcrumb, 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: "17.2.1", type: BqBreadcrumb, selector: "bq-breadcrumb", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
321
+ };
322
+ BqBreadcrumb = __decorate([
323
+ ProxyCmp({
324
+ inputs: ['ariaLabel']
325
+ }),
326
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
327
+ ], BqBreadcrumb);
328
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqBreadcrumb, decorators: [{
329
+ type: Component,
330
+ args: [{
331
+ selector: 'bq-breadcrumb',
332
+ changeDetection: ChangeDetectionStrategy.OnPush,
333
+ template: '<ng-content></ng-content>',
334
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
335
+ inputs: ['ariaLabel'],
336
+ }]
337
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
338
+ let BqBreadcrumbItem = class BqBreadcrumbItem {
339
+ z;
340
+ el;
341
+ constructor(c, r, z) {
342
+ this.z = z;
343
+ c.detach();
344
+ this.el = r.nativeElement;
345
+ proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
346
+ }
347
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
348
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqBreadcrumbItem, selector: "bq-breadcrumb-item", inputs: { ariaLabel: "ariaLabel", href: "href", isLastItem: "isLastItem", rel: "rel", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
349
+ };
350
+ BqBreadcrumbItem = __decorate([
351
+ ProxyCmp({
352
+ inputs: ['ariaLabel', 'href', 'isLastItem', 'rel', 'target']
353
+ }),
354
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
355
+ ], BqBreadcrumbItem);
356
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqBreadcrumbItem, decorators: [{
357
+ type: Component,
358
+ args: [{
359
+ selector: 'bq-breadcrumb-item',
360
+ changeDetection: ChangeDetectionStrategy.OnPush,
361
+ template: '<ng-content></ng-content>',
362
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
363
+ inputs: ['ariaLabel', 'href', 'isLastItem', 'rel', 'target'],
364
+ }]
365
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
366
+ let BqButton = class BqButton {
367
+ z;
368
+ el;
369
+ constructor(c, r, z) {
370
+ this.z = z;
371
+ c.detach();
372
+ this.el = r.nativeElement;
373
+ proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
374
+ }
375
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
376
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqButton, selector: "bq-button", inputs: { appearance: "appearance", block: "block", border: "border", disabled: "disabled", download: "download", href: "href", justifyContent: "justifyContent", loading: "loading", size: "size", target: "target", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
377
+ };
378
+ BqButton = __decorate([
379
+ ProxyCmp({
380
+ inputs: ['appearance', 'block', 'border', 'disabled', 'download', 'href', 'justifyContent', 'loading', 'size', 'target', 'type', 'variant']
381
+ }),
382
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
383
+ ], BqButton);
384
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqButton, decorators: [{
385
+ type: Component,
386
+ args: [{
387
+ selector: 'bq-button',
388
+ changeDetection: ChangeDetectionStrategy.OnPush,
389
+ template: '<ng-content></ng-content>',
390
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
391
+ inputs: ['appearance', 'block', 'border', 'disabled', 'download', 'href', 'justifyContent', 'loading', 'size', 'target', 'type', 'variant'],
392
+ }]
393
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
394
+ let BqCard = class BqCard {
395
+ z;
396
+ el;
397
+ constructor(c, r, z) {
398
+ this.z = z;
399
+ c.detach();
400
+ this.el = r.nativeElement;
401
+ }
402
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
403
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqCard, selector: "bq-card", inputs: { border: "border", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
404
+ };
405
+ BqCard = __decorate([
406
+ ProxyCmp({
407
+ inputs: ['border', 'type']
408
+ }),
409
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
410
+ ], BqCard);
411
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqCard, decorators: [{
412
+ type: Component,
413
+ args: [{
414
+ selector: 'bq-card',
415
+ changeDetection: ChangeDetectionStrategy.OnPush,
416
+ template: '<ng-content></ng-content>',
417
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
418
+ inputs: ['border', 'type'],
419
+ }]
420
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
421
+ let BqCheckbox = class BqCheckbox {
422
+ z;
423
+ el;
424
+ constructor(c, r, z) {
425
+ this.z = z;
426
+ c.detach();
427
+ this.el = r.nativeElement;
428
+ proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
429
+ }
430
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
431
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqCheckbox, selector: "bq-checkbox", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", indeterminate: "indeterminate", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
432
+ };
433
+ BqCheckbox = __decorate([
434
+ ProxyCmp({
435
+ inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'indeterminate', 'name', 'required', 'value'],
436
+ methods: ['vClick', 'vFocus', 'vBlur']
437
+ }),
438
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
439
+ ], BqCheckbox);
440
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqCheckbox, decorators: [{
441
+ type: Component,
442
+ args: [{
443
+ selector: 'bq-checkbox',
444
+ changeDetection: ChangeDetectionStrategy.OnPush,
445
+ template: '<ng-content></ng-content>',
446
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
447
+ inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'indeterminate', 'name', 'required', 'value'],
448
+ }]
449
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
450
+ let BqDialog = class BqDialog {
451
+ z;
452
+ el;
453
+ constructor(c, r, z) {
454
+ this.z = z;
455
+ c.detach();
456
+ this.el = r.nativeElement;
457
+ proxyOutputs(this, this.el, ['bqCancel', 'bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
458
+ }
459
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
460
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqDialog, selector: "bq-dialog", inputs: { border: "border", disableBackdrop: "disableBackdrop", disableCloseClickOutside: "disableCloseClickOutside", disableCloseEscKeydown: "disableCloseEscKeydown", footerAppearance: "footerAppearance", hideCloseButton: "hideCloseButton", open: "open", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
461
+ };
462
+ BqDialog = __decorate([
463
+ ProxyCmp({
464
+ inputs: ['border', 'disableBackdrop', 'disableCloseClickOutside', 'disableCloseEscKeydown', 'footerAppearance', 'hideCloseButton', 'open', 'size'],
465
+ methods: ['show', 'hide', 'cancel']
466
+ }),
467
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
468
+ ], BqDialog);
469
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqDialog, decorators: [{
470
+ type: Component,
471
+ args: [{
472
+ selector: 'bq-dialog',
473
+ changeDetection: ChangeDetectionStrategy.OnPush,
474
+ template: '<ng-content></ng-content>',
475
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
476
+ inputs: ['border', 'disableBackdrop', 'disableCloseClickOutside', 'disableCloseEscKeydown', 'footerAppearance', 'hideCloseButton', 'open', 'size'],
477
+ }]
478
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
479
+ let BqDivider = class BqDivider {
480
+ z;
481
+ el;
482
+ constructor(c, r, z) {
483
+ this.z = z;
484
+ c.detach();
485
+ this.el = r.nativeElement;
486
+ }
487
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
488
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqDivider, selector: "bq-divider", inputs: { dashed: "dashed", orientation: "orientation", strokeBasis: "strokeBasis", strokeColor: "strokeColor", strokeDashGap: "strokeDashGap", strokeDashWidth: "strokeDashWidth", strokeLinecap: "strokeLinecap", strokeThickness: "strokeThickness", titleAlignment: "titleAlignment" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
489
+ };
490
+ BqDivider = __decorate([
491
+ ProxyCmp({
492
+ inputs: ['dashed', 'orientation', 'strokeBasis', 'strokeColor', 'strokeDashGap', 'strokeDashWidth', 'strokeLinecap', 'strokeThickness', 'titleAlignment']
493
+ }),
494
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
495
+ ], BqDivider);
496
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqDivider, decorators: [{
497
+ type: Component,
498
+ args: [{
499
+ selector: 'bq-divider',
500
+ changeDetection: ChangeDetectionStrategy.OnPush,
501
+ template: '<ng-content></ng-content>',
502
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
503
+ inputs: ['dashed', 'orientation', 'strokeBasis', 'strokeColor', 'strokeDashGap', 'strokeDashWidth', 'strokeLinecap', 'strokeThickness', 'titleAlignment'],
504
+ }]
505
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
506
+ let BqDropdown = class BqDropdown {
507
+ z;
508
+ el;
509
+ constructor(c, r, z) {
510
+ this.z = z;
511
+ c.detach();
512
+ this.el = r.nativeElement;
513
+ proxyOutputs(this, this.el, ['bqOpen']);
514
+ }
515
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
516
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqDropdown, selector: "bq-dropdown", inputs: { disabled: "disabled", distance: "distance", keepOpenOnSelect: "keepOpenOnSelect", open: "open", panelHeight: "panelHeight", placement: "placement", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
517
+ };
518
+ BqDropdown = __decorate([
519
+ ProxyCmp({
520
+ inputs: ['disabled', 'distance', 'keepOpenOnSelect', 'open', 'panelHeight', 'placement', 'sameWidth', 'skidding', 'strategy']
521
+ }),
522
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
523
+ ], BqDropdown);
524
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqDropdown, decorators: [{
525
+ type: Component,
526
+ args: [{
527
+ selector: 'bq-dropdown',
528
+ changeDetection: ChangeDetectionStrategy.OnPush,
529
+ template: '<ng-content></ng-content>',
530
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
531
+ inputs: ['disabled', 'distance', 'keepOpenOnSelect', 'open', 'panelHeight', 'placement', 'sameWidth', 'skidding', 'strategy'],
532
+ }]
533
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
534
+ let BqEmptyState = class BqEmptyState {
535
+ z;
536
+ el;
537
+ constructor(c, r, z) {
538
+ this.z = z;
539
+ c.detach();
540
+ this.el = r.nativeElement;
541
+ }
542
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
543
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqEmptyState, selector: "bq-empty-state", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
544
+ };
545
+ BqEmptyState = __decorate([
546
+ ProxyCmp({
547
+ inputs: ['size']
548
+ }),
549
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
550
+ ], BqEmptyState);
551
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqEmptyState, decorators: [{
552
+ type: Component,
553
+ args: [{
554
+ selector: 'bq-empty-state',
555
+ changeDetection: ChangeDetectionStrategy.OnPush,
556
+ template: '<ng-content></ng-content>',
557
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
558
+ inputs: ['size'],
559
+ }]
560
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
561
+ let BqIcon = class BqIcon {
562
+ z;
563
+ el;
564
+ constructor(c, r, z) {
565
+ this.z = z;
566
+ c.detach();
567
+ this.el = r.nativeElement;
568
+ proxyOutputs(this, this.el, ['svgLoaded']);
569
+ }
570
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
571
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqIcon, selector: "bq-icon", inputs: { color: "color", name: "name", size: "size", src: "src", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
572
+ };
573
+ BqIcon = __decorate([
574
+ ProxyCmp({
575
+ inputs: ['color', 'name', 'size', 'src', 'weight']
576
+ }),
577
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
578
+ ], BqIcon);
579
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqIcon, decorators: [{
580
+ type: Component,
581
+ args: [{
582
+ selector: 'bq-icon',
583
+ changeDetection: ChangeDetectionStrategy.OnPush,
584
+ template: '<ng-content></ng-content>',
585
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
586
+ inputs: ['color', 'name', 'size', 'src', 'weight'],
587
+ }]
588
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
589
+ let BqInput = class BqInput {
590
+ z;
591
+ el;
592
+ constructor(c, r, z) {
593
+ this.z = z;
594
+ c.detach();
595
+ this.el = r.nativeElement;
596
+ proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
597
+ }
598
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
599
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqInput, selector: "bq-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disabled: "disabled", form: "form", inputmode: "inputmode", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", step: "step", type: "type", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
600
+ };
601
+ BqInput = __decorate([
602
+ ProxyCmp({
603
+ inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value']
604
+ }),
605
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
606
+ ], BqInput);
607
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqInput, decorators: [{
608
+ type: Component,
609
+ args: [{
610
+ selector: 'bq-input',
611
+ changeDetection: ChangeDetectionStrategy.OnPush,
612
+ template: '<ng-content></ng-content>',
613
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
614
+ inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value'],
615
+ }]
616
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
617
+ let BqNotification = class BqNotification {
618
+ z;
619
+ el;
620
+ constructor(c, r, z) {
621
+ this.z = z;
622
+ c.detach();
623
+ this.el = r.nativeElement;
624
+ proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
625
+ }
626
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
627
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqNotification, selector: "bq-notification", inputs: { autoDismiss: "autoDismiss", border: "border", disableClose: "disableClose", hideIcon: "hideIcon", open: "open", time: "time", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
628
+ };
629
+ BqNotification = __decorate([
630
+ ProxyCmp({
631
+ inputs: ['autoDismiss', 'border', 'disableClose', 'hideIcon', 'open', 'time', 'type'],
632
+ methods: ['hide', 'show', 'toast']
633
+ }),
634
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
635
+ ], BqNotification);
636
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqNotification, decorators: [{
637
+ type: Component,
638
+ args: [{
639
+ selector: 'bq-notification',
640
+ changeDetection: ChangeDetectionStrategy.OnPush,
641
+ template: '<ng-content></ng-content>',
642
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
643
+ inputs: ['autoDismiss', 'border', 'disableClose', 'hideIcon', 'open', 'time', 'type'],
644
+ }]
645
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
646
+ let BqOption = class BqOption {
647
+ z;
648
+ el;
649
+ constructor(c, r, z) {
650
+ this.z = z;
651
+ c.detach();
652
+ this.el = r.nativeElement;
653
+ proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick', 'bqEnter']);
654
+ }
655
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
656
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqOption, selector: "bq-option", inputs: { disabled: "disabled", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
657
+ };
658
+ BqOption = __decorate([
659
+ ProxyCmp({
660
+ inputs: ['disabled', 'selected', 'value']
661
+ }),
662
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
663
+ ], BqOption);
664
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqOption, decorators: [{
665
+ type: Component,
666
+ args: [{
667
+ selector: 'bq-option',
668
+ changeDetection: ChangeDetectionStrategy.OnPush,
669
+ template: '<ng-content></ng-content>',
670
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
671
+ inputs: ['disabled', 'selected', 'value'],
672
+ }]
673
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
674
+ let BqOptionGroup = class BqOptionGroup {
675
+ z;
676
+ el;
677
+ constructor(c, r, z) {
678
+ this.z = z;
679
+ c.detach();
680
+ this.el = r.nativeElement;
681
+ }
682
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqOptionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
683
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqOptionGroup, selector: "bq-option-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
684
+ };
685
+ BqOptionGroup = __decorate([
686
+ ProxyCmp({}),
687
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
688
+ ], BqOptionGroup);
689
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqOptionGroup, decorators: [{
690
+ type: Component,
691
+ args: [{
692
+ selector: 'bq-option-group',
693
+ changeDetection: ChangeDetectionStrategy.OnPush,
694
+ template: '<ng-content></ng-content>',
695
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
696
+ inputs: [],
697
+ }]
698
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
699
+ let BqOptionList = class BqOptionList {
700
+ z;
701
+ el;
702
+ constructor(c, r, z) {
703
+ this.z = z;
704
+ c.detach();
705
+ this.el = r.nativeElement;
706
+ proxyOutputs(this, this.el, ['bqSelect']);
707
+ }
708
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqOptionList, 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: "17.2.1", type: BqOptionList, selector: "bq-option-list", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
710
+ };
711
+ BqOptionList = __decorate([
712
+ ProxyCmp({
713
+ inputs: ['ariaLabel']
714
+ }),
715
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
716
+ ], BqOptionList);
717
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqOptionList, decorators: [{
718
+ type: Component,
719
+ args: [{
720
+ selector: 'bq-option-list',
721
+ changeDetection: ChangeDetectionStrategy.OnPush,
722
+ template: '<ng-content></ng-content>',
723
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
724
+ inputs: ['ariaLabel'],
725
+ }]
726
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
727
+ let BqPanel = class BqPanel {
728
+ z;
729
+ el;
730
+ constructor(c, r, z) {
731
+ this.z = z;
732
+ c.detach();
733
+ this.el = r.nativeElement;
734
+ }
735
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
736
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqPanel, selector: "bq-panel", inputs: { distance: "distance", open: "open", placement: "placement", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
737
+ };
738
+ BqPanel = __decorate([
739
+ ProxyCmp({
740
+ inputs: ['distance', 'open', 'placement', 'sameWidth', 'skidding', 'strategy']
741
+ }),
742
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
743
+ ], BqPanel);
744
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqPanel, decorators: [{
745
+ type: Component,
746
+ args: [{
747
+ selector: 'bq-panel',
748
+ changeDetection: ChangeDetectionStrategy.OnPush,
749
+ template: '<ng-content></ng-content>',
750
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
751
+ inputs: ['distance', 'open', 'placement', 'sameWidth', 'skidding', 'strategy'],
752
+ }]
753
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
754
+ let BqRadio = class BqRadio {
755
+ z;
756
+ el;
757
+ constructor(c, r, z) {
758
+ this.z = z;
759
+ c.detach();
760
+ this.el = r.nativeElement;
761
+ proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
762
+ }
763
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
764
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqRadio, selector: "bq-radio", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
765
+ };
766
+ BqRadio = __decorate([
767
+ ProxyCmp({
768
+ inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'name', 'required', 'value'],
769
+ methods: ['vClick', 'vFocus', 'vBlur']
770
+ }),
771
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
772
+ ], BqRadio);
773
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqRadio, decorators: [{
774
+ type: Component,
775
+ args: [{
776
+ selector: 'bq-radio',
777
+ changeDetection: ChangeDetectionStrategy.OnPush,
778
+ template: '<ng-content></ng-content>',
779
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
780
+ inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'name', 'required', 'value'],
781
+ }]
782
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
783
+ let BqRadioGroup = class BqRadioGroup {
784
+ z;
785
+ el;
786
+ constructor(c, r, z) {
787
+ this.z = z;
788
+ c.detach();
789
+ this.el = r.nativeElement;
790
+ proxyOutputs(this, this.el, ['bqChange']);
791
+ }
792
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
793
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqRadioGroup, selector: "bq-radio-group", inputs: { backgroundOnHover: "backgroundOnHover", debounceTime: "debounceTime", disabled: "disabled", fieldset: "fieldset", name: "name", orientation: "orientation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
794
+ };
795
+ BqRadioGroup = __decorate([
796
+ ProxyCmp({
797
+ inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', 'name', 'orientation', 'value']
798
+ }),
799
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
800
+ ], BqRadioGroup);
801
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqRadioGroup, decorators: [{
802
+ type: Component,
803
+ args: [{
804
+ selector: 'bq-radio-group',
805
+ changeDetection: ChangeDetectionStrategy.OnPush,
806
+ template: '<ng-content></ng-content>',
807
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
808
+ inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', 'name', 'orientation', 'value'],
809
+ }]
810
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
811
+ let BqSelect = class BqSelect {
812
+ z;
813
+ el;
814
+ constructor(c, r, z) {
815
+ this.z = z;
816
+ c.detach();
817
+ this.el = r.nativeElement;
818
+ proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect']);
819
+ }
820
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
821
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqSelect, selector: "bq-select", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", disableClear: "disableClear", disabled: "disabled", distance: "distance", form: "form", keepOpenOnSelect: "keepOpenOnSelect", name: "name", open: "open", panelHeight: "panelHeight", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
822
+ };
823
+ BqSelect = __decorate([
824
+ ProxyCmp({
825
+ inputs: ['autofocus', 'clearButtonLabel', 'disableClear', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
826
+ methods: ['clear']
827
+ }),
828
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
829
+ ], BqSelect);
830
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqSelect, decorators: [{
831
+ type: Component,
832
+ args: [{
833
+ selector: 'bq-select',
834
+ changeDetection: ChangeDetectionStrategy.OnPush,
835
+ template: '<ng-content></ng-content>',
836
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
837
+ inputs: ['autofocus', 'clearButtonLabel', 'disableClear', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
838
+ }]
839
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
840
+ let BqSideMenu = class BqSideMenu {
841
+ z;
842
+ el;
843
+ constructor(c, r, z) {
844
+ this.z = z;
845
+ c.detach();
846
+ this.el = r.nativeElement;
847
+ proxyOutputs(this, this.el, ['bqCollapse', 'bqSelect']);
848
+ }
849
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqSideMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
850
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqSideMenu, selector: "bq-side-menu", inputs: { appearance: "appearance", collapse: "collapse", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
851
+ };
852
+ BqSideMenu = __decorate([
853
+ ProxyCmp({
854
+ inputs: ['appearance', 'collapse', 'size'],
855
+ methods: ['toggleCollapse']
856
+ }),
857
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
858
+ ], BqSideMenu);
859
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqSideMenu, decorators: [{
860
+ type: Component,
861
+ args: [{
862
+ selector: 'bq-side-menu',
863
+ changeDetection: ChangeDetectionStrategy.OnPush,
864
+ template: '<ng-content></ng-content>',
865
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
866
+ inputs: ['appearance', 'collapse', 'size'],
867
+ }]
868
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
869
+ let BqSideMenuItem = class BqSideMenuItem {
870
+ z;
871
+ el;
872
+ constructor(c, r, z) {
873
+ this.z = z;
874
+ c.detach();
875
+ this.el = r.nativeElement;
876
+ proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
877
+ }
878
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqSideMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
879
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqSideMenuItem, selector: "bq-side-menu-item", inputs: { active: "active", collapse: "collapse", disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
880
+ };
881
+ BqSideMenuItem = __decorate([
882
+ ProxyCmp({
883
+ inputs: ['active', 'collapse', 'disabled']
884
+ }),
885
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
886
+ ], BqSideMenuItem);
887
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqSideMenuItem, decorators: [{
888
+ type: Component,
889
+ args: [{
890
+ selector: 'bq-side-menu-item',
891
+ changeDetection: ChangeDetectionStrategy.OnPush,
892
+ template: '<ng-content></ng-content>',
893
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
894
+ inputs: ['active', 'collapse', 'disabled'],
895
+ }]
896
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
897
+ let BqSlider = class BqSlider {
898
+ z;
899
+ el;
900
+ constructor(c, r, z) {
901
+ this.z = z;
902
+ c.detach();
903
+ this.el = r.nativeElement;
904
+ proxyOutputs(this, this.el, ['bqChange', 'bqBlur', 'bqFocus']);
905
+ }
906
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
907
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqSlider, selector: "bq-slider", inputs: { debounceTime: "debounceTime", disabled: "disabled", gap: "gap", max: "max", min: "min", step: "step", type: "type", value: "value", valueIndicator: "valueIndicator" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
908
+ };
909
+ BqSlider = __decorate([
910
+ ProxyCmp({
911
+ inputs: ['debounceTime', 'disabled', 'gap', 'max', 'min', 'step', 'type', 'value', 'valueIndicator']
912
+ }),
913
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
914
+ ], BqSlider);
915
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqSlider, decorators: [{
916
+ type: Component,
917
+ args: [{
918
+ selector: 'bq-slider',
919
+ changeDetection: ChangeDetectionStrategy.OnPush,
920
+ template: '<ng-content></ng-content>',
921
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
922
+ inputs: ['debounceTime', 'disabled', 'gap', 'max', 'min', 'step', 'type', 'value', 'valueIndicator'],
923
+ }]
924
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
925
+ let BqSpinner = class BqSpinner {
926
+ z;
927
+ el;
928
+ constructor(c, r, z) {
929
+ this.z = z;
930
+ c.detach();
931
+ this.el = r.nativeElement;
932
+ }
933
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
934
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqSpinner, selector: "bq-spinner", inputs: { animation: "animation", size: "size", textPosition: "textPosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
935
+ };
936
+ BqSpinner = __decorate([
937
+ ProxyCmp({
938
+ inputs: ['animation', 'size', 'textPosition']
939
+ }),
940
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
941
+ ], BqSpinner);
942
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqSpinner, decorators: [{
943
+ type: Component,
944
+ args: [{
945
+ selector: 'bq-spinner',
946
+ changeDetection: ChangeDetectionStrategy.OnPush,
947
+ template: '<ng-content></ng-content>',
948
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
949
+ inputs: ['animation', 'size', 'textPosition'],
950
+ }]
951
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
952
+ let BqStatus = class BqStatus {
953
+ z;
954
+ el;
955
+ constructor(c, r, z) {
956
+ this.z = z;
957
+ c.detach();
958
+ this.el = r.nativeElement;
959
+ }
960
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
961
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqStatus, selector: "bq-status", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
962
+ };
963
+ BqStatus = __decorate([
964
+ ProxyCmp({
965
+ inputs: ['type']
966
+ }),
967
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
968
+ ], BqStatus);
969
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqStatus, decorators: [{
970
+ type: Component,
971
+ args: [{
972
+ selector: 'bq-status',
973
+ changeDetection: ChangeDetectionStrategy.OnPush,
974
+ template: '<ng-content></ng-content>',
975
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
976
+ inputs: ['type'],
977
+ }]
978
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
979
+ let BqStepItem = class BqStepItem {
980
+ z;
981
+ el;
982
+ constructor(c, r, z) {
983
+ this.z = z;
984
+ c.detach();
985
+ this.el = r.nativeElement;
986
+ proxyOutputs(this, this.el, ['bqClick']);
987
+ }
988
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqStepItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
989
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqStepItem, selector: "bq-step-item", inputs: { size: "size", status: "status", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
990
+ };
991
+ BqStepItem = __decorate([
992
+ ProxyCmp({
993
+ inputs: ['size', 'status', 'type']
994
+ }),
995
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
996
+ ], BqStepItem);
997
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqStepItem, decorators: [{
998
+ type: Component,
999
+ args: [{
1000
+ selector: 'bq-step-item',
1001
+ changeDetection: ChangeDetectionStrategy.OnPush,
1002
+ template: '<ng-content></ng-content>',
1003
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1004
+ inputs: ['size', 'status', 'type'],
1005
+ }]
1006
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1007
+ let BqSteps = class BqSteps {
1008
+ z;
1009
+ el;
1010
+ constructor(c, r, z) {
1011
+ this.z = z;
1012
+ c.detach();
1013
+ this.el = r.nativeElement;
1014
+ }
1015
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1016
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqSteps, selector: "bq-steps", inputs: { dividerColor: "dividerColor", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1017
+ };
1018
+ BqSteps = __decorate([
1019
+ ProxyCmp({
1020
+ inputs: ['dividerColor', 'size', 'type']
1021
+ }),
1022
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1023
+ ], BqSteps);
1024
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqSteps, decorators: [{
1025
+ type: Component,
1026
+ args: [{
1027
+ selector: 'bq-steps',
1028
+ changeDetection: ChangeDetectionStrategy.OnPush,
1029
+ template: '<ng-content></ng-content>',
1030
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1031
+ inputs: ['dividerColor', 'size', 'type'],
1032
+ }]
1033
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1034
+ let BqSwitch = class BqSwitch {
1035
+ z;
1036
+ el;
1037
+ constructor(c, r, z) {
1038
+ this.z = z;
1039
+ c.detach();
1040
+ this.el = r.nativeElement;
1041
+ proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
1042
+ }
1043
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1044
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqSwitch, selector: "bq-switch", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", fullWidth: "fullWidth", innerLabel: "innerLabel", justifyContent: "justifyContent", name: "name", required: "required", reverseOrder: "reverseOrder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1045
+ };
1046
+ BqSwitch = __decorate([
1047
+ ProxyCmp({
1048
+ inputs: ['backgroundOnHover', 'checked', 'disabled', 'fullWidth', 'innerLabel', 'justifyContent', 'name', 'required', 'reverseOrder', 'value'],
1049
+ methods: ['vClick', 'vFocus', 'vBlur']
1050
+ }),
1051
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1052
+ ], BqSwitch);
1053
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqSwitch, decorators: [{
1054
+ type: Component,
1055
+ args: [{
1056
+ selector: 'bq-switch',
1057
+ changeDetection: ChangeDetectionStrategy.OnPush,
1058
+ template: '<ng-content></ng-content>',
1059
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1060
+ inputs: ['backgroundOnHover', 'checked', 'disabled', 'fullWidth', 'innerLabel', 'justifyContent', 'name', 'required', 'reverseOrder', 'value'],
1061
+ }]
1062
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1063
+ let BqTab = class BqTab {
1064
+ z;
1065
+ el;
1066
+ constructor(c, r, z) {
1067
+ this.z = z;
1068
+ c.detach();
1069
+ this.el = r.nativeElement;
1070
+ proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
1071
+ }
1072
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1073
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqTab, selector: "bq-tab", inputs: { active: "active", controls: "controls", disabled: "disabled", size: "size", tabId: "tabId" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1074
+ };
1075
+ BqTab = __decorate([
1076
+ ProxyCmp({
1077
+ inputs: ['active', 'controls', 'disabled', 'size', 'tabId'],
1078
+ methods: ['vClick', 'vFocus', 'vBlur', 'enableFocus']
1079
+ }),
1080
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1081
+ ], BqTab);
1082
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqTab, decorators: [{
1083
+ type: Component,
1084
+ args: [{
1085
+ selector: 'bq-tab',
1086
+ changeDetection: ChangeDetectionStrategy.OnPush,
1087
+ template: '<ng-content></ng-content>',
1088
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1089
+ inputs: ['active', 'controls', 'disabled', 'size', 'tabId'],
1090
+ }]
1091
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1092
+ let BqTabGroup = class BqTabGroup {
1093
+ z;
1094
+ el;
1095
+ constructor(c, r, z) {
1096
+ this.z = z;
1097
+ c.detach();
1098
+ this.el = r.nativeElement;
1099
+ proxyOutputs(this, this.el, ['bqChange']);
1100
+ }
1101
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1102
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqTabGroup, selector: "bq-tab-group", inputs: { debounceTime: "debounceTime", disableDivider: "disableDivider", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1103
+ };
1104
+ BqTabGroup = __decorate([
1105
+ ProxyCmp({
1106
+ inputs: ['debounceTime', 'disableDivider', 'size', 'value']
1107
+ }),
1108
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1109
+ ], BqTabGroup);
1110
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqTabGroup, decorators: [{
1111
+ type: Component,
1112
+ args: [{
1113
+ selector: 'bq-tab-group',
1114
+ changeDetection: ChangeDetectionStrategy.OnPush,
1115
+ template: '<ng-content></ng-content>',
1116
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1117
+ inputs: ['debounceTime', 'disableDivider', 'size', 'value'],
1118
+ }]
1119
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1120
+ let BqTag = class BqTag {
1121
+ z;
1122
+ el;
1123
+ constructor(c, r, z) {
1124
+ this.z = z;
1125
+ c.detach();
1126
+ this.el = r.nativeElement;
1127
+ proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus']);
1128
+ }
1129
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1130
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqTag, selector: "bq-tag", inputs: { border: "border", clickable: "clickable", color: "color", disabled: "disabled", hidden: "hidden", removable: "removable", selected: "selected", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1131
+ };
1132
+ BqTag = __decorate([
1133
+ ProxyCmp({
1134
+ inputs: ['border', 'clickable', 'color', 'disabled', 'hidden', 'removable', 'selected', 'size', 'variant'],
1135
+ methods: ['hide', 'show']
1136
+ }),
1137
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1138
+ ], BqTag);
1139
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqTag, decorators: [{
1140
+ type: Component,
1141
+ args: [{
1142
+ selector: 'bq-tag',
1143
+ changeDetection: ChangeDetectionStrategy.OnPush,
1144
+ template: '<ng-content></ng-content>',
1145
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1146
+ inputs: ['border', 'clickable', 'color', 'disabled', 'hidden', 'removable', 'selected', 'size', 'variant'],
1147
+ }]
1148
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1149
+ let BqTextarea = class BqTextarea {
1150
+ z;
1151
+ el;
1152
+ constructor(c, r, z) {
1153
+ this.z = z;
1154
+ c.detach();
1155
+ this.el = r.nativeElement;
1156
+ proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
1157
+ }
1158
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1159
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqTextarea, selector: "bq-textarea", inputs: { autoGrow: "autoGrow", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", debounceTime: "debounceTime", disableResize: "disableResize", disabled: "disabled", form: "form", maxlength: "maxlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", spellcheck: "spellcheck", validationStatus: "validationStatus", value: "value", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1160
+ };
1161
+ BqTextarea = __decorate([
1162
+ ProxyCmp({
1163
+ inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap']
1164
+ }),
1165
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1166
+ ], BqTextarea);
1167
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqTextarea, decorators: [{
1168
+ type: Component,
1169
+ args: [{
1170
+ selector: 'bq-textarea',
1171
+ changeDetection: ChangeDetectionStrategy.OnPush,
1172
+ template: '<ng-content></ng-content>',
1173
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1174
+ inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap'],
1175
+ }]
1176
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1177
+ let BqToast = class BqToast {
1178
+ z;
1179
+ el;
1180
+ constructor(c, r, z) {
1181
+ this.z = z;
1182
+ c.detach();
1183
+ this.el = r.nativeElement;
1184
+ proxyOutputs(this, this.el, ['bqHide', 'bqShow']);
1185
+ }
1186
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqToast, 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: "17.2.1", type: BqToast, selector: "bq-toast", inputs: { border: "border", hideIcon: "hideIcon", open: "open", placement: "placement", time: "time", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1188
+ };
1189
+ BqToast = __decorate([
1190
+ ProxyCmp({
1191
+ inputs: ['border', 'hideIcon', 'open', 'placement', 'time', 'type'],
1192
+ methods: ['show', 'hide', 'toast']
1193
+ }),
1194
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1195
+ ], BqToast);
1196
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqToast, decorators: [{
1197
+ type: Component,
1198
+ args: [{
1199
+ selector: 'bq-toast',
1200
+ changeDetection: ChangeDetectionStrategy.OnPush,
1201
+ template: '<ng-content></ng-content>',
1202
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1203
+ inputs: ['border', 'hideIcon', 'open', 'placement', 'time', 'type'],
1204
+ }]
1205
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1206
+ let BqTooltip = class BqTooltip {
1207
+ z;
1208
+ el;
1209
+ constructor(c, r, z) {
1210
+ this.z = z;
1211
+ c.detach();
1212
+ this.el = r.nativeElement;
1213
+ }
1214
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1215
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.1", type: BqTooltip, selector: "bq-tooltip", inputs: { displayOn: "displayOn", distance: "distance", hideArrow: "hideArrow", placement: "placement", sameWidth: "sameWidth", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1216
+ };
1217
+ BqTooltip = __decorate([
1218
+ ProxyCmp({
1219
+ inputs: ['displayOn', 'distance', 'hideArrow', 'placement', 'sameWidth', 'visible'],
1220
+ methods: ['show', 'hide']
1221
+ }),
1222
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1223
+ ], BqTooltip);
1224
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BqTooltip, decorators: [{
1225
+ type: Component,
1226
+ args: [{
1227
+ selector: 'bq-tooltip',
1228
+ changeDetection: ChangeDetectionStrategy.OnPush,
1229
+ template: '<ng-content></ng-content>',
1230
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1231
+ inputs: ['displayOn', 'distance', 'hideArrow', 'placement', 'sameWidth', 'visible'],
1232
+ }]
1233
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1234
+
1235
+ const DIRECTIVES = [
1236
+ BqAccordion,
1237
+ BqAccordionGroup,
1238
+ BqAlert,
1239
+ BqAvatar,
1240
+ BqBadge,
1241
+ BqBreadcrumb,
1242
+ BqBreadcrumbItem,
1243
+ BqButton,
1244
+ BqCard,
1245
+ BqCheckbox,
1246
+ BqDialog,
1247
+ BqDivider,
1248
+ BqDropdown,
1249
+ BqEmptyState,
1250
+ BqIcon,
1251
+ BqInput,
1252
+ BqNotification,
1253
+ BqOption,
1254
+ BqOptionGroup,
1255
+ BqOptionList,
1256
+ BqPanel,
1257
+ BqRadio,
1258
+ BqRadioGroup,
1259
+ BqSelect,
1260
+ BqSideMenu,
1261
+ BqSideMenuItem,
1262
+ BqSlider,
1263
+ BqSpinner,
1264
+ BqStatus,
1265
+ BqStepItem,
1266
+ BqSteps,
1267
+ BqSwitch,
1268
+ BqTab,
1269
+ BqTabGroup,
1270
+ BqTag,
1271
+ BqTextarea,
1272
+ BqToast,
1273
+ BqTooltip
1274
+ ];
1275
+
1276
+ class BeeQModule {
1277
+ static forRoot() {
1278
+ defineCustomElements();
1279
+ return {
1280
+ ngModule: BeeQModule,
1281
+ };
1282
+ }
1283
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BeeQModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1284
+ /** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.1", ngImport: i0, type: BeeQModule, declarations: [BqAccordion, BqAccordionGroup, BqAlert, BqAvatar, BqBadge, BqBreadcrumb, BqBreadcrumbItem, BqButton, BqCard, BqCheckbox, BqDialog, BqDivider, BqDropdown, BqEmptyState, BqIcon, BqInput, BqNotification, BqOption, BqOptionGroup, BqOptionList, BqPanel, BqRadio, BqRadioGroup, BqSelect, BqSideMenu, BqSideMenuItem, BqSlider, BqSpinner, BqStatus, BqStepItem, BqSteps, BqSwitch, BqTab, BqTabGroup, BqTag, BqTextarea, BqToast, BqTooltip], imports: [CommonModule], exports: [BqAccordion, BqAccordionGroup, BqAlert, BqAvatar, BqBadge, BqBreadcrumb, BqBreadcrumbItem, BqButton, BqCard, BqCheckbox, BqDialog, BqDivider, BqDropdown, BqEmptyState, BqIcon, BqInput, BqNotification, BqOption, BqOptionGroup, BqOptionList, BqPanel, BqRadio, BqRadioGroup, BqSelect, BqSideMenu, BqSideMenuItem, BqSlider, BqSpinner, BqStatus, BqStepItem, BqSteps, BqSwitch, BqTab, BqTabGroup, BqTag, BqTextarea, BqToast, BqTooltip] });
1285
+ /** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BeeQModule, imports: [CommonModule] });
1286
+ }
1287
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: BeeQModule, decorators: [{
1288
+ type: NgModule,
1289
+ args: [{
1290
+ imports: [CommonModule],
1291
+ declarations: [...DIRECTIVES],
1292
+ exports: [...DIRECTIVES],
1293
+ }]
1294
+ }] });
1295
+
1296
+ /* -------------------------------------------------------------------------- */
1297
+ /* DIRECTIVES */
1298
+ /* -------------------------------------------------------------------------- */
1299
+
1300
+ /**
1301
+ * Generated bundle index. Do not edit.
1302
+ */
1303
+
1304
+ export { BeeQModule, BooleanValueAccessor, BqAccordion, BqAccordionGroup, BqAlert, BqAvatar, BqBadge, BqBreadcrumb, BqBreadcrumbItem, BqButton, BqCard, BqCheckbox, BqDialog, BqDivider, BqDropdown, BqEmptyState, BqIcon, BqInput, BqNotification, BqOption, BqOptionGroup, BqOptionList, BqPanel, BqRadio, BqRadioGroup, BqSelect, BqSideMenu, BqSideMenuItem, BqSlider, BqSpinner, BqStatus, BqStepItem, BqSteps, BqSwitch, BqTab, BqTabGroup, BqTag, BqTextarea, BqToast, BqTooltip, TextValueAccessor };
1305
+ //# sourceMappingURL=beeq-angular.mjs.map