@beeq/angular 1.8.0-beta.9 → 1.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +32 -15
- package/directives/components.d.ts +1320 -62
- package/esm2022/beeq.module.mjs +6 -6
- package/esm2022/directives/boolean-value-accessor.mjs +5 -5
- package/esm2022/directives/components.mjs +1715 -231
- 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 +146 -231
- 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 +170 -257
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +1744 -262
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/package.json +36 -36
- package/standalone/directives/components.d.ts +54 -62
|
@@ -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,10 +400,132 @@ 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
|
+
* The native form validation message (mandatory if `required` is set)
|
|
440
|
+
*/
|
|
441
|
+
set formValidationMessage(_: Components.BqDatePicker['formValidationMessage']);
|
|
442
|
+
/**
|
|
443
|
+
* A function that takes a date and returns true if the date should not be selectable
|
|
444
|
+
*/
|
|
445
|
+
set isDateDisallowed(_: Components.BqDatePicker['isDateDisallowed']);
|
|
446
|
+
/**
|
|
447
|
+
* The locale for formatting dates. If not set, will use the browser's locale.
|
|
448
|
+
Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument
|
|
449
|
+
*/
|
|
450
|
+
set locale(_: Components.BqDatePicker['locale']);
|
|
451
|
+
/**
|
|
452
|
+
* The latest date that can be selected
|
|
453
|
+
*/
|
|
454
|
+
set max(_: Components.BqDatePicker['max']);
|
|
455
|
+
/**
|
|
456
|
+
* The earliest date that can be selected
|
|
457
|
+
*/
|
|
458
|
+
set min(_: Components.BqDatePicker['min']);
|
|
459
|
+
/**
|
|
460
|
+
* Number of months to show when range is `true`
|
|
461
|
+
*/
|
|
462
|
+
set months(_: Components.BqDatePicker['months']);
|
|
463
|
+
/**
|
|
464
|
+
* Specifies how the next/previous buttons should navigate the calendar.
|
|
465
|
+
- single: The buttons will navigate by a single month at a time.
|
|
466
|
+
- months: The buttons will navigate by the number of months displayed per view.
|
|
467
|
+
*/
|
|
468
|
+
set monthsPerView(_: Components.BqDatePicker['monthsPerView']);
|
|
469
|
+
/**
|
|
470
|
+
* The Date picker input name.
|
|
471
|
+
*/
|
|
472
|
+
set name(_: Components.BqDatePicker['name']);
|
|
473
|
+
/**
|
|
474
|
+
* If `true`, the Date picker panel will be visible.
|
|
475
|
+
*/
|
|
476
|
+
set open(_: Components.BqDatePicker['open']);
|
|
477
|
+
/**
|
|
478
|
+
* When set, it will override the height of the Date picker panel.
|
|
479
|
+
*/
|
|
480
|
+
set panelHeight(_: Components.BqDatePicker['panelHeight']);
|
|
481
|
+
/**
|
|
482
|
+
* The Date picker input placeholder text value
|
|
483
|
+
*/
|
|
484
|
+
set placeholder(_: Components.BqDatePicker['placeholder']);
|
|
485
|
+
/**
|
|
486
|
+
* Position of the Date picker panel
|
|
487
|
+
*/
|
|
488
|
+
set placement(_: Components.BqDatePicker['placement']);
|
|
489
|
+
/**
|
|
490
|
+
* Indicates whether or not the Date picker input is required to be filled out before submitting the form.
|
|
491
|
+
*/
|
|
492
|
+
set required(_: Components.BqDatePicker['required']);
|
|
493
|
+
/**
|
|
494
|
+
* Represents the skidding between the Date picker panel and the input element.
|
|
495
|
+
*/
|
|
496
|
+
set skidding(_: Components.BqDatePicker['skidding']);
|
|
497
|
+
/**
|
|
498
|
+
* Whether to show days outside the month
|
|
499
|
+
*/
|
|
500
|
+
set showOutsideDays(_: Components.BqDatePicker['showOutsideDays']);
|
|
501
|
+
/**
|
|
502
|
+
* Defines the strategy to position the Date picker panel
|
|
503
|
+
*/
|
|
504
|
+
set strategy(_: Components.BqDatePicker['strategy']);
|
|
505
|
+
/**
|
|
506
|
+
* The date that is tentatively selected e.g. the start of a range selection
|
|
507
|
+
*/
|
|
508
|
+
set tentative(_: Components.BqDatePicker['tentative']);
|
|
509
|
+
/**
|
|
510
|
+
* It defines how the calendar will behave, allowing single date selection, range selection, or multiple date selection
|
|
511
|
+
*/
|
|
512
|
+
set type(_: Components.BqDatePicker['type']);
|
|
513
|
+
/**
|
|
514
|
+
* The validation status of the Select input. @remarks This property is used to indicate the validation status of the select input. It can be set to one of the following values:
|
|
515
|
+
- `'none'`: No validation status is set.
|
|
516
|
+
- `'error'`: The input has a validation error.
|
|
517
|
+
- `'warning'`: The input has a validation warning.
|
|
518
|
+
- `'success'`: The input has passed validation.
|
|
519
|
+
*/
|
|
520
|
+
set validationStatus(_: Components.BqDatePicker['validationStatus']);
|
|
521
|
+
/**
|
|
522
|
+
* The select input value represents the currently selected date or range and can be used to reset the field to a previous value.
|
|
523
|
+
All dates are expected in ISO-8601 format (YYYY-MM-DD).
|
|
524
|
+
*/
|
|
525
|
+
set value(_: Components.BqDatePicker['value']);
|
|
188
526
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
189
527
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqDatePicker, never>;
|
|
190
|
-
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>;
|
|
528
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BqDatePicker, "bq-date-picker", never, { "autofocus": { "alias": "autofocus"; "required": false; }; "clearButtonLabel": { "alias": "clearButtonLabel"; "required": false; }; "disableClear": { "alias": "disableClear"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "distance": { "alias": "distance"; "required": false; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; }; "form": { "alias": "form"; "required": false; }; "formValidationMessage": { "alias": "formValidationMessage"; "required": false; }; "formatOptions": { "alias": "formatOptions"; "required": false; }; "isDateDisallowed": { "alias": "isDateDisallowed"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "months": { "alias": "months"; "required": false; }; "monthsPerView": { "alias": "monthsPerView"; "required": false; }; "name": { "alias": "name"; "required": false; }; "open": { "alias": "open"; "required": false; }; "panelHeight": { "alias": "panelHeight"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "required": { "alias": "required"; "required": false; }; "showOutsideDays": { "alias": "showOutsideDays"; "required": false; }; "skidding": { "alias": "skidding"; "required": false; }; "strategy": { "alias": "strategy"; "required": false; }; "tentative": { "alias": "tentative"; "required": false; }; "type": { "alias": "type"; "required": false; }; "validationStatus": { "alias": "validationStatus"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
191
529
|
}
|
|
192
530
|
export declare interface BqDatePicker extends Components.BqDatePicker {
|
|
193
531
|
/**
|
|
@@ -213,7 +551,39 @@ export declare interface BqDatePicker extends Components.BqDatePicker {
|
|
|
213
551
|
}
|
|
214
552
|
export declare class BqDialog {
|
|
215
553
|
protected z: NgZone;
|
|
216
|
-
protected el:
|
|
554
|
+
protected el: HTMLBqDialogElement;
|
|
555
|
+
/**
|
|
556
|
+
* Border radius of the dialog component
|
|
557
|
+
*/
|
|
558
|
+
set border(_: Components.BqDialog['border']);
|
|
559
|
+
/**
|
|
560
|
+
* If true, the backdrop overlay won't be shown when the dialog opens
|
|
561
|
+
*/
|
|
562
|
+
set disableBackdrop(_: Components.BqDialog['disableBackdrop']);
|
|
563
|
+
/**
|
|
564
|
+
* If true, the dialog will not close when the [Esc] key is press
|
|
565
|
+
*/
|
|
566
|
+
set disableCloseEscKeydown(_: Components.BqDialog['disableCloseEscKeydown']);
|
|
567
|
+
/**
|
|
568
|
+
* If true, the dialog will not close when clicking on the backdrop overlay
|
|
569
|
+
*/
|
|
570
|
+
set disableCloseClickOutside(_: Components.BqDialog['disableCloseClickOutside']);
|
|
571
|
+
/**
|
|
572
|
+
* The appearance of footer
|
|
573
|
+
*/
|
|
574
|
+
set footerAppearance(_: Components.BqDialog['footerAppearance']);
|
|
575
|
+
/**
|
|
576
|
+
* If true, it hides the close button
|
|
577
|
+
*/
|
|
578
|
+
set hideCloseButton(_: Components.BqDialog['hideCloseButton']);
|
|
579
|
+
/**
|
|
580
|
+
* If true, the dialog will be shown as open
|
|
581
|
+
*/
|
|
582
|
+
set open(_: Components.BqDialog['open']);
|
|
583
|
+
/**
|
|
584
|
+
* The size of the dialog
|
|
585
|
+
*/
|
|
586
|
+
set size(_: Components.BqDialog['size']);
|
|
217
587
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
218
588
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqDialog, never>;
|
|
219
589
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqDialog, "bq-dialog", never, { "border": { "alias": "border"; "required": false; }; "disableBackdrop": { "alias": "disableBackdrop"; "required": false; }; "disableCloseClickOutside": { "alias": "disableCloseClickOutside"; "required": false; }; "disableCloseEscKeydown": { "alias": "disableCloseEscKeydown"; "required": false; }; "footerAppearance": { "alias": "footerAppearance"; "required": false; }; "hideCloseButton": { "alias": "hideCloseButton"; "required": false; }; "open": { "alias": "open"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -242,7 +612,43 @@ export declare interface BqDialog extends Components.BqDialog {
|
|
|
242
612
|
}
|
|
243
613
|
export declare class BqDivider {
|
|
244
614
|
protected z: NgZone;
|
|
245
|
-
protected el:
|
|
615
|
+
protected el: HTMLBqDividerElement;
|
|
616
|
+
/**
|
|
617
|
+
* If true, the divider has a dashed pattern
|
|
618
|
+
*/
|
|
619
|
+
set dashed(_: Components.BqDivider['dashed']);
|
|
620
|
+
/**
|
|
621
|
+
* The default orientation of the divider
|
|
622
|
+
*/
|
|
623
|
+
set orientation(_: Components.BqDivider['orientation']);
|
|
624
|
+
/**
|
|
625
|
+
* Set the stroke color of the divider. The value should be a valid value of the palette color
|
|
626
|
+
*/
|
|
627
|
+
set strokeColor(_: Components.BqDivider['strokeColor']);
|
|
628
|
+
/**
|
|
629
|
+
* Set the alignment of the title on the main axis of the divider (horizontal / vertical)
|
|
630
|
+
*/
|
|
631
|
+
set titleAlignment(_: Components.BqDivider['titleAlignment']);
|
|
632
|
+
/**
|
|
633
|
+
* Set the width of each dash of the divider's stroke. This is applicable when the stroke is dashed
|
|
634
|
+
*/
|
|
635
|
+
set strokeDashWidth(_: Components.BqDivider['strokeDashWidth']);
|
|
636
|
+
/**
|
|
637
|
+
* Set the gap of the divider's stroke. This is applicable when the stroke is dashed
|
|
638
|
+
*/
|
|
639
|
+
set strokeDashGap(_: Components.BqDivider['strokeDashGap']);
|
|
640
|
+
/**
|
|
641
|
+
* Set the thickness of the divider's stroke. Value expressed in px
|
|
642
|
+
*/
|
|
643
|
+
set strokeThickness(_: Components.BqDivider['strokeThickness']);
|
|
644
|
+
/**
|
|
645
|
+
* Set the min width of the divider's stroke when text is not centered. Value expressed in px
|
|
646
|
+
*/
|
|
647
|
+
set strokeBasis(_: Components.BqDivider['strokeBasis']);
|
|
648
|
+
/**
|
|
649
|
+
* Set the line of the divider's stroke. This is applicable when the stroke is dashed
|
|
650
|
+
*/
|
|
651
|
+
set strokeLinecap(_: Components.BqDivider['strokeLinecap']);
|
|
246
652
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
247
653
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqDivider, never>;
|
|
248
654
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqDivider, "bq-divider", never, { "dashed": { "alias": "dashed"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "strokeBasis": { "alias": "strokeBasis"; "required": false; }; "strokeColor": { "alias": "strokeColor"; "required": false; }; "strokeDashGap": { "alias": "strokeDashGap"; "required": false; }; "strokeDashWidth": { "alias": "strokeDashWidth"; "required": false; }; "strokeLinecap": { "alias": "strokeLinecap"; "required": false; }; "strokeThickness": { "alias": "strokeThickness"; "required": false; }; "titleAlignment": { "alias": "titleAlignment"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -251,7 +657,31 @@ export declare interface BqDivider extends Components.BqDivider {
|
|
|
251
657
|
}
|
|
252
658
|
export declare class BqDrawer {
|
|
253
659
|
protected z: NgZone;
|
|
254
|
-
protected el:
|
|
660
|
+
protected el: HTMLBqDrawerElement;
|
|
661
|
+
/**
|
|
662
|
+
* If true, the backdrop overlay will be shown when the drawer opens
|
|
663
|
+
*/
|
|
664
|
+
set enableBackdrop(_: Components.BqDrawer['enableBackdrop']);
|
|
665
|
+
/**
|
|
666
|
+
* If true, the drawer will not close when clicking outside the panel
|
|
667
|
+
*/
|
|
668
|
+
set closeOnClickOutside(_: Components.BqDrawer['closeOnClickOutside']);
|
|
669
|
+
/**
|
|
670
|
+
* If true, the dialog will not close when the [Esc] key is pressed
|
|
671
|
+
*/
|
|
672
|
+
set closeOnEsc(_: Components.BqDrawer['closeOnEsc']);
|
|
673
|
+
/**
|
|
674
|
+
* If true, the drawer component will be shown
|
|
675
|
+
*/
|
|
676
|
+
set open(_: Components.BqDrawer['open']);
|
|
677
|
+
/**
|
|
678
|
+
* @deprecated Defines the position of the drawer
|
|
679
|
+
*/
|
|
680
|
+
set placement(_: Components.BqDrawer['placement']);
|
|
681
|
+
/**
|
|
682
|
+
* Defines the position of the drawer
|
|
683
|
+
*/
|
|
684
|
+
set position(_: Components.BqDrawer['position']);
|
|
255
685
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
256
686
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqDrawer, never>;
|
|
257
687
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqDrawer, "bq-drawer", never, { "closeOnClickOutside": { "alias": "closeOnClickOutside"; "required": false; }; "closeOnEsc": { "alias": "closeOnEsc"; "required": false; }; "enableBackdrop": { "alias": "enableBackdrop"; "required": false; }; "open": { "alias": "open"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -276,7 +706,43 @@ export declare interface BqDrawer extends Components.BqDrawer {
|
|
|
276
706
|
}
|
|
277
707
|
export declare class BqDropdown {
|
|
278
708
|
protected z: NgZone;
|
|
279
|
-
protected el:
|
|
709
|
+
protected el: HTMLBqDropdownElement;
|
|
710
|
+
/**
|
|
711
|
+
* If true, the dropdown panel will be visible and won't be shown.
|
|
712
|
+
*/
|
|
713
|
+
set disabled(_: Components.BqDropdown['disabled']);
|
|
714
|
+
/**
|
|
715
|
+
* Represents the distance (gutter or margin) between the panel and the trigger element.
|
|
716
|
+
*/
|
|
717
|
+
set distance(_: Components.BqDropdown['distance']);
|
|
718
|
+
/**
|
|
719
|
+
* If true, the panel will remain open after a selection is made.
|
|
720
|
+
*/
|
|
721
|
+
set keepOpenOnSelect(_: Components.BqDropdown['keepOpenOnSelect']);
|
|
722
|
+
/**
|
|
723
|
+
* Position of the panel
|
|
724
|
+
*/
|
|
725
|
+
set placement(_: Components.BqDropdown['placement']);
|
|
726
|
+
/**
|
|
727
|
+
* If true, the panel will be visible.
|
|
728
|
+
*/
|
|
729
|
+
set open(_: Components.BqDropdown['open']);
|
|
730
|
+
/**
|
|
731
|
+
* When set, it will override the height of the dropdown panel
|
|
732
|
+
*/
|
|
733
|
+
set panelHeight(_: Components.BqDropdown['panelHeight']);
|
|
734
|
+
/**
|
|
735
|
+
* Whether the panel should have the same width as the trigger element
|
|
736
|
+
*/
|
|
737
|
+
set sameWidth(_: Components.BqDropdown['sameWidth']);
|
|
738
|
+
/**
|
|
739
|
+
* Represents the skidding between the panel and the trigger element.
|
|
740
|
+
*/
|
|
741
|
+
set skidding(_: Components.BqDropdown['skidding']);
|
|
742
|
+
/**
|
|
743
|
+
* Defines the strategy to position the panel
|
|
744
|
+
*/
|
|
745
|
+
set strategy(_: Components.BqDropdown['strategy']);
|
|
280
746
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
281
747
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqDropdown, never>;
|
|
282
748
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqDropdown, "bq-dropdown", never, { "disabled": { "alias": "disabled"; "required": false; }; "distance": { "alias": "distance"; "required": false; }; "keepOpenOnSelect": { "alias": "keepOpenOnSelect"; "required": false; }; "open": { "alias": "open"; "required": false; }; "panelHeight": { "alias": "panelHeight"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "sameWidth": { "alias": "sameWidth"; "required": false; }; "skidding": { "alias": "skidding"; "required": false; }; "strategy": { "alias": "strategy"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -291,7 +757,11 @@ export declare interface BqDropdown extends Components.BqDropdown {
|
|
|
291
757
|
}
|
|
292
758
|
export declare class BqEmptyState {
|
|
293
759
|
protected z: NgZone;
|
|
294
|
-
protected el:
|
|
760
|
+
protected el: HTMLBqEmptyStateElement;
|
|
761
|
+
/**
|
|
762
|
+
* The size of the empty state component
|
|
763
|
+
*/
|
|
764
|
+
set size(_: Components.BqEmptyState['size']);
|
|
295
765
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
296
766
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqEmptyState, never>;
|
|
297
767
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqEmptyState, "bq-empty-state", never, { "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -300,7 +770,31 @@ export declare interface BqEmptyState extends Components.BqEmptyState {
|
|
|
300
770
|
}
|
|
301
771
|
export declare class BqIcon {
|
|
302
772
|
protected z: NgZone;
|
|
303
|
-
protected el:
|
|
773
|
+
protected el: HTMLBqIconElement;
|
|
774
|
+
/**
|
|
775
|
+
* Label for the icon, used for accessibility
|
|
776
|
+
*/
|
|
777
|
+
set label(_: Components.BqIcon['label']);
|
|
778
|
+
/**
|
|
779
|
+
* Set the stroke color of the SVG. The value should be a valid value of the palette color
|
|
780
|
+
*/
|
|
781
|
+
set color(_: Components.BqIcon['color']);
|
|
782
|
+
/**
|
|
783
|
+
* Icon name to load. Please check all available icons [here](https://phosphoricons.com/)
|
|
784
|
+
*/
|
|
785
|
+
set name(_: Components.BqIcon['name']);
|
|
786
|
+
/**
|
|
787
|
+
* Set the size of the SVG
|
|
788
|
+
*/
|
|
789
|
+
set size(_: Components.BqIcon['size']);
|
|
790
|
+
/**
|
|
791
|
+
* Set the source of the SVG. If the source is set, the name property will be ignored
|
|
792
|
+
*/
|
|
793
|
+
set src(_: Components.BqIcon['src']);
|
|
794
|
+
/**
|
|
795
|
+
* @deprecated It set the icon weight/style
|
|
796
|
+
*/
|
|
797
|
+
set weight(_: Components.BqIcon['weight']);
|
|
304
798
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
305
799
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqIcon, never>;
|
|
306
800
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqIcon, "bq-icon", never, { "color": { "alias": "color"; "required": false; }; "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "src": { "alias": "src"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -313,10 +807,125 @@ export declare interface BqIcon extends Components.BqIcon {
|
|
|
313
807
|
}
|
|
314
808
|
export declare class BqInput {
|
|
315
809
|
protected z: NgZone;
|
|
316
|
-
protected el:
|
|
810
|
+
protected el: HTMLBqInputElement;
|
|
811
|
+
/**
|
|
812
|
+
* Controls whether or not the input field should be capitalized and how.
|
|
813
|
+
Possible values are 'off', 'none', 'on', 'sentences', 'words', and 'characters'.
|
|
814
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize
|
|
815
|
+
*/
|
|
816
|
+
set autocapitalize(_: Components.BqInput['autocapitalize']);
|
|
817
|
+
/**
|
|
818
|
+
* Specifies whether or not the input field should have autocomplete enabled.
|
|
819
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values
|
|
820
|
+
*/
|
|
821
|
+
set autocomplete(_: Components.BqInput['autocomplete']);
|
|
822
|
+
/**
|
|
823
|
+
* Controls whether or not the input field should have autocorrect enabled.
|
|
824
|
+
Possible values are 'on' and 'off'.
|
|
825
|
+
*/
|
|
826
|
+
set autocorrect(_: Components.BqInput['autocorrect']);
|
|
827
|
+
/**
|
|
828
|
+
* If true, the input will be focused on component render
|
|
829
|
+
*/
|
|
830
|
+
set autofocus(_: Components.BqInput['autofocus']);
|
|
831
|
+
/**
|
|
832
|
+
* The clear button aria label
|
|
833
|
+
*/
|
|
834
|
+
set clearButtonLabel(_: Components.BqInput['clearButtonLabel']);
|
|
835
|
+
/**
|
|
836
|
+
* The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the input value changes.
|
|
837
|
+
A value of 0 means no debouncing will occur.
|
|
838
|
+
*/
|
|
839
|
+
set debounceTime(_: Components.BqInput['debounceTime']);
|
|
840
|
+
/**
|
|
841
|
+
* Indicates whether the input is disabled or not.
|
|
842
|
+
If `true`, the input is disabled and cannot be interacted with.
|
|
843
|
+
*/
|
|
844
|
+
set disabled(_: Components.BqInput['disabled']);
|
|
845
|
+
/**
|
|
846
|
+
* If true, the clear button won't be displayed
|
|
847
|
+
*/
|
|
848
|
+
set disableClear(_: Components.BqInput['disableClear']);
|
|
849
|
+
/**
|
|
850
|
+
* The ID of the form that the input field belongs to.
|
|
851
|
+
*/
|
|
852
|
+
set form(_: Components.BqInput['form']);
|
|
853
|
+
/**
|
|
854
|
+
* The native form validation message (mandatory if `required` is set)
|
|
855
|
+
*/
|
|
856
|
+
set formValidationMessage(_: Components.BqInput['formValidationMessage']);
|
|
857
|
+
/**
|
|
858
|
+
* The inputmode attribute specifies what kind of input mechanism would be most helpful for users entering content into the input field.
|
|
859
|
+
This allows a browser to display an appropriate virtual keyboard while editing.
|
|
860
|
+
Possible values are 'none', 'text', 'decimal', 'numeric', 'tel', 'search', 'email', 'url', and 'date'.
|
|
861
|
+
*/
|
|
862
|
+
set inputmode(_: Components.BqInput['inputmode']);
|
|
863
|
+
/**
|
|
864
|
+
* The maximum value that the input field can accept.
|
|
865
|
+
Only applies to date and number input types.
|
|
866
|
+
*/
|
|
867
|
+
set max(_: Components.BqInput['max']);
|
|
868
|
+
/**
|
|
869
|
+
* The maximum number of characters that the input field can accept.
|
|
870
|
+
*/
|
|
871
|
+
set maxlength(_: Components.BqInput['maxlength']);
|
|
872
|
+
/**
|
|
873
|
+
* The minimum value that the input field can accept.
|
|
874
|
+
Only applies to date and number input types.
|
|
875
|
+
*/
|
|
876
|
+
set min(_: Components.BqInput['min']);
|
|
877
|
+
/**
|
|
878
|
+
* The minimum number of characters that the input field can accept.
|
|
879
|
+
*/
|
|
880
|
+
set minlength(_: Components.BqInput['minlength']);
|
|
881
|
+
/**
|
|
882
|
+
* The input field name.
|
|
883
|
+
*/
|
|
884
|
+
set name(_: Components.BqInput['name']);
|
|
885
|
+
/**
|
|
886
|
+
* Specifies a regular expression the form control's value should match.
|
|
887
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern
|
|
888
|
+
*/
|
|
889
|
+
set pattern(_: Components.BqInput['pattern']);
|
|
890
|
+
/**
|
|
891
|
+
* The input placeholder text value
|
|
892
|
+
*/
|
|
893
|
+
set placeholder(_: Components.BqInput['placeholder']);
|
|
894
|
+
/**
|
|
895
|
+
* If true, the input field cannot be modified.
|
|
896
|
+
*/
|
|
897
|
+
set readonly(_: Components.BqInput['readonly']);
|
|
898
|
+
/**
|
|
899
|
+
* Indicates whether or not the input field is required to be filled out before submitting the form.
|
|
900
|
+
*/
|
|
901
|
+
set required(_: Components.BqInput['required']);
|
|
902
|
+
/**
|
|
903
|
+
* A number that specifies the granularity that the value must adhere to.
|
|
904
|
+
Valid for date, month, week, time, datetime-local, number, and range.
|
|
905
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#step
|
|
906
|
+
*/
|
|
907
|
+
set step(_: Components.BqInput['step']);
|
|
908
|
+
/**
|
|
909
|
+
* The type attribute specifies the type of input field to display.
|
|
910
|
+
Possible values are 'text', 'password', 'email', 'number', 'tel', 'search', 'url', and more.
|
|
911
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#input_types
|
|
912
|
+
*/
|
|
913
|
+
set type(_: Components.BqInput['type']);
|
|
914
|
+
/**
|
|
915
|
+
* The validation status of the input. @remarks This property is used to indicate the validation status of the input. It can be set to one of the following values:
|
|
916
|
+
- `'none'`: No validation status is set.
|
|
917
|
+
- `'error'`: The input has a validation error.
|
|
918
|
+
- `'warning'`: The input has a validation warning.
|
|
919
|
+
- `'success'`: The input has passed validation.
|
|
920
|
+
*/
|
|
921
|
+
set validationStatus(_: Components.BqInput['validationStatus']);
|
|
922
|
+
/**
|
|
923
|
+
* The input value, it can be used to reset the input to a previous value
|
|
924
|
+
*/
|
|
925
|
+
set value(_: Components.BqInput['value']);
|
|
317
926
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
318
927
|
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>;
|
|
928
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BqInput, "bq-input", never, { "autocapitalize": { "alias": "autocapitalize"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "autocorrect": { "alias": "autocorrect"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "clearButtonLabel": { "alias": "clearButtonLabel"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; "disableClear": { "alias": "disableClear"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "formValidationMessage": { "alias": "formValidationMessage"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "max": { "alias": "max"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "min": { "alias": "min"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "step": { "alias": "step"; "required": false; }; "type": { "alias": "type"; "required": false; }; "validationStatus": { "alias": "validationStatus"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
320
929
|
}
|
|
321
930
|
export declare interface BqInput extends Components.BqInput {
|
|
322
931
|
/**
|
|
@@ -350,7 +959,35 @@ export declare interface BqInput extends Components.BqInput {
|
|
|
350
959
|
}
|
|
351
960
|
export declare class BqNotification {
|
|
352
961
|
protected z: NgZone;
|
|
353
|
-
protected el:
|
|
962
|
+
protected el: HTMLBqNotificationElement;
|
|
963
|
+
/**
|
|
964
|
+
* If true, the notification will automatically hide after the specified amount of time
|
|
965
|
+
*/
|
|
966
|
+
set autoDismiss(_: Components.BqNotification['autoDismiss']);
|
|
967
|
+
/**
|
|
968
|
+
* The corder radius of the notification component
|
|
969
|
+
*/
|
|
970
|
+
set border(_: Components.BqNotification['border']);
|
|
971
|
+
/**
|
|
972
|
+
* If true, the close button at the top right of the notification won't be shown
|
|
973
|
+
*/
|
|
974
|
+
set disableClose(_: Components.BqNotification['disableClose']);
|
|
975
|
+
/**
|
|
976
|
+
* If true, the notification icon won't be shown
|
|
977
|
+
*/
|
|
978
|
+
set hideIcon(_: Components.BqNotification['hideIcon']);
|
|
979
|
+
/**
|
|
980
|
+
* If true, the notification will be shown
|
|
981
|
+
*/
|
|
982
|
+
set open(_: Components.BqNotification['open']);
|
|
983
|
+
/**
|
|
984
|
+
* The length of time, in milliseconds, after which the notification will close itself. Only valid if `autoDismiss="true"`
|
|
985
|
+
*/
|
|
986
|
+
set time(_: Components.BqNotification['time']);
|
|
987
|
+
/**
|
|
988
|
+
* Type of Notification
|
|
989
|
+
*/
|
|
990
|
+
set type(_: Components.BqNotification['type']);
|
|
354
991
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
355
992
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqNotification, never>;
|
|
356
993
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqNotification, "bq-notification", never, { "autoDismiss": { "alias": "autoDismiss"; "required": false; }; "border": { "alias": "border"; "required": false; }; "disableClose": { "alias": "disableClose"; "required": false; }; "hideIcon": { "alias": "hideIcon"; "required": false; }; "open": { "alias": "open"; "required": false; }; "time": { "alias": "time"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -375,7 +1012,23 @@ export declare interface BqNotification extends Components.BqNotification {
|
|
|
375
1012
|
}
|
|
376
1013
|
export declare class BqOption {
|
|
377
1014
|
protected z: NgZone;
|
|
378
|
-
protected el:
|
|
1015
|
+
protected el: HTMLBqOptionElement;
|
|
1016
|
+
/**
|
|
1017
|
+
* If true, the option is hidden.
|
|
1018
|
+
*/
|
|
1019
|
+
set hidden(_: Components.BqOption['hidden']);
|
|
1020
|
+
/**
|
|
1021
|
+
* If true, the option is disabled.
|
|
1022
|
+
*/
|
|
1023
|
+
set disabled(_: Components.BqOption['disabled']);
|
|
1024
|
+
/**
|
|
1025
|
+
* A string representing the value of the option. Can be used to identify the item
|
|
1026
|
+
*/
|
|
1027
|
+
set value(_: Components.BqOption['value']);
|
|
1028
|
+
/**
|
|
1029
|
+
* If true, the option is selected and active.
|
|
1030
|
+
*/
|
|
1031
|
+
set selected(_: Components.BqOption['selected']);
|
|
379
1032
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
380
1033
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqOption, never>;
|
|
381
1034
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqOption, "bq-option", never, { "disabled": { "alias": "disabled"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -400,7 +1053,7 @@ export declare interface BqOption extends Components.BqOption {
|
|
|
400
1053
|
}
|
|
401
1054
|
export declare class BqOptionGroup {
|
|
402
1055
|
protected z: NgZone;
|
|
403
|
-
protected el:
|
|
1056
|
+
protected el: HTMLBqOptionGroupElement;
|
|
404
1057
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
405
1058
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqOptionGroup, never>;
|
|
406
1059
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqOptionGroup, "bq-option-group", never, {}, {}, never, ["*"], false, never>;
|
|
@@ -409,7 +1062,11 @@ export declare interface BqOptionGroup extends Components.BqOptionGroup {
|
|
|
409
1062
|
}
|
|
410
1063
|
export declare class BqOptionList {
|
|
411
1064
|
protected z: NgZone;
|
|
412
|
-
protected el:
|
|
1065
|
+
protected el: HTMLBqOptionListElement;
|
|
1066
|
+
/**
|
|
1067
|
+
* Aria label for the list.
|
|
1068
|
+
*/
|
|
1069
|
+
set ariaLabel(_: Components.BqOptionList['ariaLabel']);
|
|
413
1070
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
414
1071
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqOptionList, never>;
|
|
415
1072
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqOptionList, "bq-option-list", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -425,7 +1082,7 @@ export declare interface BqOptionList extends Components.BqOptionList {
|
|
|
425
1082
|
}
|
|
426
1083
|
export declare class BqPageTitle {
|
|
427
1084
|
protected z: NgZone;
|
|
428
|
-
protected el:
|
|
1085
|
+
protected el: HTMLBqPageTitleElement;
|
|
429
1086
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
430
1087
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqPageTitle, never>;
|
|
431
1088
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqPageTitle, "bq-page-title", never, {}, {}, never, ["*"], false, never>;
|
|
@@ -434,7 +1091,31 @@ export declare interface BqPageTitle extends Components.BqPageTitle {
|
|
|
434
1091
|
}
|
|
435
1092
|
export declare class BqPanel {
|
|
436
1093
|
protected z: NgZone;
|
|
437
|
-
protected el:
|
|
1094
|
+
protected el: HTMLBqPanelElement;
|
|
1095
|
+
/**
|
|
1096
|
+
* Represents the distance (gutter or margin) between the panel and the trigger element.
|
|
1097
|
+
*/
|
|
1098
|
+
set distance(_: Components.BqPanel['distance']);
|
|
1099
|
+
/**
|
|
1100
|
+
* Position of the panel
|
|
1101
|
+
*/
|
|
1102
|
+
set placement(_: Components.BqPanel['placement']);
|
|
1103
|
+
/**
|
|
1104
|
+
* If true, the panel will be visible.
|
|
1105
|
+
*/
|
|
1106
|
+
set open(_: Components.BqPanel['open']);
|
|
1107
|
+
/**
|
|
1108
|
+
* Whether the panel should have the same width as the trigger element
|
|
1109
|
+
*/
|
|
1110
|
+
set sameWidth(_: Components.BqPanel['sameWidth']);
|
|
1111
|
+
/**
|
|
1112
|
+
* Represents the skidding between the panel and the trigger element.
|
|
1113
|
+
*/
|
|
1114
|
+
set skidding(_: Components.BqPanel['skidding']);
|
|
1115
|
+
/**
|
|
1116
|
+
* Defines the strategy to position the panel
|
|
1117
|
+
*/
|
|
1118
|
+
set strategy(_: Components.BqPanel['strategy']);
|
|
438
1119
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
439
1120
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqPanel, never>;
|
|
440
1121
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqPanel, "bq-panel", never, { "distance": { "alias": "distance"; "required": false; }; "open": { "alias": "open"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "sameWidth": { "alias": "sameWidth"; "required": false; }; "skidding": { "alias": "skidding"; "required": false; }; "strategy": { "alias": "strategy"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -443,7 +1124,35 @@ export declare interface BqPanel extends Components.BqPanel {
|
|
|
443
1124
|
}
|
|
444
1125
|
export declare class BqProgress {
|
|
445
1126
|
protected z: NgZone;
|
|
446
|
-
protected el:
|
|
1127
|
+
protected el: HTMLBqProgressElement;
|
|
1128
|
+
/**
|
|
1129
|
+
* It will set the border style of the progress bar
|
|
1130
|
+
*/
|
|
1131
|
+
set borderShape(_: Components.BqProgress['borderShape']);
|
|
1132
|
+
/**
|
|
1133
|
+
* If `true`, a tooltip will be shown displaying the progress value
|
|
1134
|
+
*/
|
|
1135
|
+
set enableTooltip(_: Components.BqProgress['enableTooltip']);
|
|
1136
|
+
/**
|
|
1137
|
+
* If `true` the indeterminate state of progress bar is enabled
|
|
1138
|
+
*/
|
|
1139
|
+
set indeterminate(_: Components.BqProgress['indeterminate']);
|
|
1140
|
+
/**
|
|
1141
|
+
* If `true, a label text showing the value (in percentage) will be shown
|
|
1142
|
+
*/
|
|
1143
|
+
set label(_: Components.BqProgress['label']);
|
|
1144
|
+
/**
|
|
1145
|
+
* Progress bar thickness
|
|
1146
|
+
*/
|
|
1147
|
+
set thickness(_: Components.BqProgress['thickness']);
|
|
1148
|
+
/**
|
|
1149
|
+
* Progress type
|
|
1150
|
+
*/
|
|
1151
|
+
set type(_: Components.BqProgress['type']);
|
|
1152
|
+
/**
|
|
1153
|
+
* A number representing the current value of the progress bar
|
|
1154
|
+
*/
|
|
1155
|
+
set value(_: Components.BqProgress['value']);
|
|
447
1156
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
448
1157
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqProgress, never>;
|
|
449
1158
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqProgress, "bq-progress", never, { "borderShape": { "alias": "borderShape"; "required": false; }; "enableTooltip": { "alias": "enableTooltip"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "label": { "alias": "label"; "required": false; }; "thickness": { "alias": "thickness"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -452,7 +1161,35 @@ export declare interface BqProgress extends Components.BqProgress {
|
|
|
452
1161
|
}
|
|
453
1162
|
export declare class BqRadio {
|
|
454
1163
|
protected z: NgZone;
|
|
455
|
-
protected el:
|
|
1164
|
+
protected el: HTMLBqRadioElement;
|
|
1165
|
+
/**
|
|
1166
|
+
* If true radio input is checked
|
|
1167
|
+
*/
|
|
1168
|
+
set checked(_: Components.BqRadio['checked']);
|
|
1169
|
+
/**
|
|
1170
|
+
* If true radio input is disabled
|
|
1171
|
+
*/
|
|
1172
|
+
set disabled(_: Components.BqRadio['disabled']);
|
|
1173
|
+
/**
|
|
1174
|
+
* If true radio displays background on hover
|
|
1175
|
+
*/
|
|
1176
|
+
set backgroundOnHover(_: Components.BqRadio['backgroundOnHover']);
|
|
1177
|
+
/**
|
|
1178
|
+
* The form ID that the radio input is associated with
|
|
1179
|
+
*/
|
|
1180
|
+
set formId(_: Components.BqRadio['formId']);
|
|
1181
|
+
/**
|
|
1182
|
+
* Name of the HTML input form control. Submitted with the form as part of a name/value pair.
|
|
1183
|
+
*/
|
|
1184
|
+
set name(_: Components.BqRadio['name']);
|
|
1185
|
+
/**
|
|
1186
|
+
* If `true`, it will indicate that the user must specify a value for the radio before the owning form can be submitted
|
|
1187
|
+
*/
|
|
1188
|
+
set required(_: Components.BqRadio['required']);
|
|
1189
|
+
/**
|
|
1190
|
+
* A string representing the value of the radio.
|
|
1191
|
+
*/
|
|
1192
|
+
set value(_: Components.BqRadio['value']);
|
|
456
1193
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
457
1194
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqRadio, never>;
|
|
458
1195
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqRadio, "bq-radio", never, { "backgroundOnHover": { "alias": "backgroundOnHover"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "formId": { "alias": "formId"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -477,10 +1214,46 @@ export declare interface BqRadio extends Components.BqRadio {
|
|
|
477
1214
|
}
|
|
478
1215
|
export declare class BqRadioGroup {
|
|
479
1216
|
protected z: NgZone;
|
|
480
|
-
protected el:
|
|
1217
|
+
protected el: HTMLBqRadioGroupElement;
|
|
1218
|
+
/**
|
|
1219
|
+
* If true, all radio inputs in the group will display a background on hover
|
|
1220
|
+
*/
|
|
1221
|
+
set backgroundOnHover(_: Components.BqRadioGroup['backgroundOnHover']);
|
|
1222
|
+
/**
|
|
1223
|
+
* A number representing the delay time (in milliseconds) that `bqChange` event handler gets triggered once the value change
|
|
1224
|
+
*/
|
|
1225
|
+
set debounceTime(_: Components.BqRadioGroup['debounceTime']);
|
|
1226
|
+
/**
|
|
1227
|
+
* If true radio inputs are disabled
|
|
1228
|
+
*/
|
|
1229
|
+
set disabled(_: Components.BqRadioGroup['disabled']);
|
|
1230
|
+
/**
|
|
1231
|
+
* If true displays fieldset
|
|
1232
|
+
*/
|
|
1233
|
+
set fieldset(_: Components.BqRadioGroup['fieldset']);
|
|
1234
|
+
/**
|
|
1235
|
+
* Name of the HTML input form control. Submitted with the form as part of a name/value pair.
|
|
1236
|
+
*/
|
|
1237
|
+
set name(_: Components.BqRadioGroup['name']);
|
|
1238
|
+
/**
|
|
1239
|
+
* The display orientation of the radio inputs
|
|
1240
|
+
*/
|
|
1241
|
+
set orientation(_: Components.BqRadioGroup['orientation']);
|
|
1242
|
+
/**
|
|
1243
|
+
* If true, the radio group is required
|
|
1244
|
+
*/
|
|
1245
|
+
set required(_: Components.BqRadioGroup['required']);
|
|
1246
|
+
/**
|
|
1247
|
+
* The native form validation message when the radio group is required
|
|
1248
|
+
*/
|
|
1249
|
+
set requiredValidationMessage(_: Components.BqRadioGroup['requiredValidationMessage']);
|
|
1250
|
+
/**
|
|
1251
|
+
* A string representing the value of the radio.
|
|
1252
|
+
*/
|
|
1253
|
+
set value(_: Components.BqRadioGroup['value']);
|
|
481
1254
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
482
1255
|
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>;
|
|
1256
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BqRadioGroup, "bq-radio-group", never, { "backgroundOnHover": { "alias": "backgroundOnHover"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "fieldset": { "alias": "fieldset"; "required": false; }; "name": { "alias": "name"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "required": { "alias": "required"; "required": false; }; "requiredValidationMessage": { "alias": "requiredValidationMessage"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
484
1257
|
}
|
|
485
1258
|
export declare interface BqRadioGroup extends Components.BqRadioGroup {
|
|
486
1259
|
/**
|
|
@@ -493,7 +1266,101 @@ export declare interface BqRadioGroup extends Components.BqRadioGroup {
|
|
|
493
1266
|
}
|
|
494
1267
|
export declare class BqSelect {
|
|
495
1268
|
protected z: NgZone;
|
|
496
|
-
protected el:
|
|
1269
|
+
protected el: HTMLBqSelectElement;
|
|
1270
|
+
/**
|
|
1271
|
+
* If true, the Select input will be focused on component render
|
|
1272
|
+
*/
|
|
1273
|
+
set autofocus(_: Components.BqSelect['autofocus']);
|
|
1274
|
+
/**
|
|
1275
|
+
* The clear button aria label
|
|
1276
|
+
*/
|
|
1277
|
+
set clearButtonLabel(_: Components.BqSelect['clearButtonLabel']);
|
|
1278
|
+
/**
|
|
1279
|
+
* The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the input value changes.
|
|
1280
|
+
A value of 0 means no debouncing will occur.
|
|
1281
|
+
*/
|
|
1282
|
+
set debounceTime(_: Components.BqSelect['debounceTime']);
|
|
1283
|
+
/**
|
|
1284
|
+
* Indicates whether the Select input is disabled or not.
|
|
1285
|
+
If `true`, the Select is disabled and cannot be interacted with.
|
|
1286
|
+
*/
|
|
1287
|
+
set disabled(_: Components.BqSelect['disabled']);
|
|
1288
|
+
/**
|
|
1289
|
+
* If true, the clear button won't be displayed
|
|
1290
|
+
*/
|
|
1291
|
+
set disableClear(_: Components.BqSelect['disableClear']);
|
|
1292
|
+
/**
|
|
1293
|
+
* Represents the distance (gutter or margin) between the Select panel and the input element.
|
|
1294
|
+
*/
|
|
1295
|
+
set distance(_: Components.BqSelect['distance']);
|
|
1296
|
+
/**
|
|
1297
|
+
* The ID of the form that the Select input belongs to.
|
|
1298
|
+
*/
|
|
1299
|
+
set form(_: Components.BqSelect['form']);
|
|
1300
|
+
/**
|
|
1301
|
+
* If true, the Select panel will remain open after a selection is made.
|
|
1302
|
+
*/
|
|
1303
|
+
set keepOpenOnSelect(_: Components.BqSelect['keepOpenOnSelect']);
|
|
1304
|
+
/**
|
|
1305
|
+
* The Select input name.
|
|
1306
|
+
*/
|
|
1307
|
+
set name(_: Components.BqSelect['name']);
|
|
1308
|
+
/**
|
|
1309
|
+
* The maximum number of tags to display when multiple selection is enabled
|
|
1310
|
+
*/
|
|
1311
|
+
set maxTagsVisible(_: Components.BqSelect['maxTagsVisible']);
|
|
1312
|
+
/**
|
|
1313
|
+
* If true, the Select input will allow multiple selections.
|
|
1314
|
+
*/
|
|
1315
|
+
set multiple(_: Components.BqSelect['multiple']);
|
|
1316
|
+
/**
|
|
1317
|
+
* If true, the Select panel will be visible.
|
|
1318
|
+
*/
|
|
1319
|
+
set open(_: Components.BqSelect['open']);
|
|
1320
|
+
/**
|
|
1321
|
+
* When set, it will override the height of the Select panel.
|
|
1322
|
+
*/
|
|
1323
|
+
set panelHeight(_: Components.BqSelect['panelHeight']);
|
|
1324
|
+
/**
|
|
1325
|
+
* The Select input placeholder text value
|
|
1326
|
+
*/
|
|
1327
|
+
set placeholder(_: Components.BqSelect['placeholder']);
|
|
1328
|
+
/**
|
|
1329
|
+
* Position of the Select panel
|
|
1330
|
+
*/
|
|
1331
|
+
set placement(_: Components.BqSelect['placement']);
|
|
1332
|
+
/**
|
|
1333
|
+
* If true, the list of options cannot be filtered (searching won't be available)
|
|
1334
|
+
*/
|
|
1335
|
+
set readonly(_: Components.BqSelect['readonly']);
|
|
1336
|
+
/**
|
|
1337
|
+
* Indicates whether or not the Select input is required to be filled out before submitting the form.
|
|
1338
|
+
*/
|
|
1339
|
+
set required(_: Components.BqSelect['required']);
|
|
1340
|
+
/**
|
|
1341
|
+
* Whether the panel should have the Select same width as the input element
|
|
1342
|
+
*/
|
|
1343
|
+
set sameWidth(_: Components.BqSelect['sameWidth']);
|
|
1344
|
+
/**
|
|
1345
|
+
* Represents the skidding between the Select panel and the input element.
|
|
1346
|
+
*/
|
|
1347
|
+
set skidding(_: Components.BqSelect['skidding']);
|
|
1348
|
+
/**
|
|
1349
|
+
* Defines the strategy to position the Select panel
|
|
1350
|
+
*/
|
|
1351
|
+
set strategy(_: Components.BqSelect['strategy']);
|
|
1352
|
+
/**
|
|
1353
|
+
* The validation status of the Select input. @remarks This property is used to indicate the validation status of the select input. It can be set to one of the following values:
|
|
1354
|
+
- `'none'`: No validation status is set.
|
|
1355
|
+
- `'error'`: The input has a validation error.
|
|
1356
|
+
- `'warning'`: The input has a validation warning.
|
|
1357
|
+
- `'success'`: The input has passed validation.
|
|
1358
|
+
*/
|
|
1359
|
+
set validationStatus(_: Components.BqSelect['validationStatus']);
|
|
1360
|
+
/**
|
|
1361
|
+
* The select input value, it can be used to reset the field to a previous value
|
|
1362
|
+
*/
|
|
1363
|
+
set value(_: Components.BqSelect['value']);
|
|
497
1364
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
498
1365
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqSelect, never>;
|
|
499
1366
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqSelect, "bq-select", never, { "autofocus": { "alias": "autofocus"; "required": false; }; "clearButtonLabel": { "alias": "clearButtonLabel"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; "disableClear": { "alias": "disableClear"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "distance": { "alias": "distance"; "required": false; }; "form": { "alias": "form"; "required": false; }; "keepOpenOnSelect": { "alias": "keepOpenOnSelect"; "required": false; }; "maxTagsVisible": { "alias": "maxTagsVisible"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "name": { "alias": "name"; "required": false; }; "open": { "alias": "open"; "required": false; }; "panelHeight": { "alias": "panelHeight"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "sameWidth": { "alias": "sameWidth"; "required": false; }; "skidding": { "alias": "skidding"; "required": false; }; "strategy": { "alias": "strategy"; "required": false; }; "validationStatus": { "alias": "validationStatus"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -521,7 +1388,19 @@ export declare interface BqSelect extends Components.BqSelect {
|
|
|
521
1388
|
}
|
|
522
1389
|
export declare class BqSideMenu {
|
|
523
1390
|
protected z: NgZone;
|
|
524
|
-
protected el:
|
|
1391
|
+
protected el: HTMLBqSideMenuElement;
|
|
1392
|
+
/**
|
|
1393
|
+
* It sets a predefined appearance of the side menu
|
|
1394
|
+
*/
|
|
1395
|
+
set appearance(_: Components.BqSideMenu['appearance']);
|
|
1396
|
+
/**
|
|
1397
|
+
* If true, the container will reduce its width
|
|
1398
|
+
*/
|
|
1399
|
+
set collapse(_: Components.BqSideMenu['collapse']);
|
|
1400
|
+
/**
|
|
1401
|
+
* It sets the size of the navigation menu items
|
|
1402
|
+
*/
|
|
1403
|
+
set size(_: Components.BqSideMenu['size']);
|
|
525
1404
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
526
1405
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqSideMenu, never>;
|
|
527
1406
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqSideMenu, "bq-side-menu", never, { "appearance": { "alias": "appearance"; "required": false; }; "collapse": { "alias": "collapse"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -540,7 +1419,19 @@ export declare interface BqSideMenu extends Components.BqSideMenu {
|
|
|
540
1419
|
}
|
|
541
1420
|
export declare class BqSideMenuItem {
|
|
542
1421
|
protected z: NgZone;
|
|
543
|
-
protected el:
|
|
1422
|
+
protected el: HTMLBqSideMenuItemElement;
|
|
1423
|
+
/**
|
|
1424
|
+
* If true, the menu item will be shown as active/selected.
|
|
1425
|
+
*/
|
|
1426
|
+
set active(_: Components.BqSideMenuItem['active']);
|
|
1427
|
+
/**
|
|
1428
|
+
* If true, the item label and suffix will be hidden and the with will be reduce according to its parent
|
|
1429
|
+
*/
|
|
1430
|
+
set collapse(_: Components.BqSideMenuItem['collapse']);
|
|
1431
|
+
/**
|
|
1432
|
+
* If true, the menu item will be disabled (no interaction allowed)
|
|
1433
|
+
*/
|
|
1434
|
+
set disabled(_: Components.BqSideMenuItem['disabled']);
|
|
544
1435
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
545
1436
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqSideMenuItem, never>;
|
|
546
1437
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqSideMenuItem, "bq-side-menu-item", never, { "active": { "alias": "active"; "required": false; }; "collapse": { "alias": "collapse"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -561,10 +1452,62 @@ export declare interface BqSideMenuItem extends Components.BqSideMenuItem {
|
|
|
561
1452
|
}
|
|
562
1453
|
export declare class BqSlider {
|
|
563
1454
|
protected z: NgZone;
|
|
564
|
-
protected el:
|
|
1455
|
+
protected el: HTMLBqSliderElement;
|
|
1456
|
+
/**
|
|
1457
|
+
* The amount of time, in milliseconds, to wait to trigger the `bqChange` event after each value change.
|
|
1458
|
+
*/
|
|
1459
|
+
set debounceTime(_: Components.BqSlider['debounceTime']);
|
|
1460
|
+
/**
|
|
1461
|
+
* If `true` the slider is disabled.
|
|
1462
|
+
*/
|
|
1463
|
+
set disabled(_: Components.BqSlider['disabled']);
|
|
1464
|
+
/**
|
|
1465
|
+
* If `true` it will show the value label on a side of the slider track area
|
|
1466
|
+
*/
|
|
1467
|
+
set enableValueIndicator(_: Components.BqSlider['enableValueIndicator']);
|
|
1468
|
+
/**
|
|
1469
|
+
* A number representing the amount to remain between the minimum and maximum values (only for range type).
|
|
1470
|
+
*/
|
|
1471
|
+
set gap(_: Components.BqSlider['gap']);
|
|
1472
|
+
/**
|
|
1473
|
+
* A number representing the max value of the slider.
|
|
1474
|
+
*/
|
|
1475
|
+
set max(_: Components.BqSlider['max']);
|
|
1476
|
+
/**
|
|
1477
|
+
* A number representing the min value of the slider.
|
|
1478
|
+
*/
|
|
1479
|
+
set min(_: Components.BqSlider['min']);
|
|
1480
|
+
/**
|
|
1481
|
+
* Name of the form control. Submitted with the form as part of a name/value pair
|
|
1482
|
+
*/
|
|
1483
|
+
set name(_: Components.BqSlider['name']);
|
|
1484
|
+
/**
|
|
1485
|
+
* A number representing the step of the slider.
|
|
1486
|
+
⚠️ Please notice that the value (or list of values if the slider type is `range`) will be rounded to the nearest multiple of `step`.
|
|
1487
|
+
*/
|
|
1488
|
+
set step(_: Components.BqSlider['step']);
|
|
1489
|
+
/**
|
|
1490
|
+
* It defines the type of slider to display
|
|
1491
|
+
*/
|
|
1492
|
+
set type(_: Components.BqSlider['type']);
|
|
1493
|
+
/**
|
|
1494
|
+
* The value of the slider.
|
|
1495
|
+
- If the slider type is `single`, the value is a number.
|
|
1496
|
+
- If the slider type is `range`, the value is an array of two numbers (the first number represents the `min` value and the second number represents the `max` value).
|
|
1497
|
+
*/
|
|
1498
|
+
set value(_: Components.BqSlider['value']);
|
|
1499
|
+
/**
|
|
1500
|
+
* If `true`, a tooltip will be shown displaying the progress value
|
|
1501
|
+
*/
|
|
1502
|
+
set enableTooltip(_: Components.BqSlider['enableTooltip']);
|
|
1503
|
+
/**
|
|
1504
|
+
* If `true`, a tooltip will always display the progress value.
|
|
1505
|
+
It relies on enableTooltip and if enableTooltip is false, tooltipAlwaysVisible cannot be true.
|
|
1506
|
+
*/
|
|
1507
|
+
set tooltipAlwaysVisible(_: Components.BqSlider['tooltipAlwaysVisible']);
|
|
565
1508
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
566
1509
|
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>;
|
|
1510
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BqSlider, "bq-slider", never, { "debounceTime": { "alias": "debounceTime"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "enableTooltip": { "alias": "enableTooltip"; "required": false; }; "enableValueIndicator": { "alias": "enableValueIndicator"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "step": { "alias": "step"; "required": false; }; "tooltipAlwaysVisible": { "alias": "tooltipAlwaysVisible"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
568
1511
|
}
|
|
569
1512
|
export declare interface BqSlider extends Components.BqSlider {
|
|
570
1513
|
/**
|
|
@@ -585,7 +1528,19 @@ export declare interface BqSlider extends Components.BqSlider {
|
|
|
585
1528
|
}
|
|
586
1529
|
export declare class BqSpinner {
|
|
587
1530
|
protected z: NgZone;
|
|
588
|
-
protected el:
|
|
1531
|
+
protected el: HTMLBqSpinnerElement;
|
|
1532
|
+
/**
|
|
1533
|
+
* If `false`, the animation on the icon element will be stopped
|
|
1534
|
+
*/
|
|
1535
|
+
set animation(_: Components.BqSpinner['animation']);
|
|
1536
|
+
/**
|
|
1537
|
+
* It defines the position of the label text
|
|
1538
|
+
*/
|
|
1539
|
+
set textPosition(_: Components.BqSpinner['textPosition']);
|
|
1540
|
+
/**
|
|
1541
|
+
* It defines the size of the icon element displayed
|
|
1542
|
+
*/
|
|
1543
|
+
set size(_: Components.BqSpinner['size']);
|
|
589
1544
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
590
1545
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqSpinner, never>;
|
|
591
1546
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqSpinner, "bq-spinner", never, { "animation": { "alias": "animation"; "required": false; }; "size": { "alias": "size"; "required": false; }; "textPosition": { "alias": "textPosition"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -594,7 +1549,11 @@ export declare interface BqSpinner extends Components.BqSpinner {
|
|
|
594
1549
|
}
|
|
595
1550
|
export declare class BqStatus {
|
|
596
1551
|
protected z: NgZone;
|
|
597
|
-
protected el:
|
|
1552
|
+
protected el: HTMLBqStatusElement;
|
|
1553
|
+
/**
|
|
1554
|
+
* It defines the type of status to display
|
|
1555
|
+
*/
|
|
1556
|
+
set type(_: Components.BqStatus['type']);
|
|
598
1557
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
599
1558
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqStatus, never>;
|
|
600
1559
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqStatus, "bq-status", never, { "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -603,7 +1562,19 @@ export declare interface BqStatus extends Components.BqStatus {
|
|
|
603
1562
|
}
|
|
604
1563
|
export declare class BqStepItem {
|
|
605
1564
|
protected z: NgZone;
|
|
606
|
-
protected el:
|
|
1565
|
+
protected el: HTMLBqStepItemElement;
|
|
1566
|
+
/**
|
|
1567
|
+
* It defines prefix size
|
|
1568
|
+
*/
|
|
1569
|
+
set size(_: Components.BqStepItem['size']);
|
|
1570
|
+
/**
|
|
1571
|
+
* It defines step item appearance based on its status
|
|
1572
|
+
*/
|
|
1573
|
+
set status(_: Components.BqStepItem['status']);
|
|
1574
|
+
/**
|
|
1575
|
+
* It defines the step item type used
|
|
1576
|
+
*/
|
|
1577
|
+
set type(_: Components.BqStepItem['type']);
|
|
607
1578
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
608
1579
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqStepItem, never>;
|
|
609
1580
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqStepItem, "bq-step-item", never, { "size": { "alias": "size"; "required": false; }; "status": { "alias": "status"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -619,7 +1590,19 @@ export declare interface BqStepItem extends Components.BqStepItem {
|
|
|
619
1590
|
}
|
|
620
1591
|
export declare class BqSteps {
|
|
621
1592
|
protected z: NgZone;
|
|
622
|
-
protected el:
|
|
1593
|
+
protected el: HTMLBqStepsElement;
|
|
1594
|
+
/**
|
|
1595
|
+
* The color of the line that connects the steps. It should be a valid declarative color token.
|
|
1596
|
+
*/
|
|
1597
|
+
set dividerColor(_: Components.BqSteps['dividerColor']);
|
|
1598
|
+
/**
|
|
1599
|
+
* The size of the steps
|
|
1600
|
+
*/
|
|
1601
|
+
set size(_: Components.BqSteps['size']);
|
|
1602
|
+
/**
|
|
1603
|
+
* The type of prefix element to use on the step items
|
|
1604
|
+
*/
|
|
1605
|
+
set type(_: Components.BqSteps['type']);
|
|
623
1606
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
624
1607
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqSteps, never>;
|
|
625
1608
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqSteps, "bq-steps", never, { "dividerColor": { "alias": "dividerColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -628,10 +1611,55 @@ export declare interface BqSteps extends Components.BqSteps {
|
|
|
628
1611
|
}
|
|
629
1612
|
export declare class BqSwitch {
|
|
630
1613
|
protected z: NgZone;
|
|
631
|
-
protected el:
|
|
1614
|
+
protected el: HTMLBqSwitchElement;
|
|
1615
|
+
/**
|
|
1616
|
+
* If true, a background will be displayed on hover
|
|
1617
|
+
*/
|
|
1618
|
+
set backgroundOnHover(_: Components.BqSwitch['backgroundOnHover']);
|
|
1619
|
+
/**
|
|
1620
|
+
* It indicates whether if the switch is `ON` by default (when the page loads)
|
|
1621
|
+
*/
|
|
1622
|
+
set checked(_: Components.BqSwitch['checked']);
|
|
1623
|
+
/**
|
|
1624
|
+
* If true, the switch control will be disabled and no interaction will be allowed
|
|
1625
|
+
*/
|
|
1626
|
+
set disabled(_: Components.BqSwitch['disabled']);
|
|
1627
|
+
/**
|
|
1628
|
+
* The native form validation message
|
|
1629
|
+
*/
|
|
1630
|
+
set formValidationMessage(_: Components.BqSwitch['formValidationMessage']);
|
|
1631
|
+
/**
|
|
1632
|
+
* If true, the component will take the full width space available on the parent container
|
|
1633
|
+
*/
|
|
1634
|
+
set fullWidth(_: Components.BqSwitch['fullWidth']);
|
|
1635
|
+
/**
|
|
1636
|
+
* It indicates how to to display the on/off marks inside the control, with icons or none (default)
|
|
1637
|
+
*/
|
|
1638
|
+
set innerLabel(_: Components.BqSwitch['innerLabel']);
|
|
1639
|
+
/**
|
|
1640
|
+
* It defines how to distribute the space between and around the control and the label text
|
|
1641
|
+
(https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content)
|
|
1642
|
+
*/
|
|
1643
|
+
set justifyContent(_: Components.BqSwitch['justifyContent']);
|
|
1644
|
+
/**
|
|
1645
|
+
* Name of the form control. Submitted with the form as part of a name/value pair
|
|
1646
|
+
*/
|
|
1647
|
+
set name(_: Components.BqSwitch['name']);
|
|
1648
|
+
/**
|
|
1649
|
+
* If `true`, it will indicate that the user must switch `ON` the element before the owning form can be submitted
|
|
1650
|
+
*/
|
|
1651
|
+
set required(_: Components.BqSwitch['required']);
|
|
1652
|
+
/**
|
|
1653
|
+
* If true, the order of the control and the label text will be changed
|
|
1654
|
+
*/
|
|
1655
|
+
set reverseOrder(_: Components.BqSwitch['reverseOrder']);
|
|
1656
|
+
/**
|
|
1657
|
+
* The input control's value, submitted as a name/value pair with form data.
|
|
1658
|
+
*/
|
|
1659
|
+
set value(_: Components.BqSwitch['value']);
|
|
632
1660
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
633
1661
|
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>;
|
|
1662
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BqSwitch, "bq-switch", never, { "backgroundOnHover": { "alias": "backgroundOnHover"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "formValidationMessage": { "alias": "formValidationMessage"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; "innerLabel": { "alias": "innerLabel"; "required": false; }; "justifyContent": { "alias": "justifyContent"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "reverseOrder": { "alias": "reverseOrder"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
635
1663
|
}
|
|
636
1664
|
export declare interface BqSwitch extends Components.BqSwitch {
|
|
637
1665
|
/**
|
|
@@ -651,7 +1679,35 @@ export declare interface BqSwitch extends Components.BqSwitch {
|
|
|
651
1679
|
}
|
|
652
1680
|
export declare class BqTab {
|
|
653
1681
|
protected z: NgZone;
|
|
654
|
-
protected el:
|
|
1682
|
+
protected el: HTMLBqTabElement;
|
|
1683
|
+
/**
|
|
1684
|
+
* If true tab is active
|
|
1685
|
+
*/
|
|
1686
|
+
set active(_: Components.BqTab['active']);
|
|
1687
|
+
/**
|
|
1688
|
+
* The tab panel id that the tab controls
|
|
1689
|
+
*/
|
|
1690
|
+
set controls(_: Components.BqTab['controls']);
|
|
1691
|
+
/**
|
|
1692
|
+
* If true tab is disabled
|
|
1693
|
+
*/
|
|
1694
|
+
set disabled(_: Components.BqTab['disabled']);
|
|
1695
|
+
/**
|
|
1696
|
+
* The direction that tab should be render
|
|
1697
|
+
*/
|
|
1698
|
+
set orientation(_: Components.BqTab['orientation']);
|
|
1699
|
+
/**
|
|
1700
|
+
* The placement that tab should be render
|
|
1701
|
+
*/
|
|
1702
|
+
set placement(_: Components.BqTab['placement']);
|
|
1703
|
+
/**
|
|
1704
|
+
* The size of the tab
|
|
1705
|
+
*/
|
|
1706
|
+
set size(_: Components.BqTab['size']);
|
|
1707
|
+
/**
|
|
1708
|
+
* The id of the tab
|
|
1709
|
+
*/
|
|
1710
|
+
set tabId(_: Components.BqTab['tabId']);
|
|
655
1711
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
656
1712
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqTab, never>;
|
|
657
1713
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqTab, "bq-tab", never, { "active": { "alias": "active"; "required": false; }; "controls": { "alias": "controls"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tabId": { "alias": "tabId"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -676,7 +1732,31 @@ export declare interface BqTab extends Components.BqTab {
|
|
|
676
1732
|
}
|
|
677
1733
|
export declare class BqTabGroup {
|
|
678
1734
|
protected z: NgZone;
|
|
679
|
-
protected el:
|
|
1735
|
+
protected el: HTMLBqTabGroupElement;
|
|
1736
|
+
/**
|
|
1737
|
+
* A number representing the delay value applied to bqChange event handler
|
|
1738
|
+
*/
|
|
1739
|
+
set debounceTime(_: Components.BqTabGroup['debounceTime']);
|
|
1740
|
+
/**
|
|
1741
|
+
* If true, the underline divider below the tabs won't be shown
|
|
1742
|
+
*/
|
|
1743
|
+
set disableDivider(_: Components.BqTabGroup['disableDivider']);
|
|
1744
|
+
/**
|
|
1745
|
+
* The direction that tab should be render
|
|
1746
|
+
*/
|
|
1747
|
+
set orientation(_: Components.BqTabGroup['orientation']);
|
|
1748
|
+
/**
|
|
1749
|
+
* The placement that tab should be render
|
|
1750
|
+
*/
|
|
1751
|
+
set placement(_: Components.BqTabGroup['placement']);
|
|
1752
|
+
/**
|
|
1753
|
+
* The size of the tab
|
|
1754
|
+
*/
|
|
1755
|
+
set size(_: Components.BqTabGroup['size']);
|
|
1756
|
+
/**
|
|
1757
|
+
* A string representing the id of the selected tab.
|
|
1758
|
+
*/
|
|
1759
|
+
set value(_: Components.BqTabGroup['value']);
|
|
680
1760
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
681
1761
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqTabGroup, never>;
|
|
682
1762
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqTabGroup, "bq-tab-group", never, { "debounceTime": { "alias": "debounceTime"; "required": false; }; "disableDivider": { "alias": "disableDivider"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -692,7 +1772,43 @@ export declare interface BqTabGroup extends Components.BqTabGroup {
|
|
|
692
1772
|
}
|
|
693
1773
|
export declare class BqTag {
|
|
694
1774
|
protected z: NgZone;
|
|
695
|
-
protected el:
|
|
1775
|
+
protected el: HTMLBqTagElement;
|
|
1776
|
+
/**
|
|
1777
|
+
* The corner radius of the Tag (will override size's predefined border)
|
|
1778
|
+
*/
|
|
1779
|
+
set border(_: Components.BqTag['border']);
|
|
1780
|
+
/**
|
|
1781
|
+
* If true, the Tag can be clickable
|
|
1782
|
+
*/
|
|
1783
|
+
set clickable(_: Components.BqTag['clickable']);
|
|
1784
|
+
/**
|
|
1785
|
+
* The color style of the Tag
|
|
1786
|
+
*/
|
|
1787
|
+
set color(_: Components.BqTag['color']);
|
|
1788
|
+
/**
|
|
1789
|
+
* If true, the Tag will be disabled (only if clickable = `true`, no interaction allowed)
|
|
1790
|
+
*/
|
|
1791
|
+
set disabled(_: Components.BqTag['disabled']);
|
|
1792
|
+
/**
|
|
1793
|
+
* If true, the Tag component will hidden (only if removable = `true`)
|
|
1794
|
+
*/
|
|
1795
|
+
set hidden(_: Components.BqTag['hidden']);
|
|
1796
|
+
/**
|
|
1797
|
+
* If true, the Tag component can be removed
|
|
1798
|
+
*/
|
|
1799
|
+
set removable(_: Components.BqTag['removable']);
|
|
1800
|
+
/**
|
|
1801
|
+
* If true, the Tag is selected (only if clickable = `true`)
|
|
1802
|
+
*/
|
|
1803
|
+
set selected(_: Components.BqTag['selected']);
|
|
1804
|
+
/**
|
|
1805
|
+
* The size of the Tag component
|
|
1806
|
+
*/
|
|
1807
|
+
set size(_: Components.BqTag['size']);
|
|
1808
|
+
/**
|
|
1809
|
+
* The variant of Tag to apply on top of the variant
|
|
1810
|
+
*/
|
|
1811
|
+
set variant(_: Components.BqTag['variant']);
|
|
696
1812
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
697
1813
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqTag, never>;
|
|
698
1814
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqTag, "bq-tag", never, { "border": { "alias": "border"; "required": false; }; "clickable": { "alias": "clickable"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -721,10 +1837,101 @@ export declare interface BqTag extends Components.BqTag {
|
|
|
721
1837
|
}
|
|
722
1838
|
export declare class BqTextarea {
|
|
723
1839
|
protected z: NgZone;
|
|
724
|
-
protected el:
|
|
1840
|
+
protected el: HTMLBqTextareaElement;
|
|
1841
|
+
/**
|
|
1842
|
+
* Controls whether or not the textarea field should be capitalized and how.
|
|
1843
|
+
Possible values are 'off', 'none', 'on', 'sentences', 'words', and 'characters'.
|
|
1844
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize
|
|
1845
|
+
*/
|
|
1846
|
+
set autocapitalize(_: Components.BqTextarea['autocapitalize']);
|
|
1847
|
+
/**
|
|
1848
|
+
* Specifies whether or not the textarea field should have autocomplete enabled.
|
|
1849
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values
|
|
1850
|
+
*/
|
|
1851
|
+
set autocomplete(_: Components.BqTextarea['autocomplete']);
|
|
1852
|
+
/**
|
|
1853
|
+
* Controls whether or not the textarea field should have autocorrect enabled.
|
|
1854
|
+
Possible values are 'on' and 'off'.
|
|
1855
|
+
*/
|
|
1856
|
+
set autocorrect(_: Components.BqTextarea['autocorrect']);
|
|
1857
|
+
/**
|
|
1858
|
+
* If true, the textarea will be focused on component render
|
|
1859
|
+
*/
|
|
1860
|
+
set autofocus(_: Components.BqTextarea['autofocus']);
|
|
1861
|
+
/**
|
|
1862
|
+
* If `true`, the textarea will automatically grow and shrink to fit its contents.
|
|
1863
|
+
If `false`, the textarea will have a fixed height specified by the `rows` property.
|
|
1864
|
+
*/
|
|
1865
|
+
set autoGrow(_: Components.BqTextarea['autoGrow']);
|
|
1866
|
+
/**
|
|
1867
|
+
* The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the textarea value changes.
|
|
1868
|
+
A value of 0 means no debouncing will occur.
|
|
1869
|
+
*/
|
|
1870
|
+
set debounceTime(_: Components.BqTextarea['debounceTime']);
|
|
1871
|
+
/**
|
|
1872
|
+
* If `true`, the user cannot interact with the textarea.
|
|
1873
|
+
*/
|
|
1874
|
+
set disabled(_: Components.BqTextarea['disabled']);
|
|
1875
|
+
/**
|
|
1876
|
+
* If `true`, it will block the user's ability to resize the textarea.
|
|
1877
|
+
*/
|
|
1878
|
+
set disableResize(_: Components.BqTextarea['disableResize']);
|
|
1879
|
+
/**
|
|
1880
|
+
* The ID of the form that the textarea field belongs to.
|
|
1881
|
+
*/
|
|
1882
|
+
set form(_: Components.BqTextarea['form']);
|
|
1883
|
+
/**
|
|
1884
|
+
* The native form validation message
|
|
1885
|
+
*/
|
|
1886
|
+
set formValidationMessage(_: Components.BqTextarea['formValidationMessage']);
|
|
1887
|
+
/**
|
|
1888
|
+
* The maximum number of characters that can be entered into the textarea (`0`: no limit).
|
|
1889
|
+
When enabled, a character counter will be shown underneath the textarea.
|
|
1890
|
+
*/
|
|
1891
|
+
set maxlength(_: Components.BqTextarea['maxlength']);
|
|
1892
|
+
/**
|
|
1893
|
+
* The name of the textarea element.
|
|
1894
|
+
*/
|
|
1895
|
+
set name(_: Components.BqTextarea['name']);
|
|
1896
|
+
/**
|
|
1897
|
+
* The placeholder text to show when there is no value.
|
|
1898
|
+
*/
|
|
1899
|
+
set placeholder(_: Components.BqTextarea['placeholder']);
|
|
1900
|
+
/**
|
|
1901
|
+
* If true, the textarea field cannot be modified.
|
|
1902
|
+
*/
|
|
1903
|
+
set readonly(_: Components.BqTextarea['readonly']);
|
|
1904
|
+
/**
|
|
1905
|
+
* Indicates whether or not the textarea field is required to be filled out before submitting the form.
|
|
1906
|
+
*/
|
|
1907
|
+
set required(_: Components.BqTextarea['required']);
|
|
1908
|
+
/**
|
|
1909
|
+
* The number of visible text lines for the control. It must be a positive integer.
|
|
1910
|
+
*/
|
|
1911
|
+
set rows(_: Components.BqTextarea['rows']);
|
|
1912
|
+
/**
|
|
1913
|
+
* If true, the textarea content may be checked for spelling errors.
|
|
1914
|
+
*/
|
|
1915
|
+
set spellcheck(_: Components.BqTextarea['spellcheck']);
|
|
1916
|
+
/**
|
|
1917
|
+
* The validation status of the textarea. @remarks This property is used to indicate the validation status of the textarea. It can be set to one of the following values:
|
|
1918
|
+
- `'none'`: No validation status is set.
|
|
1919
|
+
- `'error'`: The textarea has a validation error.
|
|
1920
|
+
- `'warning'`: The textarea has a validation warning.
|
|
1921
|
+
- `'success'`: The textarea has passed validation.
|
|
1922
|
+
*/
|
|
1923
|
+
set validationStatus(_: Components.BqTextarea['validationStatus']);
|
|
1924
|
+
/**
|
|
1925
|
+
* The value of the textarea. It can be used to reset the textarea to a previous value.
|
|
1926
|
+
*/
|
|
1927
|
+
set value(_: Components.BqTextarea['value']);
|
|
1928
|
+
/**
|
|
1929
|
+
* Specifies how the text in a text area is to be wrapped when submitted in a form
|
|
1930
|
+
*/
|
|
1931
|
+
set wrap(_: Components.BqTextarea['wrap']);
|
|
725
1932
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
726
1933
|
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>;
|
|
1934
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BqTextarea, "bq-textarea", never, { "autoGrow": { "alias": "autoGrow"; "required": false; }; "autocapitalize": { "alias": "autocapitalize"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "autocorrect": { "alias": "autocorrect"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; "disableResize": { "alias": "disableResize"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "formValidationMessage": { "alias": "formValidationMessage"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "spellcheck": { "alias": "spellcheck"; "required": false; }; "validationStatus": { "alias": "validationStatus"; "required": false; }; "value": { "alias": "value"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
728
1935
|
}
|
|
729
1936
|
export declare interface BqTextarea extends Components.BqTextarea {
|
|
730
1937
|
/**
|
|
@@ -758,7 +1965,31 @@ export declare interface BqTextarea extends Components.BqTextarea {
|
|
|
758
1965
|
}
|
|
759
1966
|
export declare class BqToast {
|
|
760
1967
|
protected z: NgZone;
|
|
761
|
-
protected el:
|
|
1968
|
+
protected el: HTMLBqToastElement;
|
|
1969
|
+
/**
|
|
1970
|
+
* The corder radius of the toast component
|
|
1971
|
+
*/
|
|
1972
|
+
set border(_: Components.BqToast['border']);
|
|
1973
|
+
/**
|
|
1974
|
+
* Type of toast
|
|
1975
|
+
*/
|
|
1976
|
+
set type(_: Components.BqToast['type']);
|
|
1977
|
+
/**
|
|
1978
|
+
* Placement of toast
|
|
1979
|
+
*/
|
|
1980
|
+
set placement(_: Components.BqToast['placement']);
|
|
1981
|
+
/**
|
|
1982
|
+
* If true will hide toast icon
|
|
1983
|
+
*/
|
|
1984
|
+
set hideIcon(_: Components.BqToast['hideIcon']);
|
|
1985
|
+
/**
|
|
1986
|
+
* If true, the toast will be shown
|
|
1987
|
+
*/
|
|
1988
|
+
set open(_: Components.BqToast['open']);
|
|
1989
|
+
/**
|
|
1990
|
+
* The length of time, in milliseconds, after which the toast will close itself
|
|
1991
|
+
*/
|
|
1992
|
+
set time(_: Components.BqToast['time']);
|
|
762
1993
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
763
1994
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqToast, never>;
|
|
764
1995
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqToast, "bq-toast", never, { "border": { "alias": "border"; "required": false; }; "hideIcon": { "alias": "hideIcon"; "required": false; }; "open": { "alias": "open"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "time": { "alias": "time"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -775,7 +2006,34 @@ export declare interface BqToast extends Components.BqToast {
|
|
|
775
2006
|
}
|
|
776
2007
|
export declare class BqTooltip {
|
|
777
2008
|
protected z: NgZone;
|
|
778
|
-
protected el:
|
|
2009
|
+
protected el: HTMLBqTooltipElement;
|
|
2010
|
+
/**
|
|
2011
|
+
* If true, the tooltip will always be visible
|
|
2012
|
+
*/
|
|
2013
|
+
set alwaysVisible(_: Components.BqTooltip['alwaysVisible']);
|
|
2014
|
+
/**
|
|
2015
|
+
* Distance between trigger element and tooltip
|
|
2016
|
+
*/
|
|
2017
|
+
set distance(_: Components.BqTooltip['distance']);
|
|
2018
|
+
/**
|
|
2019
|
+
* If true, the arrow on the tooltip content won't be shown
|
|
2020
|
+
*/
|
|
2021
|
+
set hideArrow(_: Components.BqTooltip['hideArrow']);
|
|
2022
|
+
set placement(_: Components.BqTooltip['placement']);
|
|
2023
|
+
/**
|
|
2024
|
+
* Whether the tooltip should have the same width as the trigger element
|
|
2025
|
+
(applicable only for content shorter than the trigger element)
|
|
2026
|
+
*/
|
|
2027
|
+
set sameWidth(_: Components.BqTooltip['sameWidth']);
|
|
2028
|
+
/**
|
|
2029
|
+
* Set the action when the tooltip should be displayed, on hover (default) or click
|
|
2030
|
+
*/
|
|
2031
|
+
set displayOn(_: Components.BqTooltip['displayOn']);
|
|
2032
|
+
/**
|
|
2033
|
+
* Indicates whether or not the tooltip is visible when the component is first rendered,
|
|
2034
|
+
and when interacting with the trigger
|
|
2035
|
+
*/
|
|
2036
|
+
set visible(_: Components.BqTooltip['visible']);
|
|
779
2037
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
780
2038
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqTooltip, never>;
|
|
781
2039
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqTooltip, "bq-tooltip", never, { "alwaysVisible": { "alias": "alwaysVisible"; "required": false; }; "displayOn": { "alias": "displayOn"; "required": false; }; "distance": { "alias": "distance"; "required": false; }; "hideArrow": { "alias": "hideArrow"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "sameWidth": { "alias": "sameWidth"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, {}, never, ["*"], false, never>;
|