@beeq/angular 1.8.0 → 1.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/beeq.module.d.ts +15 -0
  2. package/directives/angular-component-lib/utils.d.ts +9 -0
  3. package/directives/boolean-value-accessor.d.ts +9 -0
  4. package/directives/components.d.ts +2042 -0
  5. package/directives/index.d.ts +2 -0
  6. package/directives/number-value-accessor.d.ts +9 -0
  7. package/directives/radio-value-accessor.d.ts +8 -0
  8. package/directives/select-value-accessor.d.ts +8 -0
  9. package/directives/text-value-accessor.d.ts +8 -0
  10. package/directives/value-accessor.d.ts +18 -0
  11. package/esm2022/beeq-angular.mjs +5 -0
  12. package/esm2022/beeq.module.mjs +59 -0
  13. package/esm2022/directives/angular-component-lib/utils.mjs +59 -0
  14. package/esm2022/directives/boolean-value-accessor.mjs +38 -0
  15. package/esm2022/directives/components.mjs +2705 -0
  16. package/esm2022/directives/index.mjs +46 -0
  17. package/esm2022/directives/number-value-accessor.mjs +40 -0
  18. package/esm2022/directives/radio-value-accessor.mjs +35 -0
  19. package/esm2022/directives/select-value-accessor.mjs +35 -0
  20. package/esm2022/directives/text-value-accessor.mjs +35 -0
  21. package/esm2022/directives/value-accessor.mjs +40 -0
  22. package/esm2022/index.mjs +14 -0
  23. package/esm2022/standalone/beeq-angular-standalone.mjs +5 -0
  24. package/esm2022/standalone/directives/angular-component-lib/utils.mjs +59 -0
  25. package/esm2022/standalone/directives/boolean-value-accessor.mjs +38 -0
  26. package/esm2022/standalone/directives/components.mjs +1264 -0
  27. package/esm2022/standalone/directives/number-value-accessor.mjs +40 -0
  28. package/esm2022/standalone/directives/radio-value-accessor.mjs +35 -0
  29. package/esm2022/standalone/directives/select-value-accessor.mjs +35 -0
  30. package/esm2022/standalone/directives/text-value-accessor.mjs +35 -0
  31. package/esm2022/standalone/directives/value-accessor.mjs +40 -0
  32. package/esm2022/standalone/index.mjs +10 -0
  33. package/fesm2022/beeq-angular-standalone.mjs +1491 -0
  34. package/fesm2022/beeq-angular-standalone.mjs.map +1 -0
  35. package/fesm2022/beeq-angular.mjs +3027 -0
  36. package/fesm2022/beeq-angular.mjs.map +1 -0
  37. package/{standalone/src/index.ts → index.d.ts} +1 -4
  38. package/package.json +24 -5
  39. package/standalone/directives/angular-component-lib/utils.d.ts +9 -0
  40. package/standalone/directives/boolean-value-accessor.d.ts +9 -0
  41. package/standalone/directives/components.d.ts +776 -0
  42. package/standalone/directives/number-value-accessor.d.ts +9 -0
  43. package/standalone/directives/radio-value-accessor.d.ts +8 -0
  44. package/standalone/directives/select-value-accessor.d.ts +8 -0
  45. package/standalone/directives/text-value-accessor.d.ts +8 -0
  46. package/standalone/directives/value-accessor.d.ts +18 -0
  47. package/standalone/index.d.ts +6 -0
  48. package/eslint.config.js +0 -45
  49. package/jest.config.ts +0 -21
  50. package/ng-package.json +0 -8
  51. package/project.json +0 -41
  52. package/scripts/fix-value-accessor-path.ts +0 -94
  53. package/src/beeq.module.ts +0 -41
  54. package/src/directives/angular-component-lib/utils.ts +0 -65
  55. package/src/directives/boolean-value-accessor.ts +0 -27
  56. package/src/directives/components.ts +0 -2621
  57. package/src/directives/index.ts +0 -47
  58. package/src/directives/number-value-accessor.ts +0 -29
  59. package/src/directives/radio-value-accessor.ts +0 -24
  60. package/src/directives/select-value-accessor.ts +0 -24
  61. package/src/directives/text-value-accessor.ts +0 -24
  62. package/src/directives/value-accessor.ts +0 -39
  63. package/src/index.ts +0 -15
  64. package/src/test-setup.ts +0 -1
  65. package/standalone/ng-package.json +0 -5
  66. package/standalone/src/directives/angular-component-lib/utils.ts +0 -65
  67. package/standalone/src/directives/boolean-value-accessor.ts +0 -27
  68. package/standalone/src/directives/components.ts +0 -1479
  69. package/standalone/src/directives/index.ts +0 -47
  70. package/standalone/src/directives/number-value-accessor.ts +0 -29
  71. package/standalone/src/directives/radio-value-accessor.ts +0 -24
  72. package/standalone/src/directives/select-value-accessor.ts +0 -24
  73. package/standalone/src/directives/text-value-accessor.ts +0 -24
  74. package/standalone/src/directives/value-accessor.ts +0 -39
  75. package/tsconfig.json +0 -19
  76. package/tsconfig.lib.json +0 -12
  77. package/tsconfig.lib.prod.json +0 -18
  78. package/tsconfig.spec.json +0 -10
