@heartlandone/vega-angular 1.50.1 → 2.0.0-preview-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm2020/lib/components-module.mjs +5 -5
- package/dist/esm2020/lib/stencil-generated/components.mjs +448 -304
- package/dist/esm2020/lib/stencil-generated/text-value-accessor.mjs +7 -6
- package/dist/esm2020/lib/stencil-generated/value-accessor.mjs +11 -8
- package/dist/fesm2015/heartlandone-vega-angular.mjs +458 -317
- package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/heartlandone-vega-angular.mjs +458 -317
- package/dist/fesm2020/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/lib/components-module.d.ts +1 -1
- package/dist/lib/stencil-generated/components.d.ts +370 -41
- package/dist/lib/stencil-generated/text-value-accessor.d.ts +1 -1
- package/dist/lib/stencil-generated/value-accessor.d.ts +1 -1
- package/dist/package.json +1 -1
- package/package.json +2 -2
- package/src/lib/stencil-generated/components.ts +488 -92
- package/src/lib/stencil-generated/text-value-accessor.ts +3 -2
- package/src/lib/stencil-generated/value-accessor.ts +7 -4
- package/src/scripts/stencil-post-build-script.js +37 -11
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
2
|
import { Components } from '@heartlandone/vega';
|
|
3
|
-
import type { VegaBannerViewData as IVegaBannerVegaBannerViewData } from '@heartlandone/vega/dist/types/components/vega-banner/types';
|
|
4
3
|
import type { VegaBreadcrumbItemType as IVegaBreadcrumbVegaBreadcrumbItemType } from '@heartlandone/vega/dist/types/components/vega-breadcrumb/types';
|
|
5
4
|
import type { VegaDropdownItemClickEvent as IVegaDropdownItemVegaDropdownItemClickEvent } from '@heartlandone/vega/dist/types/components/vega-dropdown/vega-dropdown-item/types';
|
|
6
5
|
import type { VegaFileOptional as IVegaImageUploaderVegaFileOptional } from '@heartlandone/vega/dist/types/components/vega-image-uploader/types';
|
|
@@ -18,6 +17,11 @@ export declare interface VegaAccordion extends Components.VegaAccordion {
|
|
|
18
17
|
* An event emitter notifying the expand event of the accordion.
|
|
19
18
|
*/
|
|
20
19
|
vegaExpand: EventEmitter<CustomEvent<boolean>>;
|
|
20
|
+
/**
|
|
21
|
+
* An event emitter notifying the expand event of the accordion.
|
|
22
|
+
expand is an attribute, so the event name here uses accordionExpand @eventSemantics namespace:native
|
|
23
|
+
*/
|
|
24
|
+
accordionExpand: EventEmitter<CustomEvent<boolean>>;
|
|
21
25
|
}
|
|
22
26
|
export declare class VegaAccordion {
|
|
23
27
|
protected z: NgZone;
|
|
@@ -40,11 +44,20 @@ export declare interface VegaAppHeaderButton extends Components.VegaAppHeaderBut
|
|
|
40
44
|
* An event emitter notifying the click event of an app header button.
|
|
41
45
|
*/
|
|
42
46
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
47
|
+
/**
|
|
48
|
+
* An event emitter notifying the click event of an app header button. @eventSemantics namespace:native
|
|
49
|
+
*/
|
|
50
|
+
click: EventEmitter<CustomEvent<any>>;
|
|
43
51
|
/**
|
|
44
52
|
* An event emitter notifying the click event of a dropdown item
|
|
45
53
|
in the app header.
|
|
46
54
|
*/
|
|
47
55
|
vegaDropdownClick: EventEmitter<CustomEvent<string>>;
|
|
56
|
+
/**
|
|
57
|
+
* An event emitter notifying the click event of a dropdown item
|
|
58
|
+
in the app header. @eventSemantics namespace:native
|
|
59
|
+
*/
|
|
60
|
+
dropdownClick: EventEmitter<CustomEvent<string>>;
|
|
48
61
|
}
|
|
49
62
|
export declare class VegaAppHeaderButton {
|
|
50
63
|
protected z: NgZone;
|
|
@@ -53,37 +66,27 @@ export declare class VegaAppHeaderButton {
|
|
|
53
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaAppHeaderButton, never>;
|
|
54
67
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaAppHeaderButton, "vega-app-header-button", never, { "avatar": "avatar"; "avatarPosition": "avatarPosition"; "dropdown": "dropdown"; "label": "label"; "selected": "selected"; "showBorder": "showBorder"; "showLabel": "showLabel"; "showMenuArrowIcon": "showMenuArrowIcon"; "size": "size"; }, {}, never, ["*"]>;
|
|
55
68
|
}
|
|
56
|
-
export declare interface
|
|
69
|
+
export declare interface VegaBackdrop extends Components.VegaBackdrop {
|
|
70
|
+
/**
|
|
71
|
+
* An event emitter notifying the click event of the backdrop.
|
|
72
|
+
*/
|
|
73
|
+
vegaClick: EventEmitter<CustomEvent<void>>;
|
|
57
74
|
}
|
|
58
|
-
export declare class
|
|
75
|
+
export declare class VegaBackdrop {
|
|
59
76
|
protected z: NgZone;
|
|
60
77
|
protected el: HTMLElement;
|
|
61
78
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
62
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
63
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
79
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaBackdrop, never>;
|
|
80
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaBackdrop, "vega-backdrop", never, { "color": "color"; "duration": "duration"; "visible": "visible"; }, {}, never, ["*"]>;
|
|
64
81
|
}
|
|
65
|
-
export declare interface
|
|
66
|
-
/**
|
|
67
|
-
* An event emitter notifying the click event of
|
|
68
|
-
the close button in the banner.
|
|
69
|
-
*/
|
|
70
|
-
vegaClose: EventEmitter<CustomEvent<IVegaBannerVegaBannerViewData>>;
|
|
71
|
-
/**
|
|
72
|
-
* An event emitter notifying the completion of the banner loading.
|
|
73
|
-
*/
|
|
74
|
-
vegaLoad: EventEmitter<CustomEvent<any>>;
|
|
75
|
-
/**
|
|
76
|
-
* An event emitter notifying the click event of
|
|
77
|
-
the Call to Action link.
|
|
78
|
-
*/
|
|
79
|
-
vegaClickCTA: EventEmitter<CustomEvent<IVegaBannerVegaBannerViewData>>;
|
|
82
|
+
export declare interface VegaBadge extends Components.VegaBadge {
|
|
80
83
|
}
|
|
81
|
-
export declare class
|
|
84
|
+
export declare class VegaBadge {
|
|
82
85
|
protected z: NgZone;
|
|
83
86
|
protected el: HTMLElement;
|
|
84
87
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
85
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
86
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
88
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaBadge, never>;
|
|
89
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaBadge, "vega-badge", never, { "bgColor": "bgColor"; "size": "size"; "text": "text"; "textColor": "textColor"; }, {}, never, ["*"]>;
|
|
87
90
|
}
|
|
88
91
|
export declare interface VegaBarChart extends Components.VegaBarChart {
|
|
89
92
|
}
|
|
@@ -108,6 +111,10 @@ export declare interface VegaBreadcrumb extends Components.VegaBreadcrumb {
|
|
|
108
111
|
* An event emitter notifying that a breadcrumb item has been clicked.
|
|
109
112
|
*/
|
|
110
113
|
vegaClick: EventEmitter<CustomEvent<IVegaBreadcrumbVegaBreadcrumbItemType>>;
|
|
114
|
+
/**
|
|
115
|
+
* An native event emitter notifying that a breadcrumb item has been clicked. @eventSemantics namespace:native
|
|
116
|
+
*/
|
|
117
|
+
click: EventEmitter<CustomEvent<IVegaBreadcrumbVegaBreadcrumbItemType>>;
|
|
111
118
|
}
|
|
112
119
|
export declare class VegaBreadcrumb {
|
|
113
120
|
protected z: NgZone;
|
|
@@ -121,6 +128,10 @@ export declare interface VegaButton extends Components.VegaButton {
|
|
|
121
128
|
* An event emitter notifying the click event of the button.
|
|
122
129
|
*/
|
|
123
130
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
131
|
+
/**
|
|
132
|
+
* An native event emitter notifying the click event of the button. @eventSemantics namespace:native
|
|
133
|
+
*/
|
|
134
|
+
click: EventEmitter<CustomEvent<any>>;
|
|
124
135
|
}
|
|
125
136
|
export declare class VegaButton {
|
|
126
137
|
protected z: NgZone;
|
|
@@ -134,6 +145,10 @@ export declare interface VegaButtonCircle extends Components.VegaButtonCircle {
|
|
|
134
145
|
* An event emitter notifying the click event of the circular button.
|
|
135
146
|
*/
|
|
136
147
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
148
|
+
/**
|
|
149
|
+
* An event emitter notifying the click event of the circular button. @eventSemantics namespace:native
|
|
150
|
+
*/
|
|
151
|
+
click: EventEmitter<CustomEvent<any>>;
|
|
137
152
|
}
|
|
138
153
|
export declare class VegaButtonCircle {
|
|
139
154
|
protected z: NgZone;
|
|
@@ -147,6 +162,10 @@ export declare interface VegaButtonLink extends Components.VegaButtonLink {
|
|
|
147
162
|
* An event emitter notifying the click event of the button.
|
|
148
163
|
*/
|
|
149
164
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
165
|
+
/**
|
|
166
|
+
* An event emitter notifying the click event of the button. @eventSemantics namespace:native
|
|
167
|
+
*/
|
|
168
|
+
click: EventEmitter<CustomEvent<any>>;
|
|
150
169
|
}
|
|
151
170
|
export declare class VegaButtonLink {
|
|
152
171
|
protected z: NgZone;
|
|
@@ -162,7 +181,7 @@ export declare class VegaCard {
|
|
|
162
181
|
protected el: HTMLElement;
|
|
163
182
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
164
183
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaCard, never>;
|
|
165
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaCard, "vega-card", never, { "backgroundColor": "backgroundColor"; "margin": "margin"; "padding": "padding"; "
|
|
184
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaCard, "vega-card", never, { "backgroundColor": "backgroundColor"; "margin": "margin"; "padding": "padding"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
166
185
|
}
|
|
167
186
|
export declare interface VegaCarousel extends Components.VegaCarousel {
|
|
168
187
|
/**
|
|
@@ -170,6 +189,11 @@ export declare interface VegaCarousel extends Components.VegaCarousel {
|
|
|
170
189
|
whether triggered programmatically or through user interaction.
|
|
171
190
|
*/
|
|
172
191
|
vegaPageUpdate: EventEmitter<CustomEvent<number>>;
|
|
192
|
+
/**
|
|
193
|
+
* A native event emitter notifying the transition of the carousel to another page,
|
|
194
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
195
|
+
*/
|
|
196
|
+
pageUpdate: EventEmitter<CustomEvent<number>>;
|
|
173
197
|
}
|
|
174
198
|
export declare class VegaCarousel {
|
|
175
199
|
protected z: NgZone;
|
|
@@ -188,6 +212,11 @@ export declare interface VegaCheckbox extends Components.VegaCheckbox {
|
|
|
188
212
|
whether triggered programmatically or through user interaction.
|
|
189
213
|
*/
|
|
190
214
|
vegaChange: EventEmitter<CustomEvent<string | boolean>>;
|
|
215
|
+
/**
|
|
216
|
+
* An event emitter notifying changes in the value of the checkbox,
|
|
217
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
218
|
+
*/
|
|
219
|
+
change: EventEmitter<CustomEvent<string | boolean>>;
|
|
191
220
|
}
|
|
192
221
|
export declare class VegaCheckbox {
|
|
193
222
|
protected z: NgZone;
|
|
@@ -204,6 +233,13 @@ export declare interface VegaCheckboxGroup extends Components.VegaCheckboxGroup
|
|
|
204
233
|
user interaction.
|
|
205
234
|
*/
|
|
206
235
|
vegaChange: EventEmitter<CustomEvent<string[]>>;
|
|
236
|
+
/**
|
|
237
|
+
* An event emitter notifying changes in the value
|
|
238
|
+
of any nested checkbox within the checkbox group,
|
|
239
|
+
whether triggered programmatically or through
|
|
240
|
+
user interaction. @eventSemantics namespace:native
|
|
241
|
+
*/
|
|
242
|
+
change: EventEmitter<CustomEvent<string[]>>;
|
|
207
243
|
/**
|
|
208
244
|
* An event emitter notifying changes in the
|
|
209
245
|
validation result of the checkbox group. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
@@ -224,12 +260,20 @@ export declare interface VegaChip extends Components.VegaChip {
|
|
|
224
260
|
This event is only dispatched when the `showCloseIcon` property is set to `true`.
|
|
225
261
|
*/
|
|
226
262
|
vegaClose: EventEmitter<CustomEvent<void>>;
|
|
263
|
+
/**
|
|
264
|
+
* An event emitter notifying the click event of the close button of the chip. @eventSemantics namespace:native
|
|
265
|
+
*/
|
|
266
|
+
close: EventEmitter<CustomEvent<void>>;
|
|
227
267
|
/**
|
|
228
268
|
* An event emitter notifying the click event of the chip.
|
|
229
269
|
|
|
230
270
|
This event is only dispatched when the `clickable` property is set to `true`.
|
|
231
271
|
*/
|
|
232
272
|
vegaClick: EventEmitter<CustomEvent<void>>;
|
|
273
|
+
/**
|
|
274
|
+
* An event emitter notifying the click event of the chip. @eventSemantics namespace:native
|
|
275
|
+
*/
|
|
276
|
+
click: EventEmitter<CustomEvent<void>>;
|
|
233
277
|
}
|
|
234
278
|
export declare class VegaChip {
|
|
235
279
|
protected z: NgZone;
|
|
@@ -244,6 +288,11 @@ export declare interface VegaColorPicker extends Components.VegaColorPicker {
|
|
|
244
288
|
whether triggered programmatically or through user interaction.
|
|
245
289
|
*/
|
|
246
290
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
291
|
+
/**
|
|
292
|
+
* An event emitter notifying changes in the value of the color picker,
|
|
293
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
294
|
+
*/
|
|
295
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
247
296
|
/**
|
|
248
297
|
* An event emitter notifying changes in the validation result of the color picker. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
249
298
|
*/
|
|
@@ -262,6 +311,11 @@ export declare interface VegaComboBox extends Components.VegaComboBox {
|
|
|
262
311
|
whether triggered programmatically or through user interaction.
|
|
263
312
|
*/
|
|
264
313
|
vegaChange: EventEmitter<CustomEvent<string[]>>;
|
|
314
|
+
/**
|
|
315
|
+
* An native event emitter notifying changes in the items of the combo box value,
|
|
316
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
317
|
+
*/
|
|
318
|
+
change: EventEmitter<CustomEvent<string[]>>;
|
|
265
319
|
/**
|
|
266
320
|
* An event emitter notifying changes in the validation result of the combo box. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
267
321
|
*/
|
|
@@ -275,11 +329,25 @@ export declare interface VegaComboBox extends Components.VegaComboBox {
|
|
|
275
329
|
The combo box _does not_ automatically add the new value to its `source` and `value`.
|
|
276
330
|
*/
|
|
277
331
|
vegaCreate: EventEmitter<CustomEvent<string>>;
|
|
332
|
+
/**
|
|
333
|
+
* An native event emitter notifying when the user has chosen to add a new value
|
|
334
|
+
to the source and value of the combo box.
|
|
335
|
+
|
|
336
|
+
The event's `detail` property contains the new value.
|
|
337
|
+
|
|
338
|
+
The combo box _does not_ automatically add the new value to its `source` and `value`. @eventSemantics namespace:native
|
|
339
|
+
*/
|
|
340
|
+
create: EventEmitter<CustomEvent<string>>;
|
|
278
341
|
/**
|
|
279
342
|
* An event emitter notifying the user's search action in the combo box,
|
|
280
343
|
but only if the `useDefaultFilter` property is set to `false`.
|
|
281
344
|
*/
|
|
282
345
|
vegaSearch: EventEmitter<CustomEvent<string>>;
|
|
346
|
+
/**
|
|
347
|
+
* An native event emitter notifying the user's search action in the combo box,
|
|
348
|
+
but only if the `useDefaultFilter` property is set to `false`. @eventSemantics namespace:native
|
|
349
|
+
*/
|
|
350
|
+
search: EventEmitter<CustomEvent<string>>;
|
|
283
351
|
}
|
|
284
352
|
export declare class VegaComboBox {
|
|
285
353
|
protected z: NgZone;
|
|
@@ -303,6 +371,11 @@ export declare interface VegaDatePicker extends Components.VegaDatePicker {
|
|
|
303
371
|
whether triggered programmatically or through user interaction.
|
|
304
372
|
*/
|
|
305
373
|
vegaChange: EventEmitter<CustomEvent<string | string[]>>;
|
|
374
|
+
/**
|
|
375
|
+
* A native event emitter notifying the change of the value in the date picker,
|
|
376
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
377
|
+
*/
|
|
378
|
+
change: EventEmitter<CustomEvent<string | string[]>>;
|
|
306
379
|
/**
|
|
307
380
|
* An event emitter notifying the change in the validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
308
381
|
*/
|
|
@@ -315,6 +388,15 @@ export declare class VegaDatePicker {
|
|
|
315
388
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaDatePicker, never>;
|
|
316
389
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaDatePicker, "vega-date-picker", never, { "allowRepick": "allowRepick"; "autoValidation": "autoValidation"; "clearButton": "clearButton"; "disabled": "disabled"; "dropdownConfig": "dropdownConfig"; "formValidation": "formValidation"; "format": "format"; "isValid": "isValid"; "label": "label"; "maxDate": "maxDate"; "minDate": "minDate"; "mode": "mode"; "placeholder": "placeholder"; "readOnly": "readOnly"; "required": "required"; "size": "size"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
317
390
|
}
|
|
391
|
+
export declare interface VegaDatePickerCalendar extends Components.VegaDatePickerCalendar {
|
|
392
|
+
}
|
|
393
|
+
export declare class VegaDatePickerCalendar {
|
|
394
|
+
protected z: NgZone;
|
|
395
|
+
protected el: HTMLElement;
|
|
396
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
397
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaDatePickerCalendar, never>;
|
|
398
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaDatePickerCalendar, "vega-date-picker-calendar", never, {}, {}, never, ["*"]>;
|
|
399
|
+
}
|
|
318
400
|
export declare interface VegaDialog extends Components.VegaDialog {
|
|
319
401
|
}
|
|
320
402
|
export declare class VegaDialog {
|
|
@@ -325,26 +407,38 @@ export declare class VegaDialog {
|
|
|
325
407
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaDialog, "vega-dialog", never, { "cancelButton": "cancelButton"; "content": "content"; "dialogTitle": "dialogTitle"; "handleCancel": "handleCancel"; "handleOk": "handleOk"; "modalProps": "modalProps"; "okButton": "okButton"; "showCancel": "showCancel"; "type": "type"; }, {}, never, ["*"]>;
|
|
326
408
|
}
|
|
327
409
|
export declare interface VegaDropdown extends Components.VegaDropdown {
|
|
328
|
-
/**
|
|
329
|
-
* @deprecated This property will be removed soon *
|
|
330
|
-
*/
|
|
331
|
-
vegaClick: EventEmitter<CustomEvent<string | string[]>>;
|
|
332
410
|
/**
|
|
333
411
|
* An event emitter notifying that a dropdown item has been clicked.
|
|
334
412
|
|
|
335
413
|
The event's `detail` property contains the key of the clicked item.
|
|
336
414
|
*/
|
|
337
415
|
vegaDropdownClick: EventEmitter<CustomEvent<string>>;
|
|
416
|
+
/**
|
|
417
|
+
* An event emitter notifying that a dropdown item has been clicked.
|
|
418
|
+
|
|
419
|
+
The event's `detail` property contains the key of the clicked item. @eventSemantics namespace:native
|
|
420
|
+
*/
|
|
421
|
+
dropdownClick: EventEmitter<CustomEvent<string>>;
|
|
338
422
|
/**
|
|
339
423
|
* An event emitter notifying that the dropdown has been displayed,
|
|
340
424
|
either programmatically or via user interaction.
|
|
341
425
|
*/
|
|
342
426
|
vegaShow: EventEmitter<CustomEvent<string>>;
|
|
427
|
+
/**
|
|
428
|
+
* An native event emitter notifying that the dropdown has been displayed,
|
|
429
|
+
either programmatically or via user interaction. The name is not `show` because already has a method `show`. @eventSemantics namespace:native
|
|
430
|
+
*/
|
|
431
|
+
dropdownShow: EventEmitter<CustomEvent<string>>;
|
|
343
432
|
/**
|
|
344
433
|
* Event emitter notifying that the dropdown has been dismissed,
|
|
345
434
|
either programmatically or via user interaction.
|
|
346
435
|
*/
|
|
347
436
|
vegaHide: EventEmitter<CustomEvent<string>>;
|
|
437
|
+
/**
|
|
438
|
+
* An native event emitter notifying that the dropdown has been dismissed,
|
|
439
|
+
either programmatically or via user interaction. The name is not `hide` because already has a method `hide`. @eventSemantics namespace:native
|
|
440
|
+
*/
|
|
441
|
+
dropdownHide: EventEmitter<CustomEvent<string>>;
|
|
348
442
|
/**
|
|
349
443
|
* An event emitter notifying the addition of a new value
|
|
350
444
|
to the dropdown source list.
|
|
@@ -354,11 +448,25 @@ export declare interface VegaDropdown extends Components.VegaDropdown {
|
|
|
354
448
|
The dropdown _does not_ automatically add the new value to the source list.
|
|
355
449
|
*/
|
|
356
450
|
vegaCreate: EventEmitter<CustomEvent<string>>;
|
|
451
|
+
/**
|
|
452
|
+
* An event emitter notifying the addition of a new value
|
|
453
|
+
to the dropdown source list.
|
|
454
|
+
|
|
455
|
+
The event's `detail` property contains the new value.
|
|
456
|
+
|
|
457
|
+
The dropdown _does not_ automatically add the new value to the source list. @eventSemantics namespace:native
|
|
458
|
+
*/
|
|
459
|
+
create: EventEmitter<CustomEvent<string>>;
|
|
357
460
|
/**
|
|
358
461
|
* An event emitter notifying the search event in the dropdown,
|
|
359
462
|
but only if `useDefaultFilter` is set to `false`.
|
|
360
463
|
*/
|
|
361
464
|
vegaSearch: EventEmitter<CustomEvent<string>>;
|
|
465
|
+
/**
|
|
466
|
+
* An event emitter notifying the search event in the dropdown,
|
|
467
|
+
but only if `useDefaultFilter` is set to `false`. The name is not `search` because already has a method `search`. @eventSemantics namespace:native
|
|
468
|
+
*/
|
|
469
|
+
dropdownSearch: EventEmitter<CustomEvent<string>>;
|
|
362
470
|
}
|
|
363
471
|
export declare class VegaDropdown {
|
|
364
472
|
protected z: NgZone;
|
|
@@ -367,6 +475,15 @@ export declare class VegaDropdown {
|
|
|
367
475
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaDropdown, never>;
|
|
368
476
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaDropdown, "vega-dropdown", never, { "alignment": "alignment"; "caseSensitive": "caseSensitive"; "dynamicOption": "dynamicOption"; "isLoading": "isLoading"; "itemDisplayRule": "itemDisplayRule"; "matchContainerHeight": "matchContainerHeight"; "matchTargetWidth": "matchTargetWidth"; "maxHeight": "maxHeight"; "maxWidth": "maxWidth"; "minWidth": "minWidth"; "placement": "placement"; "positionRelativeTo": "positionRelativeTo"; "prefixIconSlot": "prefixIconSlot"; "searchable": "searchable"; "selectType": "selectType"; "selectedSourceKey": "selectedSourceKey"; "size": "size"; "source": "source"; "translocation": "translocation"; "trigger": "trigger"; "useDefaultFilter": "useDefaultFilter"; }, {}, never, ["*"]>;
|
|
369
477
|
}
|
|
478
|
+
export declare interface VegaDropdownContentBox extends Components.VegaDropdownContentBox {
|
|
479
|
+
}
|
|
480
|
+
export declare class VegaDropdownContentBox {
|
|
481
|
+
protected z: NgZone;
|
|
482
|
+
protected el: HTMLElement;
|
|
483
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
484
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaDropdownContentBox, never>;
|
|
485
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaDropdownContentBox, "vega-dropdown-content-box", never, {}, {}, never, ["*"]>;
|
|
486
|
+
}
|
|
370
487
|
export declare interface VegaDropdownGroup extends Components.VegaDropdownGroup {
|
|
371
488
|
}
|
|
372
489
|
export declare class VegaDropdownGroup {
|
|
@@ -381,6 +498,10 @@ export declare interface VegaDropdownItem extends Components.VegaDropdownItem {
|
|
|
381
498
|
* An event emitter notifying the dropdown item has been clicked.
|
|
382
499
|
*/
|
|
383
500
|
vegaClick: EventEmitter<CustomEvent<IVegaDropdownItemVegaDropdownItemClickEvent>>;
|
|
501
|
+
/**
|
|
502
|
+
* An native event emitter notifying the dropdown item has been clicked. @eventSemantics namespace:native
|
|
503
|
+
*/
|
|
504
|
+
click: EventEmitter<CustomEvent<IVegaDropdownItemVegaDropdownItemClickEvent>>;
|
|
384
505
|
}
|
|
385
506
|
export declare class VegaDropdownItem {
|
|
386
507
|
protected z: NgZone;
|
|
@@ -418,7 +539,7 @@ export declare class VegaFlex {
|
|
|
418
539
|
protected el: HTMLElement;
|
|
419
540
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
420
541
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaFlex, never>;
|
|
421
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaFlex, "vega-flex", never, { "
|
|
542
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaFlex, "vega-flex", never, { "alignItems": "alignItems"; "direction": "direction"; "gap": "gap"; "justifyContent": "justifyContent"; "margin": "margin"; }, {}, never, ["*"]>;
|
|
422
543
|
}
|
|
423
544
|
export declare interface VegaFont extends Components.VegaFont {
|
|
424
545
|
}
|
|
@@ -443,14 +564,26 @@ export declare interface VegaForm extends Components.VegaForm {
|
|
|
443
564
|
* An event emitter notifying the change in the validation result.
|
|
444
565
|
*/
|
|
445
566
|
vegaValidate: EventEmitter<CustomEvent<boolean>>;
|
|
567
|
+
/**
|
|
568
|
+
* An event emitter notifying the change in the validation result. @eventSemantics namespace:native
|
|
569
|
+
*/
|
|
570
|
+
validate: EventEmitter<CustomEvent<boolean>>;
|
|
446
571
|
/**
|
|
447
572
|
* An event emitter notifying the submission of the form.
|
|
448
573
|
*/
|
|
449
574
|
vegaFormSubmit: EventEmitter<CustomEvent<unknown>>;
|
|
575
|
+
/**
|
|
576
|
+
* An event emitter notifying the submission of the form. @eventSemantics namespace:native
|
|
577
|
+
*/
|
|
578
|
+
formSubmit: EventEmitter<CustomEvent<unknown>>;
|
|
450
579
|
/**
|
|
451
580
|
* An event emitter notifying the reset of the form.
|
|
452
581
|
*/
|
|
453
582
|
vegaFormReset: EventEmitter<CustomEvent<any>>;
|
|
583
|
+
/**
|
|
584
|
+
* An event emitter notifying the reset of the form. @eventSemantics namespace:native
|
|
585
|
+
*/
|
|
586
|
+
formReset: EventEmitter<CustomEvent<any>>;
|
|
454
587
|
}
|
|
455
588
|
export declare class VegaForm {
|
|
456
589
|
protected z: NgZone;
|
|
@@ -491,14 +624,26 @@ export declare interface VegaImageUploader extends Components.VegaImageUploader
|
|
|
491
624
|
* An event emitter notifying a value change.
|
|
492
625
|
*/
|
|
493
626
|
vegaChange: EventEmitter<CustomEvent<IVegaImageUploaderVegaFileOptional>>;
|
|
627
|
+
/**
|
|
628
|
+
* An event emitter notifying a value change. @eventSemantics namespace:native
|
|
629
|
+
*/
|
|
630
|
+
change: EventEmitter<CustomEvent<any>>;
|
|
494
631
|
/**
|
|
495
632
|
* An event emitter notifying the removal of a value.
|
|
496
633
|
*/
|
|
497
634
|
vegaRemove: EventEmitter<CustomEvent<any>>;
|
|
635
|
+
/**
|
|
636
|
+
* An event emitter notifying the removal of a value. @eventSemantics namespace:native
|
|
637
|
+
*/
|
|
638
|
+
remove: EventEmitter<CustomEvent<any>>;
|
|
498
639
|
/**
|
|
499
640
|
* An event emitter notifying the cancellation of an uploading event.
|
|
500
641
|
*/
|
|
501
642
|
vegaCancel: EventEmitter<CustomEvent<any>>;
|
|
643
|
+
/**
|
|
644
|
+
* An event emitter notifying the removal of a value. @eventSemantics namespace:native
|
|
645
|
+
*/
|
|
646
|
+
cancel: EventEmitter<CustomEvent<any>>;
|
|
502
647
|
/**
|
|
503
648
|
* An event emitter notifying the change in the validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
504
649
|
*/
|
|
@@ -516,6 +661,10 @@ export declare interface VegaInput extends Components.VegaInput {
|
|
|
516
661
|
* An event emitter notifying a value change.
|
|
517
662
|
*/
|
|
518
663
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
664
|
+
/**
|
|
665
|
+
* An native event emitter notifying a value change. @eventSemantics namespace:native
|
|
666
|
+
*/
|
|
667
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
519
668
|
/**
|
|
520
669
|
* An event emitter notifying the change in the validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
521
670
|
*/
|
|
@@ -524,10 +673,18 @@ export declare interface VegaInput extends Components.VegaInput {
|
|
|
524
673
|
* An event emitter notifying the blur of the inner input element.
|
|
525
674
|
*/
|
|
526
675
|
vegaBlur: EventEmitter<CustomEvent<undefined>>;
|
|
676
|
+
/**
|
|
677
|
+
* An native event emitter notifying the blur of the inner input element. @eventSemantics namespace:native
|
|
678
|
+
*/
|
|
679
|
+
blur: EventEmitter<CustomEvent<undefined>>;
|
|
527
680
|
/**
|
|
528
681
|
* An event emitter notifying the focus of the inner input element.
|
|
529
682
|
*/
|
|
530
683
|
vegaFocus: EventEmitter<CustomEvent<undefined>>;
|
|
684
|
+
/**
|
|
685
|
+
* An native event emitter notifying the focus of the inner input element. @eventSemantics namespace:native
|
|
686
|
+
*/
|
|
687
|
+
focus: EventEmitter<CustomEvent<undefined>>;
|
|
531
688
|
}
|
|
532
689
|
export declare class VegaInput {
|
|
533
690
|
protected z: NgZone;
|
|
@@ -545,14 +702,26 @@ export declare interface VegaInputCreditCard extends Components.VegaInputCreditC
|
|
|
545
702
|
* An event emitter notifying a value change.
|
|
546
703
|
*/
|
|
547
704
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
705
|
+
/**
|
|
706
|
+
* A native change event emitter notifying a value change. @eventSemantics namespace:native
|
|
707
|
+
*/
|
|
708
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
548
709
|
/**
|
|
549
710
|
* An event emitter notifying the blur event of the credit card element.
|
|
550
711
|
*/
|
|
551
712
|
vegaBlur: EventEmitter<CustomEvent<undefined>>;
|
|
713
|
+
/**
|
|
714
|
+
* A native event emitter notifying the blur event of the credit card element. @eventSemantics namespace:native
|
|
715
|
+
*/
|
|
716
|
+
blur: EventEmitter<CustomEvent<undefined>>;
|
|
552
717
|
/**
|
|
553
718
|
* An event emitter notifying the focus of the credit card element.
|
|
554
719
|
*/
|
|
555
720
|
vegaFocus: EventEmitter<CustomEvent<undefined>>;
|
|
721
|
+
/**
|
|
722
|
+
* A native event emitter notifying the focus of the credit card element. @eventSemantics namespace:native
|
|
723
|
+
*/
|
|
724
|
+
focus: EventEmitter<CustomEvent<undefined>>;
|
|
556
725
|
}
|
|
557
726
|
export declare class VegaInputCreditCard {
|
|
558
727
|
protected z: NgZone;
|
|
@@ -566,6 +735,10 @@ export declare interface VegaInputSelect extends Components.VegaInputSelect {
|
|
|
566
735
|
* An event emitter notifying the change of the select value.
|
|
567
736
|
*/
|
|
568
737
|
vegaChange: EventEmitter<CustomEvent<IVegaInputSelectSelectValueType<IVegaInputSelectSelectType>>>;
|
|
738
|
+
/**
|
|
739
|
+
* An native event emitter notifying the change of the select value. @eventSemantics namespace:native
|
|
740
|
+
*/
|
|
741
|
+
change: EventEmitter<CustomEvent<IVegaInputSelectSelectValueType<IVegaInputSelectSelectType>>>;
|
|
569
742
|
/**
|
|
570
743
|
* An event emitter notifying the change in the validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
571
744
|
*/
|
|
@@ -574,6 +747,10 @@ export declare interface VegaInputSelect extends Components.VegaInputSelect {
|
|
|
574
747
|
* An event emitter notifying the search of the dropdown.
|
|
575
748
|
*/
|
|
576
749
|
vegaSearch: EventEmitter<CustomEvent<string>>;
|
|
750
|
+
/**
|
|
751
|
+
* An event emitter notifying the search of the dropdown. @eventSemantics namespace:native
|
|
752
|
+
*/
|
|
753
|
+
search: EventEmitter<CustomEvent<string>>;
|
|
577
754
|
}
|
|
578
755
|
export declare class VegaInputSelect {
|
|
579
756
|
protected z: NgZone;
|
|
@@ -587,6 +764,10 @@ export declare interface VegaItemToggle extends Components.VegaItemToggle {
|
|
|
587
764
|
* An event emitter notifying an item toggle event.
|
|
588
765
|
*/
|
|
589
766
|
vegaToggleStatus: EventEmitter<CustomEvent<boolean>>;
|
|
767
|
+
/**
|
|
768
|
+
* A native event emitter notifying an item toggle event. @eventSemantics namespace:native
|
|
769
|
+
*/
|
|
770
|
+
toggleStatus: EventEmitter<CustomEvent<boolean>>;
|
|
590
771
|
}
|
|
591
772
|
export declare class VegaItemToggle {
|
|
592
773
|
protected z: NgZone;
|
|
@@ -600,6 +781,10 @@ export declare interface VegaLeftNav extends Components.VegaLeftNav {
|
|
|
600
781
|
* An event emitter notifying that the left-nav's open state has changed.
|
|
601
782
|
*/
|
|
602
783
|
vegaStateUpdate: EventEmitter<CustomEvent<string>>;
|
|
784
|
+
/**
|
|
785
|
+
* A native event emitter notifying that the left-nav's open state has changed. @eventSemantics namespace:native
|
|
786
|
+
*/
|
|
787
|
+
stateUpdate: EventEmitter<CustomEvent<string>>;
|
|
603
788
|
}
|
|
604
789
|
export declare class VegaLeftNav {
|
|
605
790
|
protected z: NgZone;
|
|
@@ -613,6 +798,10 @@ export declare interface VegaLeftNavGroup extends Components.VegaLeftNavGroup {
|
|
|
613
798
|
* event emitter used for notifying consumers the click event
|
|
614
799
|
*/
|
|
615
800
|
vegaGroupClick: EventEmitter<CustomEvent<string>>;
|
|
801
|
+
/**
|
|
802
|
+
* A native event emitter used for notifying consumers the click event @eventSemantics namespace:native
|
|
803
|
+
*/
|
|
804
|
+
groupClick: EventEmitter<CustomEvent<string>>;
|
|
616
805
|
}
|
|
617
806
|
export declare class VegaLeftNavGroup {
|
|
618
807
|
protected z: NgZone;
|
|
@@ -626,6 +815,10 @@ export declare interface VegaLeftNavLink extends Components.VegaLeftNavLink {
|
|
|
626
815
|
* event emitter used for notifying consumers the click event
|
|
627
816
|
*/
|
|
628
817
|
vegaMenuClick: EventEmitter<CustomEvent<any>>;
|
|
818
|
+
/**
|
|
819
|
+
* event emitter used for notifying consumers the click event @eventSemantics namespace:native
|
|
820
|
+
*/
|
|
821
|
+
menuClick: EventEmitter<CustomEvent<any>>;
|
|
629
822
|
}
|
|
630
823
|
export declare class VegaLeftNavLink {
|
|
631
824
|
protected z: NgZone;
|
|
@@ -652,6 +845,15 @@ export declare class VegaLineChart {
|
|
|
652
845
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaLineChart, never>;
|
|
653
846
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaLineChart, "vega-line-chart", never, { "options": "options"; }, {}, never, ["*"]>;
|
|
654
847
|
}
|
|
848
|
+
export declare interface VegaLoaderWrapper extends Components.VegaLoaderWrapper {
|
|
849
|
+
}
|
|
850
|
+
export declare class VegaLoaderWrapper {
|
|
851
|
+
protected z: NgZone;
|
|
852
|
+
protected el: HTMLElement;
|
|
853
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
854
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaLoaderWrapper, never>;
|
|
855
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaLoaderWrapper, "vega-loader-wrapper", never, {}, {}, never, ["*"]>;
|
|
856
|
+
}
|
|
655
857
|
export declare interface VegaLoadingIndicator extends Components.VegaLoadingIndicator {
|
|
656
858
|
}
|
|
657
859
|
export declare class VegaLoadingIndicator {
|
|
@@ -666,10 +868,18 @@ export declare interface VegaModal extends Components.VegaModal {
|
|
|
666
868
|
* An event emitter notifying the modal close event.
|
|
667
869
|
*/
|
|
668
870
|
vegaClose: EventEmitter<CustomEvent<any>>;
|
|
871
|
+
/**
|
|
872
|
+
* An event emitter notifying the modal close event. @eventSemantics namespace:native
|
|
873
|
+
*/
|
|
874
|
+
close: EventEmitter<CustomEvent<any>>;
|
|
669
875
|
/**
|
|
670
876
|
* An event emitter notifying the modal open event.
|
|
671
877
|
*/
|
|
672
878
|
vegaOpen: EventEmitter<CustomEvent<any>>;
|
|
879
|
+
/**
|
|
880
|
+
* An native event emitter notifying the modal open event. The event name is not `open` because already has a property `open` @eventSemantics namespace:native
|
|
881
|
+
*/
|
|
882
|
+
modalOpen: EventEmitter<CustomEvent<any>>;
|
|
673
883
|
}
|
|
674
884
|
export declare class VegaModal {
|
|
675
885
|
protected z: NgZone;
|
|
@@ -687,34 +897,43 @@ export declare class VegaNavCard {
|
|
|
687
897
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaNavCard, never>;
|
|
688
898
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaNavCard, "vega-nav-card", never, { "maxHeight": "maxHeight"; "source": "source"; }, {}, never, ["*"]>;
|
|
689
899
|
}
|
|
690
|
-
export declare interface
|
|
900
|
+
export declare interface VegaPageNotification extends Components.VegaPageNotification {
|
|
691
901
|
}
|
|
692
|
-
export declare class
|
|
902
|
+
export declare class VegaPageNotification {
|
|
693
903
|
protected z: NgZone;
|
|
694
904
|
protected el: HTMLElement;
|
|
695
905
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
696
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
697
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
906
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaPageNotification, never>;
|
|
907
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaPageNotification, "vega-page-notification", never, { "actionButtons": "actionButtons"; "duration": "duration"; "message": "message"; "notificationTitle": "notificationTitle"; "showCloseButton": "showCloseButton"; "type": "type"; }, {}, never, ["*"]>;
|
|
698
908
|
}
|
|
699
|
-
export declare interface
|
|
909
|
+
export declare interface VegaPageNotificationList extends Components.VegaPageNotificationList {
|
|
700
910
|
}
|
|
701
|
-
export declare class
|
|
911
|
+
export declare class VegaPageNotificationList {
|
|
702
912
|
protected z: NgZone;
|
|
703
913
|
protected el: HTMLElement;
|
|
704
914
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
705
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
706
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
915
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaPageNotificationList, never>;
|
|
916
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaPageNotificationList, "vega-page-notification-list", never, {}, {}, never, ["*"]>;
|
|
707
917
|
}
|
|
708
918
|
export declare interface VegaPagination extends Components.VegaPagination {
|
|
709
919
|
/**
|
|
710
920
|
* An event emitter notifying the current page change.
|
|
711
921
|
*/
|
|
712
922
|
vegaChange: EventEmitter<CustomEvent<number>>;
|
|
923
|
+
/**
|
|
924
|
+
* An event emitter notifying the current page change. @eventSemantics namespace:native
|
|
925
|
+
*/
|
|
926
|
+
change: EventEmitter<CustomEvent<number>>;
|
|
713
927
|
/**
|
|
714
928
|
* An event emitter notifying a change in the number of
|
|
715
929
|
data items displayed per page.
|
|
716
930
|
*/
|
|
717
931
|
vegaPageSizeChange: EventEmitter<CustomEvent<number>>;
|
|
932
|
+
/**
|
|
933
|
+
* An event emitter notifying a change in the number of
|
|
934
|
+
data items displayed per page. @eventSemantics namespace:native
|
|
935
|
+
*/
|
|
936
|
+
pageSizeChange: EventEmitter<CustomEvent<number>>;
|
|
718
937
|
}
|
|
719
938
|
export declare class VegaPagination {
|
|
720
939
|
protected z: NgZone;
|
|
@@ -737,10 +956,18 @@ export declare interface VegaPopover extends Components.VegaPopover {
|
|
|
737
956
|
* An event emitter notifying the popover show event.
|
|
738
957
|
*/
|
|
739
958
|
vegaPopoverShow: EventEmitter<CustomEvent<string>>;
|
|
959
|
+
/**
|
|
960
|
+
* A native event emitter notifying the popover show event. @eventSemantics namespace:native
|
|
961
|
+
*/
|
|
962
|
+
popoverShow: EventEmitter<CustomEvent<string>>;
|
|
740
963
|
/**
|
|
741
964
|
* An event emitter notifying the popover hide event.
|
|
742
965
|
*/
|
|
743
966
|
vegaPopoverHide: EventEmitter<CustomEvent<string>>;
|
|
967
|
+
/**
|
|
968
|
+
* A native event emitter notifying the popover hide event. @eventSemantics namespace:native
|
|
969
|
+
*/
|
|
970
|
+
popoverHide: EventEmitter<CustomEvent<string>>;
|
|
744
971
|
}
|
|
745
972
|
export declare class VegaPopover {
|
|
746
973
|
protected z: NgZone;
|
|
@@ -749,11 +976,24 @@ export declare class VegaPopover {
|
|
|
749
976
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaPopover, never>;
|
|
750
977
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaPopover, "vega-popover", never, { "alignment": "alignment"; "placement": "placement"; "positionRelativeTo": "positionRelativeTo"; "size": "size"; }, {}, never, ["*"]>;
|
|
751
978
|
}
|
|
979
|
+
export declare interface VegaPopoverContentBox extends Components.VegaPopoverContentBox {
|
|
980
|
+
}
|
|
981
|
+
export declare class VegaPopoverContentBox {
|
|
982
|
+
protected z: NgZone;
|
|
983
|
+
protected el: HTMLElement;
|
|
984
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
985
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaPopoverContentBox, never>;
|
|
986
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaPopoverContentBox, "vega-popover-content-box", never, {}, {}, never, ["*"]>;
|
|
987
|
+
}
|
|
752
988
|
export declare interface VegaProgressTracker extends Components.VegaProgressTracker {
|
|
753
989
|
/**
|
|
754
990
|
* An event emitter notifying that the current step has changed.
|
|
755
991
|
*/
|
|
756
992
|
vegaCurrentStepUpdate: EventEmitter<CustomEvent<string>>;
|
|
993
|
+
/**
|
|
994
|
+
* A native event emitter notifying that the current step has changed. @eventSemantics namespace:native
|
|
995
|
+
*/
|
|
996
|
+
currentStepUpdate: EventEmitter<CustomEvent<string>>;
|
|
757
997
|
}
|
|
758
998
|
export declare class VegaProgressTracker {
|
|
759
999
|
protected z: NgZone;
|
|
@@ -767,15 +1007,28 @@ export declare interface VegaRadio extends Components.VegaRadio {
|
|
|
767
1007
|
* An event emitter notifying the focus event of the radio input.
|
|
768
1008
|
*/
|
|
769
1009
|
vegaFocus: EventEmitter<CustomEvent<any>>;
|
|
1010
|
+
/**
|
|
1011
|
+
* An event emitter notifying the focus event of the radio input. @eventSemantics namespace:native
|
|
1012
|
+
*/
|
|
1013
|
+
focus: EventEmitter<CustomEvent<any>>;
|
|
770
1014
|
/**
|
|
771
1015
|
* An event emitter notifying the blur event of the radio input.
|
|
772
1016
|
*/
|
|
773
1017
|
vegaBlur: EventEmitter<CustomEvent<any>>;
|
|
1018
|
+
/**
|
|
1019
|
+
* An event emitter notifying the blur event of the radio input. @eventSemantics namespace:native
|
|
1020
|
+
*/
|
|
1021
|
+
blur: EventEmitter<CustomEvent<any>>;
|
|
774
1022
|
/**
|
|
775
1023
|
* An event emitter notifying the change in the check status
|
|
776
1024
|
of the radio input.
|
|
777
1025
|
*/
|
|
778
1026
|
vegaChange: EventEmitter<CustomEvent<boolean>>;
|
|
1027
|
+
/**
|
|
1028
|
+
* An event emitter notifying the change in the check status
|
|
1029
|
+
of the radio input. @eventSemantics namespace:native
|
|
1030
|
+
*/
|
|
1031
|
+
change: EventEmitter<CustomEvent<boolean>>;
|
|
779
1032
|
}
|
|
780
1033
|
export declare class VegaRadio {
|
|
781
1034
|
protected z: NgZone;
|
|
@@ -790,6 +1043,11 @@ export declare interface VegaRadioGroup extends Components.VegaRadioGroup {
|
|
|
790
1043
|
checked radio button in the radio group.
|
|
791
1044
|
*/
|
|
792
1045
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1046
|
+
/**
|
|
1047
|
+
* An event emitter notifying the change of the
|
|
1048
|
+
checked radio button in the radio group. @eventSemantics namespace:native
|
|
1049
|
+
*/
|
|
1050
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
793
1051
|
/**
|
|
794
1052
|
* An event emitter notifying the change in the
|
|
795
1053
|
validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
@@ -849,10 +1107,13 @@ export declare class VegaSlotContainer {
|
|
|
849
1107
|
}
|
|
850
1108
|
export declare interface VegaStepper extends Components.VegaStepper {
|
|
851
1109
|
/**
|
|
852
|
-
* An event emitter notifying changes in the value of
|
|
853
|
-
the stepper component.
|
|
1110
|
+
* An event emitter notifying changes in the value of the stepper component.
|
|
854
1111
|
*/
|
|
855
1112
|
vegaChange: EventEmitter<CustomEvent<number>>;
|
|
1113
|
+
/**
|
|
1114
|
+
* An event emitter notifying changes in the value of the stepper component. @eventSemantics namespace:native
|
|
1115
|
+
*/
|
|
1116
|
+
change: EventEmitter<CustomEvent<number>>;
|
|
856
1117
|
/**
|
|
857
1118
|
* An event emitter notifying changes in the validation
|
|
858
1119
|
result of the stepper component. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
@@ -872,6 +1133,11 @@ export declare interface VegaTabGroup extends Components.VegaTabGroup {
|
|
|
872
1133
|
in the tab group.
|
|
873
1134
|
*/
|
|
874
1135
|
vegaClick: EventEmitter<CustomEvent<string>>;
|
|
1136
|
+
/**
|
|
1137
|
+
* A native event emitter notifying the click event of a tab
|
|
1138
|
+
in the tab group. @eventSemantics namespace:native
|
|
1139
|
+
*/
|
|
1140
|
+
click: EventEmitter<CustomEvent<string>>;
|
|
875
1141
|
}
|
|
876
1142
|
export declare class VegaTabGroup {
|
|
877
1143
|
protected z: NgZone;
|
|
@@ -894,21 +1160,40 @@ export declare interface VegaTable extends Components.VegaTable {
|
|
|
894
1160
|
* An event emitter notifying changes in the table data.
|
|
895
1161
|
*/
|
|
896
1162
|
vegaChange: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;
|
|
1163
|
+
/**
|
|
1164
|
+
* An event emitter notifying changes in the table data. @eventSemantics namespace:native
|
|
1165
|
+
*/
|
|
1166
|
+
change: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;
|
|
897
1167
|
/**
|
|
898
1168
|
* An event emitter notifying the click event of a row
|
|
899
1169
|
in the table.
|
|
900
1170
|
*/
|
|
901
1171
|
vegaRowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;
|
|
1172
|
+
/**
|
|
1173
|
+
* An event emitter notifying the click event of a row
|
|
1174
|
+
in the table. @eventSemantics namespace:native
|
|
1175
|
+
*/
|
|
1176
|
+
rowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;
|
|
902
1177
|
/**
|
|
903
1178
|
* An event emitter notifying the selection or deselection
|
|
904
1179
|
of a row in the table.
|
|
905
1180
|
*/
|
|
906
1181
|
vegaSelectChange: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectProp>>;
|
|
1182
|
+
/**
|
|
1183
|
+
* An event emitter notifying the selection or deselection
|
|
1184
|
+
of a row in the table. @eventSemantics namespace:native
|
|
1185
|
+
*/
|
|
1186
|
+
selectChange: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectProp>>;
|
|
907
1187
|
/**
|
|
908
1188
|
* An event emitter notifying changes in the selection of checkboxes,
|
|
909
1189
|
particularly the "Select All" checkbox in the table header.
|
|
910
1190
|
*/
|
|
911
1191
|
vegaSelectAllChange: EventEmitter<CustomEvent<IVegaTableVegaTableSelectAllProp>>;
|
|
1192
|
+
/**
|
|
1193
|
+
* An event emitter notifying changes in the selection of checkboxes,
|
|
1194
|
+
particularly the "Select All" checkbox in the table header. @eventSemantics namespace:native
|
|
1195
|
+
*/
|
|
1196
|
+
selectAllChange: EventEmitter<CustomEvent<IVegaTableVegaTableSelectAllProp>>;
|
|
912
1197
|
}
|
|
913
1198
|
export declare class VegaTable {
|
|
914
1199
|
protected z: NgZone;
|
|
@@ -933,7 +1218,7 @@ export declare class VegaTableCell {
|
|
|
933
1218
|
protected el: HTMLElement;
|
|
934
1219
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
935
1220
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaTableCell, never>;
|
|
936
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTableCell, "vega-table-cell", never, { "breakpoint": "breakpoint"; "
|
|
1221
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTableCell, "vega-table-cell", never, { "breakpoint": "breakpoint"; "overflow": "overflow"; "textAlign": "textAlign"; "width": "width"; }, {}, never, ["*"]>;
|
|
937
1222
|
}
|
|
938
1223
|
export declare interface VegaTableExpandRow extends Components.VegaTableExpandRow {
|
|
939
1224
|
}
|
|
@@ -958,6 +1243,10 @@ export declare interface VegaTableHeadCell extends Components.VegaTableHeadCell
|
|
|
958
1243
|
* An event emitter notifying that the head cell has been clicked.
|
|
959
1244
|
*/
|
|
960
1245
|
vegaClick: EventEmitter<CustomEvent<IVegaTableHeadCellVegaTableHeadCellClickEvent>>;
|
|
1246
|
+
/**
|
|
1247
|
+
* An event emitter notifying that the head cell has been clicked. @eventSemantics namespace:native
|
|
1248
|
+
*/
|
|
1249
|
+
click: EventEmitter<CustomEvent<IVegaTableHeadCellVegaTableHeadCellClickEvent>>;
|
|
961
1250
|
}
|
|
962
1251
|
export declare class VegaTableHeadCell {
|
|
963
1252
|
protected z: NgZone;
|
|
@@ -980,6 +1269,10 @@ export declare interface VegaTableRow extends Components.VegaTableRow {
|
|
|
980
1269
|
* An event emitter notifying that the row has been clicked.
|
|
981
1270
|
*/
|
|
982
1271
|
vegaClick: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
|
|
1272
|
+
/**
|
|
1273
|
+
* An event emitter notifying that the row has been clicked. @eventSemantics namespace:native
|
|
1274
|
+
*/
|
|
1275
|
+
click: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
|
|
983
1276
|
}
|
|
984
1277
|
export declare class VegaTableRow {
|
|
985
1278
|
protected z: NgZone;
|
|
@@ -1003,6 +1296,11 @@ export declare interface VegaTextarea extends Components.VegaTextarea {
|
|
|
1003
1296
|
of the text area.
|
|
1004
1297
|
*/
|
|
1005
1298
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1299
|
+
/**
|
|
1300
|
+
* An event emitter notifying about changes in the value
|
|
1301
|
+
of the text area. @eventSemantics namespace:native
|
|
1302
|
+
*/
|
|
1303
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
1006
1304
|
/**
|
|
1007
1305
|
* An event emitter notifying changes in the validation result
|
|
1008
1306
|
of the text area. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
@@ -1013,6 +1311,11 @@ export declare interface VegaTextarea extends Components.VegaTextarea {
|
|
|
1013
1311
|
textarea element within the text area.
|
|
1014
1312
|
*/
|
|
1015
1313
|
vegaBlur: EventEmitter<CustomEvent<undefined>>;
|
|
1314
|
+
/**
|
|
1315
|
+
* An event emitter notifying the blur event of the inner
|
|
1316
|
+
textarea element within the text area. @eventSemantics namespace:native
|
|
1317
|
+
*/
|
|
1318
|
+
blur: EventEmitter<CustomEvent<undefined>>;
|
|
1016
1319
|
}
|
|
1017
1320
|
export declare class VegaTextarea {
|
|
1018
1321
|
protected z: NgZone;
|
|
@@ -1026,6 +1329,10 @@ export declare interface VegaTimePicker extends Components.VegaTimePicker {
|
|
|
1026
1329
|
* An event emitter notifying changes in the value of the time picker.
|
|
1027
1330
|
*/
|
|
1028
1331
|
vegaChange: EventEmitter<CustomEvent<string | string[]>>;
|
|
1332
|
+
/**
|
|
1333
|
+
* An event emitter notifying changes in the value of the time picker. @eventSemantics namespace:native
|
|
1334
|
+
*/
|
|
1335
|
+
change: EventEmitter<CustomEvent<string | string[]>>;
|
|
1029
1336
|
/**
|
|
1030
1337
|
* An event emitter notifying changes in the validation result
|
|
1031
1338
|
of the time picker. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
@@ -1039,11 +1346,24 @@ export declare class VegaTimePicker {
|
|
|
1039
1346
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaTimePicker, never>;
|
|
1040
1347
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTimePicker, "vega-time-picker", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "increments": "increments"; "isValid": "isValid"; "label": "label"; "mode": "mode"; "placeholder": "placeholder"; "positionRelativeTo": "positionRelativeTo"; "required": "required"; "size": "size"; "timeFormat": "timeFormat"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
1041
1348
|
}
|
|
1349
|
+
export declare interface VegaTimePickerDropdown extends Components.VegaTimePickerDropdown {
|
|
1350
|
+
}
|
|
1351
|
+
export declare class VegaTimePickerDropdown {
|
|
1352
|
+
protected z: NgZone;
|
|
1353
|
+
protected el: HTMLElement;
|
|
1354
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1355
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaTimePickerDropdown, never>;
|
|
1356
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTimePickerDropdown, "vega-time-picker-dropdown", never, {}, {}, never, ["*"]>;
|
|
1357
|
+
}
|
|
1042
1358
|
export declare interface VegaToggleSwitch extends Components.VegaToggleSwitch {
|
|
1043
1359
|
/**
|
|
1044
1360
|
* An event emitter notifying changes in the toggle switch.
|
|
1045
1361
|
*/
|
|
1046
1362
|
vegaChange: EventEmitter<CustomEvent<boolean>>;
|
|
1363
|
+
/**
|
|
1364
|
+
* An native event emitter notifying changes in the toggle switch. @eventSemantics namespace:native
|
|
1365
|
+
*/
|
|
1366
|
+
change: EventEmitter<CustomEvent<boolean>>;
|
|
1047
1367
|
}
|
|
1048
1368
|
export declare class VegaToggleSwitch {
|
|
1049
1369
|
protected z: NgZone;
|
|
@@ -1061,6 +1381,15 @@ export declare class VegaTooltip {
|
|
|
1061
1381
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaTooltip, never>;
|
|
1062
1382
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTooltip, "vega-tooltip", never, { "alignment": "alignment"; "content": "content"; "maxWidth": "maxWidth"; "minWidth": "minWidth"; "placement": "placement"; "positionRelativeTo": "positionRelativeTo"; "size": "size"; "trigger": "trigger"; }, {}, never, ["*"]>;
|
|
1063
1383
|
}
|
|
1384
|
+
export declare interface VegaTooltipContentBox extends Components.VegaTooltipContentBox {
|
|
1385
|
+
}
|
|
1386
|
+
export declare class VegaTooltipContentBox {
|
|
1387
|
+
protected z: NgZone;
|
|
1388
|
+
protected el: HTMLElement;
|
|
1389
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1390
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaTooltipContentBox, never>;
|
|
1391
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTooltipContentBox, "vega-tooltip-content-box", never, { "content": "content"; }, {}, never, ["*"]>;
|
|
1392
|
+
}
|
|
1064
1393
|
export declare interface VegaVirtualScroll extends Components.VegaVirtualScroll {
|
|
1065
1394
|
}
|
|
1066
1395
|
export declare class VegaVirtualScroll {
|
|
@@ -1070,5 +1399,5 @@ export declare class VegaVirtualScroll {
|
|
|
1070
1399
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaVirtualScroll, never>;
|
|
1071
1400
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaVirtualScroll, "vega-virtual-scroll", never, { "approxItemHeight": "approxItemHeight"; "renderItem": "renderItem"; "source": "source"; "sourceItemIdentifier": "sourceItemIdentifier"; "thresholdOfWork": "thresholdOfWork"; "viewportMaxHeight": "viewportMaxHeight"; }, {}, never, ["*"]>;
|
|
1072
1401
|
}
|
|
1073
|
-
declare const _default: (typeof VegaAccordion | typeof VegaAppFooter | typeof VegaAppHeaderButton | typeof
|
|
1402
|
+
declare const _default: (typeof VegaAccordion | typeof VegaAppFooter | typeof VegaAppHeaderButton | typeof VegaBackdrop | typeof VegaBadge | typeof VegaBarChart | typeof VegaBox | typeof VegaBreadcrumb | typeof VegaButton | typeof VegaButtonCircle | typeof VegaButtonLink | typeof VegaCard | typeof VegaCarousel | typeof VegaCheckbox | typeof VegaCheckboxGroup | typeof VegaChip | typeof VegaColorPicker | typeof VegaComboBox | typeof VegaCounterBadge | typeof VegaDatePicker | typeof VegaDatePickerCalendar | typeof VegaDialog | typeof VegaDropdown | typeof VegaDropdownContentBox | typeof VegaDropdownGroup | typeof VegaDropdownItem | typeof VegaFieldError | typeof VegaFieldLabel | typeof VegaFlex | typeof VegaFont | typeof VegaFooter | typeof VegaForm | typeof VegaGrid | typeof VegaHeader | typeof VegaIcon | typeof VegaImageUploader | typeof VegaInput | typeof VegaInputCreditCard | typeof VegaInputSelect | typeof VegaItemToggle | typeof VegaLeftNav | typeof VegaLeftNavGroup | typeof VegaLeftNavLink | typeof VegaLeftNavSection | typeof VegaLineChart | typeof VegaLoaderWrapper | typeof VegaLoadingIndicator | typeof VegaModal | typeof VegaNavCard | typeof VegaPageNotification | typeof VegaPageNotificationList | typeof VegaPagination | typeof VegaPieChart | typeof VegaPopover | typeof VegaPopoverContentBox | typeof VegaProgressTracker | typeof VegaRadio | typeof VegaRadioGroup | typeof VegaSidenav | typeof VegaSidenavGroup | typeof VegaSidenavLink | typeof VegaSlotContainer | typeof VegaStepper | typeof VegaTabGroup | typeof VegaTabGroupPanel | typeof VegaTable | typeof VegaTableBody | typeof VegaTableCell | typeof VegaTableExpandRow | typeof VegaTableHead | typeof VegaTableHeadCell | typeof VegaTableHeadRow | typeof VegaTableRow | typeof VegaText | typeof VegaTextarea | typeof VegaTimePicker | typeof VegaTimePickerDropdown | typeof VegaToggleSwitch | typeof VegaTooltip | typeof VegaTooltipContentBox | typeof VegaVirtualScroll)[];
|
|
1074
1403
|
export default _default;
|