@heartlandone/vega-angular-sandbox-pr-2327-5b91658d7c54c195ad59a3ecd2b440a347320dd1 2.61.0

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