@@ -0,0 +1,2042 @@
1
+ import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
2
+ import { Components } from '@beeq/core';
3
+ import type { TSliderValue as IBqSliderTSliderValue } from '@beeq/core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class BqAccordion {
6
+ protected z: NgZone;
7
+ protected el: HTMLBqAccordionElement;
8
+ /**
9
+ * The appearance style of the Accordion
10
+ */
11
+ set appearance(_: Components.BqAccordion['appearance']);
12
+ /**
13
+ * If true, the Accordion is disabled
14
+ */
15
+ set disabled(_: Components.BqAccordion['disabled']);
16
+ /**
17
+ * If true, the Accordion is expanded
18
+ */
19
+ set expanded(_: Components.BqAccordion['expanded']);
20
+ /**
21
+ * Animation is set through JS when the browser does not support CSS calc-size()
22
+ If true, the Accordion animation, will be disabled. No animation will be applied.
23
+ */
24
+ set noAnimation(_: Components.BqAccordion['noAnimation']);
25
+ /**
26
+ * If true, the Accordion expand icon is rotate 180deg when expanded
27
+ */
28
+ set rotate(_: Components.BqAccordion['rotate']);
29
+ /**
30
+ * The size of the Accordion
31
+ */
32
+ set size(_: Components.BqAccordion['size']);
33
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqAccordion, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqAccordion, "bq-accordion", never, { "appearance": { "alias": "appearance"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "noAnimation": { "alias": "noAnimation"; "required": false; }; "rotate": { "alias": "rotate"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
36
+ }
37
+ export declare interface BqAccordion extends Components.BqAccordion {
38
+ /**
39
+ * Handler to be called when the accordion loses focus
40
+ */
41
+ bqBlur: EventEmitter<CustomEvent<HTMLBqAccordionElement>>;
42
+ /**
43
+ * Handler to be called when the accordion gets focus
44
+ */
45
+ bqFocus: EventEmitter<CustomEvent<HTMLBqAccordionElement>>;
46
+ /**
47
+ * Handler to be called when the accordion is opened
48
+ */
49
+ bqOpen: EventEmitter<CustomEvent<HTMLBqAccordionElement>>;
50
+ /**
51
+ * Handler to be called after the accordion is opened
52
+ */
53
+ bqAfterOpen: EventEmitter<CustomEvent<HTMLBqAccordionElement>>;
54
+ /**
55
+ * Handler to be called when the accordion is closed
56
+ */
57
+ bqClose: EventEmitter<CustomEvent<HTMLBqAccordionElement>>;
58
+ /**
59
+ * Handler to be called after the accordion is closed
60
+ */
61
+ bqAfterClose: EventEmitter<CustomEvent<HTMLBqAccordionElement>>;
62
+ /**
63
+ * Handler to be called when the accordion is clicked
64
+ */
65
+ bqClick: EventEmitter<CustomEvent<HTMLBqAccordionElement>>;
66
+ }
67
+ export declare class BqAccordionGroup {
68
+ protected z: NgZone;
69
+ protected el: HTMLBqAccordionGroupElement;
70
+ /**
71
+ * The appearance style of accordion to be applied to all accordions
72
+ */
73
+ set appearance(_: Components.BqAccordionGroup['appearance']);
74
+ /**
75
+ * If true all accordions are expanded
76
+ */
77
+ set expandAll(_: Components.BqAccordionGroup['expandAll']);
78
+ /**
79
+ * Animation is set through JS when the browser does not support CSS calc-size()
80
+ If true, the accordion animation, will be disabled. No animation will be applied.
81
+ */
82
+ set noAnimation(_: Components.BqAccordionGroup['noAnimation']);
83
+ /**
84
+ * If true multiple accordions can be expanded at the same time
85
+ */
86
+ set multiple(_: Components.BqAccordionGroup['multiple']);
87
+ /**
88
+ * The size of accordion to be applied to all accordions
89
+ */
90
+ set size(_: Components.BqAccordionGroup['size']);
91
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
92
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqAccordionGroup, never>;
93
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqAccordionGroup, "bq-accordion-group", never, { "appearance": { "alias": "appearance"; "required": false; }; "expandAll": { "alias": "expandAll"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "noAnimation": { "alias": "noAnimation"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
94
+ }
95
+ export declare interface BqAccordionGroup extends Components.BqAccordionGroup {
96
+ }
97
+ export declare class BqAlert {
98
+ protected z: NgZone;
99
+ protected el: HTMLBqAlertElement;
100
+ /**
101
+ * If true, the alert will automatically hide after the specified amount of time
102
+ */
103
+ set autoDismiss(_: Components.BqAlert['autoDismiss']);
104
+ /**
105
+ * The corner radius of the alert component
106
+ */
107
+ set border(_: Components.BqAlert['border']);
108
+ /**
109
+ * If true, the close button at the top right of the alert won't be shown
110
+ */
111
+ set disableClose(_: Components.BqAlert['disableClose']);
112
+ /**
113
+ * If true, the alert icon won't be shown
114
+ */
115
+ set hideIcon(_: Components.BqAlert['hideIcon']);
116
+ /**
117
+ * If true, the alert will be shown
118
+ */
119
+ set open(_: Components.BqAlert['open']);
120
+ /**
121
+ * The length of time, in milliseconds, after which the alert will close itself. Only valid if `autoDismiss="true"`
122
+ */
123
+ set time(_: Components.BqAlert['time']);
124
+ /**
125
+ * Type of Alert
126
+ */
127
+ set type(_: Components.BqAlert['type']);
128
+ /**
129
+ * If true, the alert component will remain fixed at the top of the page, occupying the full viewport
130
+ */
131
+ set sticky(_: Components.BqAlert['sticky']);
132
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
133
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqAlert, never>;
134
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqAlert, "bq-alert", never, { "autoDismiss": { "alias": "autoDismiss"; "required": false; }; "border": { "alias": "border"; "required": false; }; "disableClose": { "alias": "disableClose"; "required": false; }; "hideIcon": { "alias": "hideIcon"; "required": false; }; "open": { "alias": "open"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; "time": { "alias": "time"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
135
+ }
136
+ export declare interface BqAlert extends Components.BqAlert {
137
+ /**
138
+ * Callback handler to be called when the alert is hidden
139
+ */
140
+ bqHide: EventEmitter<CustomEvent<any>>;
141
+ /**
142
+ * Callback handler to be called when the alert is shown
143
+ */
144
+ bqShow: EventEmitter<CustomEvent<any>>;
145
+ /**
146
+ * Callback handler to be called after the alert has been shown
147
+ */
148
+ bqAfterShow: EventEmitter<CustomEvent<any>>;
149
+ /**
150
+ * Callback handler to be called after the alert has been hidden
151
+ */
152
+ bqAfterHide: EventEmitter<CustomEvent<any>>;
153
+ }
154
+ export declare class BqAvatar {
155
+ protected z: NgZone;
156
+ protected el: HTMLBqAvatarElement;
157
+ /**
158
+ * Alternate text for the avatar image if the image cannot be displayed
159
+ */
160
+ set altText(_: Components.BqAvatar['altText']);
161
+ /**
162
+ * The image source to load on the avatar (this can be also a base64 encoded image)
163
+ */
164
+ set image(_: Components.BqAvatar['image']);
165
+ /**
166
+ * A text to use for describing the avatar on assistive devices
167
+ */
168
+ set label(_: Components.BqAvatar['label']);
169
+ /**
170
+ * The text to display on avatar
171
+ */
172
+ set initials(_: Components.BqAvatar['initials']);
173
+ /**
174
+ * The shape of the avatar
175
+ */
176
+ set shape(_: Components.BqAvatar['shape']);
177
+ /**
178
+ * The size of the avatar
179
+ */
180
+ set size(_: Components.BqAvatar['size']);
181
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
182
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqAvatar, never>;
183
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqAvatar, "bq-avatar", never, { "altText": { "alias": "altText"; "required": false; }; "image": { "alias": "image"; "required": false; }; "initials": { "alias": "initials"; "required": false; }; "label": { "alias": "label"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
184
+ }
185
+ export declare interface BqAvatar extends Components.BqAvatar {
186
+ }
187
+ export declare class BqBadge {
188
+ protected z: NgZone;
189
+ protected el: HTMLBqBadgeElement;
190
+ /**
191
+ * Badge background color. The value should be a valid value of the palette color
192
+ */
193
+ set backgroundColor(_: Components.BqBadge['backgroundColor']);
194
+ /**
195
+ * Badge number color. The value should be a valid value of the palette color
196
+ */
197
+ set textColor(_: Components.BqBadge['textColor']);
198
+ /**
199
+ * The size of the badge. Relevant if badge has no content.
200
+ */
201
+ set size(_: Components.BqBadge['size']);
202
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
203
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqBadge, never>;
204
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqBadge, "bq-badge", never, { "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; }, {}, never, ["*"], false, never>;
205
+ }
206
+ export declare interface BqBadge extends Components.BqBadge {
207
+ }
208
+ export declare class BqBreadcrumb {
209
+ protected z: NgZone;
210
+ protected el: HTMLBqBreadcrumbElement;
211
+ /**
212
+ * The `aria-label` attribute to describe the type of navigation
213
+ */
214
+ set label(_: Components.BqBreadcrumb['label']);
215
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
216
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqBreadcrumb, never>;
217
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqBreadcrumb, "bq-breadcrumb", never, { "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
218
+ }
219
+ export declare interface BqBreadcrumb extends Components.BqBreadcrumb {
220
+ }
221
+ export declare class BqBreadcrumbItem {
222
+ protected z: NgZone;
223
+ protected el: HTMLBqBreadcrumbItemElement;
224
+ /**
225
+ * If set, the breadcrumb item will be rendered as an `<a>` with this `href`, otherwise, a `<button>` will be rendered.
226
+ */
227
+ set href(_: Components.BqBreadcrumbItem['href']);
228
+ /**
229
+ * Where to display the link in the browser context. Relevant only if `href` is set.
230
+ */
231
+ set target(_: Components.BqBreadcrumbItem['target']);
232
+ /**
233
+ * Where to display the link in the browser context. Relevant only if `href` is set.
234
+ */
235
+ set rel(_: Components.BqBreadcrumbItem['rel']);
236
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
237
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqBreadcrumbItem, never>;
238
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqBreadcrumbItem, "bq-breadcrumb-item", never, { "href": { "alias": "href"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "target": { "alias": "target"; "required": false; }; }, {}, never, ["*"], false, never>;
239
+ }
240
+ export declare interface BqBreadcrumbItem extends Components.BqBreadcrumbItem {
241
+ /**
242
+ * Handler to be called when item loses focus
243
+ */
244
+ bqBlur: EventEmitter<CustomEvent<HTMLBqBreadcrumbItemElement>>;
245
+ /**
246
+ * Handler to be called when item is focused
247
+ */
248
+ bqFocus: EventEmitter<CustomEvent<HTMLBqBreadcrumbItemElement>>;
249
+ /**
250
+ * Handler to be called when item is clicked
251
+ */
252
+ bqClick: EventEmitter<CustomEvent<HTMLBqBreadcrumbItemElement>>;
253
+ }
254
+ export declare class BqButton {
255
+ protected z: NgZone;
256
+ protected el: HTMLBqButtonElement;
257
+ /**
258
+ * The appearance style to apply to the button
259
+ */
260
+ set appearance(_: Components.BqButton['appearance']);
261
+ /**
262
+ * If `true`, it will make the button fit to its parent width.
263
+ */
264
+ set block(_: Components.BqButton['block']);
265
+ /**
266
+ * The corner radius of the button
267
+ */
268
+ set border(_: Components.BqButton['border']);
269
+ /**
270
+ * If true, the button will be disabled (no interaction allowed)
271
+ */
272
+ set disabled(_: Components.BqButton['disabled']);
273
+ /**
274
+ * Tells the browser to treat the linked URL as a download. Only used when `href` is set.
275
+ Details: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-download
276
+ */
277
+ set download(_: Components.BqButton['download']);
278
+ /**
279
+ * When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`
280
+ */
281
+ set href(_: Components.BqButton['href']);
282
+ /**
283
+ * It determinate how the content should be aligned
284
+ */
285
+ set justifyContent(_: Components.BqButton['justifyContent']);
286
+ /**
287
+ * If `true` it will display the button in a loading state
288
+ */
289
+ set loading(_: Components.BqButton['loading']);
290
+ /**
291
+ * The size of the button
292
+ */
293
+ set size(_: Components.BqButton['size']);
294
+ /**
295
+ * Where to display the linked URL, as the name for a browsing context (a `tab`, `window`, or `<iframe>`)
296
+ Details: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-target
297
+ */
298
+ set target(_: Components.BqButton['target']);
299
+ /**
300
+ * The default behavior of the button
301
+ */
302
+ set type(_: Components.BqButton['type']);
303
+ /**
304
+ * The variant of button to apply on top of the appearance (applicable only to `appearance="primary"`)
305
+ */
306
+ set variant(_: Components.BqButton['variant']);
307
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
308
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqButton, never>;
309
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqButton, "bq-button", never, { "appearance": { "alias": "appearance"; "required": false; }; "block": { "alias": "block"; "required": false; }; "border": { "alias": "border"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "href": { "alias": "href"; "required": false; }; "justifyContent": { "alias": "justifyContent"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "size": { "alias": "size"; "required": false; }; "target": { "alias": "target"; "required": false; }; "type": { "alias": "type"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
310
+ }
311
+ export declare interface BqButton extends Components.BqButton {
312
+ /**
313
+ * Handler to be called when the button loses focus
314
+ */
315
+ bqBlur: EventEmitter<CustomEvent<HTMLBqButtonElement>>;
316
+ /**
317
+ * Handler to be called when the button is clicked
318
+ */
319
+ bqFocus: EventEmitter<CustomEvent<HTMLBqButtonElement>>;
320
+ /**
321
+ * Handler to be called when button gets focus
322
+ */
323
+ bqClick: EventEmitter<CustomEvent<HTMLBqButtonElement>>;
324
+ }
325
+ export declare class BqCard {
326
+ protected z: NgZone;
327
+ protected el: HTMLBqCardElement;
328
+ /**
329
+ * Type of card component
330
+ */
331
+ set type(_: Components.BqCard['type']);
332
+ /**
333
+ * The corner radius of the card component
334
+ */
335
+ set border(_: Components.BqCard['border']);
336
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
337
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqCard, never>;
338
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqCard, "bq-card", never, { "border": { "alias": "border"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
339
+ }
340
+ export declare interface BqCard extends Components.BqCard {
341
+ }
342
+ export declare class BqCheckbox {
343
+ protected z: NgZone;
344
+ protected el: HTMLBqCheckboxElement;
345
+ /**
346
+ * If true checkbox displays background on hover
347
+ */
348
+ set backgroundOnHover(_: Components.BqCheckbox['backgroundOnHover']);
349
+ /**
350
+ * The form ID that the checkbox is associated with
351
+ */
352
+ set formId(_: Components.BqCheckbox['formId']);
353
+ /**
354
+ * The native form validation message
355
+ */
356
+ set formValidationMessage(_: Components.BqCheckbox['formValidationMessage']);
357
+ /**
358
+ * If true checkbox is checked
359
+ */
360
+ set checked(_: Components.BqCheckbox['checked']);
361
+ /**
362
+ * If true checkbox is disabled
363
+ */
364
+ set disabled(_: Components.BqCheckbox['disabled']);
365
+ /**
366
+ * A state that is neither checked nor unchecked
367
+ */
368
+ set indeterminate(_: Components.BqCheckbox['indeterminate']);
369
+ /**
370
+ * Name of the HTML input form control. Submitted with the form as part of a name/value pair.
371
+ */
372
+ set name(_: Components.BqCheckbox['name']);
373
+ /**
374
+ * If `true`, it will indicate that the user must specify a value for the checkbox before the owning form can be submitted
375
+ */
376
+ set required(_: Components.BqCheckbox['required']);
377
+ /**
378
+ * A string representing the value of the checkbox. Primarily used to differentiate a list of related checkboxes that have the same name.
379
+ */
380
+ set value(_: Components.BqCheckbox['value']);
381
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
382
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqCheckbox, never>;
383
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqCheckbox, "bq-checkbox", never, { "backgroundOnHover": { "alias": "backgroundOnHover"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "formId": { "alias": "formId"; "required": false; }; "formValidationMessage": { "alias": "formValidationMessage"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
384
+ }
385
+ export declare interface BqCheckbox extends Components.BqCheckbox {
386
+ /**
387
+ * Handler to be called when the checkbox state changes
388
+ */
389
+ bqChange: EventEmitter<CustomEvent<{
390
+ checked: boolean;
391
+ }>>;
392
+ /**
393
+ * Handler to be called when the checkbox gets focus
394
+ */
395
+ bqFocus: EventEmitter<CustomEvent<HTMLBqCheckboxElement>>;
396
+ /**
397
+ * Handler to be called when the checkbox loses focus
398
+ */
399
+ bqBlur: EventEmitter<CustomEvent<HTMLBqCheckboxElement>>;
400
+ }
401
+ export declare class BqDatePicker {
402
+ protected z: NgZone;
403
+ protected el: HTMLBqDatePickerElement;
404
+ /**
405
+ * If `true`, the Date picker input will be focused on component render
406
+ */
407
+ set autofocus(_: Components.BqDatePicker['autofocus']);
408
+ /**
409
+ * The clear button aria label
410
+ */
411
+ set clearButtonLabel(_: Components.BqDatePicker['clearButtonLabel']);
412
+ /**
413
+ * If `true`, the clear button won't be displayed
414
+ */
415
+ set disableClear(_: Components.BqDatePicker['disableClear']);
416
+ /**
417
+ * Indicates whether the Date picker input is disabled or not.
418
+ If `true`, the Date picker is disabled and cannot be interacted with.
419
+ */
420
+ set disabled(_: Components.BqDatePicker['disabled']);
421
+ /**
422
+ * Represents the distance (gutter or margin) between the Date picker panel and the input element.
423
+ */
424
+ set distance(_: Components.BqDatePicker['distance']);
425
+ /**
426
+ * The first day of the week, where Sunday is 0, Monday is 1, etc
427
+ */
428
+ set firstDayOfWeek(_: Components.BqDatePicker['firstDayOfWeek']);
429
+ /**
430
+ * The options to use when formatting the displayed value.
431
+ Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat#using_options
432
+ */
433
+ set formatOptions(_: Components.BqDatePicker['formatOptions']);
434
+ /**
435
+ * The ID of the form that the Date picker input belongs to.
436
+ */
437
+ set form(_: Components.BqDatePicker['form']);
438
+ /**
439
+ * The native form validation message (mandatory if `required` is set)
440
+ */
441
+ set formValidationMessage(_: Components.BqDatePicker['formValidationMessage']);
442
+ /**
443
+ * A function that takes a date and returns true if the date should not be selectable
444
+ */
445
+ set isDateDisallowed(_: Components.BqDatePicker['isDateDisallowed']);
446
+ /**
447
+ * The locale for formatting dates. If not set, will use the browser's locale.
448
+ Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument
449
+ */
450
+ set locale(_: Components.BqDatePicker['locale']);
451
+ /**
452
+ * The latest date that can be selected
453
+ */
454
+ set max(_: Components.BqDatePicker['max']);
455
+ /**
456
+ * The earliest date that can be selected
457
+ */
458
+ set min(_: Components.BqDatePicker['min']);
459
+ /**
460
+ * Number of months to show when range is `true`
461
+ */
462
+ set months(_: Components.BqDatePicker['months']);
463
+ /**
464
+ * Specifies how the next/previous buttons should navigate the calendar.
465
+ - single: The buttons will navigate by a single month at a time.
466
+ - months: The buttons will navigate by the number of months displayed per view.
467
+ */
468
+ set monthsPerView(_: Components.BqDatePicker['monthsPerView']);
469
+ /**
470
+ * The Date picker input name.
471
+ */
472
+ set name(_: Components.BqDatePicker['name']);
473
+ /**
474
+ * If `true`, the Date picker panel will be visible.
475
+ */
476
+ set open(_: Components.BqDatePicker['open']);
477
+ /**
478
+ * When set, it will override the height of the Date picker panel.
479
+ */
480
+ set panelHeight(_: Components.BqDatePicker['panelHeight']);
481
+ /**
482
+ * The Date picker input placeholder text value
483
+ */
484
+ set placeholder(_: Components.BqDatePicker['placeholder']);
485
+ /**
486
+ * Position of the Date picker panel
487
+ */
488
+ set placement(_: Components.BqDatePicker['placement']);
489
+ /**
490
+ * Indicates whether or not the Date picker input is required to be filled out before submitting the form.
491
+ */
492
+ set required(_: Components.BqDatePicker['required']);
493
+ /**
494
+ * Represents the skidding between the Date picker panel and the input element.
495
+ */
496
+ set skidding(_: Components.BqDatePicker['skidding']);
497
+ /**
498
+ * Whether to show days outside the month
499
+ */
500
+ set showOutsideDays(_: Components.BqDatePicker['showOutsideDays']);
501
+ /**
502
+ * Defines the strategy to position the Date picker panel
503
+ */
504
+ set strategy(_: Components.BqDatePicker['strategy']);
505
+ /**
506
+ * The date that is tentatively selected e.g. the start of a range selection
507
+ */
508
+ set tentative(_: Components.BqDatePicker['tentative']);
509
+ /**
510
+ * It defines how the calendar will behave, allowing single date selection, range selection, or multiple date selection
511
+ */
512
+ set type(_: Components.BqDatePicker['type']);
513
+ /**
514
+ * The validation status of the Select input. @remarks This property is used to indicate the validation status of the select input. It can be set to one of the following values:
515
+ - `'none'`: No validation status is set.
516
+ - `'error'`: The input has a validation error.
517
+ - `'warning'`: The input has a validation warning.
518
+ - `'success'`: The input has passed validation.
519
+ */
520
+ set validationStatus(_: Components.BqDatePicker['validationStatus']);
521
+ /**
522
+ * The select input value represents the currently selected date or range and can be used to reset the field to a previous value.
523
+ All dates are expected in ISO-8601 format (YYYY-MM-DD).
524
+ */
525
+ set value(_: Components.BqDatePicker['value']);
526
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
527
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqDatePicker, never>;
528
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqDatePicker, "bq-date-picker", never, { "autofocus": { "alias": "autofocus"; "required": false; }; "clearButtonLabel": { "alias": "clearButtonLabel"; "required": false; }; "disableClear": { "alias": "disableClear"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "distance": { "alias": "distance"; "required": false; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; }; "form": { "alias": "form"; "required": false; }; "formValidationMessage": { "alias": "formValidationMessage"; "required": false; }; "formatOptions": { "alias": "formatOptions"; "required": false; }; "isDateDisallowed": { "alias": "isDateDisallowed"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "months": { "alias": "months"; "required": false; }; "monthsPerView": { "alias": "monthsPerView"; "required": false; }; "name": { "alias": "name"; "required": false; }; "open": { "alias": "open"; "required": false; }; "panelHeight": { "alias": "panelHeight"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "required": { "alias": "required"; "required": false; }; "showOutsideDays": { "alias": "showOutsideDays"; "required": false; }; "skidding": { "alias": "skidding"; "required": false; }; "strategy": { "alias": "strategy"; "required": false; }; "tentative": { "alias": "tentative"; "required": false; }; "type": { "alias": "type"; "required": false; }; "validationStatus": { "alias": "validationStatus"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
529
+ }
530
+ export declare interface BqDatePicker extends Components.BqDatePicker {
531
+ /**
532
+ * Callback handler emitted when the input loses focus
533
+ */
534
+ bqBlur: EventEmitter<CustomEvent<HTMLBqDatePickerElement>>;
535
+ /**
536
+ * Callback handler emitted when the input value has changed and the input loses focus.
537
+ This handler is called whenever the user finishes typing or pasting text into the input field and then clicks outside of the input field.
538
+ */
539
+ bqChange: EventEmitter<CustomEvent<{
540
+ value: string;
541
+ el: HTMLBqDatePickerElement;
542
+ }>>;
543
+ /**
544
+ * Callback handler emitted when the input value has been cleared
545
+ */
546
+ bqClear: EventEmitter<CustomEvent<HTMLBqDatePickerElement>>;
547
+ /**
548
+ * Callback handler emitted when the input has received focus
549
+ */
550
+ bqFocus: EventEmitter<CustomEvent<HTMLBqDatePickerElement>>;
551
+ }
552
+ export declare class BqDialog {
553
+ protected z: NgZone;
554
+ protected el: HTMLBqDialogElement;
555
+ /**
556
+ * Border radius of the dialog component
557
+ */
558
+ set border(_: Components.BqDialog['border']);
559
+ /**
560
+ * If true, the backdrop overlay won't be shown when the dialog opens
561
+ */
562
+ set disableBackdrop(_: Components.BqDialog['disableBackdrop']);
563
+ /**
564
+ * If true, the dialog will not close when the [Esc] key is press
565
+ */
566
+ set disableCloseEscKeydown(_: Components.BqDialog['disableCloseEscKeydown']);
567
+ /**
568
+ * If true, the dialog will not close when clicking on the backdrop overlay
569
+ */
570
+ set disableCloseClickOutside(_: Components.BqDialog['disableCloseClickOutside']);
571
+ /**
572
+ * The appearance of footer
573
+ */
574
+ set footerAppearance(_: Components.BqDialog['footerAppearance']);
575
+ /**
576
+ * If true, it hides the close button
577
+ */
578
+ set hideCloseButton(_: Components.BqDialog['hideCloseButton']);
579
+ /**
580
+ * If true, the dialog will be shown as open
581
+ */
582
+ set open(_: Components.BqDialog['open']);
583
+ /**
584
+ * The size of the dialog
585
+ */
586
+ set size(_: Components.BqDialog['size']);
587
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
588
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqDialog, never>;
589
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqDialog, "bq-dialog", never, { "border": { "alias": "border"; "required": false; }; "disableBackdrop": { "alias": "disableBackdrop"; "required": false; }; "disableCloseClickOutside": { "alias": "disableCloseClickOutside"; "required": false; }; "disableCloseEscKeydown": { "alias": "disableCloseEscKeydown"; "required": false; }; "footerAppearance": { "alias": "footerAppearance"; "required": false; }; "hideCloseButton": { "alias": "hideCloseButton"; "required": false; }; "open": { "alias": "open"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
590
+ }
591
+ export declare interface BqDialog extends Components.BqDialog {
592
+ /**
593
+ * Callback handler emitted when the dialog has been canceled or dismissed
594
+ */
595
+ bqCancel: EventEmitter<CustomEvent<void>>;
596
+ /**
597
+ * Callback handler emitted when the dialog will close
598
+ */
599
+ bqClose: EventEmitter<CustomEvent<void>>;
600
+ /**
601
+ * Callback handler emitted when the dialog will open
602
+ */
603
+ bqOpen: EventEmitter<CustomEvent<void>>;
604
+ /**
605
+ * Callback handler emitted when the dialog finish opening
606
+ */
607
+ bqAfterOpen: EventEmitter<CustomEvent<void>>;
608
+ /**
609
+ * Callback handler emitted when the dialog finish closing
610
+ */
611
+ bqAfterClose: EventEmitter<CustomEvent<void>>;
612
+ }
613
+ export declare class BqDivider {
614
+ protected z: NgZone;
615
+ protected el: HTMLBqDividerElement;
616
+ /**
617
+ * If true, the divider has a dashed pattern
618
+ */
619
+ set dashed(_: Components.BqDivider['dashed']);
620
+ /**
621
+ * The default orientation of the divider
622
+ */
623
+ set orientation(_: Components.BqDivider['orientation']);
624
+ /**
625
+ * Set the stroke color of the divider. The value should be a valid value of the palette color
626
+ */
627
+ set strokeColor(_: Components.BqDivider['strokeColor']);
628
+ /**
629
+ * Set the alignment of the title on the main axis of the divider (horizontal / vertical)
630
+ */
631
+ set titleAlignment(_: Components.BqDivider['titleAlignment']);
632
+ /**
633
+ * Set the width of each dash of the divider's stroke. This is applicable when the stroke is dashed
634
+ */
635
+ set strokeDashWidth(_: Components.BqDivider['strokeDashWidth']);
636
+ /**
637
+ * Set the gap of the divider's stroke. This is applicable when the stroke is dashed
638
+ */
639
+ set strokeDashGap(_: Components.BqDivider['strokeDashGap']);
640
+ /**
641
+ * Set the thickness of the divider's stroke. Value expressed in px
642
+ */
643
+ set strokeThickness(_: Components.BqDivider['strokeThickness']);
644
+ /**
645
+ * Set the min width of the divider's stroke when text is not centered. Value expressed in px
646
+ */
647
+ set strokeBasis(_: Components.BqDivider['strokeBasis']);
648
+ /**
649
+ * Set the line of the divider's stroke. This is applicable when the stroke is dashed
650
+ */
651
+ set strokeLinecap(_: Components.BqDivider['strokeLinecap']);
652
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
653
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqDivider, never>;
654
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqDivider, "bq-divider", never, { "dashed": { "alias": "dashed"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "strokeBasis": { "alias": "strokeBasis"; "required": false; }; "strokeColor": { "alias": "strokeColor"; "required": false; }; "strokeDashGap": { "alias": "strokeDashGap"; "required": false; }; "strokeDashWidth": { "alias": "strokeDashWidth"; "required": false; }; "strokeLinecap": { "alias": "strokeLinecap"; "required": false; }; "strokeThickness": { "alias": "strokeThickness"; "required": false; }; "titleAlignment": { "alias": "titleAlignment"; "required": false; }; }, {}, never, ["*"], false, never>;
655
+ }
656
+ export declare interface BqDivider extends Components.BqDivider {
657
+ }
658
+ export declare class BqDrawer {
659
+ protected z: NgZone;
660
+ protected el: HTMLBqDrawerElement;
661
+ /**
662
+ * If true, the backdrop overlay will be shown when the drawer opens
663
+ */
664
+ set enableBackdrop(_: Components.BqDrawer['enableBackdrop']);
665
+ /**
666
+ * If true, the drawer will not close when clicking outside the panel
667
+ */
668
+ set closeOnClickOutside(_: Components.BqDrawer['closeOnClickOutside']);
669
+ /**
670
+ * If true, the dialog will not close when the [Esc] key is pressed
671
+ */
672
+ set closeOnEsc(_: Components.BqDrawer['closeOnEsc']);
673
+ /**
674
+ * If true, the drawer component will be shown
675
+ */
676
+ set open(_: Components.BqDrawer['open']);
677
+ /**
678
+ * @deprecated Defines the position of the drawer
679
+ */
680
+ set placement(_: Components.BqDrawer['placement']);
681
+ /**
682
+ * Defines the position of the drawer
683
+ */
684
+ set position(_: Components.BqDrawer['position']);
685
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
686
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqDrawer, never>;
687
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqDrawer, "bq-drawer", never, { "closeOnClickOutside": { "alias": "closeOnClickOutside"; "required": false; }; "closeOnEsc": { "alias": "closeOnEsc"; "required": false; }; "enableBackdrop": { "alias": "enableBackdrop"; "required": false; }; "open": { "alias": "open"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, {}, never, ["*"], false, never>;
688
+ }
689
+ export declare interface BqDrawer extends Components.BqDrawer {
690
+ /**
691
+ * Callback handler to be called when the drawer is closed
692
+ */
693
+ bqClose: EventEmitter<CustomEvent<any>>;
694
+ /**
695
+ * Callback handler to be called when the drawer is opened
696
+ */
697
+ bqOpen: EventEmitter<CustomEvent<any>>;
698
+ /**
699
+ * Callback handler to be called after the drawer has been opened
700
+ */
701
+ bqAfterOpen: EventEmitter<CustomEvent<any>>;
702
+ /**
703
+ * Callback handler to be called after the drawer has been closed
704
+ */
705
+ bqAfterClose: EventEmitter<CustomEvent<any>>;
706
+ }
707
+ export declare class BqDropdown {
708
+ protected z: NgZone;
709
+ protected el: HTMLBqDropdownElement;
710
+ /**
711
+ * If true, the dropdown panel will be visible and won't be shown.
712
+ */
713
+ set disabled(_: Components.BqDropdown['disabled']);
714
+ /**
715
+ * Represents the distance (gutter or margin) between the panel and the trigger element.
716
+ */
717
+ set distance(_: Components.BqDropdown['distance']);
718
+ /**
719
+ * If true, the panel will remain open after a selection is made.
720
+ */
721
+ set keepOpenOnSelect(_: Components.BqDropdown['keepOpenOnSelect']);
722
+ /**
723
+ * Position of the panel
724
+ */
725
+ set placement(_: Components.BqDropdown['placement']);
726
+ /**
727
+ * If true, the panel will be visible.
728
+ */
729
+ set open(_: Components.BqDropdown['open']);
730
+ /**
731
+ * When set, it will override the height of the dropdown panel
732
+ */
733
+ set panelHeight(_: Components.BqDropdown['panelHeight']);
734
+ /**
735
+ * Whether the panel should have the same width as the trigger element
736
+ */
737
+ set sameWidth(_: Components.BqDropdown['sameWidth']);
738
+ /**
739
+ * Represents the skidding between the panel and the trigger element.
740
+ */
741
+ set skidding(_: Components.BqDropdown['skidding']);
742
+ /**
743
+ * Defines the strategy to position the panel
744
+ */
745
+ set strategy(_: Components.BqDropdown['strategy']);
746
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
747
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqDropdown, never>;
748
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqDropdown, "bq-dropdown", never, { "disabled": { "alias": "disabled"; "required": false; }; "distance": { "alias": "distance"; "required": false; }; "keepOpenOnSelect": { "alias": "keepOpenOnSelect"; "required": false; }; "open": { "alias": "open"; "required": false; }; "panelHeight": { "alias": "panelHeight"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "sameWidth": { "alias": "sameWidth"; "required": false; }; "skidding": { "alias": "skidding"; "required": false; }; "strategy": { "alias": "strategy"; "required": false; }; }, {}, never, ["*"], false, never>;
749
+ }
750
+ export declare interface BqDropdown extends Components.BqDropdown {
751
+ /**
752
+ * Callback handler to be called when the dropdown panel is opened or closed.
753
+ */
754
+ bqOpen: EventEmitter<CustomEvent<{
755
+ open: boolean;
756
+ }>>;
757
+ }
758
+ export declare class BqEmptyState {
759
+ protected z: NgZone;
760
+ protected el: HTMLBqEmptyStateElement;
761
+ /**
762
+ * The size of the empty state component
763
+ */
764
+ set size(_: Components.BqEmptyState['size']);
765
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
766
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqEmptyState, never>;
767
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqEmptyState, "bq-empty-state", never, { "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
768
+ }
769
+ export declare interface BqEmptyState extends Components.BqEmptyState {
770
+ }
771
+ export declare class BqIcon {
772
+ protected z: NgZone;
773
+ protected el: HTMLBqIconElement;
774
+ /**
775
+ * Label for the icon, used for accessibility
776
+ */
777
+ set label(_: Components.BqIcon['label']);
778
+ /**
779
+ * Set the stroke color of the SVG. The value should be a valid value of the palette color
780
+ */
781
+ set color(_: Components.BqIcon['color']);
782
+ /**
783
+ * Icon name to load. Please check all available icons [here](https://phosphoricons.com/)
784
+ */
785
+ set name(_: Components.BqIcon['name']);
786
+ /**
787
+ * Set the size of the SVG
788
+ */
789
+ set size(_: Components.BqIcon['size']);
790
+ /**
791
+ * Set the source of the SVG. If the source is set, the name property will be ignored
792
+ */
793
+ set src(_: Components.BqIcon['src']);
794
+ /**
795
+ * @deprecated It set the icon weight/style
796
+ */
797
+ set weight(_: Components.BqIcon['weight']);
798
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
799
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqIcon, never>;
800
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqIcon, "bq-icon", never, { "color": { "alias": "color"; "required": false; }; "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "src": { "alias": "src"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, {}, never, ["*"], false, never>;
801
+ }
802
+ export declare interface BqIcon extends Components.BqIcon {
803
+ /**
804
+ * Callback handler to be called when the SVG has loaded
805
+ */
806
+ svgLoaded: EventEmitter<CustomEvent<any>>;
807
+ }
808
+ export declare class BqInput {
809
+ protected z: NgZone;
810
+ protected el: HTMLBqInputElement;
811
+ /**
812
+ * Controls whether or not the input field should be capitalized and how.
813
+ Possible values are 'off', 'none', 'on', 'sentences', 'words', and 'characters'.
814
+ See: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize
815
+ */
816
+ set autocapitalize(_: Components.BqInput['autocapitalize']);
817
+ /**
818
+ * Specifies whether or not the input field should have autocomplete enabled.
819
+ See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values
820
+ */
821
+ set autocomplete(_: Components.BqInput['autocomplete']);
822
+ /**
823
+ * Controls whether or not the input field should have autocorrect enabled.
824
+ Possible values are 'on' and 'off'.
825
+ */
826
+ set autocorrect(_: Components.BqInput['autocorrect']);
827
+ /**
828
+ * If true, the input will be focused on component render
829
+ */
830
+ set autofocus(_: Components.BqInput['autofocus']);
831
+ /**
832
+ * The clear button aria label
833
+ */
834
+ set clearButtonLabel(_: Components.BqInput['clearButtonLabel']);
835
+ /**
836
+ * The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the input value changes.
837
+ A value of 0 means no debouncing will occur.
838
+ */
839
+ set debounceTime(_: Components.BqInput['debounceTime']);
840
+ /**
841
+ * Indicates whether the input is disabled or not.
842
+ If `true`, the input is disabled and cannot be interacted with.
843
+ */
844
+ set disabled(_: Components.BqInput['disabled']);
845
+ /**
846
+ * If true, the clear button won't be displayed
847
+ */
848
+ set disableClear(_: Components.BqInput['disableClear']);
849
+ /**
850
+ * The ID of the form that the input field belongs to.
851
+ */
852
+ set form(_: Components.BqInput['form']);
853
+ /**
854
+ * The native form validation message (mandatory if `required` is set)
855
+ */
856
+ set formValidationMessage(_: Components.BqInput['formValidationMessage']);
857
+ /**
858
+ * The inputmode attribute specifies what kind of input mechanism would be most helpful for users entering content into the input field.
859
+ This allows a browser to display an appropriate virtual keyboard while editing.
860
+ Possible values are 'none', 'text', 'decimal', 'numeric', 'tel', 'search', 'email', 'url', and 'date'.
861
+ */
862
+ set inputmode(_: Components.BqInput['inputmode']);
863
+ /**
864
+ * The maximum value that the input field can accept.
865
+ Only applies to date and number input types.
866
+ */
867
+ set max(_: Components.BqInput['max']);
868
+ /**
869
+ * The maximum number of characters that the input field can accept.
870
+ */
871
+ set maxlength(_: Components.BqInput['maxlength']);
872
+ /**
873
+ * The minimum value that the input field can accept.
874
+ Only applies to date and number input types.
875
+ */
876
+ set min(_: Components.BqInput['min']);
877
+ /**
878
+ * The minimum number of characters that the input field can accept.
879
+ */
880
+ set minlength(_: Components.BqInput['minlength']);
881
+ /**
882
+ * The input field name.
883
+ */
884
+ set name(_: Components.BqInput['name']);
885
+ /**
886
+ * Specifies a regular expression the form control's value should match.
887
+ See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern
888
+ */
889
+ set pattern(_: Components.BqInput['pattern']);
890
+ /**
891
+ * The input placeholder text value
892
+ */
893
+ set placeholder(_: Components.BqInput['placeholder']);
894
+ /**
895
+ * If true, the input field cannot be modified.
896
+ */
897
+ set readonly(_: Components.BqInput['readonly']);
898
+ /**
899
+ * Indicates whether or not the input field is required to be filled out before submitting the form.
900
+ */
901
+ set required(_: Components.BqInput['required']);
902
+ /**
903
+ * A number that specifies the granularity that the value must adhere to.
904
+ Valid for date, month, week, time, datetime-local, number, and range.
905
+ See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#step
906
+ */
907
+ set step(_: Components.BqInput['step']);
908
+ /**
909
+ * The type attribute specifies the type of input field to display.
910
+ Possible values are 'text', 'password', 'email', 'number', 'tel', 'search', 'url', and more.
911
+ See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#input_types
912
+ */
913
+ set type(_: Components.BqInput['type']);
914
+ /**
915
+ * The validation status of the input. @remarks This property is used to indicate the validation status of the input. It can be set to one of the following values:
916
+ - `'none'`: No validation status is set.
917
+ - `'error'`: The input has a validation error.
918
+ - `'warning'`: The input has a validation warning.
919
+ - `'success'`: The input has passed validation.
920
+ */
921
+ set validationStatus(_: Components.BqInput['validationStatus']);
922
+ /**
923
+ * The input value, it can be used to reset the input to a previous value
924
+ */
925
+ set value(_: Components.BqInput['value']);
926
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
927
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqInput, never>;
928
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqInput, "bq-input", never, { "autocapitalize": { "alias": "autocapitalize"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "autocorrect": { "alias": "autocorrect"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "clearButtonLabel": { "alias": "clearButtonLabel"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; "disableClear": { "alias": "disableClear"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "formValidationMessage": { "alias": "formValidationMessage"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "max": { "alias": "max"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "min": { "alias": "min"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "step": { "alias": "step"; "required": false; }; "type": { "alias": "type"; "required": false; }; "validationStatus": { "alias": "validationStatus"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
929
+ }
930
+ export declare interface BqInput extends Components.BqInput {
931
+ /**
932
+ * Callback handler emitted when the input loses focus
933
+ */
934
+ bqBlur: EventEmitter<CustomEvent<HTMLBqInputElement>>;
935
+ /**
936
+ * Callback handler emitted when the input value has changed and the input loses focus.
937
+ This handler is called whenever the user finishes typing or pasting text into the input field and then clicks outside of the input field.
938
+ */
939
+ bqChange: EventEmitter<CustomEvent<{
940
+ value: string | number | string[];
941
+ el: HTMLBqInputElement;
942
+ }>>;
943
+ /**
944
+ * Callback handler emitted when the input value has been cleared
945
+ */
946
+ bqClear: EventEmitter<CustomEvent<HTMLBqInputElement>>;
947
+ /**
948
+ * Callback handler emitted when the input has received focus
949
+ */
950
+ bqFocus: EventEmitter<CustomEvent<HTMLBqInputElement>>;
951
+ /**
952
+ * Callback handler emitted when the input value changes.
953
+ This handler is called whenever the user types or pastes text into the input field.
954
+ */
955
+ bqInput: EventEmitter<CustomEvent<{
956
+ value: string | number | string[];
957
+ el: HTMLBqInputElement;
958
+ }>>;
959
+ }
960
+ export declare class BqNotification {
961
+ protected z: NgZone;
962
+ protected el: HTMLBqNotificationElement;
963
+ /**
964
+ * If true, the notification will automatically hide after the specified amount of time
965
+ */
966
+ set autoDismiss(_: Components.BqNotification['autoDismiss']);
967
+ /**
968
+ * The corder radius of the notification component
969
+ */
970
+ set border(_: Components.BqNotification['border']);
971
+ /**
972
+ * If true, the close button at the top right of the notification won't be shown
973
+ */
974
+ set disableClose(_: Components.BqNotification['disableClose']);
975
+ /**
976
+ * If true, the notification icon won't be shown
977
+ */
978
+ set hideIcon(_: Components.BqNotification['hideIcon']);
979
+ /**
980
+ * If true, the notification will be shown
981
+ */
982
+ set open(_: Components.BqNotification['open']);
983
+ /**
984
+ * The length of time, in milliseconds, after which the notification will close itself. Only valid if `autoDismiss="true"`
985
+ */
986
+ set time(_: Components.BqNotification['time']);
987
+ /**
988
+ * Type of Notification
989
+ */
990
+ set type(_: Components.BqNotification['type']);
991
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
992
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqNotification, never>;
993
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqNotification, "bq-notification", never, { "autoDismiss": { "alias": "autoDismiss"; "required": false; }; "border": { "alias": "border"; "required": false; }; "disableClose": { "alias": "disableClose"; "required": false; }; "hideIcon": { "alias": "hideIcon"; "required": false; }; "open": { "alias": "open"; "required": false; }; "time": { "alias": "time"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
994
+ }
995
+ export declare interface BqNotification extends Components.BqNotification {
996
+ /**
997
+ * Callback handler to be called when the notification is hidden
998
+ */
999
+ bqHide: EventEmitter<CustomEvent<any>>;
1000
+ /**
1001
+ * Callback handler to be called when the notification is shown
1002
+ */
1003
+ bqShow: EventEmitter<CustomEvent<any>>;
1004
+ /**
1005
+ * Callback handler to be called after the notification has been opened
1006
+ */
1007
+ bqAfterOpen: EventEmitter<CustomEvent<any>>;
1008
+ /**
1009
+ * Callback handler to be called after the notification has been closed
1010
+ */
1011
+ bqAfterClose: EventEmitter<CustomEvent<any>>;
1012
+ }
1013
+ export declare class BqOption {
1014
+ protected z: NgZone;
1015
+ protected el: HTMLBqOptionElement;
1016
+ /**
1017
+ * If true, the option is hidden.
1018
+ */
1019
+ set hidden(_: Components.BqOption['hidden']);
1020
+ /**
1021
+ * If true, the option is disabled.
1022
+ */
1023
+ set disabled(_: Components.BqOption['disabled']);
1024
+ /**
1025
+ * A string representing the value of the option. Can be used to identify the item
1026
+ */
1027
+ set value(_: Components.BqOption['value']);
1028
+ /**
1029
+ * If true, the option is selected and active.
1030
+ */
1031
+ set selected(_: Components.BqOption['selected']);
1032
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1033
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqOption, never>;
1034
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqOption, "bq-option", never, { "disabled": { "alias": "disabled"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1035
+ }
1036
+ export declare interface BqOption extends Components.BqOption {
1037
+ /**
1038
+ * Handler to be called when item loses focus
1039
+ */
1040
+ bqBlur: EventEmitter<CustomEvent<HTMLBqOptionElement>>;
1041
+ /**
1042
+ * Handler to be called when item is focused
1043
+ */
1044
+ bqFocus: EventEmitter<CustomEvent<HTMLBqOptionElement>>;
1045
+ /**
1046
+ * Handler to be called when item is clicked
1047
+ */
1048
+ bqClick: EventEmitter<CustomEvent<HTMLBqOptionElement>>;
1049
+ /**
1050
+ * Handler to be called on enter key press
1051
+ */
1052
+ bqEnter: EventEmitter<CustomEvent<HTMLBqOptionElement>>;
1053
+ }
1054
+ export declare class BqOptionGroup {
1055
+ protected z: NgZone;
1056
+ protected el: HTMLBqOptionGroupElement;
1057
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1058
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqOptionGroup, never>;
1059
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqOptionGroup, "bq-option-group", never, {}, {}, never, ["*"], false, never>;
1060
+ }
1061
+ export declare interface BqOptionGroup extends Components.BqOptionGroup {
1062
+ }
1063
+ export declare class BqOptionList {
1064
+ protected z: NgZone;
1065
+ protected el: HTMLBqOptionListElement;
1066
+ /**
1067
+ * Aria label for the list.
1068
+ */
1069
+ set ariaLabel(_: Components.BqOptionList['ariaLabel']);
1070
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1071
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqOptionList, never>;
1072
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqOptionList, "bq-option-list", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
1073
+ }
1074
+ export declare interface BqOptionList extends Components.BqOptionList {
1075
+ /**
1076
+ * Handler to be called when `bq-option` is selected (on click/enter press).
1077
+ */
1078
+ bqSelect: EventEmitter<CustomEvent<{
1079
+ value: string;
1080
+ item: HTMLBqOptionElement;
1081
+ }>>;
1082
+ }
1083
+ export declare class BqPageTitle {
1084
+ protected z: NgZone;
1085
+ protected el: HTMLBqPageTitleElement;
1086
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1087
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqPageTitle, never>;
1088
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqPageTitle, "bq-page-title", never, {}, {}, never, ["*"], false, never>;
1089
+ }
1090
+ export declare interface BqPageTitle extends Components.BqPageTitle {
1091
+ }
1092
+ export declare class BqPanel {
1093
+ protected z: NgZone;
1094
+ protected el: HTMLBqPanelElement;
1095
+ /**
1096
+ * Represents the distance (gutter or margin) between the panel and the trigger element.
1097
+ */
1098
+ set distance(_: Components.BqPanel['distance']);
1099
+ /**
1100
+ * Position of the panel
1101
+ */
1102
+ set placement(_: Components.BqPanel['placement']);
1103
+ /**
1104
+ * If true, the panel will be visible.
1105
+ */
1106
+ set open(_: Components.BqPanel['open']);
1107
+ /**
1108
+ * Whether the panel should have the same width as the trigger element
1109
+ */
1110
+ set sameWidth(_: Components.BqPanel['sameWidth']);
1111
+ /**
1112
+ * Represents the skidding between the panel and the trigger element.
1113
+ */
1114
+ set skidding(_: Components.BqPanel['skidding']);
1115
+ /**
1116
+ * Defines the strategy to position the panel
1117
+ */
1118
+ set strategy(_: Components.BqPanel['strategy']);
1119
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1120
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqPanel, never>;
1121
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqPanel, "bq-panel", never, { "distance": { "alias": "distance"; "required": false; }; "open": { "alias": "open"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "sameWidth": { "alias": "sameWidth"; "required": false; }; "skidding": { "alias": "skidding"; "required": false; }; "strategy": { "alias": "strategy"; "required": false; }; }, {}, never, ["*"], false, never>;
1122
+ }
1123
+ export declare interface BqPanel extends Components.BqPanel {
1124
+ }
1125
+ export declare class BqProgress {
1126
+ protected z: NgZone;
1127
+ protected el: HTMLBqProgressElement;
1128
+ /**
1129
+ * It will set the border style of the progress bar
1130
+ */
1131
+ set borderShape(_: Components.BqProgress['borderShape']);
1132
+ /**
1133
+ * If `true`, a tooltip will be shown displaying the progress value
1134
+ */
1135
+ set enableTooltip(_: Components.BqProgress['enableTooltip']);
1136
+ /**
1137
+ * If `true` the indeterminate state of progress bar is enabled
1138
+ */
1139
+ set indeterminate(_: Components.BqProgress['indeterminate']);
1140
+ /**
1141
+ * If `true, a label text showing the value (in percentage) will be shown
1142
+ */
1143
+ set label(_: Components.BqProgress['label']);
1144
+ /**
1145
+ * Progress bar thickness
1146
+ */
1147
+ set thickness(_: Components.BqProgress['thickness']);
1148
+ /**
1149
+ * Progress type
1150
+ */
1151
+ set type(_: Components.BqProgress['type']);
1152
+ /**
1153
+ * A number representing the current value of the progress bar
1154
+ */
1155
+ set value(_: Components.BqProgress['value']);
1156
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1157
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqProgress, never>;
1158
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqProgress, "bq-progress", never, { "borderShape": { "alias": "borderShape"; "required": false; }; "enableTooltip": { "alias": "enableTooltip"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "label": { "alias": "label"; "required": false; }; "thickness": { "alias": "thickness"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1159
+ }
1160
+ export declare interface BqProgress extends Components.BqProgress {
1161
+ }
1162
+ export declare class BqRadio {
1163
+ protected z: NgZone;
1164
+ protected el: HTMLBqRadioElement;
1165
+ /**
1166
+ * If true radio input is checked
1167
+ */
1168
+ set checked(_: Components.BqRadio['checked']);
1169
+ /**
1170
+ * If true radio input is disabled
1171
+ */
1172
+ set disabled(_: Components.BqRadio['disabled']);
1173
+ /**
1174
+ * If true radio displays background on hover
1175
+ */
1176
+ set backgroundOnHover(_: Components.BqRadio['backgroundOnHover']);
1177
+ /**
1178
+ * The form ID that the radio input is associated with
1179
+ */
1180
+ set formId(_: Components.BqRadio['formId']);
1181
+ /**
1182
+ * Name of the HTML input form control. Submitted with the form as part of a name/value pair.
1183
+ */
1184
+ set name(_: Components.BqRadio['name']);
1185
+ /**
1186
+ * If `true`, it will indicate that the user must specify a value for the radio before the owning form can be submitted
1187
+ */
1188
+ set required(_: Components.BqRadio['required']);
1189
+ /**
1190
+ * A string representing the value of the radio.
1191
+ */
1192
+ set value(_: Components.BqRadio['value']);
1193
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1194
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqRadio, never>;
1195
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqRadio, "bq-radio", never, { "backgroundOnHover": { "alias": "backgroundOnHover"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "formId": { "alias": "formId"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1196
+ }
1197
+ export declare interface BqRadio extends Components.BqRadio {
1198
+ /**
1199
+ * Handler to be called when the radio state changes
1200
+ */
1201
+ bqClick: EventEmitter<CustomEvent<HTMLBqRadioElement>>;
1202
+ /**
1203
+ * Handler to be called when the radio gets focus
1204
+ */
1205
+ bqFocus: EventEmitter<CustomEvent<HTMLBqRadioElement>>;
1206
+ /**
1207
+ * Handler to be called when the radio loses focus
1208
+ */
1209
+ bqBlur: EventEmitter<CustomEvent<HTMLBqRadioElement>>;
1210
+ /**
1211
+ * Handler to be called when the radio key is pressed
1212
+ */
1213
+ bqKeyDown: EventEmitter<CustomEvent<KeyboardEvent>>;
1214
+ }
1215
+ export declare class BqRadioGroup {
1216
+ protected z: NgZone;
1217
+ protected el: HTMLBqRadioGroupElement;
1218
+ /**
1219
+ * If true, all radio inputs in the group will display a background on hover
1220
+ */
1221
+ set backgroundOnHover(_: Components.BqRadioGroup['backgroundOnHover']);
1222
+ /**
1223
+ * A number representing the delay time (in milliseconds) that `bqChange` event handler gets triggered once the value change
1224
+ */
1225
+ set debounceTime(_: Components.BqRadioGroup['debounceTime']);
1226
+ /**
1227
+ * If true radio inputs are disabled
1228
+ */
1229
+ set disabled(_: Components.BqRadioGroup['disabled']);
1230
+ /**
1231
+ * If true displays fieldset
1232
+ */
1233
+ set fieldset(_: Components.BqRadioGroup['fieldset']);
1234
+ /**
1235
+ * Name of the HTML input form control. Submitted with the form as part of a name/value pair.
1236
+ */
1237
+ set name(_: Components.BqRadioGroup['name']);
1238
+ /**
1239
+ * The display orientation of the radio inputs
1240
+ */
1241
+ set orientation(_: Components.BqRadioGroup['orientation']);
1242
+ /**
1243
+ * If true, the radio group is required
1244
+ */
1245
+ set required(_: Components.BqRadioGroup['required']);
1246
+ /**
1247
+ * The native form validation message when the radio group is required
1248
+ */
1249
+ set requiredValidationMessage(_: Components.BqRadioGroup['requiredValidationMessage']);
1250
+ /**
1251
+ * A string representing the value of the radio.
1252
+ */
1253
+ set value(_: Components.BqRadioGroup['value']);
1254
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1255
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqRadioGroup, never>;
1256
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqRadioGroup, "bq-radio-group", never, { "backgroundOnHover": { "alias": "backgroundOnHover"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "fieldset": { "alias": "fieldset"; "required": false; }; "name": { "alias": "name"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "required": { "alias": "required"; "required": false; }; "requiredValidationMessage": { "alias": "requiredValidationMessage"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1257
+ }
1258
+ export declare interface BqRadioGroup extends Components.BqRadioGroup {
1259
+ /**
1260
+ * Handler to be called when the radio state changes
1261
+ */
1262
+ bqChange: EventEmitter<CustomEvent<{
1263
+ value: string;
1264
+ target: HTMLBqRadioElement;
1265
+ }>>;
1266
+ }
1267
+ export declare class BqSelect {
1268
+ protected z: NgZone;
1269
+ protected el: HTMLBqSelectElement;
1270
+ /**
1271
+ * If true, the Select input will be focused on component render
1272
+ */
1273
+ set autofocus(_: Components.BqSelect['autofocus']);
1274
+ /**
1275
+ * The clear button aria label
1276
+ */
1277
+ set clearButtonLabel(_: Components.BqSelect['clearButtonLabel']);
1278
+ /**
1279
+ * The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the input value changes.
1280
+ A value of 0 means no debouncing will occur.
1281
+ */
1282
+ set debounceTime(_: Components.BqSelect['debounceTime']);
1283
+ /**
1284
+ * Indicates whether the Select input is disabled or not.
1285
+ If `true`, the Select is disabled and cannot be interacted with.
1286
+ */
1287
+ set disabled(_: Components.BqSelect['disabled']);
1288
+ /**
1289
+ * If true, the clear button won't be displayed
1290
+ */
1291
+ set disableClear(_: Components.BqSelect['disableClear']);
1292
+ /**
1293
+ * Represents the distance (gutter or margin) between the Select panel and the input element.
1294
+ */
1295
+ set distance(_: Components.BqSelect['distance']);
1296
+ /**
1297
+ * The ID of the form that the Select input belongs to.
1298
+ */
1299
+ set form(_: Components.BqSelect['form']);
1300
+ /**
1301
+ * If true, the Select panel will remain open after a selection is made.
1302
+ */
1303
+ set keepOpenOnSelect(_: Components.BqSelect['keepOpenOnSelect']);
1304
+ /**
1305
+ * The Select input name.
1306
+ */
1307
+ set name(_: Components.BqSelect['name']);
1308
+ /**
1309
+ * The maximum number of tags to display when multiple selection is enabled
1310
+ */
1311
+ set maxTagsVisible(_: Components.BqSelect['maxTagsVisible']);
1312
+ /**
1313
+ * If true, the Select input will allow multiple selections.
1314
+ */
1315
+ set multiple(_: Components.BqSelect['multiple']);
1316
+ /**
1317
+ * If true, the Select panel will be visible.
1318
+ */
1319
+ set open(_: Components.BqSelect['open']);
1320
+ /**
1321
+ * When set, it will override the height of the Select panel.
1322
+ */
1323
+ set panelHeight(_: Components.BqSelect['panelHeight']);
1324
+ /**
1325
+ * The Select input placeholder text value
1326
+ */
1327
+ set placeholder(_: Components.BqSelect['placeholder']);
1328
+ /**
1329
+ * Position of the Select panel
1330
+ */
1331
+ set placement(_: Components.BqSelect['placement']);
1332
+ /**
1333
+ * If true, the list of options cannot be filtered (searching won't be available)
1334
+ */
1335
+ set readonly(_: Components.BqSelect['readonly']);
1336
+ /**
1337
+ * Indicates whether or not the Select input is required to be filled out before submitting the form.
1338
+ */
1339
+ set required(_: Components.BqSelect['required']);
1340
+ /**
1341
+ * Whether the panel should have the Select same width as the input element
1342
+ */
1343
+ set sameWidth(_: Components.BqSelect['sameWidth']);
1344
+ /**
1345
+ * Represents the skidding between the Select panel and the input element.
1346
+ */
1347
+ set skidding(_: Components.BqSelect['skidding']);
1348
+ /**
1349
+ * Defines the strategy to position the Select panel
1350
+ */
1351
+ set strategy(_: Components.BqSelect['strategy']);
1352
+ /**
1353
+ * The validation status of the Select input. @remarks This property is used to indicate the validation status of the select input. It can be set to one of the following values:
1354
+ - `'none'`: No validation status is set.
1355
+ - `'error'`: The input has a validation error.
1356
+ - `'warning'`: The input has a validation warning.
1357
+ - `'success'`: The input has passed validation.
1358
+ */
1359
+ set validationStatus(_: Components.BqSelect['validationStatus']);
1360
+ /**
1361
+ * The select input value, it can be used to reset the field to a previous value
1362
+ */
1363
+ set value(_: Components.BqSelect['value']);
1364
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1365
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqSelect, never>;
1366
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqSelect, "bq-select", never, { "autofocus": { "alias": "autofocus"; "required": false; }; "clearButtonLabel": { "alias": "clearButtonLabel"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; "disableClear": { "alias": "disableClear"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "distance": { "alias": "distance"; "required": false; }; "form": { "alias": "form"; "required": false; }; "keepOpenOnSelect": { "alias": "keepOpenOnSelect"; "required": false; }; "maxTagsVisible": { "alias": "maxTagsVisible"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "name": { "alias": "name"; "required": false; }; "open": { "alias": "open"; "required": false; }; "panelHeight": { "alias": "panelHeight"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "sameWidth": { "alias": "sameWidth"; "required": false; }; "skidding": { "alias": "skidding"; "required": false; }; "strategy": { "alias": "strategy"; "required": false; }; "validationStatus": { "alias": "validationStatus"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1367
+ }
1368
+ export declare interface BqSelect extends Components.BqSelect {
1369
+ /**
1370
+ * Callback handler emitted when the Select input loses focus
1371
+ */
1372
+ bqBlur: EventEmitter<CustomEvent<HTMLBqSelectElement>>;
1373
+ /**
1374
+ * Callback handler emitted when the selected value has been cleared
1375
+ */
1376
+ bqClear: EventEmitter<CustomEvent<HTMLBqSelectElement>>;
1377
+ /**
1378
+ * Callback handler emitted when the Select input has received focus
1379
+ */
1380
+ bqFocus: EventEmitter<CustomEvent<HTMLBqSelectElement>>;
1381
+ /**
1382
+ * Callback handler emitted when the selected value has changed
1383
+ */
1384
+ bqSelect: EventEmitter<CustomEvent<{
1385
+ value: string | number | string[];
1386
+ item: HTMLBqOptionElement;
1387
+ }>>;
1388
+ }
1389
+ export declare class BqSideMenu {
1390
+ protected z: NgZone;
1391
+ protected el: HTMLBqSideMenuElement;
1392
+ /**
1393
+ * It sets a predefined appearance of the side menu
1394
+ */
1395
+ set appearance(_: Components.BqSideMenu['appearance']);
1396
+ /**
1397
+ * If true, the container will reduce its width
1398
+ */
1399
+ set collapse(_: Components.BqSideMenu['collapse']);
1400
+ /**
1401
+ * It sets the size of the navigation menu items
1402
+ */
1403
+ set size(_: Components.BqSideMenu['size']);
1404
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1405
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqSideMenu, never>;
1406
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqSideMenu, "bq-side-menu", never, { "appearance": { "alias": "appearance"; "required": false; }; "collapse": { "alias": "collapse"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
1407
+ }
1408
+ export declare interface BqSideMenu extends Components.BqSideMenu {
1409
+ /**
1410
+ * Callback handler to be called when the Side menu changes its width from expanded to collapse and vice versa
1411
+ */
1412
+ bqCollapse: EventEmitter<CustomEvent<{
1413
+ collapse: boolean;
1414
+ }>>;
1415
+ /**
1416
+ * Callback handler to be called when the active/selected menu item changes
1417
+ */
1418
+ bqSelect: EventEmitter<CustomEvent<HTMLBqSideMenuItemElement>>;
1419
+ }
1420
+ export declare class BqSideMenuItem {
1421
+ protected z: NgZone;
1422
+ protected el: HTMLBqSideMenuItemElement;
1423
+ /**
1424
+ * If true, the menu item will be shown as active/selected.
1425
+ */
1426
+ set active(_: Components.BqSideMenuItem['active']);
1427
+ /**
1428
+ * If true, the item label and suffix will be hidden and the with will be reduce according to its parent
1429
+ */
1430
+ set collapse(_: Components.BqSideMenuItem['collapse']);
1431
+ /**
1432
+ * If true, the menu item will be disabled (no interaction allowed)
1433
+ */
1434
+ set disabled(_: Components.BqSideMenuItem['disabled']);
1435
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1436
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqSideMenuItem, never>;
1437
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqSideMenuItem, "bq-side-menu-item", never, { "active": { "alias": "active"; "required": false; }; "collapse": { "alias": "collapse"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, ["*"], false, never>;
1438
+ }
1439
+ export declare interface BqSideMenuItem extends Components.BqSideMenuItem {
1440
+ /**
1441
+ * Handler to be called when the button loses focus
1442
+ */
1443
+ bqBlur: EventEmitter<CustomEvent<HTMLBqSideMenuItemElement>>;
1444
+ /**
1445
+ * Handler to be called when the button is clicked
1446
+ */
1447
+ bqFocus: EventEmitter<CustomEvent<HTMLBqSideMenuItemElement>>;
1448
+ /**
1449
+ * Handler to be called when button gets focus
1450
+ */
1451
+ bqClick: EventEmitter<CustomEvent<HTMLBqSideMenuItemElement>>;
1452
+ }
1453
+ export declare class BqSlider {
1454
+ protected z: NgZone;
1455
+ protected el: HTMLBqSliderElement;
1456
+ /**
1457
+ * The amount of time, in milliseconds, to wait to trigger the `bqChange` event after each value change.
1458
+ */
1459
+ set debounceTime(_: Components.BqSlider['debounceTime']);
1460
+ /**
1461
+ * If `true` the slider is disabled.
1462
+ */
1463
+ set disabled(_: Components.BqSlider['disabled']);
1464
+ /**
1465
+ * If `true` it will show the value label on a side of the slider track area
1466
+ */
1467
+ set enableValueIndicator(_: Components.BqSlider['enableValueIndicator']);
1468
+ /**
1469
+ * A number representing the amount to remain between the minimum and maximum values (only for range type).
1470
+ */
1471
+ set gap(_: Components.BqSlider['gap']);
1472
+ /**
1473
+ * A number representing the max value of the slider.
1474
+ */
1475
+ set max(_: Components.BqSlider['max']);
1476
+ /**
1477
+ * A number representing the min value of the slider.
1478
+ */
1479
+ set min(_: Components.BqSlider['min']);
1480
+ /**
1481
+ * Name of the form control. Submitted with the form as part of a name/value pair
1482
+ */
1483
+ set name(_: Components.BqSlider['name']);
1484
+ /**
1485
+ * A number representing the step of the slider.
1486
+ ⚠️ Please notice that the value (or list of values if the slider type is `range`) will be rounded to the nearest multiple of `step`.
1487
+ */
1488
+ set step(_: Components.BqSlider['step']);
1489
+ /**
1490
+ * It defines the type of slider to display
1491
+ */
1492
+ set type(_: Components.BqSlider['type']);
1493
+ /**
1494
+ * The value of the slider.
1495
+ - If the slider type is `single`, the value is a number.
1496
+ - If the slider type is `range`, the value is an array of two numbers (the first number represents the `min` value and the second number represents the `max` value).
1497
+ */
1498
+ set value(_: Components.BqSlider['value']);
1499
+ /**
1500
+ * If `true`, a tooltip will be shown displaying the progress value
1501
+ */
1502
+ set enableTooltip(_: Components.BqSlider['enableTooltip']);
1503
+ /**
1504
+ * If `true`, a tooltip will always display the progress value.
1505
+ It relies on enableTooltip and if enableTooltip is false, tooltipAlwaysVisible cannot be true.
1506
+ */
1507
+ set tooltipAlwaysVisible(_: Components.BqSlider['tooltipAlwaysVisible']);
1508
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1509
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqSlider, never>;
1510
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqSlider, "bq-slider", never, { "debounceTime": { "alias": "debounceTime"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "enableTooltip": { "alias": "enableTooltip"; "required": false; }; "enableValueIndicator": { "alias": "enableValueIndicator"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "step": { "alias": "step"; "required": false; }; "tooltipAlwaysVisible": { "alias": "tooltipAlwaysVisible"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1511
+ }
1512
+ export declare interface BqSlider extends Components.BqSlider {
1513
+ /**
1514
+ * Handler to be called when change the value on range inputs
1515
+ */
1516
+ bqChange: EventEmitter<CustomEvent<{
1517
+ value: Exclude<IBqSliderTSliderValue, string>;
1518
+ el: HTMLBqSliderElement;
1519
+ }>>;
1520
+ /**
1521
+ * Handler to be called when the slider loses focus
1522
+ */
1523
+ bqBlur: EventEmitter<CustomEvent<HTMLBqSliderElement>>;
1524
+ /**
1525
+ * Handler to be called when the slider gets focused
1526
+ */
1527
+ bqFocus: EventEmitter<CustomEvent<HTMLBqSliderElement>>;
1528
+ }
1529
+ export declare class BqSpinner {
1530
+ protected z: NgZone;
1531
+ protected el: HTMLBqSpinnerElement;
1532
+ /**
1533
+ * If `false`, the animation on the icon element will be stopped
1534
+ */
1535
+ set animation(_: Components.BqSpinner['animation']);
1536
+ /**
1537
+ * It defines the position of the label text
1538
+ */
1539
+ set textPosition(_: Components.BqSpinner['textPosition']);
1540
+ /**
1541
+ * It defines the size of the icon element displayed
1542
+ */
1543
+ set size(_: Components.BqSpinner['size']);
1544
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1545
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqSpinner, never>;
1546
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqSpinner, "bq-spinner", never, { "animation": { "alias": "animation"; "required": false; }; "size": { "alias": "size"; "required": false; }; "textPosition": { "alias": "textPosition"; "required": false; }; }, {}, never, ["*"], false, never>;
1547
+ }
1548
+ export declare interface BqSpinner extends Components.BqSpinner {
1549
+ }
1550
+ export declare class BqStatus {
1551
+ protected z: NgZone;
1552
+ protected el: HTMLBqStatusElement;
1553
+ /**
1554
+ * It defines the type of status to display
1555
+ */
1556
+ set type(_: Components.BqStatus['type']);
1557
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1558
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqStatus, never>;
1559
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqStatus, "bq-status", never, { "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
1560
+ }
1561
+ export declare interface BqStatus extends Components.BqStatus {
1562
+ }
1563
+ export declare class BqStepItem {
1564
+ protected z: NgZone;
1565
+ protected el: HTMLBqStepItemElement;
1566
+ /**
1567
+ * It defines prefix size
1568
+ */
1569
+ set size(_: Components.BqStepItem['size']);
1570
+ /**
1571
+ * It defines step item appearance based on its status
1572
+ */
1573
+ set status(_: Components.BqStepItem['status']);
1574
+ /**
1575
+ * It defines the step item type used
1576
+ */
1577
+ set type(_: Components.BqStepItem['type']);
1578
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1579
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqStepItem, never>;
1580
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqStepItem, "bq-step-item", never, { "size": { "alias": "size"; "required": false; }; "status": { "alias": "status"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
1581
+ }
1582
+ export declare interface BqStepItem extends Components.BqStepItem {
1583
+ /**
1584
+ * Callback handler emitted when the step item is clicked
1585
+ */
1586
+ bqClick: EventEmitter<CustomEvent<{
1587
+ target: HTMLBqStepItemElement;
1588
+ value: string;
1589
+ }>>;
1590
+ }
1591
+ export declare class BqSteps {
1592
+ protected z: NgZone;
1593
+ protected el: HTMLBqStepsElement;
1594
+ /**
1595
+ * The color of the line that connects the steps. It should be a valid declarative color token.
1596
+ */
1597
+ set dividerColor(_: Components.BqSteps['dividerColor']);
1598
+ /**
1599
+ * The size of the steps
1600
+ */
1601
+ set size(_: Components.BqSteps['size']);
1602
+ /**
1603
+ * The type of prefix element to use on the step items
1604
+ */
1605
+ set type(_: Components.BqSteps['type']);
1606
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1607
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqSteps, never>;
1608
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqSteps, "bq-steps", never, { "dividerColor": { "alias": "dividerColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
1609
+ }
1610
+ export declare interface BqSteps extends Components.BqSteps {
1611
+ }
1612
+ export declare class BqSwitch {
1613
+ protected z: NgZone;
1614
+ protected el: HTMLBqSwitchElement;
1615
+ /**
1616
+ * If true, a background will be displayed on hover
1617
+ */
1618
+ set backgroundOnHover(_: Components.BqSwitch['backgroundOnHover']);
1619
+ /**
1620
+ * It indicates whether if the switch is `ON` by default (when the page loads)
1621
+ */
1622
+ set checked(_: Components.BqSwitch['checked']);
1623
+ /**
1624
+ * If true, the switch control will be disabled and no interaction will be allowed
1625
+ */
1626
+ set disabled(_: Components.BqSwitch['disabled']);
1627
+ /**
1628
+ * The native form validation message
1629
+ */
1630
+ set formValidationMessage(_: Components.BqSwitch['formValidationMessage']);
1631
+ /**
1632
+ * If true, the component will take the full width space available on the parent container
1633
+ */
1634
+ set fullWidth(_: Components.BqSwitch['fullWidth']);
1635
+ /**
1636
+ * It indicates how to to display the on/off marks inside the control, with icons or none (default)
1637
+ */
1638
+ set innerLabel(_: Components.BqSwitch['innerLabel']);
1639
+ /**
1640
+ * It defines how to distribute the space between and around the control and the label text
1641
+ (https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content)
1642
+ */
1643
+ set justifyContent(_: Components.BqSwitch['justifyContent']);
1644
+ /**
1645
+ * Name of the form control. Submitted with the form as part of a name/value pair
1646
+ */
1647
+ set name(_: Components.BqSwitch['name']);
1648
+ /**
1649
+ * If `true`, it will indicate that the user must switch `ON` the element before the owning form can be submitted
1650
+ */
1651
+ set required(_: Components.BqSwitch['required']);
1652
+ /**
1653
+ * If true, the order of the control and the label text will be changed
1654
+ */
1655
+ set reverseOrder(_: Components.BqSwitch['reverseOrder']);
1656
+ /**
1657
+ * The input control's value, submitted as a name/value pair with form data.
1658
+ */
1659
+ set value(_: Components.BqSwitch['value']);
1660
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1661
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqSwitch, never>;
1662
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqSwitch, "bq-switch", never, { "backgroundOnHover": { "alias": "backgroundOnHover"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "formValidationMessage": { "alias": "formValidationMessage"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; "innerLabel": { "alias": "innerLabel"; "required": false; }; "justifyContent": { "alias": "justifyContent"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "reverseOrder": { "alias": "reverseOrder"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1663
+ }
1664
+ export declare interface BqSwitch extends Components.BqSwitch {
1665
+ /**
1666
+ * Handler to be called when the switch state changes
1667
+ */
1668
+ bqChange: EventEmitter<CustomEvent<{
1669
+ checked: boolean;
1670
+ }>>;
1671
+ /**
1672
+ * Handler to be called when the switch gets focus
1673
+ */
1674
+ bqFocus: EventEmitter<CustomEvent<HTMLBqSwitchElement>>;
1675
+ /**
1676
+ * Handler to be called when the switch loses focus
1677
+ */
1678
+ bqBlur: EventEmitter<CustomEvent<HTMLBqSwitchElement>>;
1679
+ }
1680
+ export declare class BqTab {
1681
+ protected z: NgZone;
1682
+ protected el: HTMLBqTabElement;
1683
+ /**
1684
+ * If true tab is active
1685
+ */
1686
+ set active(_: Components.BqTab['active']);
1687
+ /**
1688
+ * The tab panel id that the tab controls
1689
+ */
1690
+ set controls(_: Components.BqTab['controls']);
1691
+ /**
1692
+ * If true tab is disabled
1693
+ */
1694
+ set disabled(_: Components.BqTab['disabled']);
1695
+ /**
1696
+ * The direction that tab should be render
1697
+ */
1698
+ set orientation(_: Components.BqTab['orientation']);
1699
+ /**
1700
+ * The placement that tab should be render
1701
+ */
1702
+ set placement(_: Components.BqTab['placement']);
1703
+ /**
1704
+ * The size of the tab
1705
+ */
1706
+ set size(_: Components.BqTab['size']);
1707
+ /**
1708
+ * The id of the tab
1709
+ */
1710
+ set tabId(_: Components.BqTab['tabId']);
1711
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1712
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqTab, never>;
1713
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqTab, "bq-tab", never, { "active": { "alias": "active"; "required": false; }; "controls": { "alias": "controls"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tabId": { "alias": "tabId"; "required": false; }; }, {}, never, ["*"], false, never>;
1714
+ }
1715
+ export declare interface BqTab extends Components.BqTab {
1716
+ /**
1717
+ * Handler to be called when the tab state changes
1718
+ */
1719
+ bqClick: EventEmitter<CustomEvent<HTMLBqTabElement>>;
1720
+ /**
1721
+ * Handler to be called when the tab gets focus
1722
+ */
1723
+ bqFocus: EventEmitter<CustomEvent<HTMLBqTabElement>>;
1724
+ /**
1725
+ * Handler to be called when the tab loses focus
1726
+ */
1727
+ bqBlur: EventEmitter<CustomEvent<HTMLBqTabElement>>;
1728
+ /**
1729
+ * Handler to be called when the tab key is pressed
1730
+ */
1731
+ bqKeyDown: EventEmitter<CustomEvent<KeyboardEvent>>;
1732
+ }
1733
+ export declare class BqTabGroup {
1734
+ protected z: NgZone;
1735
+ protected el: HTMLBqTabGroupElement;
1736
+ /**
1737
+ * A number representing the delay value applied to bqChange event handler
1738
+ */
1739
+ set debounceTime(_: Components.BqTabGroup['debounceTime']);
1740
+ /**
1741
+ * If true, the underline divider below the tabs won't be shown
1742
+ */
1743
+ set disableDivider(_: Components.BqTabGroup['disableDivider']);
1744
+ /**
1745
+ * The direction that tab should be render
1746
+ */
1747
+ set orientation(_: Components.BqTabGroup['orientation']);
1748
+ /**
1749
+ * The placement that tab should be render
1750
+ */
1751
+ set placement(_: Components.BqTabGroup['placement']);
1752
+ /**
1753
+ * The size of the tab
1754
+ */
1755
+ set size(_: Components.BqTabGroup['size']);
1756
+ /**
1757
+ * A string representing the id of the selected tab.
1758
+ */
1759
+ set value(_: Components.BqTabGroup['value']);
1760
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1761
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqTabGroup, never>;
1762
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqTabGroup, "bq-tab-group", never, { "debounceTime": { "alias": "debounceTime"; "required": false; }; "disableDivider": { "alias": "disableDivider"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1763
+ }
1764
+ export declare interface BqTabGroup extends Components.BqTabGroup {
1765
+ /**
1766
+ * Handler to be called when the tab value changes
1767
+ */
1768
+ bqChange: EventEmitter<CustomEvent<{
1769
+ target: HTMLBqTabElement;
1770
+ value: string;
1771
+ }>>;
1772
+ }
1773
+ export declare class BqTag {
1774
+ protected z: NgZone;
1775
+ protected el: HTMLBqTagElement;
1776
+ /**
1777
+ * The corner radius of the Tag (will override size's predefined border)
1778
+ */
1779
+ set border(_: Components.BqTag['border']);
1780
+ /**
1781
+ * If true, the Tag can be clickable
1782
+ */
1783
+ set clickable(_: Components.BqTag['clickable']);
1784
+ /**
1785
+ * The color style of the Tag
1786
+ */
1787
+ set color(_: Components.BqTag['color']);
1788
+ /**
1789
+ * If true, the Tag will be disabled (only if clickable = `true`, no interaction allowed)
1790
+ */
1791
+ set disabled(_: Components.BqTag['disabled']);
1792
+ /**
1793
+ * If true, the Tag component will hidden (only if removable = `true`)
1794
+ */
1795
+ set hidden(_: Components.BqTag['hidden']);
1796
+ /**
1797
+ * If true, the Tag component can be removed
1798
+ */
1799
+ set removable(_: Components.BqTag['removable']);
1800
+ /**
1801
+ * If true, the Tag is selected (only if clickable = `true`)
1802
+ */
1803
+ set selected(_: Components.BqTag['selected']);
1804
+ /**
1805
+ * The size of the Tag component
1806
+ */
1807
+ set size(_: Components.BqTag['size']);
1808
+ /**
1809
+ * The variant of Tag to apply on top of the variant
1810
+ */
1811
+ set variant(_: Components.BqTag['variant']);
1812
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1813
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqTag, never>;
1814
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqTag, "bq-tag", never, { "border": { "alias": "border"; "required": false; }; "clickable": { "alias": "clickable"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
1815
+ }
1816
+ export declare interface BqTag extends Components.BqTag {
1817
+ /**
1818
+ * Callback handler to be called when the tag is close/hidden
1819
+ */
1820
+ bqClose: EventEmitter<CustomEvent<any>>;
1821
+ /**
1822
+ * Callback handler to be called when the tag is not open/shown
1823
+ */
1824
+ bqOpen: EventEmitter<CustomEvent<any>>;
1825
+ /**
1826
+ * Handler to be called when tag loses focus
1827
+ */
1828
+ bqBlur: EventEmitter<CustomEvent<HTMLBqTagElement>>;
1829
+ /**
1830
+ * Handler to be called when tag is clicked
1831
+ */
1832
+ bqClick: EventEmitter<CustomEvent<HTMLBqTagElement>>;
1833
+ /**
1834
+ * Handler to be called when tag is focused
1835
+ */
1836
+ bqFocus: EventEmitter<CustomEvent<HTMLBqTagElement>>;
1837
+ }
1838
+ export declare class BqTextarea {
1839
+ protected z: NgZone;
1840
+ protected el: HTMLBqTextareaElement;
1841
+ /**
1842
+ * Controls whether or not the textarea field should be capitalized and how.
1843
+ Possible values are 'off', 'none', 'on', 'sentences', 'words', and 'characters'.
1844
+ See: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize
1845
+ */
1846
+ set autocapitalize(_: Components.BqTextarea['autocapitalize']);
1847
+ /**
1848
+ * Specifies whether or not the textarea field should have autocomplete enabled.
1849
+ See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values
1850
+ */
1851
+ set autocomplete(_: Components.BqTextarea['autocomplete']);
1852
+ /**
1853
+ * Controls whether or not the textarea field should have autocorrect enabled.
1854
+ Possible values are 'on' and 'off'.
1855
+ */
1856
+ set autocorrect(_: Components.BqTextarea['autocorrect']);
1857
+ /**
1858
+ * If true, the textarea will be focused on component render
1859
+ */
1860
+ set autofocus(_: Components.BqTextarea['autofocus']);
1861
+ /**
1862
+ * If `true`, the textarea will automatically grow and shrink to fit its contents.
1863
+ If `false`, the textarea will have a fixed height specified by the `rows` property.
1864
+ */
1865
+ set autoGrow(_: Components.BqTextarea['autoGrow']);
1866
+ /**
1867
+ * The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the textarea value changes.
1868
+ A value of 0 means no debouncing will occur.
1869
+ */
1870
+ set debounceTime(_: Components.BqTextarea['debounceTime']);
1871
+ /**
1872
+ * If `true`, the user cannot interact with the textarea.
1873
+ */
1874
+ set disabled(_: Components.BqTextarea['disabled']);
1875
+ /**
1876
+ * If `true`, it will block the user's ability to resize the textarea.
1877
+ */
1878
+ set disableResize(_: Components.BqTextarea['disableResize']);
1879
+ /**
1880
+ * The ID of the form that the textarea field belongs to.
1881
+ */
1882
+ set form(_: Components.BqTextarea['form']);
1883
+ /**
1884
+ * The native form validation message
1885
+ */
1886
+ set formValidationMessage(_: Components.BqTextarea['formValidationMessage']);
1887
+ /**
1888
+ * The maximum number of characters that can be entered into the textarea (`0`: no limit).
1889
+ When enabled, a character counter will be shown underneath the textarea.
1890
+ */
1891
+ set maxlength(_: Components.BqTextarea['maxlength']);
1892
+ /**
1893
+ * The name of the textarea element.
1894
+ */
1895
+ set name(_: Components.BqTextarea['name']);
1896
+ /**
1897
+ * The placeholder text to show when there is no value.
1898
+ */
1899
+ set placeholder(_: Components.BqTextarea['placeholder']);
1900
+ /**
1901
+ * If true, the textarea field cannot be modified.
1902
+ */
1903
+ set readonly(_: Components.BqTextarea['readonly']);
1904
+ /**
1905
+ * Indicates whether or not the textarea field is required to be filled out before submitting the form.
1906
+ */
1907
+ set required(_: Components.BqTextarea['required']);
1908
+ /**
1909
+ * The number of visible text lines for the control. It must be a positive integer.
1910
+ */
1911
+ set rows(_: Components.BqTextarea['rows']);
1912
+ /**
1913
+ * If true, the textarea content may be checked for spelling errors.
1914
+ */
1915
+ set spellcheck(_: Components.BqTextarea['spellcheck']);
1916
+ /**
1917
+ * The validation status of the textarea. @remarks This property is used to indicate the validation status of the textarea. It can be set to one of the following values:
1918
+ - `'none'`: No validation status is set.
1919
+ - `'error'`: The textarea has a validation error.
1920
+ - `'warning'`: The textarea has a validation warning.
1921
+ - `'success'`: The textarea has passed validation.
1922
+ */
1923
+ set validationStatus(_: Components.BqTextarea['validationStatus']);
1924
+ /**
1925
+ * The value of the textarea. It can be used to reset the textarea to a previous value.
1926
+ */
1927
+ set value(_: Components.BqTextarea['value']);
1928
+ /**
1929
+ * Specifies how the text in a text area is to be wrapped when submitted in a form
1930
+ */
1931
+ set wrap(_: Components.BqTextarea['wrap']);
1932
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1933
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqTextarea, never>;
1934
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqTextarea, "bq-textarea", never, { "autoGrow": { "alias": "autoGrow"; "required": false; }; "autocapitalize": { "alias": "autocapitalize"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "autocorrect": { "alias": "autocorrect"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; "disableResize": { "alias": "disableResize"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "formValidationMessage": { "alias": "formValidationMessage"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "spellcheck": { "alias": "spellcheck"; "required": false; }; "validationStatus": { "alias": "validationStatus"; "required": false; }; "value": { "alias": "value"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; }, {}, never, ["*"], false, never>;
1935
+ }
1936
+ export declare interface BqTextarea extends Components.BqTextarea {
1937
+ /**
1938
+ * Callback handler emitted when the textarea loses focus
1939
+ */
1940
+ bqBlur: EventEmitter<CustomEvent<HTMLBqTextareaElement>>;
1941
+ /**
1942
+ * Callback handler emitted when the textarea value has changed and the textarea loses focus.
1943
+ This handler is called whenever the user finishes typing or pasting text into the textarea field and then clicks outside of the textarea field.
1944
+ */
1945
+ bqChange: EventEmitter<CustomEvent<{
1946
+ value: string;
1947
+ el: HTMLBqTextareaElement;
1948
+ }>>;
1949
+ /**
1950
+ * Callback handler emitted when the textarea value has been cleared
1951
+ */
1952
+ bqClear: EventEmitter<CustomEvent<HTMLBqTextareaElement>>;
1953
+ /**
1954
+ * Callback handler emitted when the textarea has received focus
1955
+ */
1956
+ bqFocus: EventEmitter<CustomEvent<HTMLBqTextareaElement>>;
1957
+ /**
1958
+ * Callback handler emitted when the textarea value changes.
1959
+ This handler is called whenever the user types or pastes text into the textarea field.
1960
+ */
1961
+ bqInput: EventEmitter<CustomEvent<{
1962
+ value: string;
1963
+ el: HTMLBqTextareaElement;
1964
+ }>>;
1965
+ }
1966
+ export declare class BqToast {
1967
+ protected z: NgZone;
1968
+ protected el: HTMLBqToastElement;
1969
+ /**
1970
+ * The corder radius of the toast component
1971
+ */
1972
+ set border(_: Components.BqToast['border']);
1973
+ /**
1974
+ * Type of toast
1975
+ */
1976
+ set type(_: Components.BqToast['type']);
1977
+ /**
1978
+ * Placement of toast
1979
+ */
1980
+ set placement(_: Components.BqToast['placement']);
1981
+ /**
1982
+ * If true will hide toast icon
1983
+ */
1984
+ set hideIcon(_: Components.BqToast['hideIcon']);
1985
+ /**
1986
+ * If true, the toast will be shown
1987
+ */
1988
+ set open(_: Components.BqToast['open']);
1989
+ /**
1990
+ * The length of time, in milliseconds, after which the toast will close itself
1991
+ */
1992
+ set time(_: Components.BqToast['time']);
1993
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1994
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqToast, never>;
1995
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqToast, "bq-toast", never, { "border": { "alias": "border"; "required": false; }; "hideIcon": { "alias": "hideIcon"; "required": false; }; "open": { "alias": "open"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "time": { "alias": "time"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
1996
+ }
1997
+ export declare interface BqToast extends Components.BqToast {
1998
+ /**
1999
+ * Callback handler to be called when the notification is hidden
2000
+ */
2001
+ bqHide: EventEmitter<CustomEvent<HTMLBqToastElement>>;
2002
+ /**
2003
+ * Callback handler to be called when the notification is shown
2004
+ */
2005
+ bqShow: EventEmitter<CustomEvent<HTMLBqToastElement>>;
2006
+ }
2007
+ export declare class BqTooltip {
2008
+ protected z: NgZone;
2009
+ protected el: HTMLBqTooltipElement;
2010
+ /**
2011
+ * If true, the tooltip will always be visible
2012
+ */
2013
+ set alwaysVisible(_: Components.BqTooltip['alwaysVisible']);
2014
+ /**
2015
+ * Distance between trigger element and tooltip
2016
+ */
2017
+ set distance(_: Components.BqTooltip['distance']);
2018
+ /**
2019
+ * If true, the arrow on the tooltip content won't be shown
2020
+ */
2021
+ set hideArrow(_: Components.BqTooltip['hideArrow']);
2022
+ set placement(_: Components.BqTooltip['placement']);
2023
+ /**
2024
+ * Whether the tooltip should have the same width as the trigger element
2025
+ (applicable only for content shorter than the trigger element)
2026
+ */
2027
+ set sameWidth(_: Components.BqTooltip['sameWidth']);
2028
+ /**
2029
+ * Set the action when the tooltip should be displayed, on hover (default) or click
2030
+ */
2031
+ set displayOn(_: Components.BqTooltip['displayOn']);
2032
+ /**
2033
+ * Indicates whether or not the tooltip is visible when the component is first rendered,
2034
+ and when interacting with the trigger
2035
+ */
2036
+ set visible(_: Components.BqTooltip['visible']);
2037
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2038
+ static ɵfac: i0.ɵɵFactoryDeclaration<BqTooltip, never>;
2039
+ static ɵcmp: i0.ɵɵComponentDeclaration<BqTooltip, "bq-tooltip", never, { "alwaysVisible": { "alias": "alwaysVisible"; "required": false; }; "displayOn": { "alias": "displayOn"; "required": false; }; "distance": { "alias": "distance"; "required": false; }; "hideArrow": { "alias": "hideArrow"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "sameWidth": { "alias": "sameWidth"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, {}, never, ["*"], false, never>;
2040
+ }
2041
+ export declare interface BqTooltip extends Components.BqTooltip {
2042
+ }