@heartlandone/vega-angular 2.2.0 → 2.4.0-RTE-preview
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 +2 -2
- package/dist/esm2020/lib/stencil-generated/components.mjs +769 -70
- package/dist/esm2020/lib/stencil-generated/text-value-accessor.mjs +3 -3
- package/dist/esm2020/testing/heartlandone-vega-angular-testing.mjs +5 -0
- package/dist/esm2020/testing/index.mjs +84 -0
- package/dist/esm2020/testing/public-api.mjs +5 -0
- package/dist/fesm2015/heartlandone-vega-angular-testing.mjs +97 -0
- package/dist/fesm2015/heartlandone-vega-angular-testing.mjs.map +1 -0
- package/dist/fesm2015/heartlandone-vega-angular.mjs +746 -73
- package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/heartlandone-vega-angular-testing.mjs +94 -0
- package/dist/fesm2020/heartlandone-vega-angular-testing.mjs.map +1 -0
- package/dist/fesm2020/heartlandone-vega-angular.mjs +746 -73
- 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 +729 -156
- package/dist/lib/stencil-generated/text-value-accessor.d.ts +1 -1
- package/dist/package.json +10 -2
- package/dist/testing/heartlandone-vega-angular-testing.d.ts +5 -0
- package/dist/testing/index.d.ts +7 -0
- package/dist/testing/package.json +10 -0
- package/dist/testing/public-api.d.ts +1 -0
- package/package.json +5 -4
- package/src/lib/stencil-generated/components.ts +1175 -212
- package/src/lib/stencil-generated/text-value-accessor.ts +1 -1
- package/src/scripts/stencil-post-build-script.js +20 -3
- package/testing/index.ts +115 -0
- package/testing/ng-package.json +8 -0
- package/testing/public-api.ts +4 -0
|
@@ -1,25 +1,43 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
2
|
import { Components } from '@heartlandone/vega';
|
|
3
|
+
import type { VegaBannerActionButtonType as IVegaBannerVegaBannerActionButtonType } from '@heartlandone/vega/dist/types/components/vega-banner/types';
|
|
3
4
|
import type { VegaBreadcrumbItemType as IVegaBreadcrumbVegaBreadcrumbItemType } from '@heartlandone/vega/dist/types/components/vega-breadcrumb/types';
|
|
5
|
+
import type { VegaCalendarChangeEventType as IVegaCalendarVegaCalendarChangeEventType } from '@heartlandone/vega/dist/types/components/vega-calendar/types';
|
|
6
|
+
import type { VegaCalendarEventClickInfo as IVegaCalendarVegaCalendarEventClickInfo } from '@heartlandone/vega/dist/types/components/vega-calendar/types';
|
|
7
|
+
import type { VegaCalendarDateClickInfo as IVegaCalendarVegaCalendarDateClickInfo } from '@heartlandone/vega/dist/types/components/vega-calendar/types';
|
|
8
|
+
import type { VegaDropdownSearchTriggerEventDetail as IVegaDropdownVegaDropdownSearchTriggerEventDetail } from '@heartlandone/vega/dist/types/components/vega-dropdown/types';
|
|
4
9
|
import type { VegaDropdownItemClickEvent as IVegaDropdownItemVegaDropdownItemClickEvent } from '@heartlandone/vega/dist/types/components/vega-dropdown/vega-dropdown-item/types';
|
|
10
|
+
import type { VegaFileUploaderFiles as IVegaFileUploaderVegaFileUploaderFiles } from '@heartlandone/vega/dist/types/components/vega-file-uploader/types';
|
|
11
|
+
import type { VegaFileUploaderFile as IVegaFileUploaderVegaFileUploaderFile } from '@heartlandone/vega/dist/types/components/vega-file-uploader/types';
|
|
5
12
|
import type { VegaFileOptional as IVegaImageUploaderVegaFileOptional } from '@heartlandone/vega/dist/types/components/vega-image-uploader/types';
|
|
13
|
+
import type { VegaCountryType as IVegaInputPhoneNumberVegaCountryType } from '@heartlandone/vega/dist/types/components/vega-input-phone-number/types';
|
|
6
14
|
import type { SelectValueType as IVegaInputSelectSelectValueType } from '@heartlandone/vega/dist/types/components/vega-input-select/types';
|
|
7
15
|
import type { SelectType as IVegaInputSelectSelectType } from '@heartlandone/vega/dist/types/components/vega-input-select/types';
|
|
16
|
+
import type { VegaDropdownSearchTriggerEventDetail as IVegaInputSelectVegaDropdownSearchTriggerEventDetail } from '@heartlandone/vega/dist/types/components/vega-dropdown/types';
|
|
17
|
+
import type { VegaRTEContentBlock as IVegaRichTextEditorVegaRTEContentBlock } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/interface';
|
|
18
|
+
import type { VegaRichTextEditorImage as IVegaRichTextEditorVegaRichTextEditorImage } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/interface';
|
|
19
|
+
import type { VegaRichTextImageEditorChangeDetail as IVegaRichTextImageEditorVegaRichTextImageEditorChangeDetail } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/vega-rich-text-image-editor/types';
|
|
20
|
+
import type { VegaRichTextLinkEditorChangeDetail as IVegaRichTextLinkEditorVegaRichTextLinkEditorChangeDetail } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/vega-rich-text-link-editor/types';
|
|
21
|
+
import type { VegaSignatureValue as IVegaSignatureCaptureVegaSignatureValue } from '@heartlandone/vega/dist/types/components/vega-signature-capture/types';
|
|
8
22
|
import type { VegaTableChangePropType as IVegaTableVegaTableChangePropType } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
9
23
|
import type { VegaTableRowClickPropType as IVegaTableVegaTableRowClickPropType } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
24
|
+
import type { VegaTableRowExpandEventDetail as IVegaTableVegaTableRowExpandEventDetail } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
10
25
|
import type { VegaTableRowSelectProp as IVegaTableVegaTableRowSelectProp } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
11
26
|
import type { VegaTableSelectAllProp as IVegaTableVegaTableSelectAllProp } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
27
|
+
import type { VegaTableRowSelectEventDetail as IVegaTableVegaTableRowSelectEventDetail } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
28
|
+
import type { VegaTableRowSelectAllEventDetail as IVegaTableVegaTableRowSelectAllEventDetail } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
12
29
|
import type { VegaTableHeadCellClickEvent as IVegaTableHeadCellVegaTableHeadCellClickEvent } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
13
30
|
import type { VegaTableRowClickEvent as IVegaTableRowVegaTableRowClickEvent } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
31
|
+
import type { VegaTableRowExpandEvent as IVegaTableRowVegaTableRowExpandEvent } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
14
32
|
import * as i0 from "@angular/core";
|
|
15
33
|
export declare interface VegaAccordion extends Components.VegaAccordion {
|
|
16
34
|
/**
|
|
17
|
-
* An event emitter notifying the expand event of the accordion.
|
|
35
|
+
* An event emitter notifying the expand event of the accordion. @vegaVersion 1.3.0
|
|
18
36
|
*/
|
|
19
37
|
vegaExpand: EventEmitter<CustomEvent<boolean>>;
|
|
20
38
|
/**
|
|
21
39
|
* 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
|
|
40
|
+
expand is an attribute, so the event name here uses accordionExpand @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
23
41
|
*/
|
|
24
42
|
accordionExpand: EventEmitter<CustomEvent<boolean>>;
|
|
25
43
|
}
|
|
@@ -41,21 +59,21 @@ export declare class VegaAppFooter {
|
|
|
41
59
|
}
|
|
42
60
|
export declare interface VegaAppHeaderButton extends Components.VegaAppHeaderButton {
|
|
43
61
|
/**
|
|
44
|
-
* An event emitter notifying the click event of an app header button.
|
|
62
|
+
* An event emitter notifying the click event of an app header button. @vegaVersion 1.11.0
|
|
45
63
|
*/
|
|
46
64
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
47
65
|
/**
|
|
48
|
-
* An event emitter notifying the click event of an app header button. @eventSemantics namespace:native
|
|
66
|
+
* An event emitter notifying the click event of an app header button. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
49
67
|
*/
|
|
50
68
|
click: EventEmitter<CustomEvent<any>>;
|
|
51
69
|
/**
|
|
52
70
|
* An event emitter notifying the click event of a dropdown item
|
|
53
|
-
in the app header.
|
|
71
|
+
in the app header. @vegaVersion 1.23.0
|
|
54
72
|
*/
|
|
55
73
|
vegaDropdownClick: EventEmitter<CustomEvent<string>>;
|
|
56
74
|
/**
|
|
57
75
|
* An event emitter notifying the click event of a dropdown item
|
|
58
|
-
in the app header. @eventSemantics namespace:native
|
|
76
|
+
in the app header. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
59
77
|
*/
|
|
60
78
|
dropdownClick: EventEmitter<CustomEvent<string>>;
|
|
61
79
|
}
|
|
@@ -68,7 +86,7 @@ export declare class VegaAppHeaderButton {
|
|
|
68
86
|
}
|
|
69
87
|
export declare interface VegaBackdrop extends Components.VegaBackdrop {
|
|
70
88
|
/**
|
|
71
|
-
* An event emitter notifying the click event of the backdrop.
|
|
89
|
+
* An event emitter notifying the click event of the backdrop. @vegaVersion 2.0.0
|
|
72
90
|
*/
|
|
73
91
|
vegaClick: EventEmitter<CustomEvent<void>>;
|
|
74
92
|
}
|
|
@@ -79,6 +97,31 @@ export declare class VegaBackdrop {
|
|
|
79
97
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaBackdrop, never>;
|
|
80
98
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaBackdrop, "vega-backdrop", never, { "color": "color"; "duration": "duration"; "visible": "visible"; }, {}, never, ["*"]>;
|
|
81
99
|
}
|
|
100
|
+
export declare interface VegaBanner extends Components.VegaBanner {
|
|
101
|
+
/**
|
|
102
|
+
* An event emitter notifying the banner close event. @vegaVersion 1.13.0
|
|
103
|
+
*/
|
|
104
|
+
vegaClose: EventEmitter<CustomEvent<any>>;
|
|
105
|
+
/**
|
|
106
|
+
* An event emitter notifying the banner close event. @eventSemantics namespace:native,@vegaVersion 2.8.0
|
|
107
|
+
*/
|
|
108
|
+
close: EventEmitter<CustomEvent<any>>;
|
|
109
|
+
/**
|
|
110
|
+
* An event emitter notifying the banner action button has been clicked. @vegaVersion 2.18.0
|
|
111
|
+
*/
|
|
112
|
+
vegaActionButtonClick: EventEmitter<CustomEvent<IVegaBannerVegaBannerActionButtonType>>;
|
|
113
|
+
/**
|
|
114
|
+
* An event emitter notifying the banner action button has been clicked. @eventSemantics namespace:native,@vegaVersion 2.18.0
|
|
115
|
+
*/
|
|
116
|
+
actionButtonClick: EventEmitter<CustomEvent<IVegaBannerVegaBannerActionButtonType>>;
|
|
117
|
+
}
|
|
118
|
+
export declare class VegaBanner {
|
|
119
|
+
protected z: NgZone;
|
|
120
|
+
protected el: HTMLElement;
|
|
121
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
122
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaBanner, never>;
|
|
123
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaBanner, "vega-banner", never, { "actionButtons": "actionButtons"; "bannerTitle": "bannerTitle"; "content": "content"; "isOpen": "isOpen"; "showCloseButton": "showCloseButton"; "type": "type"; }, {}, never, ["*"]>;
|
|
124
|
+
}
|
|
82
125
|
export declare interface VegaBarChart extends Components.VegaBarChart {
|
|
83
126
|
}
|
|
84
127
|
export declare class VegaBarChart {
|
|
@@ -95,15 +138,15 @@ export declare class VegaBox {
|
|
|
95
138
|
protected el: HTMLElement;
|
|
96
139
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
97
140
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaBox, never>;
|
|
98
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaBox, "vega-box", never, { "backgroundColor": "backgroundColor"; "border": "border"; "borderColor": "borderColor"; "corners": "corners"; "display": "display"; "height": "height"; "margin": "margin"; "padding": "padding"; "responsiveClass": "responsiveClass"; "shadow": "shadow"; "width": "width"; }, {}, never, ["*"]>;
|
|
141
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaBox, "vega-box", never, { "alignSelf": "alignSelf"; "backgroundColor": "backgroundColor"; "border": "border"; "borderColor": "borderColor"; "borderStyle": "borderStyle"; "corners": "corners"; "display": "display"; "flex": "flex"; "flexBasis": "flexBasis"; "flexGrow": "flexGrow"; "flexShrink": "flexShrink"; "gridArea": "gridArea"; "gridColumn": "gridColumn"; "gridRow": "gridRow"; "height": "height"; "justifySelf": "justifySelf"; "margin": "margin"; "maxHeight": "maxHeight"; "minHeight": "minHeight"; "order": "order"; "padding": "padding"; "responsiveClass": "responsiveClass"; "shadow": "shadow"; "width": "width"; }, {}, never, ["*"]>;
|
|
99
142
|
}
|
|
100
143
|
export declare interface VegaBreadcrumb extends Components.VegaBreadcrumb {
|
|
101
144
|
/**
|
|
102
|
-
* An event emitter notifying that a breadcrumb item has been clicked.
|
|
145
|
+
* An event emitter notifying that a breadcrumb item has been clicked. @vegaVersion 1.41.0
|
|
103
146
|
*/
|
|
104
147
|
vegaClick: EventEmitter<CustomEvent<IVegaBreadcrumbVegaBreadcrumbItemType>>;
|
|
105
148
|
/**
|
|
106
|
-
* An event emitter notifying that a breadcrumb item has been clicked. @eventSemantics namespace:native
|
|
149
|
+
* An event emitter notifying that a breadcrumb item has been clicked. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
107
150
|
*/
|
|
108
151
|
click: EventEmitter<CustomEvent<IVegaBreadcrumbVegaBreadcrumbItemType>>;
|
|
109
152
|
}
|
|
@@ -116,11 +159,11 @@ export declare class VegaBreadcrumb {
|
|
|
116
159
|
}
|
|
117
160
|
export declare interface VegaButton extends Components.VegaButton {
|
|
118
161
|
/**
|
|
119
|
-
* An event emitter notifying the click event of the button.
|
|
162
|
+
* An event emitter notifying the click event of the button. @vegaVersion 1.0.11
|
|
120
163
|
*/
|
|
121
164
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
122
165
|
/**
|
|
123
|
-
* An event emitter notifying the click event of the button. @eventSemantics namespace:native
|
|
166
|
+
* An event emitter notifying the click event of the button. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
124
167
|
*/
|
|
125
168
|
click: EventEmitter<CustomEvent<any>>;
|
|
126
169
|
}
|
|
@@ -129,15 +172,15 @@ export declare class VegaButton {
|
|
|
129
172
|
protected el: HTMLElement;
|
|
130
173
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
131
174
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaButton, never>;
|
|
132
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaButton, "vega-button", never, { "block": "block"; "danger": "danger"; "disabled": "disabled"; "icon": "icon"; "iconAlign": "iconAlign"; "label": "label"; "size": "size"; "type": "type"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
175
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaButton, "vega-button", never, { "block": "block"; "danger": "danger"; "disabled": "disabled"; "icon": "icon"; "iconAlign": "iconAlign"; "label": "label"; "loading": "loading"; "size": "size"; "type": "type"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
133
176
|
}
|
|
134
177
|
export declare interface VegaButtonCircle extends Components.VegaButtonCircle {
|
|
135
178
|
/**
|
|
136
|
-
* An event emitter notifying the click event of the circular button.
|
|
179
|
+
* An event emitter notifying the click event of the circular button. @vegaVersion 1.0.11
|
|
137
180
|
*/
|
|
138
181
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
139
182
|
/**
|
|
140
|
-
* An event emitter notifying the click event of the circular button. @eventSemantics namespace:native
|
|
183
|
+
* An event emitter notifying the click event of the circular button. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
141
184
|
*/
|
|
142
185
|
click: EventEmitter<CustomEvent<any>>;
|
|
143
186
|
}
|
|
@@ -148,13 +191,39 @@ export declare class VegaButtonCircle {
|
|
|
148
191
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaButtonCircle, never>;
|
|
149
192
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaButtonCircle, "vega-button-circle", never, { "danger": "danger"; "disabled": "disabled"; "icon": "icon"; "iconColor": "iconColor"; "label": "label"; "showTooltip": "showTooltip"; "size": "size"; "tooltip": "tooltip"; "type": "type"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
150
193
|
}
|
|
194
|
+
export declare interface VegaButtonGroup extends Components.VegaButtonGroup {
|
|
195
|
+
/**
|
|
196
|
+
* An event emitter notifying the click event of the button group. @vegaVersion 2.5.0
|
|
197
|
+
*/
|
|
198
|
+
vegaClick: EventEmitter<CustomEvent<string>>;
|
|
199
|
+
/**
|
|
200
|
+
* An event emitter notifying the click event of the button. @eventSemantics namespace:native,@vegaVersion 2.5.0
|
|
201
|
+
*/
|
|
202
|
+
click: EventEmitter<CustomEvent<string>>;
|
|
203
|
+
}
|
|
204
|
+
export declare class VegaButtonGroup {
|
|
205
|
+
protected z: NgZone;
|
|
206
|
+
protected el: HTMLElement;
|
|
207
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
208
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaButtonGroup, never>;
|
|
209
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaButtonGroup, "vega-button-group", never, { "iconAlign": "iconAlign"; "size": "size"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
210
|
+
}
|
|
211
|
+
export declare interface VegaButtonGroupItem extends Components.VegaButtonGroupItem {
|
|
212
|
+
}
|
|
213
|
+
export declare class VegaButtonGroupItem {
|
|
214
|
+
protected z: NgZone;
|
|
215
|
+
protected el: HTMLElement;
|
|
216
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
217
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaButtonGroupItem, never>;
|
|
218
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaButtonGroupItem, "vega-button-group-item", never, { "dropdownProps": "dropdownProps"; "dropdownSource": "dropdownSource"; "icon": "icon"; "iconOnly": "iconOnly"; "itemKey": "itemKey"; "label": "label"; }, {}, never, ["*"]>;
|
|
219
|
+
}
|
|
151
220
|
export declare interface VegaButtonLink extends Components.VegaButtonLink {
|
|
152
221
|
/**
|
|
153
|
-
* An event emitter notifying the click event of the button.
|
|
222
|
+
* An event emitter notifying the click event of the button. @vegaVersion 1.0.11
|
|
154
223
|
*/
|
|
155
224
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
156
225
|
/**
|
|
157
|
-
* An event emitter notifying the click event of the button. @eventSemantics namespace:native
|
|
226
|
+
* An event emitter notifying the click event of the button. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
158
227
|
*/
|
|
159
228
|
click: EventEmitter<CustomEvent<any>>;
|
|
160
229
|
}
|
|
@@ -165,6 +234,65 @@ export declare class VegaButtonLink {
|
|
|
165
234
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaButtonLink, never>;
|
|
166
235
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaButtonLink, "vega-button-link", never, { "danger": "danger"; "disabled": "disabled"; "eventful": "eventful"; "icon": "icon"; "iconAlign": "iconAlign"; "iconType": "iconType"; "label": "label"; "link": "link"; "size": "size"; }, {}, never, ["*"]>;
|
|
167
236
|
}
|
|
237
|
+
export declare interface VegaCalendar extends Components.VegaCalendar {
|
|
238
|
+
/**
|
|
239
|
+
* An event emitter notifying the component view content change after a switch panel click. @vegaVersion 2.14.0
|
|
240
|
+
*/
|
|
241
|
+
vegaChange: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarChangeEventType>>;
|
|
242
|
+
/**
|
|
243
|
+
* An event emitter notifying the component view content change after a switch panel click. @eventSemantics namespace:native,@vegaVersion 2.14.0
|
|
244
|
+
*/
|
|
245
|
+
change: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarChangeEventType>>;
|
|
246
|
+
/**
|
|
247
|
+
* An event emitter notifying that a component event item is clicked. @vegaVersion 2.14.0
|
|
248
|
+
*/
|
|
249
|
+
vegaEventClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarEventClickInfo>>;
|
|
250
|
+
/**
|
|
251
|
+
* An event emitter notifying that a component event item is clicked. @eventSemantics namespace:native,@vegaVersion 2.14.0
|
|
252
|
+
*/
|
|
253
|
+
eventClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarEventClickInfo>>;
|
|
254
|
+
/**
|
|
255
|
+
* An event emitter notifying that a calendar date item has been double-clicked. @vegaVersion 2.17.0
|
|
256
|
+
*/
|
|
257
|
+
vegaDateDblClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
|
|
258
|
+
/**
|
|
259
|
+
* An event emitter notifying that a calendar date item has been double-clicked. @eventSemantics namespace:native,@vegaVersion 2.17.0
|
|
260
|
+
*/
|
|
261
|
+
dateDblClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
|
|
262
|
+
/**
|
|
263
|
+
* An event emitter notifying that a calendar more action menu item has been clicked. @vegaVersion 2.20.0
|
|
264
|
+
*/
|
|
265
|
+
vegaMoreActionClick: EventEmitter<CustomEvent<string>>;
|
|
266
|
+
/**
|
|
267
|
+
* An event emitter notifying that a calendar more action menu item has been clicked. @eventSemantics namespace:native,@vegaVersion 2.20.0
|
|
268
|
+
*/
|
|
269
|
+
moreActionClick: EventEmitter<CustomEvent<string>>;
|
|
270
|
+
}
|
|
271
|
+
export declare class VegaCalendar {
|
|
272
|
+
protected z: NgZone;
|
|
273
|
+
protected el: HTMLElement;
|
|
274
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
275
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaCalendar, never>;
|
|
276
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaCalendar, "vega-calendar", never, { "events": "events"; "moreActionDropdownProps": "moreActionDropdownProps"; "showEventColorBar": "showEventColorBar"; "showWeekends": "showWeekends"; "timeFormat": "timeFormat"; "viewMode": "viewMode"; }, {}, never, ["*"]>;
|
|
277
|
+
}
|
|
278
|
+
export declare interface VegaCalendarEvent extends Components.VegaCalendarEvent {
|
|
279
|
+
}
|
|
280
|
+
export declare class VegaCalendarEvent {
|
|
281
|
+
protected z: NgZone;
|
|
282
|
+
protected el: HTMLElement;
|
|
283
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
284
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaCalendarEvent, never>;
|
|
285
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaCalendarEvent, "vega-calendar-event", never, { "calendarEvent": "calendarEvent"; }, {}, never, ["*"]>;
|
|
286
|
+
}
|
|
287
|
+
export declare interface VegaCalendarEventSlot extends Components.VegaCalendarEventSlot {
|
|
288
|
+
}
|
|
289
|
+
export declare class VegaCalendarEventSlot {
|
|
290
|
+
protected z: NgZone;
|
|
291
|
+
protected el: HTMLElement;
|
|
292
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
293
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaCalendarEventSlot, never>;
|
|
294
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaCalendarEventSlot, "vega-calendar-event-slot", never, { "eventKey": "eventKey"; }, {}, never, ["*"]>;
|
|
295
|
+
}
|
|
168
296
|
export declare interface VegaCard extends Components.VegaCard {
|
|
169
297
|
}
|
|
170
298
|
export declare class VegaCard {
|
|
@@ -177,12 +305,12 @@ export declare class VegaCard {
|
|
|
177
305
|
export declare interface VegaCarousel extends Components.VegaCarousel {
|
|
178
306
|
/**
|
|
179
307
|
* An event emitter notifying the transition of the carousel to another page,
|
|
180
|
-
whether triggered programmatically or through user interaction.
|
|
308
|
+
whether triggered programmatically or through user interaction. @vegaVersion 1.3.0
|
|
181
309
|
*/
|
|
182
310
|
vegaPageUpdate: EventEmitter<CustomEvent<number>>;
|
|
183
311
|
/**
|
|
184
312
|
* An event emitter notifying the transition of the carousel to another page,
|
|
185
|
-
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
313
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
186
314
|
*/
|
|
187
315
|
pageUpdate: EventEmitter<CustomEvent<number>>;
|
|
188
316
|
}
|
|
@@ -196,12 +324,12 @@ export declare class VegaCarousel {
|
|
|
196
324
|
export declare interface VegaCheckbox extends Components.VegaCheckbox {
|
|
197
325
|
/**
|
|
198
326
|
* An event emitter notifying changes in the value of the checkbox,
|
|
199
|
-
whether triggered programmatically or through user interaction.
|
|
327
|
+
whether triggered programmatically or through user interaction. @vegaVersion 1.0.10
|
|
200
328
|
*/
|
|
201
329
|
vegaChange: EventEmitter<CustomEvent<string | boolean>>;
|
|
202
330
|
/**
|
|
203
331
|
* An event emitter notifying changes in the value of the checkbox,
|
|
204
|
-
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
332
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
205
333
|
*/
|
|
206
334
|
change: EventEmitter<CustomEvent<string | boolean>>;
|
|
207
335
|
}
|
|
@@ -217,14 +345,14 @@ export declare interface VegaCheckboxGroup extends Components.VegaCheckboxGroup
|
|
|
217
345
|
* An event emitter notifying changes in the value
|
|
218
346
|
of any nested checkbox within the checkbox group,
|
|
219
347
|
whether triggered programmatically or through
|
|
220
|
-
user interaction.
|
|
348
|
+
user interaction. @vegaVersion 1.0.10
|
|
221
349
|
*/
|
|
222
350
|
vegaChange: EventEmitter<CustomEvent<string[]>>;
|
|
223
351
|
/**
|
|
224
352
|
* An event emitter notifying changes in the value
|
|
225
353
|
of any nested checkbox within the checkbox group,
|
|
226
354
|
whether triggered programmatically or through
|
|
227
|
-
user interaction. @eventSemantics namespace:native
|
|
355
|
+
user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
228
356
|
*/
|
|
229
357
|
change: EventEmitter<CustomEvent<string[]>>;
|
|
230
358
|
}
|
|
@@ -233,27 +361,27 @@ export declare class VegaCheckboxGroup {
|
|
|
233
361
|
protected el: HTMLElement;
|
|
234
362
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
235
363
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaCheckboxGroup, never>;
|
|
236
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaCheckboxGroup, "vega-checkbox-group", never, { "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "required": "required"; "value": "value"; "vegaFlexProp": "vegaFlexProp"; }, {}, never, ["*"]>;
|
|
364
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaCheckboxGroup, "vega-checkbox-group", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "required": "required"; "validationRules": "validationRules"; "value": "value"; "vegaFlexProp": "vegaFlexProp"; }, {}, never, ["*"]>;
|
|
237
365
|
}
|
|
238
366
|
export declare interface VegaChip extends Components.VegaChip {
|
|
239
367
|
/**
|
|
240
368
|
* An event emitter notifying the click event of the close button of the chip.
|
|
241
369
|
|
|
242
|
-
This event is only dispatched when the `showCloseIcon` property is set to `true`.
|
|
370
|
+
This event is only dispatched when the `showCloseIcon` property is set to `true`. @vegaVersion 1.11.0
|
|
243
371
|
*/
|
|
244
372
|
vegaClose: EventEmitter<CustomEvent<void>>;
|
|
245
373
|
/**
|
|
246
|
-
* An event emitter notifying the click event of the close button of the chip. @eventSemantics namespace:native
|
|
374
|
+
* An event emitter notifying the click event of the close button of the chip. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
247
375
|
*/
|
|
248
376
|
close: EventEmitter<CustomEvent<void>>;
|
|
249
377
|
/**
|
|
250
378
|
* An event emitter notifying the click event of the chip.
|
|
251
379
|
|
|
252
|
-
This event is only dispatched when the `clickable` property is set to `true`.
|
|
380
|
+
This event is only dispatched when the `clickable` property is set to `true`. @vegaVersion 1.11.0
|
|
253
381
|
*/
|
|
254
382
|
vegaClick: EventEmitter<CustomEvent<void>>;
|
|
255
383
|
/**
|
|
256
|
-
* An event emitter notifying the click event of the chip. @eventSemantics namespace:native
|
|
384
|
+
* An event emitter notifying the click event of the chip. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
257
385
|
*/
|
|
258
386
|
click: EventEmitter<CustomEvent<void>>;
|
|
259
387
|
}
|
|
@@ -267,12 +395,12 @@ export declare class VegaChip {
|
|
|
267
395
|
export declare interface VegaColorPicker extends Components.VegaColorPicker {
|
|
268
396
|
/**
|
|
269
397
|
* An event emitter notifying changes in the value of the color picker,
|
|
270
|
-
whether triggered programmatically or through user interaction.
|
|
398
|
+
whether triggered programmatically or through user interaction. @vegaVersion 1.13.0
|
|
271
399
|
*/
|
|
272
400
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
273
401
|
/**
|
|
274
402
|
* An event emitter notifying changes in the value of the color picker,
|
|
275
|
-
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
403
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
276
404
|
*/
|
|
277
405
|
change: EventEmitter<CustomEvent<string>>;
|
|
278
406
|
}
|
|
@@ -281,17 +409,17 @@ export declare class VegaColorPicker {
|
|
|
281
409
|
protected el: HTMLElement;
|
|
282
410
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
283
411
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaColorPicker, never>;
|
|
284
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaColorPicker, "vega-color-picker", never, { "autoValidation": "autoValidation"; "colors": "colors"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "required": "required"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
412
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaColorPicker, "vega-color-picker", never, { "autoValidation": "autoValidation"; "colors": "colors"; "disabled": "disabled"; "hint": "hint"; "isInline": "isInline"; "isValid": "isValid"; "label": "label"; "required": "required"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
285
413
|
}
|
|
286
414
|
export declare interface VegaComboBox extends Components.VegaComboBox {
|
|
287
415
|
/**
|
|
288
416
|
* An event emitter notifying changes in the items of the combo box value,
|
|
289
|
-
whether triggered programmatically or through user interaction.
|
|
417
|
+
whether triggered programmatically or through user interaction. @vegaVersion 1.11.0
|
|
290
418
|
*/
|
|
291
419
|
vegaChange: EventEmitter<CustomEvent<string[]>>;
|
|
292
420
|
/**
|
|
293
421
|
* An event emitter notifying changes in the items of the combo box value,
|
|
294
|
-
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
422
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
295
423
|
*/
|
|
296
424
|
change: EventEmitter<CustomEvent<string[]>>;
|
|
297
425
|
/**
|
|
@@ -300,7 +428,7 @@ export declare interface VegaComboBox extends Components.VegaComboBox {
|
|
|
300
428
|
|
|
301
429
|
The event's `detail` property contains the new value.
|
|
302
430
|
|
|
303
|
-
The combo box _does not_ automatically add the new value to its `source` and `value`.
|
|
431
|
+
The combo box _does not_ automatically add the new value to its `source` and `value`. @vegaVersion 1.14.0
|
|
304
432
|
*/
|
|
305
433
|
vegaCreate: EventEmitter<CustomEvent<string>>;
|
|
306
434
|
/**
|
|
@@ -309,17 +437,17 @@ export declare interface VegaComboBox extends Components.VegaComboBox {
|
|
|
309
437
|
|
|
310
438
|
The event's `detail` property contains the new value.
|
|
311
439
|
|
|
312
|
-
The combo box _does not_ automatically add the new value to its `source` and `value`. @eventSemantics namespace:native
|
|
440
|
+
The combo box _does not_ automatically add the new value to its `source` and `value`. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
313
441
|
*/
|
|
314
442
|
create: EventEmitter<CustomEvent<string>>;
|
|
315
443
|
/**
|
|
316
444
|
* An event emitter notifying the user's search action in the combo box,
|
|
317
|
-
but only if the `useDefaultFilter` property is set to `false`.
|
|
445
|
+
but only if the `useDefaultFilter` property is set to `false`. @vegaVersion 1.24.0
|
|
318
446
|
*/
|
|
319
447
|
vegaSearch: EventEmitter<CustomEvent<string>>;
|
|
320
448
|
/**
|
|
321
449
|
* An event emitter notifying the user's search action in the combo box,
|
|
322
|
-
but only if the `useDefaultFilter` property is set to `false`. @eventSemantics namespace:native
|
|
450
|
+
but only if the `useDefaultFilter` property is set to `false`. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
323
451
|
*/
|
|
324
452
|
search: EventEmitter<CustomEvent<string>>;
|
|
325
453
|
}
|
|
@@ -342,12 +470,12 @@ export declare class VegaCounterBadge {
|
|
|
342
470
|
export declare interface VegaDatePicker extends Components.VegaDatePicker {
|
|
343
471
|
/**
|
|
344
472
|
* An event emitter notifying the change of the value in the date picker,
|
|
345
|
-
whether triggered programmatically or through user interaction.
|
|
473
|
+
whether triggered programmatically or through user interaction. @vegaVersion 1.3.0
|
|
346
474
|
*/
|
|
347
475
|
vegaChange: EventEmitter<CustomEvent<string | string[]>>;
|
|
348
476
|
/**
|
|
349
477
|
* An event emitter notifying the change of the value in the date picker,
|
|
350
|
-
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
478
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
351
479
|
*/
|
|
352
480
|
change: EventEmitter<CustomEvent<string | string[]>>;
|
|
353
481
|
}
|
|
@@ -376,37 +504,46 @@ export declare class VegaDialog {
|
|
|
376
504
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaDialog, never>;
|
|
377
505
|
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, ["*"]>;
|
|
378
506
|
}
|
|
507
|
+
export declare interface VegaDivider extends Components.VegaDivider {
|
|
508
|
+
}
|
|
509
|
+
export declare class VegaDivider {
|
|
510
|
+
protected z: NgZone;
|
|
511
|
+
protected el: HTMLElement;
|
|
512
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
513
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaDivider, never>;
|
|
514
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaDivider, "vega-divider", never, { "direction": "direction"; "margin": "margin"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
515
|
+
}
|
|
379
516
|
export declare interface VegaDropdown extends Components.VegaDropdown {
|
|
380
517
|
/**
|
|
381
518
|
* An event emitter notifying that a dropdown item has been clicked.
|
|
382
519
|
|
|
383
|
-
The event's `detail` property contains the key of the clicked item.
|
|
520
|
+
The event's `detail` property contains the key of the clicked item. @vegaVersion 1.11.0
|
|
384
521
|
*/
|
|
385
522
|
vegaDropdownClick: EventEmitter<CustomEvent<string>>;
|
|
386
523
|
/**
|
|
387
524
|
* An event emitter notifying that a dropdown item has been clicked.
|
|
388
525
|
|
|
389
|
-
The event's `detail` property contains the key of the clicked item. @eventSemantics namespace:native
|
|
526
|
+
The event's `detail` property contains the key of the clicked item. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
390
527
|
*/
|
|
391
528
|
dropdownClick: EventEmitter<CustomEvent<string>>;
|
|
392
529
|
/**
|
|
393
530
|
* An event emitter notifying that the dropdown has been displayed,
|
|
394
|
-
either programmatically or via user interaction.
|
|
531
|
+
either programmatically or via user interaction. @vegaVersion 1.3.0
|
|
395
532
|
*/
|
|
396
533
|
vegaShow: EventEmitter<CustomEvent<string>>;
|
|
397
534
|
/**
|
|
398
535
|
* An event emitter notifying that the dropdown has been displayed,
|
|
399
|
-
either programmatically or via user interaction. The name is not `show` because already has a method `show`. @eventSemantics namespace:native
|
|
536
|
+
either programmatically or via user interaction. The name is not `show` because already has a method `show`. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
400
537
|
*/
|
|
401
538
|
dropdownShow: EventEmitter<CustomEvent<string>>;
|
|
402
539
|
/**
|
|
403
540
|
* Event emitter notifying that the dropdown has been dismissed,
|
|
404
|
-
either programmatically or via user interaction.
|
|
541
|
+
either programmatically or via user interaction. @vegaVersion 1.3.0
|
|
405
542
|
*/
|
|
406
543
|
vegaHide: EventEmitter<CustomEvent<string>>;
|
|
407
544
|
/**
|
|
408
545
|
* An event emitter notifying that the dropdown has been dismissed,
|
|
409
|
-
either programmatically or via user interaction. The name is not `hide` because already has a method `hide`. @eventSemantics namespace:native
|
|
546
|
+
either programmatically or via user interaction. The name is not `hide` because already has a method `hide`. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
410
547
|
*/
|
|
411
548
|
dropdownHide: EventEmitter<CustomEvent<string>>;
|
|
412
549
|
/**
|
|
@@ -415,7 +552,7 @@ export declare interface VegaDropdown extends Components.VegaDropdown {
|
|
|
415
552
|
|
|
416
553
|
The event's `detail` property contains the new value.
|
|
417
554
|
|
|
418
|
-
The dropdown _does not_ automatically add the new value to the source list.
|
|
555
|
+
The dropdown _does not_ automatically add the new value to the source list. @vegaVersion 1.14.0
|
|
419
556
|
*/
|
|
420
557
|
vegaCreate: EventEmitter<CustomEvent<string>>;
|
|
421
558
|
/**
|
|
@@ -424,26 +561,40 @@ export declare interface VegaDropdown extends Components.VegaDropdown {
|
|
|
424
561
|
|
|
425
562
|
The event's `detail` property contains the new value.
|
|
426
563
|
|
|
427
|
-
The dropdown _does not_ automatically add the new value to the source list. @eventSemantics namespace:native
|
|
564
|
+
The dropdown _does not_ automatically add the new value to the source list. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
428
565
|
*/
|
|
429
566
|
create: EventEmitter<CustomEvent<string>>;
|
|
430
567
|
/**
|
|
431
568
|
* An event emitter notifying the search event in the dropdown,
|
|
432
|
-
but only if `useDefaultFilter` is set to `false`.
|
|
569
|
+
but only if `useDefaultFilter` is set to `false`. @vegaVersion 1.24.0
|
|
433
570
|
*/
|
|
434
571
|
vegaSearch: EventEmitter<CustomEvent<string>>;
|
|
435
572
|
/**
|
|
436
573
|
* An event emitter notifying the search event in the dropdown,
|
|
437
|
-
but only if `useDefaultFilter` is set to `false`. The name is not `search` because already has a method `search`. @eventSemantics namespace:native
|
|
574
|
+
but only if `useDefaultFilter` is set to `false`. The name is not `search` because already has a method `search`. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
438
575
|
*/
|
|
439
576
|
dropdownSearch: EventEmitter<CustomEvent<string>>;
|
|
577
|
+
/**
|
|
578
|
+
* An event emitter notifying the search event triggered within the dropdown,
|
|
579
|
+
but only if `useDefaultFilter` is set to `false`.
|
|
580
|
+
Unlike the Vegasearch event, this event includes the details of the user who triggered it.
|
|
581
|
+
It can be triggered in two ways: by pressing "Enter" or through user input. @vegaVersion 2.30.0
|
|
582
|
+
*/
|
|
583
|
+
vegaSearchTrigger: EventEmitter<CustomEvent<IVegaDropdownVegaDropdownSearchTriggerEventDetail>>;
|
|
584
|
+
/**
|
|
585
|
+
* An event emitter notifying the search event triggered within the dropdown,
|
|
586
|
+
but only if `useDefaultFilter` is set to `false`.
|
|
587
|
+
Unlike the Vegasearch event, this event includes the details of the user who triggered it.
|
|
588
|
+
It can be triggered in two ways: by pressing "Enter" or through user input. @eventSemantics namespace:native,@vegaVersion 2.30.0
|
|
589
|
+
*/
|
|
590
|
+
searchTrigger: EventEmitter<CustomEvent<IVegaDropdownVegaDropdownSearchTriggerEventDetail>>;
|
|
440
591
|
}
|
|
441
592
|
export declare class VegaDropdown {
|
|
442
593
|
protected z: NgZone;
|
|
443
594
|
protected el: HTMLElement;
|
|
444
595
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
445
596
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaDropdown, never>;
|
|
446
|
-
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, ["*"]>;
|
|
597
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaDropdown, "vega-dropdown", never, { "alignment": "alignment"; "caseSensitive": "caseSensitive"; "dynamicOption": "dynamicOption"; "isLazyLoading": "isLazyLoading"; "isLoading": "isLoading"; "itemDisplayRule": "itemDisplayRule"; "matchContainerHeight": "matchContainerHeight"; "matchTargetWidth": "matchTargetWidth"; "maxHeight": "maxHeight"; "maxWidth": "maxWidth"; "minWidth": "minWidth"; "placement": "placement"; "positionRelativeTo": "positionRelativeTo"; "prefixIconSlot": "prefixIconSlot"; "searchTriggerBy": "searchTriggerBy"; "searchable": "searchable"; "selectType": "selectType"; "selectedSourceKey": "selectedSourceKey"; "size": "size"; "source": "source"; "translocation": "translocation"; "trigger": "trigger"; "useDefaultFilter": "useDefaultFilter"; }, {}, never, ["*"]>;
|
|
447
598
|
}
|
|
448
599
|
export declare interface VegaDropdownContentBox extends Components.VegaDropdownContentBox {
|
|
449
600
|
}
|
|
@@ -465,11 +616,11 @@ export declare class VegaDropdownGroup {
|
|
|
465
616
|
}
|
|
466
617
|
export declare interface VegaDropdownItem extends Components.VegaDropdownItem {
|
|
467
618
|
/**
|
|
468
|
-
* An event emitter notifying the dropdown item has been clicked.
|
|
619
|
+
* An event emitter notifying the dropdown item has been clicked. @vegaVersion 1.47.0
|
|
469
620
|
*/
|
|
470
621
|
vegaClick: EventEmitter<CustomEvent<IVegaDropdownItemVegaDropdownItemClickEvent>>;
|
|
471
622
|
/**
|
|
472
|
-
* An event emitter notifying the dropdown item has been clicked. @eventSemantics namespace:native
|
|
623
|
+
* An event emitter notifying the dropdown item has been clicked. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
473
624
|
*/
|
|
474
625
|
click: EventEmitter<CustomEvent<IVegaDropdownItemVegaDropdownItemClickEvent>>;
|
|
475
626
|
}
|
|
@@ -478,7 +629,7 @@ export declare class VegaDropdownItem {
|
|
|
478
629
|
protected el: HTMLElement;
|
|
479
630
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
480
631
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaDropdownItem, never>;
|
|
481
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaDropdownItem, "vega-dropdown-item", never, { "count": "count"; "disabled": "disabled"; "height": "height"; "itemKey": "itemKey"; "label": "label"; "prefixIcon": "prefixIcon"; }, {}, never, ["*"]>;
|
|
632
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaDropdownItem, "vega-dropdown-item", never, { "count": "count"; "danger": "danger"; "disabled": "disabled"; "height": "height"; "itemKey": "itemKey"; "label": "label"; "prefixIcon": "prefixIcon"; }, {}, never, ["*"]>;
|
|
482
633
|
}
|
|
483
634
|
export declare interface VegaFieldError extends Components.VegaFieldError {
|
|
484
635
|
}
|
|
@@ -491,16 +642,77 @@ export declare class VegaFieldError {
|
|
|
491
642
|
}
|
|
492
643
|
export declare interface VegaFieldLabel extends Components.VegaFieldLabel {
|
|
493
644
|
/**
|
|
494
|
-
* An event emitter notifying that the field label has been clicked.
|
|
645
|
+
* An event emitter notifying that the field label has been clicked. @vegaVersion 1.43.0
|
|
495
646
|
*/
|
|
496
647
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
648
|
+
/**
|
|
649
|
+
* An event emitter notifying that the suffix button associated with the field label has been clicked. @vegaVersion 2.25.0
|
|
650
|
+
*/
|
|
651
|
+
vegaLabelButtonClick: EventEmitter<CustomEvent<any>>;
|
|
652
|
+
/**
|
|
653
|
+
* An event emitter notifying that the suffix button associated with the field label has been clicked. @eventSemantics namespace:native,@vegaVersion 2.25.0
|
|
654
|
+
*/
|
|
655
|
+
labelButtonClick: EventEmitter<CustomEvent<any>>;
|
|
497
656
|
}
|
|
498
657
|
export declare class VegaFieldLabel {
|
|
499
658
|
protected z: NgZone;
|
|
500
659
|
protected el: HTMLElement;
|
|
501
660
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
502
661
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaFieldLabel, never>;
|
|
503
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaFieldLabel, "vega-field-label", never, { "disabled": "disabled"; "isFieldRequired": "isFieldRequired"; "label": "label"; }, {}, never, ["*"]>;
|
|
662
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaFieldLabel, "vega-field-label", never, { "disabled": "disabled"; "isFieldRequired": "isFieldRequired"; "label": "label"; "suffixButtonProps": "suffixButtonProps"; }, {}, never, ["*"]>;
|
|
663
|
+
}
|
|
664
|
+
export declare interface VegaFileUploader extends Components.VegaFileUploader {
|
|
665
|
+
/**
|
|
666
|
+
* An event emitter notifying a change in the file list. @vegaVersion 2.25.0
|
|
667
|
+
*/
|
|
668
|
+
vegaChange: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFiles>>;
|
|
669
|
+
/**
|
|
670
|
+
* An event emitter notifying a change in the file list. @eventSemantics namespace:native,@vegaVersion 2.25.0
|
|
671
|
+
*/
|
|
672
|
+
change: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFiles>>;
|
|
673
|
+
/**
|
|
674
|
+
* An event emitter notifying a file selection change. By default, the component value
|
|
675
|
+
is updated, but this behavior can be prevented. @vegaVersion 2.25.0
|
|
676
|
+
*/
|
|
677
|
+
vegaSelectedFileChange: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFiles>>;
|
|
678
|
+
/**
|
|
679
|
+
* An event emitter notifying a file selection change. By default, the component value
|
|
680
|
+
is updated, but this behavior can be prevented. @eventSemantics namespace:native,@vegaVersion 2.25.0
|
|
681
|
+
*/
|
|
682
|
+
selectedFileChange: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFiles>>;
|
|
683
|
+
/**
|
|
684
|
+
* An event emitter notifying that a selected file will be removed. By default, the component value
|
|
685
|
+
is updated, but this behavior can be prevented. @vegaVersion 2.25.0
|
|
686
|
+
*/
|
|
687
|
+
vegaRemove: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
|
|
688
|
+
/**
|
|
689
|
+
* An event emitter notifying that a selected file will be removed. By default, the component value
|
|
690
|
+
is updated, but this behavior can be prevented. @eventSemantics namespace:native,@vegaVersion 2.25.0
|
|
691
|
+
*/
|
|
692
|
+
remove: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
|
|
693
|
+
/**
|
|
694
|
+
* An event emitter notifying that a file will be re-uploaded. @vegaVersion 2.25.0
|
|
695
|
+
*/
|
|
696
|
+
vegaRetry: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
|
|
697
|
+
/**
|
|
698
|
+
* An event emitter notifying that a file will be re-uploaded. @eventSemantics namespace:native,@vegaVersion 2.25.0
|
|
699
|
+
*/
|
|
700
|
+
retry: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
|
|
701
|
+
/**
|
|
702
|
+
* An event emitter notifying that a file will be opened for preview. @vegaVersion 2.25.0
|
|
703
|
+
*/
|
|
704
|
+
vegaPreview: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
|
|
705
|
+
/**
|
|
706
|
+
* An event emitter notifying that a file will be opened for preview. @eventSemantics namespace:native,@vegaVersion 2.25.0
|
|
707
|
+
*/
|
|
708
|
+
preview: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
|
|
709
|
+
}
|
|
710
|
+
export declare class VegaFileUploader {
|
|
711
|
+
protected z: NgZone;
|
|
712
|
+
protected el: HTMLElement;
|
|
713
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
714
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaFileUploader, never>;
|
|
715
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaFileUploader, "vega-file-uploader", never, { "accept": "accept"; "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "required": "required"; "validationRules": "validationRules"; "value": "value"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
504
716
|
}
|
|
505
717
|
export declare interface VegaFlex extends Components.VegaFlex {
|
|
506
718
|
}
|
|
@@ -509,7 +721,7 @@ export declare class VegaFlex {
|
|
|
509
721
|
protected el: HTMLElement;
|
|
510
722
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
511
723
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaFlex, never>;
|
|
512
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaFlex, "vega-flex", never, { "alignItems": "alignItems"; "breakpoint": "breakpoint"; "direction": "direction"; "gap": "gap"; "justifyContent": "justifyContent"; "margin": "margin"; "useNativeFlex": "useNativeFlex"; }, {}, never, ["*"]>;
|
|
724
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaFlex, "vega-flex", never, { "alignItems": "alignItems"; "breakpoint": "breakpoint"; "direction": "direction"; "flex": "flex"; "flexBasis": "flexBasis"; "flexGrow": "flexGrow"; "flexShrink": "flexShrink"; "flexWrap": "flexWrap"; "gap": "gap"; "justifyContent": "justifyContent"; "margin": "margin"; "useNativeFlex": "useNativeFlex"; }, {}, never, ["*"]>;
|
|
513
725
|
}
|
|
514
726
|
export declare interface VegaFont extends Components.VegaFont {
|
|
515
727
|
}
|
|
@@ -518,31 +730,31 @@ export declare class VegaFont {
|
|
|
518
730
|
protected el: HTMLElement;
|
|
519
731
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
520
732
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaFont, never>;
|
|
521
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaFont, "vega-font", never, { "as": "as"; "color": "color"; "disableResponsive": "disableResponsive"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
733
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaFont, "vega-font", never, { "as": "as"; "color": "color"; "disableResponsive": "disableResponsive"; "textAlign": "textAlign"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
522
734
|
}
|
|
523
735
|
export declare interface VegaForm extends Components.VegaForm {
|
|
524
736
|
/**
|
|
525
|
-
* An event emitter notifying the change in the validation result.
|
|
737
|
+
* An event emitter notifying the change in the validation result. @vegaVersion 1.9.1
|
|
526
738
|
*/
|
|
527
739
|
vegaValidate: EventEmitter<CustomEvent<boolean>>;
|
|
528
740
|
/**
|
|
529
|
-
* An event emitter notifying the change in the validation result. @eventSemantics namespace:native
|
|
741
|
+
* An event emitter notifying the change in the validation result. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
530
742
|
*/
|
|
531
743
|
validate: EventEmitter<CustomEvent<boolean>>;
|
|
532
744
|
/**
|
|
533
|
-
* An event emitter notifying the submission of the form.
|
|
745
|
+
* An event emitter notifying the submission of the form. @vegaVersion 1.24.0
|
|
534
746
|
*/
|
|
535
747
|
vegaFormSubmit: EventEmitter<CustomEvent<unknown>>;
|
|
536
748
|
/**
|
|
537
|
-
* An event emitter notifying the submission of the form. @eventSemantics namespace:native
|
|
749
|
+
* An event emitter notifying the submission of the form. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
538
750
|
*/
|
|
539
751
|
formSubmit: EventEmitter<CustomEvent<unknown>>;
|
|
540
752
|
/**
|
|
541
|
-
* An event emitter notifying the reset of the form.
|
|
753
|
+
* An event emitter notifying the reset of the form. @vegaVersion 1.24.0
|
|
542
754
|
*/
|
|
543
755
|
vegaFormReset: EventEmitter<CustomEvent<any>>;
|
|
544
756
|
/**
|
|
545
|
-
* An event emitter notifying the reset of the form. @eventSemantics namespace:native
|
|
757
|
+
* An event emitter notifying the reset of the form. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
546
758
|
*/
|
|
547
759
|
formReset: EventEmitter<CustomEvent<any>>;
|
|
548
760
|
}
|
|
@@ -562,6 +774,15 @@ export declare class VegaGrid {
|
|
|
562
774
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaGrid, never>;
|
|
563
775
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaGrid, "vega-grid", never, { "column": "column"; "gap": "gap"; "row": "row"; }, {}, never, ["*"]>;
|
|
564
776
|
}
|
|
777
|
+
export declare interface VegaHint extends Components.VegaHint {
|
|
778
|
+
}
|
|
779
|
+
export declare class VegaHint {
|
|
780
|
+
protected z: NgZone;
|
|
781
|
+
protected el: HTMLElement;
|
|
782
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
783
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaHint, never>;
|
|
784
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaHint, "vega-hint", never, {}, {}, never, ["*"]>;
|
|
785
|
+
}
|
|
565
786
|
export declare interface VegaIcon extends Components.VegaIcon {
|
|
566
787
|
}
|
|
567
788
|
export declare class VegaIcon {
|
|
@@ -573,27 +794,27 @@ export declare class VegaIcon {
|
|
|
573
794
|
}
|
|
574
795
|
export declare interface VegaImageUploader extends Components.VegaImageUploader {
|
|
575
796
|
/**
|
|
576
|
-
* An event emitter notifying a value change.
|
|
797
|
+
* An event emitter notifying a value change. @vegaVersion 1.14.0
|
|
577
798
|
*/
|
|
578
799
|
vegaChange: EventEmitter<CustomEvent<IVegaImageUploaderVegaFileOptional>>;
|
|
579
800
|
/**
|
|
580
|
-
* An event emitter notifying a value change. @eventSemantics namespace:native
|
|
801
|
+
* An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
581
802
|
*/
|
|
582
803
|
change: EventEmitter<CustomEvent<any>>;
|
|
583
804
|
/**
|
|
584
|
-
* An event emitter notifying the removal of a value.
|
|
805
|
+
* An event emitter notifying the removal of a value. @vegaVersion 1.14.0
|
|
585
806
|
*/
|
|
586
807
|
vegaRemove: EventEmitter<CustomEvent<any>>;
|
|
587
808
|
/**
|
|
588
|
-
* An event emitter notifying the removal of a value. @eventSemantics namespace:native
|
|
809
|
+
* An event emitter notifying the removal of a value. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
589
810
|
*/
|
|
590
811
|
remove: EventEmitter<CustomEvent<any>>;
|
|
591
812
|
/**
|
|
592
|
-
* An event emitter notifying the cancellation of an uploading event.
|
|
813
|
+
* An event emitter notifying the cancellation of an uploading event. @vegaVersion 1.14.0
|
|
593
814
|
*/
|
|
594
815
|
vegaCancel: EventEmitter<CustomEvent<any>>;
|
|
595
816
|
/**
|
|
596
|
-
* An event emitter notifying the removal of a value. @eventSemantics namespace:native
|
|
817
|
+
* An event emitter notifying the removal of a value. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
597
818
|
*/
|
|
598
819
|
cancel: EventEmitter<CustomEvent<any>>;
|
|
599
820
|
}
|
|
@@ -602,64 +823,72 @@ export declare class VegaImageUploader {
|
|
|
602
823
|
protected el: HTMLElement;
|
|
603
824
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
604
825
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaImageUploader, never>;
|
|
605
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaImageUploader, "vega-image-uploader", never, { "accept": "accept"; "autoValidation": "autoValidation"; "disabled": "disabled"; "isValid": "isValid"; "required": "required"; "showPreviewButton": "showPreviewButton"; "showRemoveButton": "showRemoveButton"; "showReplaceButton": "showReplaceButton"; "status": "status"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
826
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaImageUploader, "vega-image-uploader", never, { "accept": "accept"; "actionSubTitle": "actionSubTitle"; "actionTitle": "actionTitle"; "autoValidation": "autoValidation"; "disabled": "disabled"; "height": "height"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "required": "required"; "showPreviewButton": "showPreviewButton"; "showRemoveButton": "showRemoveButton"; "showReplaceButton": "showReplaceButton"; "status": "status"; "validationRules": "validationRules"; "value": "value"; "width": "width"; }, {}, never, ["*"]>;
|
|
606
827
|
}
|
|
607
828
|
export declare interface VegaInput extends Components.VegaInput {
|
|
608
829
|
/**
|
|
609
|
-
* An event emitter notifying a value change.
|
|
830
|
+
* An event emitter notifying a value change. @vegaVersion 1.0.10
|
|
610
831
|
*/
|
|
611
832
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
612
833
|
/**
|
|
613
|
-
* An event emitter notifying a value change. @eventSemantics namespace:native
|
|
834
|
+
* An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
614
835
|
*/
|
|
615
836
|
change: EventEmitter<CustomEvent<string>>;
|
|
616
837
|
/**
|
|
617
|
-
* An event emitter notifying the blur of the inner input element.
|
|
838
|
+
* An event emitter notifying the blur of the inner input element. @vegaVersion 1.3.0
|
|
618
839
|
*/
|
|
619
840
|
vegaBlur: EventEmitter<CustomEvent<undefined>>;
|
|
620
841
|
/**
|
|
621
|
-
* An event emitter notifying the blur of the inner input element. @eventSemantics namespace:native
|
|
842
|
+
* An event emitter notifying the blur of the inner input element. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
622
843
|
*/
|
|
623
844
|
blur: EventEmitter<CustomEvent<undefined>>;
|
|
624
845
|
/**
|
|
625
|
-
* An event emitter notifying the focus of the inner input element.
|
|
846
|
+
* An event emitter notifying the focus of the inner input element. @vegaVersion 1.12.0
|
|
626
847
|
*/
|
|
627
848
|
vegaFocus: EventEmitter<CustomEvent<undefined>>;
|
|
628
849
|
/**
|
|
629
|
-
* An event emitter notifying the focus of the inner input element. @eventSemantics namespace:native
|
|
850
|
+
* An event emitter notifying the focus of the inner input element. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
630
851
|
*/
|
|
631
852
|
focus: EventEmitter<CustomEvent<undefined>>;
|
|
853
|
+
/**
|
|
854
|
+
* An event emitter notifying that the suffix button associated with the field label has been clicked. @vegaVersion 2.25.0
|
|
855
|
+
*/
|
|
856
|
+
vegaLabelButtonClick: EventEmitter<CustomEvent<any>>;
|
|
857
|
+
/**
|
|
858
|
+
* An event emitter notifying that the suffix button associated with the field label has been clicked. @eventSemantics namespace:native,@vegaVersion 2.25.0
|
|
859
|
+
*/
|
|
860
|
+
labelButtonClick: EventEmitter<CustomEvent<any>>;
|
|
632
861
|
}
|
|
633
862
|
export declare class VegaInput {
|
|
634
863
|
protected z: NgZone;
|
|
635
864
|
protected el: HTMLElement;
|
|
636
865
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
637
866
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaInput, never>;
|
|
638
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaInput, "vega-input", never, { "autoValidation": "autoValidation"; "autocomplete": "autocomplete"; "disableCopyPaste": "disableCopyPaste"; "disabled": "disabled"; "email": "email"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "maskConfig": "maskConfig"; "max": "max"; "maxLength": "maxLength"; "min": "min"; "minLength": "minLength"; "placeholder": "placeholder"; "prefixIcon": "prefixIcon"; "required": "required"; "showClearIcon": "showClearIcon"; "size": "size"; "type": "type"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
867
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaInput, "vega-input", never, { "autoValidation": "autoValidation"; "autocomplete": "autocomplete"; "disableCopyPaste": "disableCopyPaste"; "disabled": "disabled"; "email": "email"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "labelSuffixButtonProps": "labelSuffixButtonProps"; "maskConfig": "maskConfig"; "max": "max"; "maxLength": "maxLength"; "min": "min"; "minLength": "minLength"; "name": "name"; "placeholder": "placeholder"; "prefixIcon": "prefixIcon"; "required": "required"; "showClearIcon": "showClearIcon"; "size": "size"; "type": "type"; "validationRules": "validationRules"; "value": "value"; "valueUpdateTrigger": "valueUpdateTrigger"; }, {}, never, ["*"]>;
|
|
639
868
|
}
|
|
640
869
|
export declare interface VegaInputCreditCard extends Components.VegaInputCreditCard {
|
|
641
870
|
/**
|
|
642
|
-
* An event emitter notifying a value change.
|
|
871
|
+
* An event emitter notifying a value change. @vegaVersion 1.26.0
|
|
643
872
|
*/
|
|
644
873
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
645
874
|
/**
|
|
646
|
-
* A native change event emitter notifying a value change. @eventSemantics namespace:native
|
|
875
|
+
* A native change event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
647
876
|
*/
|
|
648
877
|
change: EventEmitter<CustomEvent<string>>;
|
|
649
878
|
/**
|
|
650
|
-
* An event emitter notifying the blur event of the credit card element.
|
|
879
|
+
* An event emitter notifying the blur event of the credit card element. @vegaVersion 1.26.0
|
|
651
880
|
*/
|
|
652
881
|
vegaBlur: EventEmitter<CustomEvent<undefined>>;
|
|
653
882
|
/**
|
|
654
|
-
* An event emitter notifying the blur event of the credit card element. @eventSemantics namespace:native
|
|
883
|
+
* An event emitter notifying the blur event of the credit card element. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
655
884
|
*/
|
|
656
885
|
blur: EventEmitter<CustomEvent<undefined>>;
|
|
657
886
|
/**
|
|
658
|
-
* An event emitter notifying the focus of the credit card element.
|
|
887
|
+
* An event emitter notifying the focus of the credit card element. @vegaVersion 1.26.0
|
|
659
888
|
*/
|
|
660
889
|
vegaFocus: EventEmitter<CustomEvent<undefined>>;
|
|
661
890
|
/**
|
|
662
|
-
* An event emitter notifying the focus of the credit card element. @eventSemantics namespace:native
|
|
891
|
+
* An event emitter notifying the focus of the credit card element. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
663
892
|
*/
|
|
664
893
|
focus: EventEmitter<CustomEvent<undefined>>;
|
|
665
894
|
}
|
|
@@ -670,13 +899,55 @@ export declare class VegaInputCreditCard {
|
|
|
670
899
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaInputCreditCard, never>;
|
|
671
900
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaInputCreditCard, "vega-input-credit-card", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hideCardNumberOnBlur": "hideCardNumberOnBlur"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "placeholder": "placeholder"; "required": "required"; "size": "size"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
672
901
|
}
|
|
902
|
+
export declare interface VegaInputNumeric extends Components.VegaInputNumeric {
|
|
903
|
+
/**
|
|
904
|
+
* An event emitter notifying a value change. @vegaVersion 2.29.0
|
|
905
|
+
*/
|
|
906
|
+
vegaChange: EventEmitter<CustomEvent<number>>;
|
|
907
|
+
/**
|
|
908
|
+
* An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.29.0
|
|
909
|
+
*/
|
|
910
|
+
change: EventEmitter<CustomEvent<number>>;
|
|
911
|
+
}
|
|
912
|
+
export declare class VegaInputNumeric {
|
|
913
|
+
protected z: NgZone;
|
|
914
|
+
protected el: HTMLElement;
|
|
915
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
916
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaInputNumeric, never>;
|
|
917
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaInputNumeric, "vega-input-numeric", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "integerOnly": "integerOnly"; "isValid": "isValid"; "label": "label"; "majorIncrement": "majorIncrement"; "minorIncrement": "minorIncrement"; "placeholder": "placeholder"; "prefixIcon": "prefixIcon"; "prefixText": "prefixText"; "required": "required"; "size": "size"; "suffixText": "suffixText"; "thousandComma": "thousandComma"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
918
|
+
}
|
|
919
|
+
export declare interface VegaInputPhoneNumber extends Components.VegaInputPhoneNumber {
|
|
920
|
+
/**
|
|
921
|
+
* An event emitter notifying a value change. @vegaVersion 2.18.0
|
|
922
|
+
*/
|
|
923
|
+
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
924
|
+
/**
|
|
925
|
+
* An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.18.0
|
|
926
|
+
*/
|
|
927
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
928
|
+
/**
|
|
929
|
+
* An event emitter notifying a country change. @vegaVersion 2.18.0
|
|
930
|
+
*/
|
|
931
|
+
vegaCountryChange: EventEmitter<CustomEvent<IVegaInputPhoneNumberVegaCountryType>>;
|
|
932
|
+
/**
|
|
933
|
+
* An event emitter notifying a country change. @eventSemantics namespace:native,@vegaVersion 2.18.0
|
|
934
|
+
*/
|
|
935
|
+
countryChange: EventEmitter<CustomEvent<IVegaInputPhoneNumberVegaCountryType>>;
|
|
936
|
+
}
|
|
937
|
+
export declare class VegaInputPhoneNumber {
|
|
938
|
+
protected z: NgZone;
|
|
939
|
+
protected el: HTMLElement;
|
|
940
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
941
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaInputPhoneNumber, never>;
|
|
942
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaInputPhoneNumber, "vega-input-phone-number", never, { "allowedCountryCodes": "allowedCountryCodes"; "autoValidation": "autoValidation"; "countryCode": "countryCode"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "placeholder": "placeholder"; "required": "required"; "size": "size"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
943
|
+
}
|
|
673
944
|
export declare interface VegaInputRange extends Components.VegaInputRange {
|
|
674
945
|
/**
|
|
675
|
-
* An event emitter notifying a value change.
|
|
946
|
+
* An event emitter notifying a value change. @vegaVersion 2.2.0
|
|
676
947
|
*/
|
|
677
948
|
vegaChange: EventEmitter<CustomEvent<[number, number]>>;
|
|
678
949
|
/**
|
|
679
|
-
* An event emitter notifying a value change. @eventSemantics namespace:native
|
|
950
|
+
* An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.2.0
|
|
680
951
|
*/
|
|
681
952
|
change: EventEmitter<CustomEvent<[number, number]>>;
|
|
682
953
|
}
|
|
@@ -689,36 +960,49 @@ export declare class VegaInputRange {
|
|
|
689
960
|
}
|
|
690
961
|
export declare interface VegaInputSelect extends Components.VegaInputSelect {
|
|
691
962
|
/**
|
|
692
|
-
* An event emitter notifying the change of the select value.
|
|
963
|
+
* An event emitter notifying the change of the select value. @vegaVersion 1.0.11
|
|
693
964
|
*/
|
|
694
965
|
vegaChange: EventEmitter<CustomEvent<IVegaInputSelectSelectValueType<IVegaInputSelectSelectType>>>;
|
|
695
966
|
/**
|
|
696
|
-
* An event emitter notifying the change of the select value. @eventSemantics namespace:native
|
|
967
|
+
* An event emitter notifying the change of the select value. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
697
968
|
*/
|
|
698
969
|
change: EventEmitter<CustomEvent<IVegaInputSelectSelectValueType<IVegaInputSelectSelectType>>>;
|
|
699
970
|
/**
|
|
700
|
-
* An event emitter notifying the search of the dropdown.
|
|
971
|
+
* An event emitter notifying the search of the dropdown. @vegaVersion 1.50.0
|
|
701
972
|
*/
|
|
702
973
|
vegaSearch: EventEmitter<CustomEvent<string>>;
|
|
703
974
|
/**
|
|
704
|
-
* An event emitter notifying the search of the dropdown. @eventSemantics namespace:native
|
|
975
|
+
* An event emitter notifying the search of the dropdown. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
705
976
|
*/
|
|
706
977
|
search: EventEmitter<CustomEvent<string>>;
|
|
978
|
+
/**
|
|
979
|
+
* An event emitter notifying the search event triggered within the dropdown,
|
|
980
|
+
but only if `useDefaultFilter` is set to `false`.
|
|
981
|
+
Unlike the Vegasearch event, this event includes the details of the user who triggered it.
|
|
982
|
+
It can be triggered in two ways: by pressing "Enter" or through user input. @vegaVersion 2.30.0
|
|
983
|
+
*/
|
|
984
|
+
vegaSearchTrigger: EventEmitter<CustomEvent<IVegaInputSelectVegaDropdownSearchTriggerEventDetail>>;
|
|
985
|
+
/**
|
|
986
|
+
* An event emitter notifying the search event triggered within the dropdown,
|
|
987
|
+
Unlike the Vegasearch event, this event includes the details of the user who triggered it.
|
|
988
|
+
It can be triggered in two ways: by pressing "Enter" or through user input. @eventSemantics namespace:native,@vegaVersion 2.30.0
|
|
989
|
+
*/
|
|
990
|
+
searchTrigger: EventEmitter<CustomEvent<IVegaInputSelectVegaDropdownSearchTriggerEventDetail>>;
|
|
707
991
|
}
|
|
708
992
|
export declare class VegaInputSelect {
|
|
709
993
|
protected z: NgZone;
|
|
710
994
|
protected el: HTMLElement;
|
|
711
995
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
712
996
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaInputSelect, never>;
|
|
713
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaInputSelect, "vega-input-select", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "placeholder": "placeholder"; "prefixIcon": "prefixIcon"; "required": "required"; "selectType": "selectType"; "selectedLabel": "selectedLabel"; "size": "size"; "source": "source"; "validationRules": "validationRules"; "value": "value"; "vegaDropdownProps": "vegaDropdownProps"; }, {}, never, ["*"]>;
|
|
997
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaInputSelect, "vega-input-select", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "placeholder": "placeholder"; "prefixIcon": "prefixIcon"; "required": "required"; "selectType": "selectType"; "selectedLabel": "selectedLabel"; "size": "size"; "source": "source"; "sourceLazyLoadCallback": "sourceLazyLoadCallback"; "validationRules": "validationRules"; "value": "value"; "vegaDropdownProps": "vegaDropdownProps"; }, {}, never, ["*"]>;
|
|
714
998
|
}
|
|
715
999
|
export declare interface VegaItemToggle extends Components.VegaItemToggle {
|
|
716
1000
|
/**
|
|
717
|
-
* An event emitter notifying an item toggle event.
|
|
1001
|
+
* An event emitter notifying an item toggle event. @vegaVersion 1.3.0
|
|
718
1002
|
*/
|
|
719
1003
|
vegaToggleStatus: EventEmitter<CustomEvent<boolean>>;
|
|
720
1004
|
/**
|
|
721
|
-
* An event emitter notifying an item toggle event. @eventSemantics namespace:native
|
|
1005
|
+
* An event emitter notifying an item toggle event. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
722
1006
|
*/
|
|
723
1007
|
toggleStatus: EventEmitter<CustomEvent<boolean>>;
|
|
724
1008
|
}
|
|
@@ -731,11 +1015,11 @@ export declare class VegaItemToggle {
|
|
|
731
1015
|
}
|
|
732
1016
|
export declare interface VegaLeftNav extends Components.VegaLeftNav {
|
|
733
1017
|
/**
|
|
734
|
-
* An event emitter notifying that the left-nav's open state has changed.
|
|
1018
|
+
* An event emitter notifying that the left-nav's open state has changed. @vegaVersion 1.31.0
|
|
735
1019
|
*/
|
|
736
1020
|
vegaStateUpdate: EventEmitter<CustomEvent<string>>;
|
|
737
1021
|
/**
|
|
738
|
-
* An event emitter notifying that the left-nav's open state has changed. @eventSemantics namespace:native
|
|
1022
|
+
* An event emitter notifying that the left-nav's open state has changed. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
739
1023
|
*/
|
|
740
1024
|
stateUpdate: EventEmitter<CustomEvent<string>>;
|
|
741
1025
|
}
|
|
@@ -744,15 +1028,15 @@ export declare class VegaLeftNav {
|
|
|
744
1028
|
protected el: HTMLElement;
|
|
745
1029
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
746
1030
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaLeftNav, never>;
|
|
747
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaLeftNav, "vega-left-nav", never, { "footnote": "footnote"; "headerConfig": "headerConfig"; "open": "open"; "showAsOverlay": "showAsOverlay"; "source": "source"; }, {}, never, ["*"]>;
|
|
1031
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaLeftNav, "vega-left-nav", never, { "autoCollapseOnOverlay": "autoCollapseOnOverlay"; "footnote": "footnote"; "headerConfig": "headerConfig"; "open": "open"; "showAsOverlay": "showAsOverlay"; "source": "source"; }, {}, never, ["*"]>;
|
|
748
1032
|
}
|
|
749
1033
|
export declare interface VegaLeftNavGroup extends Components.VegaLeftNavGroup {
|
|
750
1034
|
/**
|
|
751
|
-
* event emitter used for notifying consumers the click event
|
|
1035
|
+
* event emitter used for notifying consumers the click event * @vegaVersion 1.41.0
|
|
752
1036
|
*/
|
|
753
1037
|
vegaGroupClick: EventEmitter<CustomEvent<string>>;
|
|
754
1038
|
/**
|
|
755
|
-
* An event emitter used for notifying consumers the click event @eventSemantics namespace:native
|
|
1039
|
+
* An event emitter used for notifying consumers the click event @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
756
1040
|
*/
|
|
757
1041
|
groupClick: EventEmitter<CustomEvent<string>>;
|
|
758
1042
|
}
|
|
@@ -765,11 +1049,11 @@ export declare class VegaLeftNavGroup {
|
|
|
765
1049
|
}
|
|
766
1050
|
export declare interface VegaLeftNavLink extends Components.VegaLeftNavLink {
|
|
767
1051
|
/**
|
|
768
|
-
* event emitter
|
|
1052
|
+
* An event emitter notifying the link click event. * @vegaVersion 1.31.0
|
|
769
1053
|
*/
|
|
770
1054
|
vegaMenuClick: EventEmitter<CustomEvent<any>>;
|
|
771
1055
|
/**
|
|
772
|
-
* event emitter
|
|
1056
|
+
* An event emitter notifying the link click event. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
773
1057
|
*/
|
|
774
1058
|
menuClick: EventEmitter<CustomEvent<any>>;
|
|
775
1059
|
}
|
|
@@ -781,6 +1065,14 @@ export declare class VegaLeftNavLink {
|
|
|
781
1065
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaLeftNavLink, "vega-left-nav-link", never, { "counterBadge": "counterBadge"; "icon": "icon"; "selected": "selected"; "url": "url"; }, {}, never, ["*"]>;
|
|
782
1066
|
}
|
|
783
1067
|
export declare interface VegaLeftNavSection extends Components.VegaLeftNavSection {
|
|
1068
|
+
/**
|
|
1069
|
+
* An event emitter notifying the action click event when the action link is not configured. @vegaVersion 2.11.0
|
|
1070
|
+
*/
|
|
1071
|
+
vegaActionClick: EventEmitter<CustomEvent<string>>;
|
|
1072
|
+
/**
|
|
1073
|
+
* An event emitter notifying the action click event when the action link is not configured. @eventSemantics namespace:native,@vegaVersion 2.11.0
|
|
1074
|
+
*/
|
|
1075
|
+
actionClick: EventEmitter<CustomEvent<any>>;
|
|
784
1076
|
}
|
|
785
1077
|
export declare class VegaLeftNavSection {
|
|
786
1078
|
protected z: NgZone;
|
|
@@ -818,19 +1110,19 @@ export declare class VegaLoadingIndicator {
|
|
|
818
1110
|
}
|
|
819
1111
|
export declare interface VegaModal extends Components.VegaModal {
|
|
820
1112
|
/**
|
|
821
|
-
* An event emitter notifying the modal close event.
|
|
1113
|
+
* An event emitter notifying the modal close event. @vegaVersion 1.0.10
|
|
822
1114
|
*/
|
|
823
1115
|
vegaClose: EventEmitter<CustomEvent<any>>;
|
|
824
1116
|
/**
|
|
825
|
-
* An event emitter notifying the modal close event. @eventSemantics namespace:native
|
|
1117
|
+
* An event emitter notifying the modal close event. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
826
1118
|
*/
|
|
827
1119
|
close: EventEmitter<CustomEvent<any>>;
|
|
828
1120
|
/**
|
|
829
|
-
* An event emitter notifying the modal open event.
|
|
1121
|
+
* An event emitter notifying the modal open event. @vegaVersion 1.0.10
|
|
830
1122
|
*/
|
|
831
1123
|
vegaOpen: EventEmitter<CustomEvent<any>>;
|
|
832
1124
|
/**
|
|
833
|
-
* An event emitter notifying the modal open event. The event name is not `open` because already has a property `open` @eventSemantics namespace:native
|
|
1125
|
+
* An event emitter notifying the modal open event. The event name is not `open` because already has a property `open` @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
834
1126
|
*/
|
|
835
1127
|
modalOpen: EventEmitter<CustomEvent<any>>;
|
|
836
1128
|
}
|
|
@@ -870,21 +1162,21 @@ export declare class VegaPageNotificationList {
|
|
|
870
1162
|
}
|
|
871
1163
|
export declare interface VegaPagination extends Components.VegaPagination {
|
|
872
1164
|
/**
|
|
873
|
-
* An event emitter notifying the current page change.
|
|
1165
|
+
* An event emitter notifying the current page change. @vegaVersion 1.3.0
|
|
874
1166
|
*/
|
|
875
1167
|
vegaChange: EventEmitter<CustomEvent<number>>;
|
|
876
1168
|
/**
|
|
877
|
-
* An event emitter notifying the current page change. @eventSemantics namespace:native
|
|
1169
|
+
* An event emitter notifying the current page change. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
878
1170
|
*/
|
|
879
1171
|
change: EventEmitter<CustomEvent<number>>;
|
|
880
1172
|
/**
|
|
881
1173
|
* An event emitter notifying a change in the number of
|
|
882
|
-
data items displayed per page.
|
|
1174
|
+
data items displayed per page. @vegaVersion 1.25.0
|
|
883
1175
|
*/
|
|
884
1176
|
vegaPageSizeChange: EventEmitter<CustomEvent<number>>;
|
|
885
1177
|
/**
|
|
886
1178
|
* An event emitter notifying a change in the number of
|
|
887
|
-
data items displayed per page. @eventSemantics namespace:native
|
|
1179
|
+
data items displayed per page. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
888
1180
|
*/
|
|
889
1181
|
pageSizeChange: EventEmitter<CustomEvent<number>>;
|
|
890
1182
|
}
|
|
@@ -906,19 +1198,19 @@ export declare class VegaPieChart {
|
|
|
906
1198
|
}
|
|
907
1199
|
export declare interface VegaPopover extends Components.VegaPopover {
|
|
908
1200
|
/**
|
|
909
|
-
* An event emitter notifying the popover show event.
|
|
1201
|
+
* An event emitter notifying the popover show event. @vegaVersion 1.22.0
|
|
910
1202
|
*/
|
|
911
1203
|
vegaPopoverShow: EventEmitter<CustomEvent<string>>;
|
|
912
1204
|
/**
|
|
913
|
-
* An event emitter notifying the popover show event. @eventSemantics namespace:native
|
|
1205
|
+
* An event emitter notifying the popover show event. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
914
1206
|
*/
|
|
915
1207
|
popoverShow: EventEmitter<CustomEvent<string>>;
|
|
916
1208
|
/**
|
|
917
|
-
* An event emitter notifying the popover hide event.
|
|
1209
|
+
* An event emitter notifying the popover hide event. @vegaVersion 1.22.0
|
|
918
1210
|
*/
|
|
919
1211
|
vegaPopoverHide: EventEmitter<CustomEvent<string>>;
|
|
920
1212
|
/**
|
|
921
|
-
* An event emitter notifying the popover hide event. @eventSemantics namespace:native
|
|
1213
|
+
* An event emitter notifying the popover hide event. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
922
1214
|
*/
|
|
923
1215
|
popoverHide: EventEmitter<CustomEvent<string>>;
|
|
924
1216
|
}
|
|
@@ -927,7 +1219,7 @@ export declare class VegaPopover {
|
|
|
927
1219
|
protected el: HTMLElement;
|
|
928
1220
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
929
1221
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaPopover, never>;
|
|
930
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaPopover, "vega-popover", never, { "alignment": "alignment"; "placement": "placement"; "positionRelativeTo": "positionRelativeTo"; "size": "size"; "trigger": "trigger"; }, {}, never, ["*"]>;
|
|
1222
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaPopover, "vega-popover", never, { "alignment": "alignment"; "placement": "placement"; "positionRelativeTo": "positionRelativeTo"; "showArrow": "showArrow"; "size": "size"; "trigger": "trigger"; }, {}, never, ["*"]>;
|
|
931
1223
|
}
|
|
932
1224
|
export declare interface VegaPopoverContentBox extends Components.VegaPopoverContentBox {
|
|
933
1225
|
}
|
|
@@ -936,15 +1228,15 @@ export declare class VegaPopoverContentBox {
|
|
|
936
1228
|
protected el: HTMLElement;
|
|
937
1229
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
938
1230
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaPopoverContentBox, never>;
|
|
939
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaPopoverContentBox, "vega-popover-content-box", never, {}, {}, never, ["*"]>;
|
|
1231
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaPopoverContentBox, "vega-popover-content-box", never, { "showArrow": "showArrow"; }, {}, never, ["*"]>;
|
|
940
1232
|
}
|
|
941
1233
|
export declare interface VegaProgressTracker extends Components.VegaProgressTracker {
|
|
942
1234
|
/**
|
|
943
|
-
* An event emitter notifying that the current step has changed.
|
|
1235
|
+
* An event emitter notifying that the current step has changed. @vegaVersion 1.5.0
|
|
944
1236
|
*/
|
|
945
1237
|
vegaCurrentStepUpdate: EventEmitter<CustomEvent<string>>;
|
|
946
1238
|
/**
|
|
947
|
-
* An event emitter notifying that the current step has changed. @eventSemantics namespace:native
|
|
1239
|
+
* An event emitter notifying that the current step has changed. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
948
1240
|
*/
|
|
949
1241
|
currentStepUpdate: EventEmitter<CustomEvent<string>>;
|
|
950
1242
|
}
|
|
@@ -957,29 +1249,29 @@ export declare class VegaProgressTracker {
|
|
|
957
1249
|
}
|
|
958
1250
|
export declare interface VegaRadio extends Components.VegaRadio {
|
|
959
1251
|
/**
|
|
960
|
-
* An event emitter notifying the focus event of the radio input.
|
|
1252
|
+
* An event emitter notifying the focus event of the radio input. @vegaVersion 1.0.7
|
|
961
1253
|
*/
|
|
962
1254
|
vegaFocus: EventEmitter<CustomEvent<any>>;
|
|
963
1255
|
/**
|
|
964
|
-
* An event emitter notifying the focus event of the radio input. @eventSemantics namespace:native
|
|
1256
|
+
* An event emitter notifying the focus event of the radio input. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
965
1257
|
*/
|
|
966
1258
|
focus: EventEmitter<CustomEvent<any>>;
|
|
967
1259
|
/**
|
|
968
|
-
* An event emitter notifying the blur event of the radio input.
|
|
1260
|
+
* An event emitter notifying the blur event of the radio input. @vegaVersion 1.0.7
|
|
969
1261
|
*/
|
|
970
1262
|
vegaBlur: EventEmitter<CustomEvent<any>>;
|
|
971
1263
|
/**
|
|
972
|
-
* An event emitter notifying the blur event of the radio input. @eventSemantics namespace:native
|
|
1264
|
+
* An event emitter notifying the blur event of the radio input. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
973
1265
|
*/
|
|
974
1266
|
blur: EventEmitter<CustomEvent<any>>;
|
|
975
1267
|
/**
|
|
976
1268
|
* An event emitter notifying the change in the check status
|
|
977
|
-
of the radio input.
|
|
1269
|
+
of the radio input. @vegaVersion 1.0.10
|
|
978
1270
|
*/
|
|
979
1271
|
vegaChange: EventEmitter<CustomEvent<boolean>>;
|
|
980
1272
|
/**
|
|
981
1273
|
* An event emitter notifying the change in the check status
|
|
982
|
-
of the radio input. @eventSemantics namespace:native
|
|
1274
|
+
of the radio input. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
983
1275
|
*/
|
|
984
1276
|
change: EventEmitter<CustomEvent<boolean>>;
|
|
985
1277
|
}
|
|
@@ -993,12 +1285,12 @@ export declare class VegaRadio {
|
|
|
993
1285
|
export declare interface VegaRadioGroup extends Components.VegaRadioGroup {
|
|
994
1286
|
/**
|
|
995
1287
|
* An event emitter notifying the change of the
|
|
996
|
-
checked radio button in the radio group.
|
|
1288
|
+
checked radio button in the radio group. @vegaVersion 1.0.10
|
|
997
1289
|
*/
|
|
998
1290
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
999
1291
|
/**
|
|
1000
1292
|
* An event emitter notifying the change of the
|
|
1001
|
-
checked radio button in the radio group. @eventSemantics namespace:native
|
|
1293
|
+
checked radio button in the radio group. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1002
1294
|
*/
|
|
1003
1295
|
change: EventEmitter<CustomEvent<string>>;
|
|
1004
1296
|
}
|
|
@@ -1007,7 +1299,92 @@ export declare class VegaRadioGroup {
|
|
|
1007
1299
|
protected el: HTMLElement;
|
|
1008
1300
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1009
1301
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaRadioGroup, never>;
|
|
1010
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaRadioGroup, "vega-radio-group", never, { "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "name": "name"; "required": "required"; "value": "value"; "vegaFlexProp": "vegaFlexProp"; }, {}, never, ["*"]>;
|
|
1302
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaRadioGroup, "vega-radio-group", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "name": "name"; "required": "required"; "validationRules": "validationRules"; "value": "value"; "vegaFlexProp": "vegaFlexProp"; }, {}, never, ["*"]>;
|
|
1303
|
+
}
|
|
1304
|
+
export declare interface VegaRichTextContent extends Components.VegaRichTextContent {
|
|
1305
|
+
}
|
|
1306
|
+
export declare class VegaRichTextContent {
|
|
1307
|
+
protected z: NgZone;
|
|
1308
|
+
protected el: HTMLElement;
|
|
1309
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1310
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaRichTextContent, never>;
|
|
1311
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaRichTextContent, "vega-rich-text-content", never, { "content": "content"; }, {}, never, ["*"]>;
|
|
1312
|
+
}
|
|
1313
|
+
export declare interface VegaRichTextEditor extends Components.VegaRichTextEditor {
|
|
1314
|
+
/**
|
|
1315
|
+
* An event emitter notifying a value change. @vegaVersion __VEGA_VERSION__
|
|
1316
|
+
*/
|
|
1317
|
+
vegaChange: EventEmitter<CustomEvent<Array<IVegaRichTextEditorVegaRTEContentBlock>>>;
|
|
1318
|
+
/**
|
|
1319
|
+
* An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion __VEGA_VERSION__
|
|
1320
|
+
*/
|
|
1321
|
+
change: EventEmitter<CustomEvent<Array<IVegaRichTextEditorVegaRTEContentBlock>>>;
|
|
1322
|
+
/**
|
|
1323
|
+
* An event emitter notifying a image selection change. @vegaVersion __VEGA_VERSION__
|
|
1324
|
+
*/
|
|
1325
|
+
vegaSelectedImageChange: EventEmitter<CustomEvent<IVegaRichTextEditorVegaRichTextEditorImage>>;
|
|
1326
|
+
/**
|
|
1327
|
+
* An event emitter notifying a image selection change. @eventSemantics namespace:native,@vegaVersion __VEGA_VERSION__
|
|
1328
|
+
*/
|
|
1329
|
+
selectedImageChange: EventEmitter<CustomEvent<IVegaRichTextEditorVegaRichTextEditorImage>>;
|
|
1330
|
+
}
|
|
1331
|
+
export declare class VegaRichTextEditor {
|
|
1332
|
+
protected z: NgZone;
|
|
1333
|
+
protected el: HTMLElement;
|
|
1334
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1335
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaRichTextEditor, never>;
|
|
1336
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaRichTextEditor, "vega-rich-text-editor", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "placeholder": "placeholder"; "required": "required"; "rows": "rows"; "toolbarItems": "toolbarItems"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
1337
|
+
}
|
|
1338
|
+
export declare interface VegaRichTextEditorToolbarButton extends Components.VegaRichTextEditorToolbarButton {
|
|
1339
|
+
/**
|
|
1340
|
+
* An event emitter notifying the click event of the button. @vegaVersion __VEGA_VERSION__
|
|
1341
|
+
*/
|
|
1342
|
+
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
1343
|
+
/**
|
|
1344
|
+
* An event emitter notifying the click event of the button. @eventSemantics namespace:native,@vegaVersion __VEGA_VERSION__
|
|
1345
|
+
*/
|
|
1346
|
+
click: EventEmitter<CustomEvent<any>>;
|
|
1347
|
+
}
|
|
1348
|
+
export declare class VegaRichTextEditorToolbarButton {
|
|
1349
|
+
protected z: NgZone;
|
|
1350
|
+
protected el: HTMLElement;
|
|
1351
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1352
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaRichTextEditorToolbarButton, never>;
|
|
1353
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaRichTextEditorToolbarButton, "vega-rich-text-editor-toolbar-button", never, { "disabled": "disabled"; "icon": "icon"; "iconColor": "iconColor"; "selected": "selected"; "showArrowIcon": "showArrowIcon"; }, {}, never, ["*"]>;
|
|
1354
|
+
}
|
|
1355
|
+
export declare interface VegaRichTextImageEditor extends Components.VegaRichTextImageEditor {
|
|
1356
|
+
/**
|
|
1357
|
+
* An event emitter notifying content change. @vegaVersion __VEGA_VERSION__
|
|
1358
|
+
*/
|
|
1359
|
+
vegaChange: EventEmitter<CustomEvent<IVegaRichTextImageEditorVegaRichTextImageEditorChangeDetail>>;
|
|
1360
|
+
/**
|
|
1361
|
+
* An event emitter notifying content change. @vegaVersion __VEGA_VERSION__
|
|
1362
|
+
*/
|
|
1363
|
+
change: EventEmitter<CustomEvent<IVegaRichTextImageEditorVegaRichTextImageEditorChangeDetail>>;
|
|
1364
|
+
}
|
|
1365
|
+
export declare class VegaRichTextImageEditor {
|
|
1366
|
+
protected z: NgZone;
|
|
1367
|
+
protected el: HTMLElement;
|
|
1368
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1369
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaRichTextImageEditor, never>;
|
|
1370
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaRichTextImageEditor, "vega-rich-text-image-editor", never, { "alt": "alt"; "size": "size"; }, {}, never, ["*"]>;
|
|
1371
|
+
}
|
|
1372
|
+
export declare interface VegaRichTextLinkEditor extends Components.VegaRichTextLinkEditor {
|
|
1373
|
+
/**
|
|
1374
|
+
* An event emitter notifying content change. @vegaVersion __VEGA_VERSION__
|
|
1375
|
+
*/
|
|
1376
|
+
vegaChange: EventEmitter<CustomEvent<IVegaRichTextLinkEditorVegaRichTextLinkEditorChangeDetail>>;
|
|
1377
|
+
/**
|
|
1378
|
+
* An event emitter notifying content change. @vegaVersion __VEGA_VERSION__
|
|
1379
|
+
*/
|
|
1380
|
+
change: EventEmitter<CustomEvent<IVegaRichTextLinkEditorVegaRichTextLinkEditorChangeDetail>>;
|
|
1381
|
+
}
|
|
1382
|
+
export declare class VegaRichTextLinkEditor {
|
|
1383
|
+
protected z: NgZone;
|
|
1384
|
+
protected el: HTMLElement;
|
|
1385
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1386
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaRichTextLinkEditor, never>;
|
|
1387
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaRichTextLinkEditor, "vega-rich-text-link-editor", never, { "record": "record"; "resetStatusAfterHide": "resetStatusAfterHide"; "status": "status"; }, {}, never, ["*"]>;
|
|
1011
1388
|
}
|
|
1012
1389
|
export declare interface VegaSectionTitle extends Components.VegaSectionTitle {
|
|
1013
1390
|
}
|
|
@@ -1018,6 +1395,170 @@ export declare class VegaSectionTitle {
|
|
|
1018
1395
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaSectionTitle, never>;
|
|
1019
1396
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaSectionTitle, "vega-section-title", never, { "description": "description"; "icon": "icon"; "iconAlign": "iconAlign"; "titleText": "titleText"; }, {}, never, ["*"]>;
|
|
1020
1397
|
}
|
|
1398
|
+
export declare interface VegaSegmentControl extends Components.VegaSegmentControl {
|
|
1399
|
+
/**
|
|
1400
|
+
* An event emitter notifying changes
|
|
1401
|
+
in the selected segment. @vegaVersion 2.3.0
|
|
1402
|
+
*/
|
|
1403
|
+
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1404
|
+
/**
|
|
1405
|
+
* A native event emitter notifying changes
|
|
1406
|
+
in the selected segment. @eventSemantics namespace:native,@vegaVersion 2.3.0
|
|
1407
|
+
*/
|
|
1408
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
1409
|
+
}
|
|
1410
|
+
export declare class VegaSegmentControl {
|
|
1411
|
+
protected z: NgZone;
|
|
1412
|
+
protected el: HTMLElement;
|
|
1413
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1414
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaSegmentControl, never>;
|
|
1415
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaSegmentControl, "vega-segment-control", never, { "block": "block"; "segments": "segments"; "selected": "selected"; "size": "size"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
1416
|
+
}
|
|
1417
|
+
export declare interface VegaSelectionChip extends Components.VegaSelectionChip {
|
|
1418
|
+
/**
|
|
1419
|
+
* An event emitter notifying changes in the value of the selection chip,
|
|
1420
|
+
whether triggered programmatically or through user interaction. @vegaVersion 2.22.0
|
|
1421
|
+
*/
|
|
1422
|
+
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1423
|
+
/**
|
|
1424
|
+
* An event emitter notifying changes in the value of the selection chip,
|
|
1425
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.22.0
|
|
1426
|
+
*/
|
|
1427
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
1428
|
+
}
|
|
1429
|
+
export declare class VegaSelectionChip {
|
|
1430
|
+
protected z: NgZone;
|
|
1431
|
+
protected el: HTMLElement;
|
|
1432
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1433
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaSelectionChip, never>;
|
|
1434
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaSelectionChip, "vega-selection-chip", never, { "block": "block"; "checked": "checked"; "disabled": "disabled"; "disabledTooltip": "disabledTooltip"; "label": "label"; "size": "size"; "swatchColor": "swatchColor"; "value": "value"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
1435
|
+
}
|
|
1436
|
+
export declare interface VegaSelectionChipGroup extends Components.VegaSelectionChipGroup {
|
|
1437
|
+
/**
|
|
1438
|
+
* An event emitter notifying changes in the value of the selection chip group,
|
|
1439
|
+
whether triggered programmatically or through user interaction. @vegaVersion 2.22.0
|
|
1440
|
+
*/
|
|
1441
|
+
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1442
|
+
/**
|
|
1443
|
+
* An event emitter notifying changes in the value of the selection chip group,
|
|
1444
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.22.0
|
|
1445
|
+
*/
|
|
1446
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
1447
|
+
}
|
|
1448
|
+
export declare class VegaSelectionChipGroup {
|
|
1449
|
+
protected z: NgZone;
|
|
1450
|
+
protected el: HTMLElement;
|
|
1451
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1452
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaSelectionChipGroup, never>;
|
|
1453
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaSelectionChipGroup, "vega-selection-chip-group", never, { "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "required": "required"; "selectType": "selectType"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
1454
|
+
}
|
|
1455
|
+
export declare interface VegaSelectionTile extends Components.VegaSelectionTile {
|
|
1456
|
+
/**
|
|
1457
|
+
* An event emitter notifying changes in the value of the selection tile,
|
|
1458
|
+
whether triggered programmatically or through user interaction. @vegaVersion 2.7.0
|
|
1459
|
+
*/
|
|
1460
|
+
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1461
|
+
/**
|
|
1462
|
+
* An event emitter notifying changes in the value of the selection tile,
|
|
1463
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.7.0
|
|
1464
|
+
*/
|
|
1465
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
1466
|
+
}
|
|
1467
|
+
export declare class VegaSelectionTile {
|
|
1468
|
+
protected z: NgZone;
|
|
1469
|
+
protected el: HTMLElement;
|
|
1470
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1471
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaSelectionTile, never>;
|
|
1472
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaSelectionTile, "vega-selection-tile", never, { "checked": "checked"; "disabled": "disabled"; "note": "note"; "prefixIcon": "prefixIcon"; "selectType": "selectType"; "titleText": "titleText"; "value": "value"; }, {}, never, ["*"]>;
|
|
1473
|
+
}
|
|
1474
|
+
export declare interface VegaSelectionTileGroup extends Components.VegaSelectionTileGroup {
|
|
1475
|
+
/**
|
|
1476
|
+
* An event emitter notifying changes in the value of the selection tile group,
|
|
1477
|
+
whether triggered programmatically or through user interaction. @vegaVersion 2.7.0
|
|
1478
|
+
*/
|
|
1479
|
+
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1480
|
+
/**
|
|
1481
|
+
* An event emitter notifying changes in the value of the selection tile group,
|
|
1482
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.7.0
|
|
1483
|
+
*/
|
|
1484
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
1485
|
+
}
|
|
1486
|
+
export declare class VegaSelectionTileGroup {
|
|
1487
|
+
protected z: NgZone;
|
|
1488
|
+
protected el: HTMLElement;
|
|
1489
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1490
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaSelectionTileGroup, never>;
|
|
1491
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaSelectionTileGroup, "vega-selection-tile-group", never, { "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "layout": "layout"; "required": "required"; "selectType": "selectType"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
1492
|
+
}
|
|
1493
|
+
export declare interface VegaSidenav extends Components.VegaSidenav {
|
|
1494
|
+
/**
|
|
1495
|
+
* An event emitter notifying the completion of a navigation menu state change (open or close). @vegaVersion 1, v2.29.0
|
|
1496
|
+
*/
|
|
1497
|
+
vegaStateUpdate: EventEmitter<CustomEvent<string>>;
|
|
1498
|
+
/**
|
|
1499
|
+
* An event emitter notifying the completion of a navigation menu state change (open or close). @eventSemantics namespace:native,@vegaVersion 1, v2.29.0
|
|
1500
|
+
*/
|
|
1501
|
+
stateUpdate: EventEmitter<CustomEvent<string>>;
|
|
1502
|
+
}
|
|
1503
|
+
export declare class VegaSidenav {
|
|
1504
|
+
protected z: NgZone;
|
|
1505
|
+
protected el: HTMLElement;
|
|
1506
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1507
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaSidenav, never>;
|
|
1508
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaSidenav, "vega-sidenav", never, { "footnote": "footnote"; "headerConfig": "headerConfig"; "openByDefault": "openByDefault"; "source": "source"; }, {}, never, ["*"]>;
|
|
1509
|
+
}
|
|
1510
|
+
export declare interface VegaSidenavGroup extends Components.VegaSidenavGroup {
|
|
1511
|
+
}
|
|
1512
|
+
export declare class VegaSidenavGroup {
|
|
1513
|
+
protected z: NgZone;
|
|
1514
|
+
protected el: HTMLElement;
|
|
1515
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1516
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaSidenavGroup, never>;
|
|
1517
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaSidenavGroup, "vega-sidenav-group", never, { "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
|
|
1518
|
+
}
|
|
1519
|
+
export declare interface VegaSidenavLink extends Components.VegaSidenavLink {
|
|
1520
|
+
/**
|
|
1521
|
+
* An event emitter notifying about the occurrence of a click event. @vegaVersion 1, v2.29.0
|
|
1522
|
+
*/
|
|
1523
|
+
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
1524
|
+
/**
|
|
1525
|
+
* An event emitter notifying about the occurrence of a click event. @eventSemantics namespace:native,@vegaVersion 1, v2.29.0
|
|
1526
|
+
*/
|
|
1527
|
+
click: EventEmitter<CustomEvent<any>>;
|
|
1528
|
+
}
|
|
1529
|
+
export declare class VegaSidenavLink {
|
|
1530
|
+
protected z: NgZone;
|
|
1531
|
+
protected el: HTMLElement;
|
|
1532
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1533
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaSidenavLink, never>;
|
|
1534
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaSidenavLink, "vega-sidenav-link", never, { "icon": "icon"; "selected": "selected"; "showSideBarOnClickLink": "showSideBarOnClickLink"; "url": "url"; }, {}, never, ["*"]>;
|
|
1535
|
+
}
|
|
1536
|
+
export declare interface VegaSignatureCapture extends Components.VegaSignatureCapture {
|
|
1537
|
+
/**
|
|
1538
|
+
* An event emitter notifying a value change. @vegaVersion 2.19.0
|
|
1539
|
+
*/
|
|
1540
|
+
vegaChange: EventEmitter<CustomEvent<IVegaSignatureCaptureVegaSignatureValue>>;
|
|
1541
|
+
/**
|
|
1542
|
+
* An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.19.0
|
|
1543
|
+
*/
|
|
1544
|
+
change: EventEmitter<CustomEvent<IVegaSignatureCaptureVegaSignatureValue>>;
|
|
1545
|
+
}
|
|
1546
|
+
export declare class VegaSignatureCapture {
|
|
1547
|
+
protected z: NgZone;
|
|
1548
|
+
protected el: HTMLElement;
|
|
1549
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1550
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaSignatureCapture, never>;
|
|
1551
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaSignatureCapture, "vega-signature-capture", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "height": "height"; "isValid": "isValid"; "label": "label"; "mode": "mode"; "placeholder": "placeholder"; "placeholderIcon": "placeholderIcon"; "required": "required"; "showClearBtn": "showClearBtn"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
1552
|
+
}
|
|
1553
|
+
export declare interface VegaSkeleton extends Components.VegaSkeleton {
|
|
1554
|
+
}
|
|
1555
|
+
export declare class VegaSkeleton {
|
|
1556
|
+
protected z: NgZone;
|
|
1557
|
+
protected el: HTMLElement;
|
|
1558
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1559
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaSkeleton, never>;
|
|
1560
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaSkeleton, "vega-skeleton", never, { "animated": "animated"; "height": "height"; "type": "type"; "width": "width"; }, {}, never, ["*"]>;
|
|
1561
|
+
}
|
|
1021
1562
|
export declare interface VegaSlotContainer extends Components.VegaSlotContainer {
|
|
1022
1563
|
}
|
|
1023
1564
|
export declare class VegaSlotContainer {
|
|
@@ -1029,11 +1570,11 @@ export declare class VegaSlotContainer {
|
|
|
1029
1570
|
}
|
|
1030
1571
|
export declare interface VegaStepper extends Components.VegaStepper {
|
|
1031
1572
|
/**
|
|
1032
|
-
* An event emitter notifying changes in the value of the stepper component.
|
|
1573
|
+
* An event emitter notifying changes in the value of the stepper component. @vegaVersion 1.0.8
|
|
1033
1574
|
*/
|
|
1034
1575
|
vegaChange: EventEmitter<CustomEvent<number>>;
|
|
1035
1576
|
/**
|
|
1036
|
-
* An event emitter notifying changes in the value of the stepper component. @eventSemantics namespace:native
|
|
1577
|
+
* An event emitter notifying changes in the value of the stepper component. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1037
1578
|
*/
|
|
1038
1579
|
change: EventEmitter<CustomEvent<number>>;
|
|
1039
1580
|
}
|
|
@@ -1047,12 +1588,12 @@ export declare class VegaStepper {
|
|
|
1047
1588
|
export declare interface VegaTabGroup extends Components.VegaTabGroup {
|
|
1048
1589
|
/**
|
|
1049
1590
|
* An event emitter notifying the click event of a tab
|
|
1050
|
-
in the tab group.
|
|
1591
|
+
in the tab group. @vegaVersion 1.1.0
|
|
1051
1592
|
*/
|
|
1052
1593
|
vegaClick: EventEmitter<CustomEvent<string>>;
|
|
1053
1594
|
/**
|
|
1054
1595
|
* An event emitter notifying the click event of a tab
|
|
1055
|
-
in the tab group. @eventSemantics namespace:native
|
|
1596
|
+
in the tab group. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1056
1597
|
*/
|
|
1057
1598
|
click: EventEmitter<CustomEvent<string>>;
|
|
1058
1599
|
}
|
|
@@ -1074,50 +1615,74 @@ export declare class VegaTabGroupPanel {
|
|
|
1074
1615
|
}
|
|
1075
1616
|
export declare interface VegaTable extends Components.VegaTable {
|
|
1076
1617
|
/**
|
|
1077
|
-
* An event emitter notifying changes in the table data.
|
|
1618
|
+
* An event emitter notifying changes in the table data. @vegaVersion 1.3.0
|
|
1078
1619
|
*/
|
|
1079
1620
|
vegaChange: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;
|
|
1080
1621
|
/**
|
|
1081
|
-
* An event emitter notifying changes in the table data. @eventSemantics namespace:native
|
|
1622
|
+
* An event emitter notifying changes in the table data. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1082
1623
|
*/
|
|
1083
1624
|
change: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;
|
|
1084
1625
|
/**
|
|
1085
1626
|
* An event emitter notifying the click event of a row
|
|
1086
|
-
in the table.
|
|
1627
|
+
in the table. @vegaVersion 1.3.0
|
|
1087
1628
|
*/
|
|
1088
1629
|
vegaRowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;
|
|
1089
1630
|
/**
|
|
1090
1631
|
* An event emitter notifying the click event of a row
|
|
1091
|
-
in the table. @eventSemantics namespace:native
|
|
1632
|
+
in the table. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1092
1633
|
*/
|
|
1093
1634
|
rowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;
|
|
1094
1635
|
/**
|
|
1095
|
-
* An event emitter notifying the
|
|
1096
|
-
|
|
1636
|
+
* An event emitter notifying the expanded event of a row
|
|
1637
|
+
in the table. @vegaVersion 2.24.0
|
|
1638
|
+
*/
|
|
1639
|
+
vegaRowExpand: EventEmitter<CustomEvent<IVegaTableVegaTableRowExpandEventDetail>>;
|
|
1640
|
+
/**
|
|
1641
|
+
* An event emitter notifying the expanded event of a row
|
|
1642
|
+
in the table. @eventSemantics namespace:native,@vegaVersion 2.24.0
|
|
1643
|
+
*/
|
|
1644
|
+
rowExpand: EventEmitter<CustomEvent<IVegaTableVegaTableRowExpandEventDetail>>;
|
|
1645
|
+
/**
|
|
1646
|
+
* An event emitter notifying when the row selection changes. @vegaVersion 1.18.0
|
|
1097
1647
|
*/
|
|
1098
1648
|
vegaSelectChange: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectProp>>;
|
|
1099
1649
|
/**
|
|
1100
|
-
* An event emitter notifying the selection
|
|
1101
|
-
of a row in the table. @eventSemantics namespace:native
|
|
1650
|
+
* An event emitter notifying when the selection state of all rows changes. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1102
1651
|
*/
|
|
1103
1652
|
selectChange: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectProp>>;
|
|
1104
1653
|
/**
|
|
1105
1654
|
* An event emitter notifying changes in the selection of checkboxes,
|
|
1106
|
-
particularly the "Select All" checkbox in the table header.
|
|
1655
|
+
particularly the "Select All" checkbox in the table header. @vegaVersion 1.18.0
|
|
1107
1656
|
*/
|
|
1108
1657
|
vegaSelectAllChange: EventEmitter<CustomEvent<IVegaTableVegaTableSelectAllProp>>;
|
|
1109
1658
|
/**
|
|
1110
1659
|
* An event emitter notifying changes in the selection of checkboxes,
|
|
1111
|
-
particularly the "Select All" checkbox in the table header. @eventSemantics namespace:native
|
|
1660
|
+
particularly the "Select All" checkbox in the table header. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1112
1661
|
*/
|
|
1113
1662
|
selectAllChange: EventEmitter<CustomEvent<IVegaTableVegaTableSelectAllProp>>;
|
|
1663
|
+
/**
|
|
1664
|
+
* An event emitter notifying before the selected change when select/deselect one row @vegaVersion 2.23.0
|
|
1665
|
+
*/
|
|
1666
|
+
vegaRowSelect: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectEventDetail>>;
|
|
1667
|
+
/**
|
|
1668
|
+
* An event emitter notifying before the selected change when select/deselect one row @eventSemantics namespace:native,@vegaVersion 2.23.0
|
|
1669
|
+
*/
|
|
1670
|
+
rowSelect: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectEventDetail>>;
|
|
1671
|
+
/**
|
|
1672
|
+
* An event emitter notifying before the selected change when select/deselect all rows @vegaVersion 2.23.0
|
|
1673
|
+
*/
|
|
1674
|
+
vegaRowSelectAll: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectAllEventDetail>>;
|
|
1675
|
+
/**
|
|
1676
|
+
* An event emitter notifying before the selected change when select/deselect all rows @eventSemantics namespace:native,@vegaVersion 2.23.0
|
|
1677
|
+
*/
|
|
1678
|
+
rowSelectAll: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectAllEventDetail>>;
|
|
1114
1679
|
}
|
|
1115
1680
|
export declare class VegaTable {
|
|
1116
1681
|
protected z: NgZone;
|
|
1117
1682
|
protected el: HTMLElement;
|
|
1118
1683
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1119
1684
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaTable, never>;
|
|
1120
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTable, "vega-table", never, { "columnDivider": "columnDivider"; "columns": "columns"; "dataSource": "dataSource"; "density": "density"; "emptyDescription": "emptyDescription"; "paddingX": "paddingX"; "pagination": "pagination"; "rowClickable": "rowClickable"; "rowDivider": "rowDivider"; "rowExpandable": "rowExpandable"; "rowKey": "rowKey"; "rowSelection": "rowSelection"; "scrollConfig": "scrollConfig"; "showHeader": "showHeader"; "striped": "striped"; }, {}, never, ["*"]>;
|
|
1685
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTable, "vega-table", never, { "columnDivider": "columnDivider"; "columns": "columns"; "dataSource": "dataSource"; "density": "density"; "emptyDescription": "emptyDescription"; "paddingX": "paddingX"; "pagination": "pagination"; "rowClickable": "rowClickable"; "rowDivider": "rowDivider"; "rowExpandable": "rowExpandable"; "rowKey": "rowKey"; "rowSelection": "rowSelection"; "scrollConfig": "scrollConfig"; "showHeader": "showHeader"; "sortConfig": "sortConfig"; "striped": "striped"; }, {}, never, ["*"]>;
|
|
1121
1686
|
}
|
|
1122
1687
|
export declare interface VegaTableBody extends Components.VegaTableBody {
|
|
1123
1688
|
}
|
|
@@ -1157,11 +1722,11 @@ export declare class VegaTableHead {
|
|
|
1157
1722
|
}
|
|
1158
1723
|
export declare interface VegaTableHeadCell extends Components.VegaTableHeadCell {
|
|
1159
1724
|
/**
|
|
1160
|
-
* An event emitter notifying that the head cell has been clicked.
|
|
1725
|
+
* An event emitter notifying that the head cell has been clicked. @vegaVersion 1.44.0
|
|
1161
1726
|
*/
|
|
1162
1727
|
vegaClick: EventEmitter<CustomEvent<IVegaTableHeadCellVegaTableHeadCellClickEvent>>;
|
|
1163
1728
|
/**
|
|
1164
|
-
* An event emitter notifying that the head cell has been clicked. @eventSemantics namespace:native
|
|
1729
|
+
* An event emitter notifying that the head cell has been clicked. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1165
1730
|
*/
|
|
1166
1731
|
click: EventEmitter<CustomEvent<IVegaTableHeadCellVegaTableHeadCellClickEvent>>;
|
|
1167
1732
|
}
|
|
@@ -1170,7 +1735,7 @@ export declare class VegaTableHeadCell {
|
|
|
1170
1735
|
protected el: HTMLElement;
|
|
1171
1736
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1172
1737
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaTableHeadCell, never>;
|
|
1173
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTableHeadCell, "vega-table-head-cell", never, { "breakpoint": "breakpoint"; "sorter": "sorter"; "textAlign": "textAlign"; "width": "width"; }, {}, never, ["*"]>;
|
|
1738
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTableHeadCell, "vega-table-head-cell", never, { "breakpoint": "breakpoint"; "sortOrder": "sortOrder"; "sorter": "sorter"; "textAlign": "textAlign"; "width": "width"; }, {}, never, ["*"]>;
|
|
1174
1739
|
}
|
|
1175
1740
|
export declare interface VegaTableHeadRow extends Components.VegaTableHeadRow {
|
|
1176
1741
|
}
|
|
@@ -1183,13 +1748,21 @@ export declare class VegaTableHeadRow {
|
|
|
1183
1748
|
}
|
|
1184
1749
|
export declare interface VegaTableRow extends Components.VegaTableRow {
|
|
1185
1750
|
/**
|
|
1186
|
-
* An event emitter notifying that the row has been clicked.
|
|
1751
|
+
* An event emitter notifying that the row has been clicked. @vegaVersion 1.44.0
|
|
1187
1752
|
*/
|
|
1188
1753
|
vegaClick: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
|
|
1189
1754
|
/**
|
|
1190
|
-
* An event emitter notifying that the row has been clicked. @eventSemantics namespace:native
|
|
1755
|
+
* An event emitter notifying that the row has been clicked. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1191
1756
|
*/
|
|
1192
1757
|
click: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
|
|
1758
|
+
/**
|
|
1759
|
+
* An event emitter notifying that the expand icon has been clicked. @vegaVersion 2.20.0
|
|
1760
|
+
*/
|
|
1761
|
+
vegaExpand: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowExpandEvent>>;
|
|
1762
|
+
/**
|
|
1763
|
+
* An event emitter notifying that the expand icon has been clicked. @eventSemantics namespace:native,@vegaVersion 2.20.0
|
|
1764
|
+
*/
|
|
1765
|
+
expand: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowExpandEvent>>;
|
|
1193
1766
|
}
|
|
1194
1767
|
export declare class VegaTableRow {
|
|
1195
1768
|
protected z: NgZone;
|
|
@@ -1210,22 +1783,22 @@ export declare class VegaText {
|
|
|
1210
1783
|
export declare interface VegaTextarea extends Components.VegaTextarea {
|
|
1211
1784
|
/**
|
|
1212
1785
|
* An event emitter notifying about changes in the value
|
|
1213
|
-
of the text area.
|
|
1786
|
+
of the text area. @vegaVersion 1.11.0
|
|
1214
1787
|
*/
|
|
1215
1788
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1216
1789
|
/**
|
|
1217
1790
|
* An event emitter notifying about changes in the value
|
|
1218
|
-
of the text area. @eventSemantics namespace:native
|
|
1791
|
+
of the text area. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1219
1792
|
*/
|
|
1220
1793
|
change: EventEmitter<CustomEvent<string>>;
|
|
1221
1794
|
/**
|
|
1222
1795
|
* An event emitter notifying the blur event of the inner
|
|
1223
|
-
textarea element within the text area.
|
|
1796
|
+
textarea element within the text area. @vegaVersion 1.11.0
|
|
1224
1797
|
*/
|
|
1225
1798
|
vegaBlur: EventEmitter<CustomEvent<undefined>>;
|
|
1226
1799
|
/**
|
|
1227
1800
|
* An event emitter notifying the blur event of the inner
|
|
1228
|
-
textarea element within the text area. @eventSemantics namespace:native
|
|
1801
|
+
textarea element within the text area. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1229
1802
|
*/
|
|
1230
1803
|
blur: EventEmitter<CustomEvent<undefined>>;
|
|
1231
1804
|
}
|
|
@@ -1234,15 +1807,15 @@ export declare class VegaTextarea {
|
|
|
1234
1807
|
protected el: HTMLElement;
|
|
1235
1808
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1236
1809
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaTextarea, never>;
|
|
1237
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTextarea, "vega-textarea", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "maxLength": "maxLength"; "minLength": "minLength"; "placeholder": "placeholder"; "required": "required"; "showCounter": "showCounter"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
1810
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTextarea, "vega-textarea", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "maxLength": "maxLength"; "minLength": "minLength"; "placeholder": "placeholder"; "required": "required"; "resizable": "resizable"; "showCounter": "showCounter"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
1238
1811
|
}
|
|
1239
1812
|
export declare interface VegaTimePicker extends Components.VegaTimePicker {
|
|
1240
1813
|
/**
|
|
1241
|
-
* An event emitter notifying changes in the value of the time picker.
|
|
1814
|
+
* An event emitter notifying changes in the value of the time picker. @vegaVersion 1.12.0
|
|
1242
1815
|
*/
|
|
1243
1816
|
vegaChange: EventEmitter<CustomEvent<string | string[]>>;
|
|
1244
1817
|
/**
|
|
1245
|
-
* An event emitter notifying changes in the value of the time picker. @eventSemantics namespace:native
|
|
1818
|
+
* An event emitter notifying changes in the value of the time picker. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1246
1819
|
*/
|
|
1247
1820
|
change: EventEmitter<CustomEvent<string | string[]>>;
|
|
1248
1821
|
}
|
|
@@ -1264,11 +1837,11 @@ export declare class VegaTimePickerDropdown {
|
|
|
1264
1837
|
}
|
|
1265
1838
|
export declare interface VegaToggleSwitch extends Components.VegaToggleSwitch {
|
|
1266
1839
|
/**
|
|
1267
|
-
* An event emitter notifying changes in the toggle switch.
|
|
1840
|
+
* An event emitter notifying changes in the toggle switch. @vegaVersion 1.3.0
|
|
1268
1841
|
*/
|
|
1269
1842
|
vegaChange: EventEmitter<CustomEvent<boolean>>;
|
|
1270
1843
|
/**
|
|
1271
|
-
* An event emitter notifying changes in the toggle switch. @eventSemantics namespace:native
|
|
1844
|
+
* An event emitter notifying changes in the toggle switch. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1272
1845
|
*/
|
|
1273
1846
|
change: EventEmitter<CustomEvent<boolean>>;
|
|
1274
1847
|
}
|
|
@@ -1277,7 +1850,7 @@ export declare class VegaToggleSwitch {
|
|
|
1277
1850
|
protected el: HTMLElement;
|
|
1278
1851
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1279
1852
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaToggleSwitch, never>;
|
|
1280
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaToggleSwitch, "vega-toggle-switch", never, { "checked": "checked"; "disabled": "disabled"; "label": "label"; "size": "size"; }, {}, never, ["*"]>;
|
|
1853
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaToggleSwitch, "vega-toggle-switch", never, { "autoValidation": "autoValidation"; "checked": "checked"; "disabled": "disabled"; "isValid": "isValid"; "label": "label"; "required": "required"; "size": "size"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
1281
1854
|
}
|
|
1282
1855
|
export declare interface VegaTooltip extends Components.VegaTooltip {
|
|
1283
1856
|
}
|
|
@@ -1304,7 +1877,7 @@ export declare class VegaVirtualScroll {
|
|
|
1304
1877
|
protected el: HTMLElement;
|
|
1305
1878
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1306
1879
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaVirtualScroll, never>;
|
|
1307
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaVirtualScroll, "vega-virtual-scroll", never, { "approxItemHeight": "approxItemHeight"; "renderItem": "renderItem"; "source": "source"; "sourceItemIdentifier": "sourceItemIdentifier"; "
|
|
1880
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaVirtualScroll, "vega-virtual-scroll", never, { "approxItemHeight": "approxItemHeight"; "isLoading": "isLoading"; "renderItem": "renderItem"; "source": "source"; "sourceItemIdentifier": "sourceItemIdentifier"; "viewportMaxHeight": "viewportMaxHeight"; "virtualizationThreshold": "virtualizationThreshold"; }, {}, never, ["*"]>;
|
|
1308
1881
|
}
|
|
1309
|
-
declare const _default: (typeof VegaAccordion | typeof VegaAppFooter | typeof VegaAppHeaderButton | typeof VegaBackdrop | 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 VegaForm | typeof VegaGrid | typeof VegaIcon | typeof VegaImageUploader | typeof VegaInput | typeof VegaInputCreditCard | typeof VegaInputRange | 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 VegaSectionTitle | 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)[];
|
|
1882
|
+
declare const _default: (typeof VegaAccordion | typeof VegaAppFooter | typeof VegaAppHeaderButton | typeof VegaBackdrop | typeof VegaBanner | typeof VegaBarChart | typeof VegaBox | typeof VegaBreadcrumb | typeof VegaButton | typeof VegaButtonCircle | typeof VegaButtonGroup | typeof VegaButtonGroupItem | typeof VegaButtonLink | typeof VegaCalendar | typeof VegaCalendarEvent | typeof VegaCalendarEventSlot | typeof VegaCard | typeof VegaCarousel | typeof VegaCheckbox | typeof VegaCheckboxGroup | typeof VegaChip | typeof VegaColorPicker | typeof VegaComboBox | typeof VegaCounterBadge | typeof VegaDatePicker | typeof VegaDatePickerCalendar | typeof VegaDialog | typeof VegaDivider | typeof VegaDropdown | typeof VegaDropdownContentBox | typeof VegaDropdownGroup | typeof VegaDropdownItem | typeof VegaFieldError | typeof VegaFieldLabel | typeof VegaFileUploader | typeof VegaFlex | typeof VegaFont | typeof VegaForm | typeof VegaGrid | typeof VegaHint | typeof VegaIcon | typeof VegaImageUploader | typeof VegaInput | typeof VegaInputCreditCard | typeof VegaInputNumeric | typeof VegaInputPhoneNumber | typeof VegaInputRange | 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 VegaRichTextContent | typeof VegaRichTextEditor | typeof VegaRichTextEditorToolbarButton | typeof VegaRichTextImageEditor | typeof VegaRichTextLinkEditor | typeof VegaSectionTitle | typeof VegaSegmentControl | typeof VegaSelectionChip | typeof VegaSelectionChipGroup | typeof VegaSelectionTile | typeof VegaSelectionTileGroup | typeof VegaSidenav | typeof VegaSidenavGroup | typeof VegaSidenavLink | typeof VegaSignatureCapture | typeof VegaSkeleton | 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)[];
|
|
1310
1883
|
export default _default;
|