@beeq/angular 1.8.0-beta.8 → 1.8.0

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