@beeq/angular 1.8.0 → 1.8.2

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