@beeq/angular 1.8.0-beta.13 → 1.8.0-beta.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/directives/components.d.ts +1247 -0
- package/esm2022/beeq.module.mjs +6 -6
- package/esm2022/directives/boolean-value-accessor.mjs +5 -5
- package/esm2022/directives/components.mjs +127 -211
- 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 +127 -211
- 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 +151 -237
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +156 -242
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -5,6 +5,31 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class BqAccordion {
|
|
6
6
|
protected z: NgZone;
|
|
7
7
|
protected el: HTMLElement;
|
|
8
|
+
/**
|
|
9
|
+
* The appearance style of accordion
|
|
10
|
+
*/
|
|
11
|
+
appearance: Components.BqAccordion['appearance'];
|
|
12
|
+
/**
|
|
13
|
+
* If true accordion is disabled
|
|
14
|
+
*/
|
|
15
|
+
disabled: Components.BqAccordion['disabled'];
|
|
16
|
+
/**
|
|
17
|
+
* If true accordion is expanded
|
|
18
|
+
*/
|
|
19
|
+
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
|
+
noAnimation: Components.BqAccordion['noAnimation'];
|
|
25
|
+
/**
|
|
26
|
+
* If true accordion expand icon is rotate 180deg when expanded
|
|
27
|
+
*/
|
|
28
|
+
rotate: Components.BqAccordion['rotate'];
|
|
29
|
+
/**
|
|
30
|
+
* The size of accordion
|
|
31
|
+
*/
|
|
32
|
+
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>;
|
|
@@ -38,6 +63,27 @@ export declare interface BqAccordion extends Components.BqAccordion {
|
|
|
38
63
|
export declare class BqAccordionGroup {
|
|
39
64
|
protected z: NgZone;
|
|
40
65
|
protected el: HTMLElement;
|
|
66
|
+
/**
|
|
67
|
+
* The appearance style of accordion to be applied to all accordions
|
|
68
|
+
*/
|
|
69
|
+
appearance: Components.BqAccordionGroup['appearance'];
|
|
70
|
+
/**
|
|
71
|
+
* If true all accordions are expanded
|
|
72
|
+
*/
|
|
73
|
+
expandAll: Components.BqAccordionGroup['expandAll'];
|
|
74
|
+
/**
|
|
75
|
+
* Animation is set through JS when the browser does not support CSS calc-size()
|
|
76
|
+
If true, the accordion animation, will be disabled. No animation will be applied.
|
|
77
|
+
*/
|
|
78
|
+
noAnimation: Components.BqAccordionGroup['noAnimation'];
|
|
79
|
+
/**
|
|
80
|
+
* If true multiple accordions can be expanded at the same time
|
|
81
|
+
*/
|
|
82
|
+
multiple: Components.BqAccordionGroup['multiple'];
|
|
83
|
+
/**
|
|
84
|
+
* The size of accordion to be applied to all accordions
|
|
85
|
+
*/
|
|
86
|
+
size: Components.BqAccordionGroup['size'];
|
|
41
87
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
42
88
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqAccordionGroup, never>;
|
|
43
89
|
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>;
|
|
@@ -47,6 +93,38 @@ export declare interface BqAccordionGroup extends Components.BqAccordionGroup {
|
|
|
47
93
|
export declare class BqAlert {
|
|
48
94
|
protected z: NgZone;
|
|
49
95
|
protected el: HTMLElement;
|
|
96
|
+
/**
|
|
97
|
+
* If true, the alert will automatically hide after the specified amount of time
|
|
98
|
+
*/
|
|
99
|
+
autoDismiss: Components.BqAlert['autoDismiss'];
|
|
100
|
+
/**
|
|
101
|
+
* The corner radius of the alert component
|
|
102
|
+
*/
|
|
103
|
+
border: Components.BqAlert['border'];
|
|
104
|
+
/**
|
|
105
|
+
* If true, the close button at the top right of the alert won't be shown
|
|
106
|
+
*/
|
|
107
|
+
disableClose: Components.BqAlert['disableClose'];
|
|
108
|
+
/**
|
|
109
|
+
* If true, the alert icon won't be shown
|
|
110
|
+
*/
|
|
111
|
+
hideIcon: Components.BqAlert['hideIcon'];
|
|
112
|
+
/**
|
|
113
|
+
* If true, the alert will be shown
|
|
114
|
+
*/
|
|
115
|
+
open: Components.BqAlert['open'];
|
|
116
|
+
/**
|
|
117
|
+
* The length of time, in milliseconds, after which the alert will close itself. Only valid if `autoDismiss="true"`
|
|
118
|
+
*/
|
|
119
|
+
time: Components.BqAlert['time'];
|
|
120
|
+
/**
|
|
121
|
+
* Type of Alert
|
|
122
|
+
*/
|
|
123
|
+
type: Components.BqAlert['type'];
|
|
124
|
+
/**
|
|
125
|
+
* If true, the alert component will remain fixed at the top of the page, occupying the full viewport
|
|
126
|
+
*/
|
|
127
|
+
sticky: Components.BqAlert['sticky'];
|
|
50
128
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
51
129
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqAlert, never>;
|
|
52
130
|
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>;
|
|
@@ -72,6 +150,30 @@ export declare interface BqAlert extends Components.BqAlert {
|
|
|
72
150
|
export declare class BqAvatar {
|
|
73
151
|
protected z: NgZone;
|
|
74
152
|
protected el: HTMLElement;
|
|
153
|
+
/**
|
|
154
|
+
* Alternate text for the avatar image if the image cannot be displayed
|
|
155
|
+
*/
|
|
156
|
+
altText: Components.BqAvatar['altText'];
|
|
157
|
+
/**
|
|
158
|
+
* The image source to load on the avatar (this can be also a base64 encoded image)
|
|
159
|
+
*/
|
|
160
|
+
image: Components.BqAvatar['image'];
|
|
161
|
+
/**
|
|
162
|
+
* A text to use for describing the avatar on assistive devices
|
|
163
|
+
*/
|
|
164
|
+
label: Components.BqAvatar['label'];
|
|
165
|
+
/**
|
|
166
|
+
* The text to display on avatar
|
|
167
|
+
*/
|
|
168
|
+
initials: Components.BqAvatar['initials'];
|
|
169
|
+
/**
|
|
170
|
+
* The shape of the avatar
|
|
171
|
+
*/
|
|
172
|
+
shape: Components.BqAvatar['shape'];
|
|
173
|
+
/**
|
|
174
|
+
* The size of the avatar
|
|
175
|
+
*/
|
|
176
|
+
size: Components.BqAvatar['size'];
|
|
75
177
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
76
178
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqAvatar, never>;
|
|
77
179
|
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>;
|
|
@@ -81,6 +183,18 @@ export declare interface BqAvatar extends Components.BqAvatar {
|
|
|
81
183
|
export declare class BqBadge {
|
|
82
184
|
protected z: NgZone;
|
|
83
185
|
protected el: HTMLElement;
|
|
186
|
+
/**
|
|
187
|
+
* Badge background color. The value should be a valid value of the palette color
|
|
188
|
+
*/
|
|
189
|
+
backgroundColor: Components.BqBadge['backgroundColor'];
|
|
190
|
+
/**
|
|
191
|
+
* Badge number color. The value should be a valid value of the palette color
|
|
192
|
+
*/
|
|
193
|
+
textColor: Components.BqBadge['textColor'];
|
|
194
|
+
/**
|
|
195
|
+
* The size of the badge. Relevant if badge has no content.
|
|
196
|
+
*/
|
|
197
|
+
size: Components.BqBadge['size'];
|
|
84
198
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
85
199
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqBadge, never>;
|
|
86
200
|
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>;
|
|
@@ -90,6 +204,10 @@ export declare interface BqBadge extends Components.BqBadge {
|
|
|
90
204
|
export declare class BqBreadcrumb {
|
|
91
205
|
protected z: NgZone;
|
|
92
206
|
protected el: HTMLElement;
|
|
207
|
+
/**
|
|
208
|
+
* The `aria-label` attribute to describe the type of navigation
|
|
209
|
+
*/
|
|
210
|
+
ariaLabel: Components.BqBreadcrumb['ariaLabel'];
|
|
93
211
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
94
212
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqBreadcrumb, never>;
|
|
95
213
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqBreadcrumb, "bq-breadcrumb", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -111,6 +229,27 @@ export declare interface BqBreadcrumb extends Components.BqBreadcrumb {
|
|
|
111
229
|
export declare class BqBreadcrumbItem {
|
|
112
230
|
protected z: NgZone;
|
|
113
231
|
protected el: HTMLElement;
|
|
232
|
+
/**
|
|
233
|
+
* The aria-label that corresponds to the full title of the destination page.
|
|
234
|
+
This won't be shown in the page, but it will be used by screen readers and other assistive devices.
|
|
235
|
+
*/
|
|
236
|
+
ariaLabel: Components.BqBreadcrumbItem['ariaLabel'];
|
|
237
|
+
/**
|
|
238
|
+
* If true, the item is the last element inside breadcrumb
|
|
239
|
+
*/
|
|
240
|
+
isLastItem: Components.BqBreadcrumbItem['isLastItem'];
|
|
241
|
+
/**
|
|
242
|
+
* If set, the breadcrumb item will be rendered as an `<a>` with this `href`, otherwise, a `<button>` will be rendered.
|
|
243
|
+
*/
|
|
244
|
+
href: Components.BqBreadcrumbItem['href'];
|
|
245
|
+
/**
|
|
246
|
+
* Where to display the link in the browser context. Relevant only if `href` is set.
|
|
247
|
+
*/
|
|
248
|
+
target: Components.BqBreadcrumbItem['target'];
|
|
249
|
+
/**
|
|
250
|
+
* Where to display the link in the browser context. Relevant only if `href` is set.
|
|
251
|
+
*/
|
|
252
|
+
rel: Components.BqBreadcrumbItem['rel'];
|
|
114
253
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
115
254
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqBreadcrumbItem, never>;
|
|
116
255
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqBreadcrumbItem, "bq-breadcrumb-item", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "href": { "alias": "href"; "required": false; }; "isLastItem": { "alias": "isLastItem"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "target": { "alias": "target"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -132,6 +271,56 @@ export declare interface BqBreadcrumbItem extends Components.BqBreadcrumbItem {
|
|
|
132
271
|
export declare class BqButton {
|
|
133
272
|
protected z: NgZone;
|
|
134
273
|
protected el: HTMLElement;
|
|
274
|
+
/**
|
|
275
|
+
* The appearance style to apply to the button
|
|
276
|
+
*/
|
|
277
|
+
appearance: Components.BqButton['appearance'];
|
|
278
|
+
/**
|
|
279
|
+
* If `true`, it will make the button fit to its parent width.
|
|
280
|
+
*/
|
|
281
|
+
block: Components.BqButton['block'];
|
|
282
|
+
/**
|
|
283
|
+
* The corner radius of the button
|
|
284
|
+
*/
|
|
285
|
+
border: Components.BqButton['border'];
|
|
286
|
+
/**
|
|
287
|
+
* If true, the button will be disabled (no interaction allowed)
|
|
288
|
+
*/
|
|
289
|
+
disabled: Components.BqButton['disabled'];
|
|
290
|
+
/**
|
|
291
|
+
* Tells the browser to treat the linked URL as a download. Only used when `href` is set.
|
|
292
|
+
Details: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-download
|
|
293
|
+
*/
|
|
294
|
+
download: Components.BqButton['download'];
|
|
295
|
+
/**
|
|
296
|
+
* When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`
|
|
297
|
+
*/
|
|
298
|
+
href: Components.BqButton['href'];
|
|
299
|
+
/**
|
|
300
|
+
* It determinate how the content should be aligned
|
|
301
|
+
*/
|
|
302
|
+
justifyContent: Components.BqButton['justifyContent'];
|
|
303
|
+
/**
|
|
304
|
+
* If `true` it will display the button in a loading state
|
|
305
|
+
*/
|
|
306
|
+
loading: Components.BqButton['loading'];
|
|
307
|
+
/**
|
|
308
|
+
* The size of the button
|
|
309
|
+
*/
|
|
310
|
+
size: Components.BqButton['size'];
|
|
311
|
+
/**
|
|
312
|
+
* Where to display the linked URL, as the name for a browsing context (a `tab`, `window`, or `<iframe>`)
|
|
313
|
+
Details: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-target
|
|
314
|
+
*/
|
|
315
|
+
target: Components.BqButton['target'];
|
|
316
|
+
/**
|
|
317
|
+
* The default behavior of the button
|
|
318
|
+
*/
|
|
319
|
+
type: Components.BqButton['type'];
|
|
320
|
+
/**
|
|
321
|
+
* The variant of button to apply on top of the appearance (applicable only to `appearance="primary"`)
|
|
322
|
+
*/
|
|
323
|
+
variant: Components.BqButton['variant'];
|
|
135
324
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
136
325
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqButton, never>;
|
|
137
326
|
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>;
|
|
@@ -153,6 +342,14 @@ export declare interface BqButton extends Components.BqButton {
|
|
|
153
342
|
export declare class BqCard {
|
|
154
343
|
protected z: NgZone;
|
|
155
344
|
protected el: HTMLElement;
|
|
345
|
+
/**
|
|
346
|
+
* Type of card component
|
|
347
|
+
*/
|
|
348
|
+
type: Components.BqCard['type'];
|
|
349
|
+
/**
|
|
350
|
+
* The corner radius of the card component
|
|
351
|
+
*/
|
|
352
|
+
border: Components.BqCard['border'];
|
|
156
353
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
157
354
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqCard, never>;
|
|
158
355
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqCard, "bq-card", never, { "border": { "alias": "border"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -162,6 +359,42 @@ export declare interface BqCard extends Components.BqCard {
|
|
|
162
359
|
export declare class BqCheckbox {
|
|
163
360
|
protected z: NgZone;
|
|
164
361
|
protected el: HTMLElement;
|
|
362
|
+
/**
|
|
363
|
+
* If true checkbox displays background on hover
|
|
364
|
+
*/
|
|
365
|
+
backgroundOnHover: Components.BqCheckbox['backgroundOnHover'];
|
|
366
|
+
/**
|
|
367
|
+
* The form ID that the checkbox is associated with
|
|
368
|
+
*/
|
|
369
|
+
formId: Components.BqCheckbox['formId'];
|
|
370
|
+
/**
|
|
371
|
+
* The native form validation message
|
|
372
|
+
*/
|
|
373
|
+
formValidationMessage: Components.BqCheckbox['formValidationMessage'];
|
|
374
|
+
/**
|
|
375
|
+
* If true checkbox is checked
|
|
376
|
+
*/
|
|
377
|
+
checked: Components.BqCheckbox['checked'];
|
|
378
|
+
/**
|
|
379
|
+
* If true checkbox is disabled
|
|
380
|
+
*/
|
|
381
|
+
disabled: Components.BqCheckbox['disabled'];
|
|
382
|
+
/**
|
|
383
|
+
* A state that is neither checked nor unchecked
|
|
384
|
+
*/
|
|
385
|
+
indeterminate: Components.BqCheckbox['indeterminate'];
|
|
386
|
+
/**
|
|
387
|
+
* Name of the HTML input form control. Submitted with the form as part of a name/value pair.
|
|
388
|
+
*/
|
|
389
|
+
name: Components.BqCheckbox['name'];
|
|
390
|
+
/**
|
|
391
|
+
* If `true`, it will indicate that the user must specify a value for the checkbox before the owning form can be submitted
|
|
392
|
+
*/
|
|
393
|
+
required: Components.BqCheckbox['required'];
|
|
394
|
+
/**
|
|
395
|
+
* A string representing the value of the checkbox. Primarily used to differentiate a list of related checkboxes that have the same name.
|
|
396
|
+
*/
|
|
397
|
+
value: Components.BqCheckbox['value'];
|
|
165
398
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
166
399
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqCheckbox, never>;
|
|
167
400
|
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>;
|
|
@@ -185,6 +418,124 @@ export declare interface BqCheckbox extends Components.BqCheckbox {
|
|
|
185
418
|
export declare class BqDatePicker {
|
|
186
419
|
protected z: NgZone;
|
|
187
420
|
protected el: HTMLElement;
|
|
421
|
+
/**
|
|
422
|
+
* If `true`, the Date picker input will be focused on component render
|
|
423
|
+
*/
|
|
424
|
+
autofocus: Components.BqDatePicker['autofocus'];
|
|
425
|
+
/**
|
|
426
|
+
* The clear button aria label
|
|
427
|
+
*/
|
|
428
|
+
clearButtonLabel: Components.BqDatePicker['clearButtonLabel'];
|
|
429
|
+
/**
|
|
430
|
+
* If `true`, the clear button won't be displayed
|
|
431
|
+
*/
|
|
432
|
+
disableClear: Components.BqDatePicker['disableClear'];
|
|
433
|
+
/**
|
|
434
|
+
* Indicates whether the Date picker input is disabled or not.
|
|
435
|
+
If `true`, the Date picker is disabled and cannot be interacted with.
|
|
436
|
+
*/
|
|
437
|
+
disabled: Components.BqDatePicker['disabled'];
|
|
438
|
+
/**
|
|
439
|
+
* Represents the distance (gutter or margin) between the Date picker panel and the input element.
|
|
440
|
+
*/
|
|
441
|
+
distance: Components.BqDatePicker['distance'];
|
|
442
|
+
/**
|
|
443
|
+
* The first day of the week, where Sunday is 0, Monday is 1, etc
|
|
444
|
+
*/
|
|
445
|
+
firstDayOfWeek: Components.BqDatePicker['firstDayOfWeek'];
|
|
446
|
+
/**
|
|
447
|
+
* The options to use when formatting the displayed value.
|
|
448
|
+
Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat#using_options
|
|
449
|
+
*/
|
|
450
|
+
formatOptions: Components.BqDatePicker['formatOptions'];
|
|
451
|
+
/**
|
|
452
|
+
* The ID of the form that the Date picker input belongs to.
|
|
453
|
+
*/
|
|
454
|
+
form: Components.BqDatePicker['form'];
|
|
455
|
+
/**
|
|
456
|
+
* A function that takes a date and returns true if the date should not be selectable
|
|
457
|
+
*/
|
|
458
|
+
isDateDisallowed: Components.BqDatePicker['isDateDisallowed'];
|
|
459
|
+
/**
|
|
460
|
+
* The locale for formatting dates. If not set, will use the browser's locale.
|
|
461
|
+
Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument
|
|
462
|
+
*/
|
|
463
|
+
locale: Components.BqDatePicker['locale'];
|
|
464
|
+
/**
|
|
465
|
+
* The latest date that can be selected
|
|
466
|
+
*/
|
|
467
|
+
max: Components.BqDatePicker['max'];
|
|
468
|
+
/**
|
|
469
|
+
* The earliest date that can be selected
|
|
470
|
+
*/
|
|
471
|
+
min: Components.BqDatePicker['min'];
|
|
472
|
+
/**
|
|
473
|
+
* Number of months to show when range is `true`
|
|
474
|
+
*/
|
|
475
|
+
months: Components.BqDatePicker['months'];
|
|
476
|
+
/**
|
|
477
|
+
* Specifies how the next/previous buttons should navigate the calendar.
|
|
478
|
+
- single: The buttons will navigate by a single month at a time.
|
|
479
|
+
- months: The buttons will navigate by the number of months displayed per view.
|
|
480
|
+
*/
|
|
481
|
+
monthsPerView: Components.BqDatePicker['monthsPerView'];
|
|
482
|
+
/**
|
|
483
|
+
* The Date picker input name.
|
|
484
|
+
*/
|
|
485
|
+
name: Components.BqDatePicker['name'];
|
|
486
|
+
/**
|
|
487
|
+
* If `true`, the Date picker panel will be visible.
|
|
488
|
+
*/
|
|
489
|
+
open: Components.BqDatePicker['open'];
|
|
490
|
+
/**
|
|
491
|
+
* When set, it will override the height of the Date picker panel.
|
|
492
|
+
*/
|
|
493
|
+
panelHeight: Components.BqDatePicker['panelHeight'];
|
|
494
|
+
/**
|
|
495
|
+
* The Date picker input placeholder text value
|
|
496
|
+
*/
|
|
497
|
+
placeholder: Components.BqDatePicker['placeholder'];
|
|
498
|
+
/**
|
|
499
|
+
* Position of the Date picker panel
|
|
500
|
+
*/
|
|
501
|
+
placement: Components.BqDatePicker['placement'];
|
|
502
|
+
/**
|
|
503
|
+
* Indicates whether or not the Date picker input is required to be filled out before submitting the form.
|
|
504
|
+
*/
|
|
505
|
+
required: Components.BqDatePicker['required'];
|
|
506
|
+
/**
|
|
507
|
+
* Represents the skidding between the Date picker panel and the input element.
|
|
508
|
+
*/
|
|
509
|
+
skidding: Components.BqDatePicker['skidding'];
|
|
510
|
+
/**
|
|
511
|
+
* Whether to show days outside the month
|
|
512
|
+
*/
|
|
513
|
+
showOutsideDays: Components.BqDatePicker['showOutsideDays'];
|
|
514
|
+
/**
|
|
515
|
+
* Defines the strategy to position the Date picker panel
|
|
516
|
+
*/
|
|
517
|
+
strategy: Components.BqDatePicker['strategy'];
|
|
518
|
+
/**
|
|
519
|
+
* The date that is tentatively selected e.g. the start of a range selection
|
|
520
|
+
*/
|
|
521
|
+
tentative: Components.BqDatePicker['tentative'];
|
|
522
|
+
/**
|
|
523
|
+
* It defines how the calendar will behave, allowing single date selection, range selection, or multiple date selection
|
|
524
|
+
*/
|
|
525
|
+
type: Components.BqDatePicker['type'];
|
|
526
|
+
/**
|
|
527
|
+
* 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:
|
|
528
|
+
- `'none'`: No validation status is set.
|
|
529
|
+
- `'error'`: The input has a validation error.
|
|
530
|
+
- `'warning'`: The input has a validation warning.
|
|
531
|
+
- `'success'`: The input has passed validation.
|
|
532
|
+
*/
|
|
533
|
+
validationStatus: Components.BqDatePicker['validationStatus'];
|
|
534
|
+
/**
|
|
535
|
+
* The select input value represents the currently selected date or range and can be used to reset the field to a previous value.
|
|
536
|
+
All dates are expected in ISO-8601 format (YYYY-MM-DD).
|
|
537
|
+
*/
|
|
538
|
+
value: Components.BqDatePicker['value'];
|
|
188
539
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
189
540
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqDatePicker, never>;
|
|
190
541
|
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>;
|
|
@@ -214,6 +565,38 @@ export declare interface BqDatePicker extends Components.BqDatePicker {
|
|
|
214
565
|
export declare class BqDialog {
|
|
215
566
|
protected z: NgZone;
|
|
216
567
|
protected el: HTMLElement;
|
|
568
|
+
/**
|
|
569
|
+
* Corder radius of the dialog component
|
|
570
|
+
*/
|
|
571
|
+
border: Components.BqDialog['border'];
|
|
572
|
+
/**
|
|
573
|
+
* If true, the backdrop overlay won't be shown when the dialog opens
|
|
574
|
+
*/
|
|
575
|
+
disableBackdrop: Components.BqDialog['disableBackdrop'];
|
|
576
|
+
/**
|
|
577
|
+
* If true, the dialog will not close when the [Esc] key is press
|
|
578
|
+
*/
|
|
579
|
+
disableCloseEscKeydown: Components.BqDialog['disableCloseEscKeydown'];
|
|
580
|
+
/**
|
|
581
|
+
* If true, the dialog will not close when clicking on the backdrop overlay
|
|
582
|
+
*/
|
|
583
|
+
disableCloseClickOutside: Components.BqDialog['disableCloseClickOutside'];
|
|
584
|
+
/**
|
|
585
|
+
* The appearance of footer
|
|
586
|
+
*/
|
|
587
|
+
footerAppearance: Components.BqDialog['footerAppearance'];
|
|
588
|
+
/**
|
|
589
|
+
* If true, it hides the close button
|
|
590
|
+
*/
|
|
591
|
+
hideCloseButton: Components.BqDialog['hideCloseButton'];
|
|
592
|
+
/**
|
|
593
|
+
* If true, the dialog will be shown as open
|
|
594
|
+
*/
|
|
595
|
+
open: Components.BqDialog['open'];
|
|
596
|
+
/**
|
|
597
|
+
* The size of the dialog
|
|
598
|
+
*/
|
|
599
|
+
size: Components.BqDialog['size'];
|
|
217
600
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
218
601
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqDialog, never>;
|
|
219
602
|
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>;
|
|
@@ -243,6 +626,42 @@ export declare interface BqDialog extends Components.BqDialog {
|
|
|
243
626
|
export declare class BqDivider {
|
|
244
627
|
protected z: NgZone;
|
|
245
628
|
protected el: HTMLElement;
|
|
629
|
+
/**
|
|
630
|
+
* If true, the divider has a dashed pattern
|
|
631
|
+
*/
|
|
632
|
+
dashed: Components.BqDivider['dashed'];
|
|
633
|
+
/**
|
|
634
|
+
* The default orientation of the divider
|
|
635
|
+
*/
|
|
636
|
+
orientation: Components.BqDivider['orientation'];
|
|
637
|
+
/**
|
|
638
|
+
* Set the stroke color of the divider. The value should be a valid value of the palette color
|
|
639
|
+
*/
|
|
640
|
+
strokeColor: Components.BqDivider['strokeColor'];
|
|
641
|
+
/**
|
|
642
|
+
* Set the alignment of the title on the main axis of the divider (horizontal / vertical)
|
|
643
|
+
*/
|
|
644
|
+
titleAlignment: Components.BqDivider['titleAlignment'];
|
|
645
|
+
/**
|
|
646
|
+
* Set the width of each dash of the divider's stroke. This is applicable when the stroke is dashed
|
|
647
|
+
*/
|
|
648
|
+
strokeDashWidth: Components.BqDivider['strokeDashWidth'];
|
|
649
|
+
/**
|
|
650
|
+
* Set the gap of the divider's stroke. This is applicable when the stroke is dashed
|
|
651
|
+
*/
|
|
652
|
+
strokeDashGap: Components.BqDivider['strokeDashGap'];
|
|
653
|
+
/**
|
|
654
|
+
* Set the thickness of the divider's stroke. Value expressed in px
|
|
655
|
+
*/
|
|
656
|
+
strokeThickness: Components.BqDivider['strokeThickness'];
|
|
657
|
+
/**
|
|
658
|
+
* Set the min width of the divider's stroke when text is not centered. Value expressed in px
|
|
659
|
+
*/
|
|
660
|
+
strokeBasis: Components.BqDivider['strokeBasis'];
|
|
661
|
+
/**
|
|
662
|
+
* Set the line of the divider's stroke. This is applicable when the stroke is dashed
|
|
663
|
+
*/
|
|
664
|
+
strokeLinecap: Components.BqDivider['strokeLinecap'];
|
|
246
665
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
247
666
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqDivider, never>;
|
|
248
667
|
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>;
|
|
@@ -252,6 +671,30 @@ export declare interface BqDivider extends Components.BqDivider {
|
|
|
252
671
|
export declare class BqDrawer {
|
|
253
672
|
protected z: NgZone;
|
|
254
673
|
protected el: HTMLElement;
|
|
674
|
+
/**
|
|
675
|
+
* If true, the backdrop overlay will be shown when the drawer opens
|
|
676
|
+
*/
|
|
677
|
+
enableBackdrop: Components.BqDrawer['enableBackdrop'];
|
|
678
|
+
/**
|
|
679
|
+
* If true, the drawer will not close when clicking outside the panel
|
|
680
|
+
*/
|
|
681
|
+
closeOnClickOutside: Components.BqDrawer['closeOnClickOutside'];
|
|
682
|
+
/**
|
|
683
|
+
* If true, the dialog will not close when the [Esc] key is pressed
|
|
684
|
+
*/
|
|
685
|
+
closeOnEsc: Components.BqDrawer['closeOnEsc'];
|
|
686
|
+
/**
|
|
687
|
+
* If true, the drawer component will be shown
|
|
688
|
+
*/
|
|
689
|
+
open: Components.BqDrawer['open'];
|
|
690
|
+
/**
|
|
691
|
+
* @deprecated Defines the position of the drawer
|
|
692
|
+
*/
|
|
693
|
+
placement: Components.BqDrawer['placement'];
|
|
694
|
+
/**
|
|
695
|
+
* Defines the position of the drawer
|
|
696
|
+
*/
|
|
697
|
+
position: Components.BqDrawer['position'];
|
|
255
698
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
256
699
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqDrawer, never>;
|
|
257
700
|
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>;
|
|
@@ -277,6 +720,42 @@ export declare interface BqDrawer extends Components.BqDrawer {
|
|
|
277
720
|
export declare class BqDropdown {
|
|
278
721
|
protected z: NgZone;
|
|
279
722
|
protected el: HTMLElement;
|
|
723
|
+
/**
|
|
724
|
+
* If true, the dropdown panel will be visible and won't be shown.
|
|
725
|
+
*/
|
|
726
|
+
disabled: Components.BqDropdown['disabled'];
|
|
727
|
+
/**
|
|
728
|
+
* Represents the distance (gutter or margin) between the panel and the trigger element.
|
|
729
|
+
*/
|
|
730
|
+
distance: Components.BqDropdown['distance'];
|
|
731
|
+
/**
|
|
732
|
+
* If true, the panel will remain open after a selection is made.
|
|
733
|
+
*/
|
|
734
|
+
keepOpenOnSelect: Components.BqDropdown['keepOpenOnSelect'];
|
|
735
|
+
/**
|
|
736
|
+
* Position of the panel
|
|
737
|
+
*/
|
|
738
|
+
placement: Components.BqDropdown['placement'];
|
|
739
|
+
/**
|
|
740
|
+
* If true, the panel will be visible.
|
|
741
|
+
*/
|
|
742
|
+
open: Components.BqDropdown['open'];
|
|
743
|
+
/**
|
|
744
|
+
* When set, it will override the height of the dropdown panel
|
|
745
|
+
*/
|
|
746
|
+
panelHeight: Components.BqDropdown['panelHeight'];
|
|
747
|
+
/**
|
|
748
|
+
* Whether the panel should have the same width as the trigger element
|
|
749
|
+
*/
|
|
750
|
+
sameWidth: Components.BqDropdown['sameWidth'];
|
|
751
|
+
/**
|
|
752
|
+
* Represents the skidding between the panel and the trigger element.
|
|
753
|
+
*/
|
|
754
|
+
skidding: Components.BqDropdown['skidding'];
|
|
755
|
+
/**
|
|
756
|
+
* Defines the strategy to position the panel
|
|
757
|
+
*/
|
|
758
|
+
strategy: Components.BqDropdown['strategy'];
|
|
280
759
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
281
760
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqDropdown, never>;
|
|
282
761
|
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>;
|
|
@@ -292,6 +771,10 @@ export declare interface BqDropdown extends Components.BqDropdown {
|
|
|
292
771
|
export declare class BqEmptyState {
|
|
293
772
|
protected z: NgZone;
|
|
294
773
|
protected el: HTMLElement;
|
|
774
|
+
/**
|
|
775
|
+
* The size of the empty state component
|
|
776
|
+
*/
|
|
777
|
+
size: Components.BqEmptyState['size'];
|
|
295
778
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
296
779
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqEmptyState, never>;
|
|
297
780
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqEmptyState, "bq-empty-state", never, { "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -301,6 +784,30 @@ export declare interface BqEmptyState extends Components.BqEmptyState {
|
|
|
301
784
|
export declare class BqIcon {
|
|
302
785
|
protected z: NgZone;
|
|
303
786
|
protected el: HTMLElement;
|
|
787
|
+
/**
|
|
788
|
+
* Label for the icon, used for accessibility
|
|
789
|
+
*/
|
|
790
|
+
label: Components.BqIcon['label'];
|
|
791
|
+
/**
|
|
792
|
+
* Set the stroke color of the SVG. The value should be a valid value of the palette color
|
|
793
|
+
*/
|
|
794
|
+
color: Components.BqIcon['color'];
|
|
795
|
+
/**
|
|
796
|
+
* Icon name to load. Please check all available icons [here](https://phosphoricons.com/)
|
|
797
|
+
*/
|
|
798
|
+
name: Components.BqIcon['name'];
|
|
799
|
+
/**
|
|
800
|
+
* Set the size of the SVG
|
|
801
|
+
*/
|
|
802
|
+
size: Components.BqIcon['size'];
|
|
803
|
+
/**
|
|
804
|
+
* Set the source of the SVG. If the source is set, the name property will be ignored
|
|
805
|
+
*/
|
|
806
|
+
src: Components.BqIcon['src'];
|
|
807
|
+
/**
|
|
808
|
+
* @deprecated It set the icon weight/style
|
|
809
|
+
*/
|
|
810
|
+
weight: Components.BqIcon['weight'];
|
|
304
811
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
305
812
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqIcon, never>;
|
|
306
813
|
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>;
|
|
@@ -314,6 +821,117 @@ export declare interface BqIcon extends Components.BqIcon {
|
|
|
314
821
|
export declare class BqInput {
|
|
315
822
|
protected z: NgZone;
|
|
316
823
|
protected el: HTMLElement;
|
|
824
|
+
/**
|
|
825
|
+
* Controls whether or not the input field should be capitalized and how.
|
|
826
|
+
Possible values are 'off', 'none', 'on', 'sentences', 'words', and 'characters'.
|
|
827
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize
|
|
828
|
+
*/
|
|
829
|
+
autocapitalize: Components.BqInput['autocapitalize'];
|
|
830
|
+
/**
|
|
831
|
+
* Specifies whether or not the input field should have autocomplete enabled.
|
|
832
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values
|
|
833
|
+
*/
|
|
834
|
+
autocomplete: Components.BqInput['autocomplete'];
|
|
835
|
+
/**
|
|
836
|
+
* Controls whether or not the input field should have autocorrect enabled.
|
|
837
|
+
Possible values are 'on' and 'off'.
|
|
838
|
+
*/
|
|
839
|
+
autocorrect: Components.BqInput['autocorrect'];
|
|
840
|
+
/**
|
|
841
|
+
* If true, the input will be focused on component render
|
|
842
|
+
*/
|
|
843
|
+
autofocus: Components.BqInput['autofocus'];
|
|
844
|
+
/**
|
|
845
|
+
* The clear button aria label
|
|
846
|
+
*/
|
|
847
|
+
clearButtonLabel: Components.BqInput['clearButtonLabel'];
|
|
848
|
+
/**
|
|
849
|
+
* The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the input value changes.
|
|
850
|
+
A value of 0 means no debouncing will occur.
|
|
851
|
+
*/
|
|
852
|
+
debounceTime: Components.BqInput['debounceTime'];
|
|
853
|
+
/**
|
|
854
|
+
* Indicates whether the input is disabled or not.
|
|
855
|
+
If `true`, the input is disabled and cannot be interacted with.
|
|
856
|
+
*/
|
|
857
|
+
disabled: Components.BqInput['disabled'];
|
|
858
|
+
/**
|
|
859
|
+
* If true, the clear button won't be displayed
|
|
860
|
+
*/
|
|
861
|
+
disableClear: Components.BqInput['disableClear'];
|
|
862
|
+
/**
|
|
863
|
+
* The ID of the form that the input field belongs to.
|
|
864
|
+
*/
|
|
865
|
+
form: Components.BqInput['form'];
|
|
866
|
+
/**
|
|
867
|
+
* The inputmode attribute specifies what kind of input mechanism would be most helpful for users entering content into the input field.
|
|
868
|
+
This allows a browser to display an appropriate virtual keyboard while editing.
|
|
869
|
+
Possible values are 'none', 'text', 'decimal', 'numeric', 'tel', 'search', 'email', 'url', and 'date'.
|
|
870
|
+
*/
|
|
871
|
+
inputmode: Components.BqInput['inputmode'];
|
|
872
|
+
/**
|
|
873
|
+
* The maximum value that the input field can accept.
|
|
874
|
+
Only applies to date and number input types.
|
|
875
|
+
*/
|
|
876
|
+
max: Components.BqInput['max'];
|
|
877
|
+
/**
|
|
878
|
+
* The maximum number of characters that the input field can accept.
|
|
879
|
+
*/
|
|
880
|
+
maxlength: Components.BqInput['maxlength'];
|
|
881
|
+
/**
|
|
882
|
+
* The minimum value that the input field can accept.
|
|
883
|
+
Only applies to date and number input types.
|
|
884
|
+
*/
|
|
885
|
+
min: Components.BqInput['min'];
|
|
886
|
+
/**
|
|
887
|
+
* The minimum number of characters that the input field can accept.
|
|
888
|
+
*/
|
|
889
|
+
minlength: Components.BqInput['minlength'];
|
|
890
|
+
/**
|
|
891
|
+
* The input field name.
|
|
892
|
+
*/
|
|
893
|
+
name: Components.BqInput['name'];
|
|
894
|
+
/**
|
|
895
|
+
* Specifies a regular expression the form control's value should match.
|
|
896
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern
|
|
897
|
+
*/
|
|
898
|
+
pattern: Components.BqInput['pattern'];
|
|
899
|
+
/**
|
|
900
|
+
* The input placeholder text value
|
|
901
|
+
*/
|
|
902
|
+
placeholder: Components.BqInput['placeholder'];
|
|
903
|
+
/**
|
|
904
|
+
* If true, the input field cannot be modified.
|
|
905
|
+
*/
|
|
906
|
+
readonly: Components.BqInput['readonly'];
|
|
907
|
+
/**
|
|
908
|
+
* Indicates whether or not the input field is required to be filled out before submitting the form.
|
|
909
|
+
*/
|
|
910
|
+
required: Components.BqInput['required'];
|
|
911
|
+
/**
|
|
912
|
+
* A number that specifies the granularity that the value must adhere to.
|
|
913
|
+
Valid for date, month, week, time, datetime-local, number, and range.
|
|
914
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#step
|
|
915
|
+
*/
|
|
916
|
+
step: Components.BqInput['step'];
|
|
917
|
+
/**
|
|
918
|
+
* The type attribute specifies the type of input field to display.
|
|
919
|
+
Possible values are 'text', 'password', 'email', 'number', 'tel', 'search', 'url', and more.
|
|
920
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#input_types
|
|
921
|
+
*/
|
|
922
|
+
type: Components.BqInput['type'];
|
|
923
|
+
/**
|
|
924
|
+
* 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:
|
|
925
|
+
- `'none'`: No validation status is set.
|
|
926
|
+
- `'error'`: The input has a validation error.
|
|
927
|
+
- `'warning'`: The input has a validation warning.
|
|
928
|
+
- `'success'`: The input has passed validation.
|
|
929
|
+
*/
|
|
930
|
+
validationStatus: Components.BqInput['validationStatus'];
|
|
931
|
+
/**
|
|
932
|
+
* The input value, it can be used to reset the input to a previous value
|
|
933
|
+
*/
|
|
934
|
+
value: Components.BqInput['value'];
|
|
317
935
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
318
936
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqInput, never>;
|
|
319
937
|
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>;
|
|
@@ -351,6 +969,34 @@ export declare interface BqInput extends Components.BqInput {
|
|
|
351
969
|
export declare class BqNotification {
|
|
352
970
|
protected z: NgZone;
|
|
353
971
|
protected el: HTMLElement;
|
|
972
|
+
/**
|
|
973
|
+
* If true, the notification will automatically hide after the specified amount of time
|
|
974
|
+
*/
|
|
975
|
+
autoDismiss: Components.BqNotification['autoDismiss'];
|
|
976
|
+
/**
|
|
977
|
+
* The corder radius of the notification component
|
|
978
|
+
*/
|
|
979
|
+
border: Components.BqNotification['border'];
|
|
980
|
+
/**
|
|
981
|
+
* If true, the close button at the top right of the notification won't be shown
|
|
982
|
+
*/
|
|
983
|
+
disableClose: Components.BqNotification['disableClose'];
|
|
984
|
+
/**
|
|
985
|
+
* If true, the notification icon won't be shown
|
|
986
|
+
*/
|
|
987
|
+
hideIcon: Components.BqNotification['hideIcon'];
|
|
988
|
+
/**
|
|
989
|
+
* If true, the notification will be shown
|
|
990
|
+
*/
|
|
991
|
+
open: Components.BqNotification['open'];
|
|
992
|
+
/**
|
|
993
|
+
* The length of time, in milliseconds, after which the notification will close itself. Only valid if `autoDismiss="true"`
|
|
994
|
+
*/
|
|
995
|
+
time: Components.BqNotification['time'];
|
|
996
|
+
/**
|
|
997
|
+
* Type of Notification
|
|
998
|
+
*/
|
|
999
|
+
type: Components.BqNotification['type'];
|
|
354
1000
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
355
1001
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqNotification, never>;
|
|
356
1002
|
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>;
|
|
@@ -376,6 +1022,22 @@ export declare interface BqNotification extends Components.BqNotification {
|
|
|
376
1022
|
export declare class BqOption {
|
|
377
1023
|
protected z: NgZone;
|
|
378
1024
|
protected el: HTMLElement;
|
|
1025
|
+
/**
|
|
1026
|
+
* If true, the option is hidden.
|
|
1027
|
+
*/
|
|
1028
|
+
hidden: Components.BqOption['hidden'];
|
|
1029
|
+
/**
|
|
1030
|
+
* If true, the option is disabled.
|
|
1031
|
+
*/
|
|
1032
|
+
disabled: Components.BqOption['disabled'];
|
|
1033
|
+
/**
|
|
1034
|
+
* A string representing the value of the option. Can be used to identify the item
|
|
1035
|
+
*/
|
|
1036
|
+
value: Components.BqOption['value'];
|
|
1037
|
+
/**
|
|
1038
|
+
* If true, the option is selected and active.
|
|
1039
|
+
*/
|
|
1040
|
+
selected: Components.BqOption['selected'];
|
|
379
1041
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
380
1042
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqOption, never>;
|
|
381
1043
|
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>;
|
|
@@ -410,6 +1072,10 @@ export declare interface BqOptionGroup extends Components.BqOptionGroup {
|
|
|
410
1072
|
export declare class BqOptionList {
|
|
411
1073
|
protected z: NgZone;
|
|
412
1074
|
protected el: HTMLElement;
|
|
1075
|
+
/**
|
|
1076
|
+
* Aria label for the list.
|
|
1077
|
+
*/
|
|
1078
|
+
ariaLabel: Components.BqOptionList['ariaLabel'];
|
|
413
1079
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
414
1080
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqOptionList, never>;
|
|
415
1081
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqOptionList, "bq-option-list", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -435,6 +1101,30 @@ export declare interface BqPageTitle extends Components.BqPageTitle {
|
|
|
435
1101
|
export declare class BqPanel {
|
|
436
1102
|
protected z: NgZone;
|
|
437
1103
|
protected el: HTMLElement;
|
|
1104
|
+
/**
|
|
1105
|
+
* Represents the distance (gutter or margin) between the panel and the trigger element.
|
|
1106
|
+
*/
|
|
1107
|
+
distance: Components.BqPanel['distance'];
|
|
1108
|
+
/**
|
|
1109
|
+
* Position of the panel
|
|
1110
|
+
*/
|
|
1111
|
+
placement: Components.BqPanel['placement'];
|
|
1112
|
+
/**
|
|
1113
|
+
* If true, the panel will be visible.
|
|
1114
|
+
*/
|
|
1115
|
+
open: Components.BqPanel['open'];
|
|
1116
|
+
/**
|
|
1117
|
+
* Whether the panel should have the same width as the trigger element
|
|
1118
|
+
*/
|
|
1119
|
+
sameWidth: Components.BqPanel['sameWidth'];
|
|
1120
|
+
/**
|
|
1121
|
+
* Represents the skidding between the panel and the trigger element.
|
|
1122
|
+
*/
|
|
1123
|
+
skidding: Components.BqPanel['skidding'];
|
|
1124
|
+
/**
|
|
1125
|
+
* Defines the strategy to position the panel
|
|
1126
|
+
*/
|
|
1127
|
+
strategy: Components.BqPanel['strategy'];
|
|
438
1128
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
439
1129
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqPanel, never>;
|
|
440
1130
|
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>;
|
|
@@ -444,6 +1134,34 @@ export declare interface BqPanel extends Components.BqPanel {
|
|
|
444
1134
|
export declare class BqProgress {
|
|
445
1135
|
protected z: NgZone;
|
|
446
1136
|
protected el: HTMLElement;
|
|
1137
|
+
/**
|
|
1138
|
+
* If `true` the indeterminate state of progress bar is enabled
|
|
1139
|
+
*/
|
|
1140
|
+
indeterminate: Components.BqProgress['indeterminate'];
|
|
1141
|
+
/**
|
|
1142
|
+
* A number representing the current value of the progress bar
|
|
1143
|
+
*/
|
|
1144
|
+
value: Components.BqProgress['value'];
|
|
1145
|
+
/**
|
|
1146
|
+
* Progress bar thickness
|
|
1147
|
+
*/
|
|
1148
|
+
thickness: Components.BqProgress['thickness'];
|
|
1149
|
+
/**
|
|
1150
|
+
* Progress type
|
|
1151
|
+
*/
|
|
1152
|
+
type: Components.BqProgress['type'];
|
|
1153
|
+
/**
|
|
1154
|
+
* It will set the border style of the progress bar
|
|
1155
|
+
*/
|
|
1156
|
+
borderShape: Components.BqProgress['borderShape'];
|
|
1157
|
+
/**
|
|
1158
|
+
* If `true`, a label text showing the value (in percentage) will be shown
|
|
1159
|
+
*/
|
|
1160
|
+
label: Components.BqProgress['label'];
|
|
1161
|
+
/**
|
|
1162
|
+
* If `true`, a tooltip will be shown displaying the progress value
|
|
1163
|
+
*/
|
|
1164
|
+
enableTooltip: Components.BqProgress['enableTooltip'];
|
|
447
1165
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
448
1166
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqProgress, never>;
|
|
449
1167
|
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>;
|
|
@@ -453,6 +1171,34 @@ export declare interface BqProgress extends Components.BqProgress {
|
|
|
453
1171
|
export declare class BqRadio {
|
|
454
1172
|
protected z: NgZone;
|
|
455
1173
|
protected el: HTMLElement;
|
|
1174
|
+
/**
|
|
1175
|
+
* If true radio input is checked
|
|
1176
|
+
*/
|
|
1177
|
+
checked: Components.BqRadio['checked'];
|
|
1178
|
+
/**
|
|
1179
|
+
* If true radio input is disabled
|
|
1180
|
+
*/
|
|
1181
|
+
disabled: Components.BqRadio['disabled'];
|
|
1182
|
+
/**
|
|
1183
|
+
* If true radio displays background on hover
|
|
1184
|
+
*/
|
|
1185
|
+
backgroundOnHover: Components.BqRadio['backgroundOnHover'];
|
|
1186
|
+
/**
|
|
1187
|
+
* The form ID that the radio input is associated with
|
|
1188
|
+
*/
|
|
1189
|
+
formId: Components.BqRadio['formId'];
|
|
1190
|
+
/**
|
|
1191
|
+
* Name of the HTML input form control. Submitted with the form as part of a name/value pair.
|
|
1192
|
+
*/
|
|
1193
|
+
name: Components.BqRadio['name'];
|
|
1194
|
+
/**
|
|
1195
|
+
* If `true`, it will indicate that the user must specify a value for the radio before the owning form can be submitted
|
|
1196
|
+
*/
|
|
1197
|
+
required: Components.BqRadio['required'];
|
|
1198
|
+
/**
|
|
1199
|
+
* A string representing the value of the radio.
|
|
1200
|
+
*/
|
|
1201
|
+
value: Components.BqRadio['value'];
|
|
456
1202
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
457
1203
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqRadio, never>;
|
|
458
1204
|
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>;
|
|
@@ -478,6 +1224,34 @@ export declare interface BqRadio extends Components.BqRadio {
|
|
|
478
1224
|
export declare class BqRadioGroup {
|
|
479
1225
|
protected z: NgZone;
|
|
480
1226
|
protected el: HTMLElement;
|
|
1227
|
+
/**
|
|
1228
|
+
* If true, all radio inputs in the group will display a background on hover
|
|
1229
|
+
*/
|
|
1230
|
+
backgroundOnHover: Components.BqRadioGroup['backgroundOnHover'];
|
|
1231
|
+
/**
|
|
1232
|
+
* Name of the HTML input form control. Submitted with the form as part of a name/value pair.
|
|
1233
|
+
*/
|
|
1234
|
+
name: Components.BqRadioGroup['name'];
|
|
1235
|
+
/**
|
|
1236
|
+
* A string representing the value of the radio.
|
|
1237
|
+
*/
|
|
1238
|
+
value: Components.BqRadioGroup['value'];
|
|
1239
|
+
/**
|
|
1240
|
+
* If true radio inputs are disabled
|
|
1241
|
+
*/
|
|
1242
|
+
disabled: Components.BqRadioGroup['disabled'];
|
|
1243
|
+
/**
|
|
1244
|
+
* If true displays fieldset
|
|
1245
|
+
*/
|
|
1246
|
+
fieldset: Components.BqRadioGroup['fieldset'];
|
|
1247
|
+
/**
|
|
1248
|
+
* The display orientation of the radio inputs
|
|
1249
|
+
*/
|
|
1250
|
+
orientation: Components.BqRadioGroup['orientation'];
|
|
1251
|
+
/**
|
|
1252
|
+
* A number representing the delay time (in milliseconds) that `bqChange` event handler gets triggered once the value change
|
|
1253
|
+
*/
|
|
1254
|
+
debounceTime: Components.BqRadioGroup['debounceTime'];
|
|
481
1255
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
482
1256
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqRadioGroup, never>;
|
|
483
1257
|
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>;
|
|
@@ -494,6 +1268,100 @@ export declare interface BqRadioGroup extends Components.BqRadioGroup {
|
|
|
494
1268
|
export declare class BqSelect {
|
|
495
1269
|
protected z: NgZone;
|
|
496
1270
|
protected el: HTMLElement;
|
|
1271
|
+
/**
|
|
1272
|
+
* If true, the Select input will be focused on component render
|
|
1273
|
+
*/
|
|
1274
|
+
autofocus: Components.BqSelect['autofocus'];
|
|
1275
|
+
/**
|
|
1276
|
+
* The clear button aria label
|
|
1277
|
+
*/
|
|
1278
|
+
clearButtonLabel: Components.BqSelect['clearButtonLabel'];
|
|
1279
|
+
/**
|
|
1280
|
+
* The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the input value changes.
|
|
1281
|
+
A value of 0 means no debouncing will occur.
|
|
1282
|
+
*/
|
|
1283
|
+
debounceTime: Components.BqSelect['debounceTime'];
|
|
1284
|
+
/**
|
|
1285
|
+
* Indicates whether the Select input is disabled or not.
|
|
1286
|
+
If `true`, the Select is disabled and cannot be interacted with.
|
|
1287
|
+
*/
|
|
1288
|
+
disabled: Components.BqSelect['disabled'];
|
|
1289
|
+
/**
|
|
1290
|
+
* If true, the clear button won't be displayed
|
|
1291
|
+
*/
|
|
1292
|
+
disableClear: Components.BqSelect['disableClear'];
|
|
1293
|
+
/**
|
|
1294
|
+
* Represents the distance (gutter or margin) between the Select panel and the input element.
|
|
1295
|
+
*/
|
|
1296
|
+
distance: Components.BqSelect['distance'];
|
|
1297
|
+
/**
|
|
1298
|
+
* The ID of the form that the Select input belongs to.
|
|
1299
|
+
*/
|
|
1300
|
+
form: Components.BqSelect['form'];
|
|
1301
|
+
/**
|
|
1302
|
+
* If true, the Select panel will remain open after a selection is made.
|
|
1303
|
+
*/
|
|
1304
|
+
keepOpenOnSelect: Components.BqSelect['keepOpenOnSelect'];
|
|
1305
|
+
/**
|
|
1306
|
+
* The Select input name.
|
|
1307
|
+
*/
|
|
1308
|
+
name: Components.BqSelect['name'];
|
|
1309
|
+
/**
|
|
1310
|
+
* The maximum number of tags to display when multiple selection is enabled
|
|
1311
|
+
*/
|
|
1312
|
+
maxTagsVisible: Components.BqSelect['maxTagsVisible'];
|
|
1313
|
+
/**
|
|
1314
|
+
* If true, the Select input will allow multiple selections.
|
|
1315
|
+
*/
|
|
1316
|
+
multiple: Components.BqSelect['multiple'];
|
|
1317
|
+
/**
|
|
1318
|
+
* If true, the Select panel will be visible.
|
|
1319
|
+
*/
|
|
1320
|
+
open: Components.BqSelect['open'];
|
|
1321
|
+
/**
|
|
1322
|
+
* When set, it will override the height of the Select panel.
|
|
1323
|
+
*/
|
|
1324
|
+
panelHeight: Components.BqSelect['panelHeight'];
|
|
1325
|
+
/**
|
|
1326
|
+
* The Select input placeholder text value
|
|
1327
|
+
*/
|
|
1328
|
+
placeholder: Components.BqSelect['placeholder'];
|
|
1329
|
+
/**
|
|
1330
|
+
* Position of the Select panel
|
|
1331
|
+
*/
|
|
1332
|
+
placement: Components.BqSelect['placement'];
|
|
1333
|
+
/**
|
|
1334
|
+
* If true, the list of options cannot be filtered (searching won't be available)
|
|
1335
|
+
*/
|
|
1336
|
+
readonly: Components.BqSelect['readonly'];
|
|
1337
|
+
/**
|
|
1338
|
+
* Indicates whether or not the Select input is required to be filled out before submitting the form.
|
|
1339
|
+
*/
|
|
1340
|
+
required: Components.BqSelect['required'];
|
|
1341
|
+
/**
|
|
1342
|
+
* Whether the panel should have the Select same width as the input element
|
|
1343
|
+
*/
|
|
1344
|
+
sameWidth: Components.BqSelect['sameWidth'];
|
|
1345
|
+
/**
|
|
1346
|
+
* Represents the skidding between the Select panel and the input element.
|
|
1347
|
+
*/
|
|
1348
|
+
skidding: Components.BqSelect['skidding'];
|
|
1349
|
+
/**
|
|
1350
|
+
* Defines the strategy to position the Select panel
|
|
1351
|
+
*/
|
|
1352
|
+
strategy: Components.BqSelect['strategy'];
|
|
1353
|
+
/**
|
|
1354
|
+
* 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:
|
|
1355
|
+
- `'none'`: No validation status is set.
|
|
1356
|
+
- `'error'`: The input has a validation error.
|
|
1357
|
+
- `'warning'`: The input has a validation warning.
|
|
1358
|
+
- `'success'`: The input has passed validation.
|
|
1359
|
+
*/
|
|
1360
|
+
validationStatus: Components.BqSelect['validationStatus'];
|
|
1361
|
+
/**
|
|
1362
|
+
* The select input value, it can be used to reset the field to a previous value
|
|
1363
|
+
*/
|
|
1364
|
+
value: Components.BqSelect['value'];
|
|
497
1365
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
498
1366
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqSelect, never>;
|
|
499
1367
|
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>;
|
|
@@ -522,6 +1390,18 @@ export declare interface BqSelect extends Components.BqSelect {
|
|
|
522
1390
|
export declare class BqSideMenu {
|
|
523
1391
|
protected z: NgZone;
|
|
524
1392
|
protected el: HTMLElement;
|
|
1393
|
+
/**
|
|
1394
|
+
* It sets a predefined appearance of the side menu
|
|
1395
|
+
*/
|
|
1396
|
+
appearance: Components.BqSideMenu['appearance'];
|
|
1397
|
+
/**
|
|
1398
|
+
* If true, the container will reduce its width
|
|
1399
|
+
*/
|
|
1400
|
+
collapse: Components.BqSideMenu['collapse'];
|
|
1401
|
+
/**
|
|
1402
|
+
* It sets the size of the navigation menu items
|
|
1403
|
+
*/
|
|
1404
|
+
size: Components.BqSideMenu['size'];
|
|
525
1405
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
526
1406
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqSideMenu, never>;
|
|
527
1407
|
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>;
|
|
@@ -541,6 +1421,18 @@ export declare interface BqSideMenu extends Components.BqSideMenu {
|
|
|
541
1421
|
export declare class BqSideMenuItem {
|
|
542
1422
|
protected z: NgZone;
|
|
543
1423
|
protected el: HTMLElement;
|
|
1424
|
+
/**
|
|
1425
|
+
* If true, the menu item will be shown as active/selected.
|
|
1426
|
+
*/
|
|
1427
|
+
active: Components.BqSideMenuItem['active'];
|
|
1428
|
+
/**
|
|
1429
|
+
* If true, the item label and suffix will be hidden and the with will be reduce according to its parent
|
|
1430
|
+
*/
|
|
1431
|
+
collapse: Components.BqSideMenuItem['collapse'];
|
|
1432
|
+
/**
|
|
1433
|
+
* If true, the menu item will be disabled (no interaction allowed)
|
|
1434
|
+
*/
|
|
1435
|
+
disabled: Components.BqSideMenuItem['disabled'];
|
|
544
1436
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
545
1437
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqSideMenuItem, never>;
|
|
546
1438
|
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>;
|
|
@@ -562,6 +1454,54 @@ export declare interface BqSideMenuItem extends Components.BqSideMenuItem {
|
|
|
562
1454
|
export declare class BqSlider {
|
|
563
1455
|
protected z: NgZone;
|
|
564
1456
|
protected el: HTMLElement;
|
|
1457
|
+
/**
|
|
1458
|
+
* The amount of time, in milliseconds, to wait to trigger the `bqChange` event after each value change.
|
|
1459
|
+
*/
|
|
1460
|
+
debounceTime: Components.BqSlider['debounceTime'];
|
|
1461
|
+
/**
|
|
1462
|
+
* If `true` the slider is disabled.
|
|
1463
|
+
*/
|
|
1464
|
+
disabled: Components.BqSlider['disabled'];
|
|
1465
|
+
/**
|
|
1466
|
+
* If `true` it will show the value label on a side of the slider track area
|
|
1467
|
+
*/
|
|
1468
|
+
enableValueIndicator: Components.BqSlider['enableValueIndicator'];
|
|
1469
|
+
/**
|
|
1470
|
+
* A number representing the amount to remain between the minimum and maximum values (only for range type).
|
|
1471
|
+
*/
|
|
1472
|
+
gap: Components.BqSlider['gap'];
|
|
1473
|
+
/**
|
|
1474
|
+
* A number representing the max value of the slider.
|
|
1475
|
+
*/
|
|
1476
|
+
max: Components.BqSlider['max'];
|
|
1477
|
+
/**
|
|
1478
|
+
* A number representing the min value of the slider.
|
|
1479
|
+
*/
|
|
1480
|
+
min: Components.BqSlider['min'];
|
|
1481
|
+
/**
|
|
1482
|
+
* A number representing the step of the slider.
|
|
1483
|
+
⚠️ Please notice that the value (or list of values if the slider type is `range`) will be rounded to the nearest multiple of `step`.
|
|
1484
|
+
*/
|
|
1485
|
+
step: Components.BqSlider['step'];
|
|
1486
|
+
/**
|
|
1487
|
+
* It defines the type of slider to display
|
|
1488
|
+
*/
|
|
1489
|
+
type: Components.BqSlider['type'];
|
|
1490
|
+
/**
|
|
1491
|
+
* The value of the slider.
|
|
1492
|
+
- If the slider type is `single`, the value is a number.
|
|
1493
|
+
- 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).
|
|
1494
|
+
*/
|
|
1495
|
+
value: Components.BqSlider['value'];
|
|
1496
|
+
/**
|
|
1497
|
+
* If `true`, a tooltip will be shown displaying the progress value
|
|
1498
|
+
*/
|
|
1499
|
+
enableTooltip: Components.BqSlider['enableTooltip'];
|
|
1500
|
+
/**
|
|
1501
|
+
* If `true`, a tooltip will always display the progress value.
|
|
1502
|
+
It relies on enableTooltip and if enableTooltip is false, tooltipAlwaysVisible cannot be true.
|
|
1503
|
+
*/
|
|
1504
|
+
tooltipAlwaysVisible: Components.BqSlider['tooltipAlwaysVisible'];
|
|
565
1505
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
566
1506
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqSlider, never>;
|
|
567
1507
|
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>;
|
|
@@ -586,6 +1526,18 @@ export declare interface BqSlider extends Components.BqSlider {
|
|
|
586
1526
|
export declare class BqSpinner {
|
|
587
1527
|
protected z: NgZone;
|
|
588
1528
|
protected el: HTMLElement;
|
|
1529
|
+
/**
|
|
1530
|
+
* If `false`, the animation on the icon element will be stopped
|
|
1531
|
+
*/
|
|
1532
|
+
animation: Components.BqSpinner['animation'];
|
|
1533
|
+
/**
|
|
1534
|
+
* It defines the position of the label text
|
|
1535
|
+
*/
|
|
1536
|
+
textPosition: Components.BqSpinner['textPosition'];
|
|
1537
|
+
/**
|
|
1538
|
+
* It defines the size of the icon element displayed
|
|
1539
|
+
*/
|
|
1540
|
+
size: Components.BqSpinner['size'];
|
|
589
1541
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
590
1542
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqSpinner, never>;
|
|
591
1543
|
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>;
|
|
@@ -595,6 +1547,10 @@ export declare interface BqSpinner extends Components.BqSpinner {
|
|
|
595
1547
|
export declare class BqStatus {
|
|
596
1548
|
protected z: NgZone;
|
|
597
1549
|
protected el: HTMLElement;
|
|
1550
|
+
/**
|
|
1551
|
+
* It defines the type of status to display
|
|
1552
|
+
*/
|
|
1553
|
+
type: Components.BqStatus['type'];
|
|
598
1554
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
599
1555
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqStatus, never>;
|
|
600
1556
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqStatus, "bq-status", never, { "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -604,6 +1560,18 @@ export declare interface BqStatus extends Components.BqStatus {
|
|
|
604
1560
|
export declare class BqStepItem {
|
|
605
1561
|
protected z: NgZone;
|
|
606
1562
|
protected el: HTMLElement;
|
|
1563
|
+
/**
|
|
1564
|
+
* It defines prefix size
|
|
1565
|
+
*/
|
|
1566
|
+
size: Components.BqStepItem['size'];
|
|
1567
|
+
/**
|
|
1568
|
+
* It defines step item appearance based on its status
|
|
1569
|
+
*/
|
|
1570
|
+
status: Components.BqStepItem['status'];
|
|
1571
|
+
/**
|
|
1572
|
+
* It defines the step item type used
|
|
1573
|
+
*/
|
|
1574
|
+
type: Components.BqStepItem['type'];
|
|
607
1575
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
608
1576
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqStepItem, never>;
|
|
609
1577
|
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>;
|
|
@@ -620,6 +1588,18 @@ export declare interface BqStepItem extends Components.BqStepItem {
|
|
|
620
1588
|
export declare class BqSteps {
|
|
621
1589
|
protected z: NgZone;
|
|
622
1590
|
protected el: HTMLElement;
|
|
1591
|
+
/**
|
|
1592
|
+
* The color of the line that connects the steps. It should be a valid declarative color token.
|
|
1593
|
+
*/
|
|
1594
|
+
dividerColor: Components.BqSteps['dividerColor'];
|
|
1595
|
+
/**
|
|
1596
|
+
* The size of the steps
|
|
1597
|
+
*/
|
|
1598
|
+
size: Components.BqSteps['size'];
|
|
1599
|
+
/**
|
|
1600
|
+
* The type of prefix element to use on the step items
|
|
1601
|
+
*/
|
|
1602
|
+
type: Components.BqSteps['type'];
|
|
623
1603
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
624
1604
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqSteps, never>;
|
|
625
1605
|
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>;
|
|
@@ -629,6 +1609,47 @@ export declare interface BqSteps extends Components.BqSteps {
|
|
|
629
1609
|
export declare class BqSwitch {
|
|
630
1610
|
protected z: NgZone;
|
|
631
1611
|
protected el: HTMLElement;
|
|
1612
|
+
/**
|
|
1613
|
+
* If true, a background will be displayed on hover
|
|
1614
|
+
*/
|
|
1615
|
+
backgroundOnHover: Components.BqSwitch['backgroundOnHover'];
|
|
1616
|
+
/**
|
|
1617
|
+
* It indicates whether if the switch is `ON` by default (when the page loads)
|
|
1618
|
+
*/
|
|
1619
|
+
checked: Components.BqSwitch['checked'];
|
|
1620
|
+
/**
|
|
1621
|
+
* If true, the switch control will be disabled and no interaction will be allowed
|
|
1622
|
+
*/
|
|
1623
|
+
disabled: Components.BqSwitch['disabled'];
|
|
1624
|
+
/**
|
|
1625
|
+
* If true, the component will take the full width space available on the parent container
|
|
1626
|
+
*/
|
|
1627
|
+
fullWidth: Components.BqSwitch['fullWidth'];
|
|
1628
|
+
/**
|
|
1629
|
+
* It indicates how to to display the on/off marks inside the control, with icons or none (default)
|
|
1630
|
+
*/
|
|
1631
|
+
innerLabel: Components.BqSwitch['innerLabel'];
|
|
1632
|
+
/**
|
|
1633
|
+
* It defines how to distribute the space between and around the control and the label text
|
|
1634
|
+
(https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content)
|
|
1635
|
+
*/
|
|
1636
|
+
justifyContent: Components.BqSwitch['justifyContent'];
|
|
1637
|
+
/**
|
|
1638
|
+
* Name of the form control. Submitted with the form as part of a name/value pair
|
|
1639
|
+
*/
|
|
1640
|
+
name: Components.BqSwitch['name'];
|
|
1641
|
+
/**
|
|
1642
|
+
* If `true`, it will indicate that the user must switch `ON` the element before the owning form can be submitted
|
|
1643
|
+
*/
|
|
1644
|
+
required: Components.BqSwitch['required'];
|
|
1645
|
+
/**
|
|
1646
|
+
* If true, the order of the control and the label text will be changed
|
|
1647
|
+
*/
|
|
1648
|
+
reverseOrder: Components.BqSwitch['reverseOrder'];
|
|
1649
|
+
/**
|
|
1650
|
+
* The input control's value, submitted as a name/value pair with form data.
|
|
1651
|
+
*/
|
|
1652
|
+
value: Components.BqSwitch['value'];
|
|
632
1653
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
633
1654
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqSwitch, never>;
|
|
634
1655
|
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>;
|
|
@@ -652,6 +1673,34 @@ export declare interface BqSwitch extends Components.BqSwitch {
|
|
|
652
1673
|
export declare class BqTab {
|
|
653
1674
|
protected z: NgZone;
|
|
654
1675
|
protected el: HTMLElement;
|
|
1676
|
+
/**
|
|
1677
|
+
* If true tab is active
|
|
1678
|
+
*/
|
|
1679
|
+
active: Components.BqTab['active'];
|
|
1680
|
+
/**
|
|
1681
|
+
* If true tab is disabled
|
|
1682
|
+
*/
|
|
1683
|
+
disabled: Components.BqTab['disabled'];
|
|
1684
|
+
/**
|
|
1685
|
+
* The size of the tab
|
|
1686
|
+
*/
|
|
1687
|
+
size: Components.BqTab['size'];
|
|
1688
|
+
/**
|
|
1689
|
+
* The direction that tab should be render
|
|
1690
|
+
*/
|
|
1691
|
+
orientation: Components.BqTab['orientation'];
|
|
1692
|
+
/**
|
|
1693
|
+
* The placement that tab should be render
|
|
1694
|
+
*/
|
|
1695
|
+
placement: Components.BqTab['placement'];
|
|
1696
|
+
/**
|
|
1697
|
+
* The id of the tab
|
|
1698
|
+
*/
|
|
1699
|
+
tabId: Components.BqTab['tabId'];
|
|
1700
|
+
/**
|
|
1701
|
+
* The tab panel id that the tab controls
|
|
1702
|
+
*/
|
|
1703
|
+
controls: Components.BqTab['controls'];
|
|
655
1704
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
656
1705
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqTab, never>;
|
|
657
1706
|
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>;
|
|
@@ -677,6 +1726,30 @@ export declare interface BqTab extends Components.BqTab {
|
|
|
677
1726
|
export declare class BqTabGroup {
|
|
678
1727
|
protected z: NgZone;
|
|
679
1728
|
protected el: HTMLElement;
|
|
1729
|
+
/**
|
|
1730
|
+
* A string representing the id of the selected tab.
|
|
1731
|
+
*/
|
|
1732
|
+
value: Components.BqTabGroup['value'];
|
|
1733
|
+
/**
|
|
1734
|
+
* The size of the tab
|
|
1735
|
+
*/
|
|
1736
|
+
size: Components.BqTabGroup['size'];
|
|
1737
|
+
/**
|
|
1738
|
+
* The direction that tab should be render
|
|
1739
|
+
*/
|
|
1740
|
+
orientation: Components.BqTabGroup['orientation'];
|
|
1741
|
+
/**
|
|
1742
|
+
* The placement that tab should be render
|
|
1743
|
+
*/
|
|
1744
|
+
placement: Components.BqTabGroup['placement'];
|
|
1745
|
+
/**
|
|
1746
|
+
* A number representing the delay value applied to bqChange event handler
|
|
1747
|
+
*/
|
|
1748
|
+
debounceTime: Components.BqTabGroup['debounceTime'];
|
|
1749
|
+
/**
|
|
1750
|
+
* If true, the underline divider below the tabs won't be shown
|
|
1751
|
+
*/
|
|
1752
|
+
disableDivider: Components.BqTabGroup['disableDivider'];
|
|
680
1753
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
681
1754
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqTabGroup, never>;
|
|
682
1755
|
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>;
|
|
@@ -693,6 +1766,42 @@ export declare interface BqTabGroup extends Components.BqTabGroup {
|
|
|
693
1766
|
export declare class BqTag {
|
|
694
1767
|
protected z: NgZone;
|
|
695
1768
|
protected el: HTMLElement;
|
|
1769
|
+
/**
|
|
1770
|
+
* The corner radius of the Tag (will override size's predefined border)
|
|
1771
|
+
*/
|
|
1772
|
+
border: Components.BqTag['border'];
|
|
1773
|
+
/**
|
|
1774
|
+
* If true, the Tag can be clickable
|
|
1775
|
+
*/
|
|
1776
|
+
clickable: Components.BqTag['clickable'];
|
|
1777
|
+
/**
|
|
1778
|
+
* The color style of the Tag
|
|
1779
|
+
*/
|
|
1780
|
+
color: Components.BqTag['color'];
|
|
1781
|
+
/**
|
|
1782
|
+
* If true, the Tag will be disabled (only if clickable = `true`, no interaction allowed)
|
|
1783
|
+
*/
|
|
1784
|
+
disabled: Components.BqTag['disabled'];
|
|
1785
|
+
/**
|
|
1786
|
+
* If true, the Tag component will hidden (only if removable = `true`)
|
|
1787
|
+
*/
|
|
1788
|
+
hidden: Components.BqTag['hidden'];
|
|
1789
|
+
/**
|
|
1790
|
+
* If true, the Tag component can be removed
|
|
1791
|
+
*/
|
|
1792
|
+
removable: Components.BqTag['removable'];
|
|
1793
|
+
/**
|
|
1794
|
+
* If true, the Tag is selected (only if clickable = `true`)
|
|
1795
|
+
*/
|
|
1796
|
+
selected: Components.BqTag['selected'];
|
|
1797
|
+
/**
|
|
1798
|
+
* The size of the Tag component
|
|
1799
|
+
*/
|
|
1800
|
+
size: Components.BqTag['size'];
|
|
1801
|
+
/**
|
|
1802
|
+
* The variant of Tag to apply on top of the variant
|
|
1803
|
+
*/
|
|
1804
|
+
variant: Components.BqTag['variant'];
|
|
696
1805
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
697
1806
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqTag, never>;
|
|
698
1807
|
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>;
|
|
@@ -722,6 +1831,93 @@ export declare interface BqTag extends Components.BqTag {
|
|
|
722
1831
|
export declare class BqTextarea {
|
|
723
1832
|
protected z: NgZone;
|
|
724
1833
|
protected el: HTMLElement;
|
|
1834
|
+
/**
|
|
1835
|
+
* Controls whether or not the textarea field should be capitalized and how.
|
|
1836
|
+
Possible values are 'off', 'none', 'on', 'sentences', 'words', and 'characters'.
|
|
1837
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize
|
|
1838
|
+
*/
|
|
1839
|
+
autocapitalize: Components.BqTextarea['autocapitalize'];
|
|
1840
|
+
/**
|
|
1841
|
+
* Specifies whether or not the textarea field should have autocomplete enabled.
|
|
1842
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values
|
|
1843
|
+
*/
|
|
1844
|
+
autocomplete: Components.BqTextarea['autocomplete'];
|
|
1845
|
+
/**
|
|
1846
|
+
* Controls whether or not the textarea field should have autocorrect enabled.
|
|
1847
|
+
Possible values are 'on' and 'off'.
|
|
1848
|
+
*/
|
|
1849
|
+
autocorrect: Components.BqTextarea['autocorrect'];
|
|
1850
|
+
/**
|
|
1851
|
+
* If true, the textarea will be focused on component render
|
|
1852
|
+
*/
|
|
1853
|
+
autofocus: Components.BqTextarea['autofocus'];
|
|
1854
|
+
/**
|
|
1855
|
+
* If `true`, the textarea will automatically grow and shrink to fit its contents.
|
|
1856
|
+
If `false`, the textarea will have a fixed height specified by the `rows` property.
|
|
1857
|
+
*/
|
|
1858
|
+
autoGrow: Components.BqTextarea['autoGrow'];
|
|
1859
|
+
/**
|
|
1860
|
+
* The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the textarea value changes.
|
|
1861
|
+
A value of 0 means no debouncing will occur.
|
|
1862
|
+
*/
|
|
1863
|
+
debounceTime: Components.BqTextarea['debounceTime'];
|
|
1864
|
+
/**
|
|
1865
|
+
* If `true`, the user cannot interact with the textarea.
|
|
1866
|
+
*/
|
|
1867
|
+
disabled: Components.BqTextarea['disabled'];
|
|
1868
|
+
/**
|
|
1869
|
+
* If `true`, it will block the user's ability to resize the textarea.
|
|
1870
|
+
*/
|
|
1871
|
+
disableResize: Components.BqTextarea['disableResize'];
|
|
1872
|
+
/**
|
|
1873
|
+
* The ID of the form that the textarea field belongs to.
|
|
1874
|
+
*/
|
|
1875
|
+
form: Components.BqTextarea['form'];
|
|
1876
|
+
/**
|
|
1877
|
+
* The maximum number of characters that can be entered into the textarea (`0`: no limit).
|
|
1878
|
+
When enabled, a character counter will be shown underneath the textarea.
|
|
1879
|
+
*/
|
|
1880
|
+
maxlength: Components.BqTextarea['maxlength'];
|
|
1881
|
+
/**
|
|
1882
|
+
* The name of the textarea element.
|
|
1883
|
+
*/
|
|
1884
|
+
name: Components.BqTextarea['name'];
|
|
1885
|
+
/**
|
|
1886
|
+
* The placeholder text to show when there is no value.
|
|
1887
|
+
*/
|
|
1888
|
+
placeholder: Components.BqTextarea['placeholder'];
|
|
1889
|
+
/**
|
|
1890
|
+
* If true, the textarea field cannot be modified.
|
|
1891
|
+
*/
|
|
1892
|
+
readonly: Components.BqTextarea['readonly'];
|
|
1893
|
+
/**
|
|
1894
|
+
* Indicates whether or not the textarea field is required to be filled out before submitting the form.
|
|
1895
|
+
*/
|
|
1896
|
+
required: Components.BqTextarea['required'];
|
|
1897
|
+
/**
|
|
1898
|
+
* The number of visible text lines for the control. It must be a positive integer.
|
|
1899
|
+
*/
|
|
1900
|
+
rows: Components.BqTextarea['rows'];
|
|
1901
|
+
/**
|
|
1902
|
+
* If true, the textarea content may be checked for spelling errors.
|
|
1903
|
+
*/
|
|
1904
|
+
spellcheck: Components.BqTextarea['spellcheck'];
|
|
1905
|
+
/**
|
|
1906
|
+
* 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:
|
|
1907
|
+
- `'none'`: No validation status is set.
|
|
1908
|
+
- `'error'`: The textarea has a validation error.
|
|
1909
|
+
- `'warning'`: The textarea has a validation warning.
|
|
1910
|
+
- `'success'`: The textarea has passed validation.
|
|
1911
|
+
*/
|
|
1912
|
+
validationStatus: Components.BqTextarea['validationStatus'];
|
|
1913
|
+
/**
|
|
1914
|
+
* The value of the textarea. It can be used to reset the textarea to a previous value.
|
|
1915
|
+
*/
|
|
1916
|
+
value: Components.BqTextarea['value'];
|
|
1917
|
+
/**
|
|
1918
|
+
* Specifies how the text in a text area is to be wrapped when submitted in a form
|
|
1919
|
+
*/
|
|
1920
|
+
wrap: Components.BqTextarea['wrap'];
|
|
725
1921
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
726
1922
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqTextarea, never>;
|
|
727
1923
|
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>;
|
|
@@ -759,6 +1955,30 @@ export declare interface BqTextarea extends Components.BqTextarea {
|
|
|
759
1955
|
export declare class BqToast {
|
|
760
1956
|
protected z: NgZone;
|
|
761
1957
|
protected el: HTMLElement;
|
|
1958
|
+
/**
|
|
1959
|
+
* The corder radius of the toast component
|
|
1960
|
+
*/
|
|
1961
|
+
border: Components.BqToast['border'];
|
|
1962
|
+
/**
|
|
1963
|
+
* Type of toast
|
|
1964
|
+
*/
|
|
1965
|
+
type: Components.BqToast['type'];
|
|
1966
|
+
/**
|
|
1967
|
+
* Placement of toast
|
|
1968
|
+
*/
|
|
1969
|
+
placement: Components.BqToast['placement'];
|
|
1970
|
+
/**
|
|
1971
|
+
* If true will hide toast icon
|
|
1972
|
+
*/
|
|
1973
|
+
hideIcon: Components.BqToast['hideIcon'];
|
|
1974
|
+
/**
|
|
1975
|
+
* If true, the toast will be shown
|
|
1976
|
+
*/
|
|
1977
|
+
open: Components.BqToast['open'];
|
|
1978
|
+
/**
|
|
1979
|
+
* The length of time, in milliseconds, after which the toast will close itself
|
|
1980
|
+
*/
|
|
1981
|
+
time: Components.BqToast['time'];
|
|
762
1982
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
763
1983
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqToast, never>;
|
|
764
1984
|
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>;
|
|
@@ -776,6 +1996,33 @@ export declare interface BqToast extends Components.BqToast {
|
|
|
776
1996
|
export declare class BqTooltip {
|
|
777
1997
|
protected z: NgZone;
|
|
778
1998
|
protected el: HTMLElement;
|
|
1999
|
+
/**
|
|
2000
|
+
* If true, the tooltip will always be visible
|
|
2001
|
+
*/
|
|
2002
|
+
alwaysVisible: Components.BqTooltip['alwaysVisible'];
|
|
2003
|
+
/**
|
|
2004
|
+
* Distance between trigger element and tooltip
|
|
2005
|
+
*/
|
|
2006
|
+
distance: Components.BqTooltip['distance'];
|
|
2007
|
+
/**
|
|
2008
|
+
* If true, the arrow on the tooltip content won't be shown
|
|
2009
|
+
*/
|
|
2010
|
+
hideArrow: Components.BqTooltip['hideArrow'];
|
|
2011
|
+
placement: Components.BqTooltip['placement'];
|
|
2012
|
+
/**
|
|
2013
|
+
* Whether the tooltip should have the same width as the trigger element
|
|
2014
|
+
(applicable only for content shorter than the trigger element)
|
|
2015
|
+
*/
|
|
2016
|
+
sameWidth: Components.BqTooltip['sameWidth'];
|
|
2017
|
+
/**
|
|
2018
|
+
* Set the action when the tooltip should be displayed, on hover (default) or click
|
|
2019
|
+
*/
|
|
2020
|
+
displayOn: Components.BqTooltip['displayOn'];
|
|
2021
|
+
/**
|
|
2022
|
+
* Indicates whether or not the tooltip is visible when the component is first rendered,
|
|
2023
|
+
and when interacting with the trigger
|
|
2024
|
+
*/
|
|
2025
|
+
visible: Components.BqTooltip['visible'];
|
|
779
2026
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
780
2027
|
static ɵfac: i0.ɵɵFactoryDeclaration<BqTooltip, never>;
|
|
781
2028
|
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>;
|