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