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