@beeq/angular 1.10.0-beta.7 → 1.11.0-beta.0

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