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