@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,3582 @@
1
+ /* tslint:disable */
2
+ /* auto-generated angular directive proxies */
3
+ import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, NgZone } from '@angular/core';
4
+ import { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';
5
+
6
+ import { Components } from '@heartlandone/vega';
7
+
8
+
9
+
10
+
11
+ export declare interface VegaAccordion extends Components.VegaAccordion {
12
+ /**
13
+ * An event emitter notifying the expand event of the accordion. @vegaVersion 1.3.0
14
+ */
15
+ vegaExpand: EventEmitter<CustomEvent<boolean>>;
16
+ /**
17
+ * An event emitter notifying the expand event of the accordion.
18
+ expand is an attribute, so the event name here uses accordionExpand @eventSemantics namespace:native,@vegaVersion 2.0.0
19
+ */
20
+ accordionExpand: EventEmitter<CustomEvent<boolean>>;
21
+
22
+ }
23
+
24
+ @ProxyCmp({
25
+ defineCustomElementFn: undefined,
26
+ inputs: ['accordionTitle', 'drawsBackground', 'expand', 'expandIconAlign', 'groupId', 'iconPosition', 'prefixIcon', 'showExpandIcon']
27
+ })
28
+ @Component({
29
+ selector: 'vega-accordion',
30
+ changeDetection: ChangeDetectionStrategy.OnPush,
31
+ template: '<ng-content></ng-content>',
32
+ inputs: ['accordionTitle', 'drawsBackground', 'expand', 'expandIconAlign', 'groupId', 'iconPosition', 'prefixIcon', 'showExpandIcon']
33
+ })
34
+ export class VegaAccordion {
35
+ protected el: HTMLElement;
36
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
37
+ c.detach();
38
+ this.el = r.nativeElement;
39
+ proxyOutputs(this, this.el, ['vegaExpand', 'accordionExpand']);
40
+ }
41
+ }
42
+
43
+
44
+ export declare interface VegaAppFooter extends Components.VegaAppFooter {}
45
+
46
+ @ProxyCmp({
47
+ defineCustomElementFn: undefined,
48
+ inputs: ['additionalLinks', 'content', 'disclaimerUrlTarget', 'hideDefaultLinks', 'privacyPolicyLabel', 'privacyPolicyUrl', 'privacyPolicyUrlId', 'privacyPolicyUrlTarget', 'showDisclaimer', 'termOfUseLabel', 'termOfUseUrl', 'termOfUseUrlId', 'termOfUseUrlTarget']
49
+ })
50
+ @Component({
51
+ selector: 'vega-app-footer',
52
+ changeDetection: ChangeDetectionStrategy.OnPush,
53
+ template: '<ng-content></ng-content>',
54
+ inputs: ['additionalLinks', 'content', 'disclaimerUrlTarget', 'hideDefaultLinks', 'privacyPolicyLabel', 'privacyPolicyUrl', 'privacyPolicyUrlId', 'privacyPolicyUrlTarget', 'showDisclaimer', 'termOfUseLabel', 'termOfUseUrl', 'termOfUseUrlId', 'termOfUseUrlTarget']
55
+ })
56
+ export class VegaAppFooter {
57
+ protected el: HTMLElement;
58
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
59
+ c.detach();
60
+ this.el = r.nativeElement;
61
+ }
62
+ }
63
+
64
+
65
+ export declare interface VegaAppHeaderButton extends Components.VegaAppHeaderButton {
66
+ /**
67
+ * An event emitter notifying the click event of an app header button. @vegaVersion 1.11.0
68
+ */
69
+ vegaClick: EventEmitter<CustomEvent<any>>;
70
+ /**
71
+ * An event emitter notifying the click event of an app header button. @eventSemantics namespace:native,@vegaVersion 2.0.0
72
+ */
73
+ click: EventEmitter<CustomEvent<any>>;
74
+ /**
75
+ * An event emitter notifying the click event of a dropdown item
76
+ in the app header. @vegaVersion 1.23.0
77
+ */
78
+ vegaDropdownClick: EventEmitter<CustomEvent<string>>;
79
+ /**
80
+ * An event emitter notifying the click event of a dropdown item
81
+ in the app header. @eventSemantics namespace:native,@vegaVersion 2.0.0
82
+ */
83
+ dropdownClick: EventEmitter<CustomEvent<string>>;
84
+
85
+ }
86
+
87
+ @ProxyCmp({
88
+ defineCustomElementFn: undefined,
89
+ inputs: ['avatar', 'avatarPosition', 'dropdown', 'label', 'selected', 'showBorder', 'showLabel', 'showMenuArrowIcon', 'size']
90
+ })
91
+ @Component({
92
+ selector: 'vega-app-header-button',
93
+ changeDetection: ChangeDetectionStrategy.OnPush,
94
+ template: '<ng-content></ng-content>',
95
+ inputs: ['avatar', 'avatarPosition', 'dropdown', 'label', 'selected', 'showBorder', 'showLabel', 'showMenuArrowIcon', 'size']
96
+ })
97
+ export class VegaAppHeaderButton {
98
+ protected el: HTMLElement;
99
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
100
+ c.detach();
101
+ this.el = r.nativeElement;
102
+ proxyOutputs(this, this.el, ['vegaClick', 'click', 'vegaDropdownClick', 'dropdownClick']);
103
+ }
104
+ }
105
+
106
+
107
+ export declare interface VegaBackdrop extends Components.VegaBackdrop {
108
+ /**
109
+ * An event emitter notifying the click event of the backdrop. @vegaVersion 2.0.0
110
+ */
111
+ vegaClick: EventEmitter<CustomEvent<void>>;
112
+
113
+ }
114
+
115
+ @ProxyCmp({
116
+ defineCustomElementFn: undefined,
117
+ inputs: ['color', 'duration', 'visible']
118
+ })
119
+ @Component({
120
+ selector: 'vega-backdrop',
121
+ changeDetection: ChangeDetectionStrategy.OnPush,
122
+ template: '<ng-content></ng-content>',
123
+ inputs: ['color', 'duration', 'visible']
124
+ })
125
+ export class VegaBackdrop {
126
+ protected el: HTMLElement;
127
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
128
+ c.detach();
129
+ this.el = r.nativeElement;
130
+ proxyOutputs(this, this.el, ['vegaClick']);
131
+ }
132
+ }
133
+
134
+ import type { VegaBannerActionButtonType as IVegaBannerVegaBannerActionButtonType } from '@heartlandone/vega/dist/types/components/vega-banner/types';
135
+ export declare interface VegaBanner extends Components.VegaBanner {
136
+ /**
137
+ * An event emitter notifying the banner close event. @vegaVersion 1.13.0
138
+ */
139
+ vegaClose: EventEmitter<CustomEvent<any>>;
140
+ /**
141
+ * An event emitter notifying the banner close event. @eventSemantics namespace:native,@vegaVersion 2.8.0
142
+ */
143
+ close: EventEmitter<CustomEvent<any>>;
144
+ /**
145
+ * An event emitter notifying the banner action button has been clicked. @vegaVersion 2.18.0
146
+ */
147
+ vegaActionButtonClick: EventEmitter<CustomEvent<IVegaBannerVegaBannerActionButtonType>>;
148
+ /**
149
+ * An event emitter notifying the banner action button has been clicked. @eventSemantics namespace:native,@vegaVersion 2.18.0
150
+ */
151
+ actionButtonClick: EventEmitter<CustomEvent<IVegaBannerVegaBannerActionButtonType>>;
152
+
153
+ }
154
+
155
+ @ProxyCmp({
156
+ defineCustomElementFn: undefined,
157
+ inputs: ['actionButtons', 'bannerTitle', 'content', 'isOpen', 'showCloseButton', 'type'],
158
+ methods: ['doClose']
159
+ })
160
+ @Component({
161
+ selector: 'vega-banner',
162
+ changeDetection: ChangeDetectionStrategy.OnPush,
163
+ template: '<ng-content></ng-content>',
164
+ inputs: ['actionButtons', 'bannerTitle', 'content', 'isOpen', 'showCloseButton', 'type']
165
+ })
166
+ export class VegaBanner {
167
+ protected el: HTMLElement;
168
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
169
+ c.detach();
170
+ this.el = r.nativeElement;
171
+ proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaActionButtonClick', 'actionButtonClick']);
172
+ }
173
+ }
174
+
175
+
176
+ export declare interface VegaBarChart extends Components.VegaBarChart {}
177
+
178
+ @ProxyCmp({
179
+ defineCustomElementFn: undefined,
180
+ inputs: ['options']
181
+ })
182
+ @Component({
183
+ selector: 'vega-bar-chart',
184
+ changeDetection: ChangeDetectionStrategy.OnPush,
185
+ template: '<ng-content></ng-content>',
186
+ inputs: ['options']
187
+ })
188
+ export class VegaBarChart {
189
+ protected el: HTMLElement;
190
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
191
+ c.detach();
192
+ this.el = r.nativeElement;
193
+ }
194
+ }
195
+
196
+
197
+ export declare interface VegaBox extends Components.VegaBox {}
198
+
199
+ @ProxyCmp({
200
+ defineCustomElementFn: undefined,
201
+ inputs: ['alignSelf', 'backgroundColor', 'border', 'borderColor', 'borderStyle', 'corners', 'display', 'flex', 'flexBasis', 'flexGrow', 'flexShrink', 'gridArea', 'gridColumn', 'gridRow', 'height', 'justifySelf', 'margin', 'maxHeight', 'minHeight', 'order', 'padding', 'responsiveClass', 'shadow', 'width']
202
+ })
203
+ @Component({
204
+ selector: 'vega-box',
205
+ changeDetection: ChangeDetectionStrategy.OnPush,
206
+ template: '<ng-content></ng-content>',
207
+ inputs: ['alignSelf', 'backgroundColor', 'border', 'borderColor', 'borderStyle', 'corners', 'display', 'flex', 'flexBasis', 'flexGrow', 'flexShrink', 'gridArea', 'gridColumn', 'gridRow', 'height', 'justifySelf', 'margin', 'maxHeight', 'minHeight', 'order', 'padding', 'responsiveClass', 'shadow', 'width']
208
+ })
209
+ export class VegaBox {
210
+ protected el: HTMLElement;
211
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
212
+ c.detach();
213
+ this.el = r.nativeElement;
214
+ }
215
+ }
216
+
217
+
218
+ export declare interface VegaBrandLogo extends Components.VegaBrandLogo {}
219
+
220
+ @ProxyCmp({
221
+ defineCustomElementFn: undefined,
222
+ inputs: ['name', 'size', 'theme']
223
+ })
224
+ @Component({
225
+ selector: 'vega-brand-logo',
226
+ changeDetection: ChangeDetectionStrategy.OnPush,
227
+ template: '<ng-content></ng-content>',
228
+ inputs: ['name', 'size', 'theme']
229
+ })
230
+ export class VegaBrandLogo {
231
+ protected el: HTMLElement;
232
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
233
+ c.detach();
234
+ this.el = r.nativeElement;
235
+ }
236
+ }
237
+
238
+ import type { VegaBreadcrumbItemType as IVegaBreadcrumbVegaBreadcrumbItemType } from '@heartlandone/vega/dist/types/components/vega-breadcrumb/types';
239
+ export declare interface VegaBreadcrumb extends Components.VegaBreadcrumb {
240
+ /**
241
+ * An event emitter notifying that a breadcrumb item has been clicked. @vegaVersion 1.41.0
242
+ */
243
+ vegaClick: EventEmitter<CustomEvent<IVegaBreadcrumbVegaBreadcrumbItemType>>;
244
+ /**
245
+ * An event emitter notifying that a breadcrumb item has been clicked. @eventSemantics namespace:native,@vegaVersion 2.0.0
246
+ */
247
+ click: EventEmitter<CustomEvent<IVegaBreadcrumbVegaBreadcrumbItemType>>;
248
+
249
+ }
250
+
251
+ @ProxyCmp({
252
+ defineCustomElementFn: undefined,
253
+ inputs: ['items', 'maxItems']
254
+ })
255
+ @Component({
256
+ selector: 'vega-breadcrumb',
257
+ changeDetection: ChangeDetectionStrategy.OnPush,
258
+ template: '<ng-content></ng-content>',
259
+ inputs: ['items', 'maxItems']
260
+ })
261
+ export class VegaBreadcrumb {
262
+ protected el: HTMLElement;
263
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
264
+ c.detach();
265
+ this.el = r.nativeElement;
266
+ proxyOutputs(this, this.el, ['vegaClick', 'click']);
267
+ }
268
+ }
269
+
270
+
271
+ export declare interface VegaButton extends Components.VegaButton {
272
+ /**
273
+ * An event emitter notifying the click event of the button. @vegaVersion 1.0.11
274
+ */
275
+ vegaClick: EventEmitter<CustomEvent<any>>;
276
+ /**
277
+ * An event emitter notifying the click event of the button. @eventSemantics namespace:native,@vegaVersion 2.0.0
278
+ */
279
+ click: EventEmitter<CustomEvent<any>>;
280
+
281
+ }
282
+
283
+ @ProxyCmp({
284
+ defineCustomElementFn: undefined,
285
+ inputs: ['block', 'danger', 'disabled', 'icon', 'iconAlign', 'label', 'loading', 'size', 'type', 'variant']
286
+ })
287
+ @Component({
288
+ selector: 'vega-button',
289
+ changeDetection: ChangeDetectionStrategy.OnPush,
290
+ template: '<ng-content></ng-content>',
291
+ inputs: ['block', 'danger', 'disabled', 'icon', 'iconAlign', 'label', 'loading', 'size', 'type', 'variant']
292
+ })
293
+ export class VegaButton {
294
+ protected el: HTMLElement;
295
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
296
+ c.detach();
297
+ this.el = r.nativeElement;
298
+ proxyOutputs(this, this.el, ['vegaClick', 'click']);
299
+ }
300
+ }
301
+
302
+
303
+ export declare interface VegaButtonCircle extends Components.VegaButtonCircle {
304
+ /**
305
+ * An event emitter notifying the click event of the circular button. @vegaVersion 1.0.11
306
+ */
307
+ vegaClick: EventEmitter<CustomEvent<any>>;
308
+ /**
309
+ * An event emitter notifying the click event of the circular button. @eventSemantics namespace:native,@vegaVersion 2.0.0
310
+ */
311
+ click: EventEmitter<CustomEvent<any>>;
312
+
313
+ }
314
+
315
+ @ProxyCmp({
316
+ defineCustomElementFn: undefined,
317
+ inputs: ['danger', 'disabled', 'icon', 'iconColor', 'label', 'showTooltip', 'size', 'tooltip', 'type', 'variant']
318
+ })
319
+ @Component({
320
+ selector: 'vega-button-circle',
321
+ changeDetection: ChangeDetectionStrategy.OnPush,
322
+ template: '<ng-content></ng-content>',
323
+ inputs: ['danger', 'disabled', 'icon', 'iconColor', 'label', 'showTooltip', 'size', 'tooltip', 'type', 'variant']
324
+ })
325
+ export class VegaButtonCircle {
326
+ protected el: HTMLElement;
327
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
328
+ c.detach();
329
+ this.el = r.nativeElement;
330
+ proxyOutputs(this, this.el, ['vegaClick', 'click']);
331
+ }
332
+ }
333
+
334
+
335
+ export declare interface VegaButtonGroup extends Components.VegaButtonGroup {
336
+ /**
337
+ * An event emitter notifying the click event of the button group. @vegaVersion 2.5.0
338
+ */
339
+ vegaClick: EventEmitter<CustomEvent<string>>;
340
+ /**
341
+ * An event emitter notifying the click event of the button. @eventSemantics namespace:native,@vegaVersion 2.5.0
342
+ */
343
+ click: EventEmitter<CustomEvent<string>>;
344
+
345
+ }
346
+
347
+ @ProxyCmp({
348
+ defineCustomElementFn: undefined,
349
+ inputs: ['iconAlign', 'size', 'variant']
350
+ })
351
+ @Component({
352
+ selector: 'vega-button-group',
353
+ changeDetection: ChangeDetectionStrategy.OnPush,
354
+ template: '<ng-content></ng-content>',
355
+ inputs: ['iconAlign', 'size', 'variant']
356
+ })
357
+ export class VegaButtonGroup {
358
+ protected el: HTMLElement;
359
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
360
+ c.detach();
361
+ this.el = r.nativeElement;
362
+ proxyOutputs(this, this.el, ['vegaClick', 'click']);
363
+ }
364
+ }
365
+
366
+
367
+ export declare interface VegaButtonGroupItem extends Components.VegaButtonGroupItem {}
368
+
369
+ @ProxyCmp({
370
+ defineCustomElementFn: undefined,
371
+ inputs: ['dropdownProps', 'dropdownSource', 'icon', 'iconOnly', 'itemKey', 'label']
372
+ })
373
+ @Component({
374
+ selector: 'vega-button-group-item',
375
+ changeDetection: ChangeDetectionStrategy.OnPush,
376
+ template: '<ng-content></ng-content>',
377
+ inputs: ['dropdownProps', 'dropdownSource', 'icon', 'iconOnly', 'itemKey', 'label']
378
+ })
379
+ export class VegaButtonGroupItem {
380
+ protected el: HTMLElement;
381
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
382
+ c.detach();
383
+ this.el = r.nativeElement;
384
+ }
385
+ }
386
+
387
+
388
+ export declare interface VegaButtonLink extends Components.VegaButtonLink {
389
+ /**
390
+ * An event emitter notifying the click event of the button. @vegaVersion 1.0.11
391
+ */
392
+ vegaClick: EventEmitter<CustomEvent<any>>;
393
+ /**
394
+ * An event emitter notifying the click event of the button. @eventSemantics namespace:native,@vegaVersion 2.0.0
395
+ */
396
+ click: EventEmitter<CustomEvent<any>>;
397
+
398
+ }
399
+
400
+ @ProxyCmp({
401
+ defineCustomElementFn: undefined,
402
+ inputs: ['danger', 'disabled', 'eventful', 'icon', 'iconAlign', 'iconType', 'label', 'link', 'size', 'target']
403
+ })
404
+ @Component({
405
+ selector: 'vega-button-link',
406
+ changeDetection: ChangeDetectionStrategy.OnPush,
407
+ template: '<ng-content></ng-content>',
408
+ inputs: ['danger', 'disabled', 'eventful', 'icon', 'iconAlign', 'iconType', 'label', 'link', 'size', 'target']
409
+ })
410
+ export class VegaButtonLink {
411
+ protected el: HTMLElement;
412
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
413
+ c.detach();
414
+ this.el = r.nativeElement;
415
+ proxyOutputs(this, this.el, ['vegaClick', 'click']);
416
+ }
417
+ }
418
+
419
+ import type { VegaCalendarChangeEventType as IVegaCalendarVegaCalendarChangeEventType } from '@heartlandone/vega/dist/types/components/vega-calendar/types';
420
+ import type { VegaCalendarEventClickInfo as IVegaCalendarVegaCalendarEventClickInfo } from '@heartlandone/vega/dist/types/components/vega-calendar/types';
421
+ import type { VegaCalendarDateClickInfo as IVegaCalendarVegaCalendarDateClickInfo } from '@heartlandone/vega/dist/types/components/vega-calendar/types';
422
+ export declare interface VegaCalendar extends Components.VegaCalendar {
423
+ /**
424
+ * An event emitter notifying the component view content change after a switch panel click. @vegaVersion 2.14.0
425
+ */
426
+ vegaChange: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarChangeEventType>>;
427
+ /**
428
+ * An event emitter notifying the component view content change after a switch panel click. @eventSemantics namespace:native,@vegaVersion 2.14.0
429
+ */
430
+ change: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarChangeEventType>>;
431
+ /**
432
+ * An event emitter notifying that a component event item is clicked. @vegaVersion 2.14.0
433
+ */
434
+ vegaEventClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarEventClickInfo>>;
435
+ /**
436
+ * An event emitter notifying that a component event item is clicked. @eventSemantics namespace:native,@vegaVersion 2.14.0
437
+ */
438
+ eventClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarEventClickInfo>>;
439
+ /**
440
+ * 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
441
+ */
442
+ vegaDateDblClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
443
+ /**
444
+ * 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
445
+ */
446
+ dateDblClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
447
+ /**
448
+ * 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
449
+ */
450
+ vegaDateClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
451
+ /**
452
+ * 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
453
+ */
454
+ dateClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
455
+ /**
456
+ * An event emitter notifying that a calendar more action menu item has been clicked. @vegaVersion 2.20.0
457
+ */
458
+ vegaMoreActionClick: EventEmitter<CustomEvent<string>>;
459
+ /**
460
+ * An event emitter notifying that a calendar more action menu item has been clicked. @eventSemantics namespace:native,@vegaVersion 2.20.0
461
+ */
462
+ moreActionClick: EventEmitter<CustomEvent<string>>;
463
+
464
+ }
465
+
466
+ @ProxyCmp({
467
+ defineCustomElementFn: undefined,
468
+ inputs: ['enableDateClick', 'enabledEventPreview', 'events', 'isDateDisabled', 'moreActionDropdownProps', 'showEventColorBar', 'showSwitchView', 'showWeekends', 'timeFormat', 'viewMode']
469
+ })
470
+ @Component({
471
+ selector: 'vega-calendar',
472
+ changeDetection: ChangeDetectionStrategy.OnPush,
473
+ template: '<ng-content></ng-content>',
474
+ inputs: ['enableDateClick', 'enabledEventPreview', 'events', 'isDateDisabled', 'moreActionDropdownProps', 'showEventColorBar', 'showSwitchView', 'showWeekends', 'timeFormat', 'viewMode']
475
+ })
476
+ export class VegaCalendar {
477
+ protected el: HTMLElement;
478
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
479
+ c.detach();
480
+ this.el = r.nativeElement;
481
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaEventClick', 'eventClick', 'vegaDateDblClick', 'dateDblClick', 'vegaDateClick', 'dateClick', 'vegaMoreActionClick', 'moreActionClick']);
482
+ }
483
+ }
484
+
485
+
486
+ export declare interface VegaCalendarEvent extends Components.VegaCalendarEvent {}
487
+
488
+ @ProxyCmp({
489
+ defineCustomElementFn: undefined,
490
+ inputs: ['calendarEvent']
491
+ })
492
+ @Component({
493
+ selector: 'vega-calendar-event',
494
+ changeDetection: ChangeDetectionStrategy.OnPush,
495
+ template: '<ng-content></ng-content>',
496
+ inputs: ['calendarEvent']
497
+ })
498
+ export class VegaCalendarEvent {
499
+ protected el: HTMLElement;
500
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
501
+ c.detach();
502
+ this.el = r.nativeElement;
503
+ }
504
+ }
505
+
506
+
507
+ export declare interface VegaCalendarEventPreview extends Components.VegaCalendarEventPreview {}
508
+
509
+ @ProxyCmp({
510
+ defineCustomElementFn: undefined
511
+ })
512
+ @Component({
513
+ selector: 'vega-calendar-event-preview',
514
+ changeDetection: ChangeDetectionStrategy.OnPush,
515
+ template: '<ng-content></ng-content>'
516
+ })
517
+ export class VegaCalendarEventPreview {
518
+ protected el: HTMLElement;
519
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
520
+ c.detach();
521
+ this.el = r.nativeElement;
522
+ }
523
+ }
524
+
525
+
526
+ export declare interface VegaCalendarEventSlot extends Components.VegaCalendarEventSlot {}
527
+
528
+ @ProxyCmp({
529
+ defineCustomElementFn: undefined,
530
+ inputs: ['eventKey']
531
+ })
532
+ @Component({
533
+ selector: 'vega-calendar-event-slot',
534
+ changeDetection: ChangeDetectionStrategy.OnPush,
535
+ template: '<ng-content></ng-content>',
536
+ inputs: ['eventKey']
537
+ })
538
+ export class VegaCalendarEventSlot {
539
+ protected el: HTMLElement;
540
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
541
+ c.detach();
542
+ this.el = r.nativeElement;
543
+ }
544
+ }
545
+
546
+
547
+ export declare interface VegaCard extends Components.VegaCard {}
548
+
549
+ @ProxyCmp({
550
+ defineCustomElementFn: undefined,
551
+ inputs: ['backgroundColor', 'margin', 'padding', 'variant']
552
+ })
553
+ @Component({
554
+ selector: 'vega-card',
555
+ changeDetection: ChangeDetectionStrategy.OnPush,
556
+ template: '<ng-content></ng-content>',
557
+ inputs: ['backgroundColor', 'margin', 'padding', 'variant']
558
+ })
559
+ export class VegaCard {
560
+ protected el: HTMLElement;
561
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
562
+ c.detach();
563
+ this.el = r.nativeElement;
564
+ }
565
+ }
566
+
567
+
568
+ export declare interface VegaCarousel extends Components.VegaCarousel {
569
+ /**
570
+ * An event emitter notifying the transition of the carousel to another page,
571
+ whether triggered programmatically or through user interaction. @vegaVersion 1.3.0
572
+ */
573
+ vegaPageUpdate: EventEmitter<CustomEvent<number>>;
574
+ /**
575
+ * An event emitter notifying the transition of the carousel to another page,
576
+ whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
577
+ */
578
+ pageUpdate: EventEmitter<CustomEvent<number>>;
579
+
580
+ }
581
+
582
+ @ProxyCmp({
583
+ defineCustomElementFn: undefined,
584
+ inputs: ['canSwipe', 'itemsPerPage', 'perPage', 'showSlider', 'spacing'],
585
+ methods: ['nextPage', 'prevPage', 'goToPage']
586
+ })
587
+ @Component({
588
+ selector: 'vega-carousel',
589
+ changeDetection: ChangeDetectionStrategy.OnPush,
590
+ template: '<ng-content></ng-content>',
591
+ inputs: ['canSwipe', 'itemsPerPage', 'perPage', 'showSlider', 'spacing']
592
+ })
593
+ export class VegaCarousel {
594
+ protected el: HTMLElement;
595
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
596
+ c.detach();
597
+ this.el = r.nativeElement;
598
+ proxyOutputs(this, this.el, ['vegaPageUpdate', 'pageUpdate']);
599
+ }
600
+ }
601
+
602
+
603
+ export declare interface VegaCheckbox extends Components.VegaCheckbox {
604
+ /**
605
+ * An event emitter notifying changes in the value of the checkbox,
606
+ whether triggered programmatically or through user interaction. @vegaVersion 1.0.10
607
+ */
608
+ vegaChange: EventEmitter<CustomEvent<string | boolean>>;
609
+ /**
610
+ * An event emitter notifying changes in the value of the checkbox,
611
+ whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
612
+ */
613
+ change: EventEmitter<CustomEvent<string | boolean>>;
614
+
615
+ }
616
+
617
+ @ProxyCmp({
618
+ defineCustomElementFn: undefined,
619
+ inputs: ['checked', 'disabled', 'identifier', 'isValid', 'required', 'size', 'value'],
620
+ methods: ['setValue']
621
+ })
622
+ @Component({
623
+ selector: 'vega-checkbox',
624
+ changeDetection: ChangeDetectionStrategy.OnPush,
625
+ template: '<ng-content></ng-content>',
626
+ inputs: ['checked', 'disabled', 'identifier', 'isValid', 'required', 'size', 'value']
627
+ })
628
+ export class VegaCheckbox {
629
+ protected el: HTMLElement;
630
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
631
+ c.detach();
632
+ this.el = r.nativeElement;
633
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
634
+ }
635
+ }
636
+
637
+
638
+ export declare interface VegaCheckboxGroup extends Components.VegaCheckboxGroup {
639
+ /**
640
+ * An event emitter notifying changes in the value
641
+ of any nested checkbox within the checkbox group,
642
+ whether triggered programmatically or through
643
+ user interaction. @vegaVersion 1.0.10
644
+ */
645
+ vegaChange: EventEmitter<CustomEvent<string[]>>;
646
+ /**
647
+ * An event emitter notifying changes in the value
648
+ of any nested checkbox within the checkbox group,
649
+ whether triggered programmatically or through
650
+ user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
651
+ */
652
+ change: EventEmitter<CustomEvent<string[]>>;
653
+
654
+ }
655
+
656
+ @ProxyCmp({
657
+ defineCustomElementFn: undefined,
658
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value', 'vegaFlexProp']
659
+ })
660
+ @Component({
661
+ selector: 'vega-checkbox-group',
662
+ changeDetection: ChangeDetectionStrategy.OnPush,
663
+ template: '<ng-content></ng-content>',
664
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value', 'vegaFlexProp']
665
+ })
666
+ export class VegaCheckboxGroup {
667
+ protected el: HTMLElement;
668
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
669
+ c.detach();
670
+ this.el = r.nativeElement;
671
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
672
+ }
673
+ }
674
+
675
+
676
+ export declare interface VegaChip extends Components.VegaChip {
677
+ /**
678
+ * An event emitter notifying the click event of the close button of the chip.
679
+
680
+ This event is only dispatched when the `showCloseIcon` property is set to `true`. @vegaVersion 1.11.0
681
+ */
682
+ vegaClose: EventEmitter<CustomEvent<void>>;
683
+ /**
684
+ * An event emitter notifying the click event of the close button of the chip. @eventSemantics namespace:native,@vegaVersion 2.0.0
685
+ */
686
+ close: EventEmitter<CustomEvent<void>>;
687
+ /**
688
+ * An event emitter notifying the click event of the chip.
689
+
690
+ This event is only dispatched when the `clickable` property is set to `true`. @vegaVersion 1.11.0
691
+ */
692
+ vegaClick: EventEmitter<CustomEvent<void>>;
693
+ /**
694
+ * An event emitter notifying the click event of the chip. @eventSemantics namespace:native,@vegaVersion 2.0.0
695
+ */
696
+ click: EventEmitter<CustomEvent<void>>;
697
+
698
+ }
699
+
700
+ @ProxyCmp({
701
+ defineCustomElementFn: undefined,
702
+ inputs: ['bgColor', 'chipType', 'clickable', 'icon', 'iconAlign', 'showCloseIcon', 'size', 'statusColor', 'text', 'textColor', 'variant']
703
+ })
704
+ @Component({
705
+ selector: 'vega-chip',
706
+ changeDetection: ChangeDetectionStrategy.OnPush,
707
+ template: '<ng-content></ng-content>',
708
+ inputs: ['bgColor', 'chipType', 'clickable', 'icon', 'iconAlign', 'showCloseIcon', 'size', 'statusColor', 'text', 'textColor', 'variant']
709
+ })
710
+ export class VegaChip {
711
+ protected el: HTMLElement;
712
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
713
+ c.detach();
714
+ this.el = r.nativeElement;
715
+ proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaClick', 'click']);
716
+ }
717
+ }
718
+
719
+ import type { VegaCodeBlockValue as IVegaCodeBlockVegaCodeBlockValue } from '@heartlandone/vega/dist/types/components/vega-code-block/types';
720
+ export declare interface VegaCodeBlock extends Components.VegaCodeBlock {
721
+ /**
722
+ * An event emitter notifying a value change. @vegaVersion 2.50.0
723
+ */
724
+ vegaChange: EventEmitter<CustomEvent<IVegaCodeBlockVegaCodeBlockValue>>;
725
+ /**
726
+ * An event emitter notifying a value change. @vegaVersion 2.50.0,@eventSemantics namespace:native
727
+ */
728
+ change: EventEmitter<CustomEvent<IVegaCodeBlockVegaCodeBlockValue>>;
729
+ /**
730
+ * 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
731
+ */
732
+ vegaRemove: EventEmitter<CustomEvent<any>>;
733
+ /**
734
+ * 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
735
+ */
736
+ remove: EventEmitter<CustomEvent<any>>;
737
+
738
+ }
739
+
740
+ @ProxyCmp({
741
+ defineCustomElementFn: undefined,
742
+ inputs: ['disabled', 'readOnly', 'showCopyButton', 'showLineNumber', 'value'],
743
+ methods: ['doFocus']
744
+ })
745
+ @Component({
746
+ selector: 'vega-code-block',
747
+ changeDetection: ChangeDetectionStrategy.OnPush,
748
+ template: '<ng-content></ng-content>',
749
+ inputs: ['disabled', 'readOnly', 'showCopyButton', 'showLineNumber', 'value']
750
+ })
751
+ export class VegaCodeBlock {
752
+ protected el: HTMLElement;
753
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
754
+ c.detach();
755
+ this.el = r.nativeElement;
756
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRemove', 'remove']);
757
+ }
758
+ }
759
+
760
+
761
+ export declare interface VegaColorPicker extends Components.VegaColorPicker {
762
+ /**
763
+ * An event emitter notifying changes in the value of the color picker,
764
+ whether triggered programmatically or through user interaction. @vegaVersion 1.13.0
765
+ */
766
+ vegaChange: EventEmitter<CustomEvent<string>>;
767
+ /**
768
+ * An event emitter notifying changes in the value of the color picker,
769
+ whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
770
+ */
771
+ change: EventEmitter<CustomEvent<string>>;
772
+
773
+ }
774
+
775
+ @ProxyCmp({
776
+ defineCustomElementFn: undefined,
777
+ inputs: ['autoValidation', 'colors', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'required', 'validationRules', 'value']
778
+ })
779
+ @Component({
780
+ selector: 'vega-color-picker',
781
+ changeDetection: ChangeDetectionStrategy.OnPush,
782
+ template: '<ng-content></ng-content>',
783
+ inputs: ['autoValidation', 'colors', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'required', 'validationRules', 'value']
784
+ })
785
+ export class VegaColorPicker {
786
+ protected el: HTMLElement;
787
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
788
+ c.detach();
789
+ this.el = r.nativeElement;
790
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
791
+ }
792
+ }
793
+
794
+
795
+ export declare interface VegaComboBox extends Components.VegaComboBox {
796
+ /**
797
+ * An event emitter notifying changes in the items of the combo box value,
798
+ whether triggered programmatically or through user interaction. @vegaVersion 1.11.0
799
+ */
800
+ vegaChange: EventEmitter<CustomEvent<string[]>>;
801
+ /**
802
+ * An event emitter notifying changes in the items of the combo box value,
803
+ whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
804
+ */
805
+ change: EventEmitter<CustomEvent<string[]>>;
806
+ /**
807
+ * An event emitter notifying when the user has chosen to add a new value
808
+ to the source and value of the combo box.
809
+
810
+ The event's `detail` property contains the new value.
811
+
812
+ The combo box _does not_ automatically add the new value to its `source` and `value`. @vegaVersion 1.14.0
813
+ */
814
+ vegaCreate: EventEmitter<CustomEvent<string>>;
815
+ /**
816
+ * An event emitter notifying when the user has chosen to add a new value
817
+ to the source and value of the combo box.
818
+
819
+ The event's `detail` property contains the new value.
820
+
821
+ The combo box _does not_ automatically add the new value to its `source` and `value`. @eventSemantics namespace:native,@vegaVersion 2.0.0
822
+ */
823
+ create: EventEmitter<CustomEvent<string>>;
824
+ /**
825
+ * An event emitter notifying the user's search action in the combo box,
826
+ but only if the `useDefaultFilter` property is set to `false`. @vegaVersion 1.24.0
827
+ */
828
+ vegaSearch: EventEmitter<CustomEvent<string>>;
829
+ /**
830
+ * An event emitter notifying the user's search action in the combo box,
831
+ but only if the `useDefaultFilter` property is set to `false`. @eventSemantics namespace:native,@vegaVersion 2.0.0
832
+ */
833
+ search: EventEmitter<CustomEvent<string>>;
834
+
835
+ }
836
+
837
+ @ProxyCmp({
838
+ defineCustomElementFn: undefined,
839
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'source', 'useDefaultFilter', 'validationRules', 'value', 'vegaDropdownProps'],
840
+ methods: ['close', 'open']
841
+ })
842
+ @Component({
843
+ selector: 'vega-combo-box',
844
+ changeDetection: ChangeDetectionStrategy.OnPush,
845
+ template: '<ng-content></ng-content>',
846
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'source', 'useDefaultFilter', 'validationRules', 'value', 'vegaDropdownProps']
847
+ })
848
+ export class VegaComboBox {
849
+ protected el: HTMLElement;
850
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
851
+ c.detach();
852
+ this.el = r.nativeElement;
853
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaCreate', 'create', 'vegaSearch', 'search']);
854
+ }
855
+ }
856
+
857
+
858
+ export declare interface VegaCounterBadge extends Components.VegaCounterBadge {}
859
+
860
+ @ProxyCmp({
861
+ defineCustomElementFn: undefined,
862
+ inputs: ['color', 'count', 'dot', 'offset']
863
+ })
864
+ @Component({
865
+ selector: 'vega-counter-badge',
866
+ changeDetection: ChangeDetectionStrategy.OnPush,
867
+ template: '<ng-content></ng-content>',
868
+ inputs: ['color', 'count', 'dot', 'offset']
869
+ })
870
+ export class VegaCounterBadge {
871
+ protected el: HTMLElement;
872
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
873
+ c.detach();
874
+ this.el = r.nativeElement;
875
+ }
876
+ }
877
+
878
+ import type { DatePickerMonthYearTypes as IVegaDatePickerDatePickerMonthYearTypes } from '@heartlandone/vega/dist/types/components/vega-date-picker/types';
879
+ export declare interface VegaDatePicker extends Components.VegaDatePicker {
880
+ /**
881
+ * An event emitter notifying the change of the value in the date picker,
882
+ whether triggered programmatically or through user interaction. @vegaVersion 1.3.0
883
+ */
884
+ vegaChange: EventEmitter<CustomEvent<string | string[]>>;
885
+ /**
886
+ * An event emitter notifying the change of the value in the date picker,
887
+ whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
888
+ */
889
+ change: EventEmitter<CustomEvent<string | string[]>>;
890
+ /**
891
+ * 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,
892
+ whether triggered programmatically or through user interaction. @vegaVersion 2.61.0
893
+ */
894
+ vegaMonthYearChange: EventEmitter<CustomEvent<IVegaDatePickerDatePickerMonthYearTypes>>;
895
+ /**
896
+ * 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
897
+ */
898
+ monthYearChange: EventEmitter<CustomEvent<IVegaDatePickerDatePickerMonthYearTypes>>;
899
+
900
+ }
901
+
902
+ @ProxyCmp({
903
+ defineCustomElementFn: undefined,
904
+ inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isDateDisabled', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'showClearIcon', 'showYearMonthDropdowns', 'size', 'timezone', 'validationRules', 'value'],
905
+ methods: ['doClose', 'doOpen']
906
+ })
907
+ @Component({
908
+ selector: 'vega-date-picker',
909
+ changeDetection: ChangeDetectionStrategy.OnPush,
910
+ template: '<ng-content></ng-content>',
911
+ inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isDateDisabled', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'showClearIcon', 'showYearMonthDropdowns', 'size', 'timezone', 'validationRules', 'value']
912
+ })
913
+ export class VegaDatePicker {
914
+ protected el: HTMLElement;
915
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
916
+ c.detach();
917
+ this.el = r.nativeElement;
918
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaMonthYearChange', 'monthYearChange']);
919
+ }
920
+ }
921
+
922
+
923
+ export declare interface VegaDatePickerCalendar extends Components.VegaDatePickerCalendar {}
924
+
925
+ @ProxyCmp({
926
+ defineCustomElementFn: undefined
927
+ })
928
+ @Component({
929
+ selector: 'vega-date-picker-calendar',
930
+ changeDetection: ChangeDetectionStrategy.OnPush,
931
+ template: '<ng-content></ng-content>'
932
+ })
933
+ export class VegaDatePickerCalendar {
934
+ protected el: HTMLElement;
935
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
936
+ c.detach();
937
+ this.el = r.nativeElement;
938
+ }
939
+ }
940
+
941
+
942
+ export declare interface VegaDialog extends Components.VegaDialog {}
943
+
944
+ @ProxyCmp({
945
+ defineCustomElementFn: undefined,
946
+ inputs: ['cancelButton', 'content', 'dialogTitle', 'handleCancel', 'handleOk', 'modalProps', 'okButton', 'showCancel', 'type']
947
+ })
948
+ @Component({
949
+ selector: 'vega-dialog',
950
+ changeDetection: ChangeDetectionStrategy.OnPush,
951
+ template: '<ng-content></ng-content>',
952
+ inputs: ['cancelButton', 'content', 'dialogTitle', 'handleCancel', 'handleOk', 'modalProps', 'okButton', 'showCancel', 'type']
953
+ })
954
+ export class VegaDialog {
955
+ protected el: HTMLElement;
956
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
957
+ c.detach();
958
+ this.el = r.nativeElement;
959
+ }
960
+ }
961
+
962
+
963
+ export declare interface VegaDivider extends Components.VegaDivider {}
964
+
965
+ @ProxyCmp({
966
+ defineCustomElementFn: undefined,
967
+ inputs: ['direction', 'margin', 'variant']
968
+ })
969
+ @Component({
970
+ selector: 'vega-divider',
971
+ changeDetection: ChangeDetectionStrategy.OnPush,
972
+ template: '<ng-content></ng-content>',
973
+ inputs: ['direction', 'margin', 'variant']
974
+ })
975
+ export class VegaDivider {
976
+ protected el: HTMLElement;
977
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
978
+ c.detach();
979
+ this.el = r.nativeElement;
980
+ }
981
+ }
982
+
983
+ import type { VegaDropdownSearchTriggerEventDetail as IVegaDropdownVegaDropdownSearchTriggerEventDetail } from '@heartlandone/vega/dist/types/components/vega-dropdown/types';
984
+ export declare interface VegaDropdown extends Components.VegaDropdown {
985
+ /**
986
+ * An event emitter notifying that a dropdown item has been clicked.
987
+
988
+ The event's `detail` property contains the key of the clicked item. @vegaVersion 1.11.0
989
+ */
990
+ vegaDropdownClick: EventEmitter<CustomEvent<string>>;
991
+ /**
992
+ * An event emitter notifying that a dropdown item has been clicked.
993
+
994
+ The event's `detail` property contains the key of the clicked item. @eventSemantics namespace:native,@vegaVersion 2.0.0
995
+ */
996
+ dropdownClick: EventEmitter<CustomEvent<string>>;
997
+ /**
998
+ * An event emitter notifying that the dropdown has been displayed,
999
+ either programmatically or via user interaction. @vegaVersion 1.3.0
1000
+ */
1001
+ vegaShow: EventEmitter<CustomEvent<string>>;
1002
+ /**
1003
+ * An event emitter notifying that the dropdown has been displayed,
1004
+ either programmatically or via user interaction. The name is not `show` because already has a method `show`. @eventSemantics namespace:native,@vegaVersion 2.0.0
1005
+ */
1006
+ dropdownShow: EventEmitter<CustomEvent<string>>;
1007
+ /**
1008
+ * Event emitter notifying that the dropdown has been dismissed,
1009
+ either programmatically or via user interaction. @vegaVersion 1.3.0
1010
+ */
1011
+ vegaHide: EventEmitter<CustomEvent<string>>;
1012
+ /**
1013
+ * An event emitter notifying that the dropdown has been dismissed,
1014
+ either programmatically or via user interaction. The name is not `hide` because already has a method `hide`. @eventSemantics namespace:native,@vegaVersion 2.0.0
1015
+ */
1016
+ dropdownHide: EventEmitter<CustomEvent<string>>;
1017
+ /**
1018
+ * An event emitter notifying the addition of a new value
1019
+ to the dropdown source list.
1020
+
1021
+ The event's `detail` property contains the new value.
1022
+
1023
+ The dropdown _does not_ automatically add the new value to the source list. @vegaVersion 1.14.0
1024
+ */
1025
+ vegaCreate: EventEmitter<CustomEvent<string>>;
1026
+ /**
1027
+ * An event emitter notifying the addition of a new value
1028
+ to the dropdown source list.
1029
+
1030
+ The event's `detail` property contains the new value.
1031
+
1032
+ The dropdown _does not_ automatically add the new value to the source list. @eventSemantics namespace:native,@vegaVersion 2.0.0
1033
+ */
1034
+ create: EventEmitter<CustomEvent<string>>;
1035
+ /**
1036
+ * An event emitter notifying the search event in the dropdown,
1037
+ but only if `useDefaultFilter` is set to `false`. @vegaVersion 1.24.0
1038
+ */
1039
+ vegaSearch: EventEmitter<CustomEvent<string>>;
1040
+ /**
1041
+ * An event emitter notifying the search event in the dropdown,
1042
+ 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
1043
+ */
1044
+ dropdownSearch: EventEmitter<CustomEvent<string>>;
1045
+ /**
1046
+ * An event emitter notifying the reset event in the dropdown. @vegaVersion 2.46.0
1047
+ */
1048
+ vegaReset: EventEmitter<CustomEvent<string>>;
1049
+ /**
1050
+ * An event emitter notifying the reset event in the dropdown. @eventSemantics namespace:native,@vegaVersion 2.46.0
1051
+ */
1052
+ reset: EventEmitter<CustomEvent<string>>;
1053
+ /**
1054
+ * An event emitter notifying the search event triggered within the dropdown,
1055
+ but only if `useDefaultFilter` is set to `false`.
1056
+ Unlike the Vegasearch event, this event includes the details of the user who triggered it.
1057
+ It can be triggered in two ways: by pressing "Enter" or through user input. @vegaVersion 2.30.0
1058
+ */
1059
+ vegaSearchTrigger: EventEmitter<CustomEvent<IVegaDropdownVegaDropdownSearchTriggerEventDetail>>;
1060
+ /**
1061
+ * An event emitter notifying the search event triggered within the dropdown,
1062
+ but only if `useDefaultFilter` is set to `false`.
1063
+ Unlike the Vegasearch event, this event includes the details of the user who triggered it.
1064
+ It can be triggered in two ways: by pressing "Enter" or through user input. @eventSemantics namespace:native,@vegaVersion 2.30.0
1065
+ */
1066
+ searchTrigger: EventEmitter<CustomEvent<IVegaDropdownVegaDropdownSearchTriggerEventDetail>>;
1067
+
1068
+ }
1069
+
1070
+ @ProxyCmp({
1071
+ defineCustomElementFn: undefined,
1072
+ inputs: ['alignment', 'caseSensitive', 'dynamicOption', 'isLazyLoading', 'isLoading', 'isScreenPosition', 'itemDisplayRule', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'prefixIconSlot', 'resettable', 'searchTriggerBy', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger', 'useDefaultFilter', 'virtualizationThreshold'],
1073
+ methods: ['show', 'hide', 'search', 'clearSelection', 'getSelection', 'setSelection']
1074
+ })
1075
+ @Component({
1076
+ selector: 'vega-dropdown',
1077
+ changeDetection: ChangeDetectionStrategy.OnPush,
1078
+ template: '<ng-content></ng-content>',
1079
+ inputs: ['alignment', 'caseSensitive', 'dynamicOption', 'isLazyLoading', 'isLoading', 'isScreenPosition', 'itemDisplayRule', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'prefixIconSlot', 'resettable', 'searchTriggerBy', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger', 'useDefaultFilter', 'virtualizationThreshold']
1080
+ })
1081
+ export class VegaDropdown {
1082
+ protected el: HTMLElement;
1083
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1084
+ c.detach();
1085
+ this.el = r.nativeElement;
1086
+ proxyOutputs(this, this.el, ['vegaDropdownClick', 'dropdownClick', 'vegaShow', 'dropdownShow', 'vegaHide', 'dropdownHide', 'vegaCreate', 'create', 'vegaSearch', 'dropdownSearch', 'vegaReset', 'reset', 'vegaSearchTrigger', 'searchTrigger']);
1087
+ }
1088
+ }
1089
+
1090
+
1091
+ export declare interface VegaDropdownContentBox extends Components.VegaDropdownContentBox {}
1092
+
1093
+ @ProxyCmp({
1094
+ defineCustomElementFn: undefined
1095
+ })
1096
+ @Component({
1097
+ selector: 'vega-dropdown-content-box',
1098
+ changeDetection: ChangeDetectionStrategy.OnPush,
1099
+ template: '<ng-content></ng-content>'
1100
+ })
1101
+ export class VegaDropdownContentBox {
1102
+ protected el: HTMLElement;
1103
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1104
+ c.detach();
1105
+ this.el = r.nativeElement;
1106
+ }
1107
+ }
1108
+
1109
+
1110
+ export declare interface VegaDropdownGroup extends Components.VegaDropdownGroup {}
1111
+
1112
+ @ProxyCmp({
1113
+ defineCustomElementFn: undefined,
1114
+ inputs: ['divide', 'label']
1115
+ })
1116
+ @Component({
1117
+ selector: 'vega-dropdown-group',
1118
+ changeDetection: ChangeDetectionStrategy.OnPush,
1119
+ template: '<ng-content></ng-content>',
1120
+ inputs: ['divide', 'label']
1121
+ })
1122
+ export class VegaDropdownGroup {
1123
+ protected el: HTMLElement;
1124
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1125
+ c.detach();
1126
+ this.el = r.nativeElement;
1127
+ }
1128
+ }
1129
+
1130
+ import type { VegaDropdownItemClickEvent as IVegaDropdownItemVegaDropdownItemClickEvent } from '@heartlandone/vega/dist/types/components/vega-dropdown/vega-dropdown-item/types';
1131
+ export declare interface VegaDropdownItem extends Components.VegaDropdownItem {
1132
+ /**
1133
+ * An event emitter notifying the dropdown item has been clicked. @vegaVersion 1.47.0
1134
+ */
1135
+ vegaClick: EventEmitter<CustomEvent<IVegaDropdownItemVegaDropdownItemClickEvent>>;
1136
+ /**
1137
+ * An event emitter notifying the dropdown item has been clicked. @eventSemantics namespace:native,@vegaVersion 2.0.0
1138
+ */
1139
+ click: EventEmitter<CustomEvent<IVegaDropdownItemVegaDropdownItemClickEvent>>;
1140
+
1141
+ }
1142
+
1143
+ @ProxyCmp({
1144
+ defineCustomElementFn: undefined,
1145
+ inputs: ['count', 'danger', 'disabled', 'height', 'itemKey', 'label', 'prefixIcon']
1146
+ })
1147
+ @Component({
1148
+ selector: 'vega-dropdown-item',
1149
+ changeDetection: ChangeDetectionStrategy.OnPush,
1150
+ template: '<ng-content></ng-content>',
1151
+ inputs: ['count', 'danger', 'disabled', 'height', 'itemKey', 'label', 'prefixIcon']
1152
+ })
1153
+ export class VegaDropdownItem {
1154
+ protected el: HTMLElement;
1155
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1156
+ c.detach();
1157
+ this.el = r.nativeElement;
1158
+ proxyOutputs(this, this.el, ['vegaClick', 'click']);
1159
+ }
1160
+ }
1161
+
1162
+
1163
+ export declare interface VegaFieldError extends Components.VegaFieldError {}
1164
+
1165
+ @ProxyCmp({
1166
+ defineCustomElementFn: undefined,
1167
+ inputs: ['message']
1168
+ })
1169
+ @Component({
1170
+ selector: 'vega-field-error',
1171
+ changeDetection: ChangeDetectionStrategy.OnPush,
1172
+ template: '<ng-content></ng-content>',
1173
+ inputs: ['message']
1174
+ })
1175
+ export class VegaFieldError {
1176
+ protected el: HTMLElement;
1177
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1178
+ c.detach();
1179
+ this.el = r.nativeElement;
1180
+ }
1181
+ }
1182
+
1183
+
1184
+ export declare interface VegaFieldLabel extends Components.VegaFieldLabel {
1185
+ /**
1186
+ * An event emitter notifying that the field label has been clicked. @vegaVersion 1.43.0
1187
+ */
1188
+ vegaClick: EventEmitter<CustomEvent<any>>;
1189
+ /**
1190
+ * An event emitter notifying that the suffix button associated with the field label has been clicked. @vegaVersion 2.25.0
1191
+ */
1192
+ vegaLabelButtonClick: EventEmitter<CustomEvent<any>>;
1193
+ /**
1194
+ * An event emitter notifying that the suffix button associated with the field label has been clicked. @eventSemantics namespace:native,@vegaVersion 2.25.0
1195
+ */
1196
+ labelButtonClick: EventEmitter<CustomEvent<any>>;
1197
+
1198
+ }
1199
+
1200
+ @ProxyCmp({
1201
+ defineCustomElementFn: undefined,
1202
+ inputs: ['disabled', 'isFieldRequired', 'label', 'suffixButtonProps']
1203
+ })
1204
+ @Component({
1205
+ selector: 'vega-field-label',
1206
+ changeDetection: ChangeDetectionStrategy.OnPush,
1207
+ template: '<ng-content></ng-content>',
1208
+ inputs: ['disabled', 'isFieldRequired', 'label', 'suffixButtonProps']
1209
+ })
1210
+ export class VegaFieldLabel {
1211
+ protected el: HTMLElement;
1212
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1213
+ c.detach();
1214
+ this.el = r.nativeElement;
1215
+ proxyOutputs(this, this.el, ['vegaClick', 'vegaLabelButtonClick', 'labelButtonClick']);
1216
+ }
1217
+ }
1218
+
1219
+ import type { VegaFileUploaderFiles as IVegaFileUploaderVegaFileUploaderFiles } from '@heartlandone/vega/dist/types/components/vega-file-uploader/types';
1220
+ import type { VegaFileUploaderFile as IVegaFileUploaderVegaFileUploaderFile } from '@heartlandone/vega/dist/types/components/vega-file-uploader/types';
1221
+ export declare interface VegaFileUploader extends Components.VegaFileUploader {
1222
+ /**
1223
+ * An event emitter notifying a change in the file list. @vegaVersion 2.25.0
1224
+ */
1225
+ vegaChange: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFiles>>;
1226
+ /**
1227
+ * An event emitter notifying a change in the file list. @eventSemantics namespace:native,@vegaVersion 2.25.0
1228
+ */
1229
+ change: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFiles>>;
1230
+ /**
1231
+ * An event emitter notifying a file selection change. By default, the component value
1232
+ is updated, but this behavior can be prevented. @vegaVersion 2.25.0
1233
+ */
1234
+ vegaSelectedFileChange: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFiles>>;
1235
+ /**
1236
+ * An event emitter notifying a file selection change. By default, the component value
1237
+ is updated, but this behavior can be prevented. @eventSemantics namespace:native,@vegaVersion 2.25.0
1238
+ */
1239
+ selectedFileChange: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFiles>>;
1240
+ /**
1241
+ * An event emitter notifying that a selected file will be removed. By default, the component value
1242
+ is updated, but this behavior can be prevented. @vegaVersion 2.25.0
1243
+ */
1244
+ vegaRemove: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
1245
+ /**
1246
+ * An event emitter notifying that a selected file will be removed. By default, the component value
1247
+ is updated, but this behavior can be prevented. @eventSemantics namespace:native,@vegaVersion 2.25.0
1248
+ */
1249
+ remove: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
1250
+ /**
1251
+ * An event emitter notifying that a file will be re-uploaded. @vegaVersion 2.25.0
1252
+ */
1253
+ vegaRetry: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
1254
+ /**
1255
+ * An event emitter notifying that a file will be re-uploaded. @eventSemantics namespace:native,@vegaVersion 2.25.0
1256
+ */
1257
+ retry: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
1258
+ /**
1259
+ * An event emitter notifying that a file will be opened for preview. @vegaVersion 2.25.0
1260
+ */
1261
+ vegaPreview: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
1262
+ /**
1263
+ * An event emitter notifying that a file will be opened for preview. @eventSemantics namespace:native,@vegaVersion 2.25.0
1264
+ */
1265
+ preview: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
1266
+
1267
+ }
1268
+
1269
+ @ProxyCmp({
1270
+ defineCustomElementFn: undefined,
1271
+ inputs: ['accept', 'autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxCount', 'required', 'validationRules', 'value', 'variant']
1272
+ })
1273
+ @Component({
1274
+ selector: 'vega-file-uploader',
1275
+ changeDetection: ChangeDetectionStrategy.OnPush,
1276
+ template: '<ng-content></ng-content>',
1277
+ inputs: ['accept', 'autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxCount', 'required', 'validationRules', 'value', 'variant']
1278
+ })
1279
+ export class VegaFileUploader {
1280
+ protected el: HTMLElement;
1281
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1282
+ c.detach();
1283
+ this.el = r.nativeElement;
1284
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaSelectedFileChange', 'selectedFileChange', 'vegaRemove', 'remove', 'vegaRetry', 'retry', 'vegaPreview', 'preview']);
1285
+ }
1286
+ }
1287
+
1288
+
1289
+ export declare interface VegaFlagIcon extends Components.VegaFlagIcon {}
1290
+
1291
+ @ProxyCmp({
1292
+ defineCustomElementFn: undefined,
1293
+ inputs: ['country', 'size']
1294
+ })
1295
+ @Component({
1296
+ selector: 'vega-flag-icon',
1297
+ changeDetection: ChangeDetectionStrategy.OnPush,
1298
+ template: '<ng-content></ng-content>',
1299
+ inputs: ['country', 'size']
1300
+ })
1301
+ export class VegaFlagIcon {
1302
+ protected el: HTMLElement;
1303
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1304
+ c.detach();
1305
+ this.el = r.nativeElement;
1306
+ }
1307
+ }
1308
+
1309
+
1310
+ export declare interface VegaFlex extends Components.VegaFlex {}
1311
+
1312
+ @ProxyCmp({
1313
+ defineCustomElementFn: undefined,
1314
+ inputs: ['alignItems', 'breakpoint', 'direction', 'flex', 'flexBasis', 'flexGrow', 'flexShrink', 'flexWrap', 'gap', 'justifyContent', 'margin', 'useNativeFlex']
1315
+ })
1316
+ @Component({
1317
+ selector: 'vega-flex',
1318
+ changeDetection: ChangeDetectionStrategy.OnPush,
1319
+ template: '<ng-content></ng-content>',
1320
+ inputs: ['alignItems', 'breakpoint', 'direction', 'flex', 'flexBasis', 'flexGrow', 'flexShrink', 'flexWrap', 'gap', 'justifyContent', 'margin', 'useNativeFlex']
1321
+ })
1322
+ export class VegaFlex {
1323
+ protected el: HTMLElement;
1324
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1325
+ c.detach();
1326
+ this.el = r.nativeElement;
1327
+ }
1328
+ }
1329
+
1330
+
1331
+ export declare interface VegaFont extends Components.VegaFont {}
1332
+
1333
+ @ProxyCmp({
1334
+ defineCustomElementFn: undefined,
1335
+ inputs: ['as', 'color', 'disableResponsive', 'textAlign', 'variant']
1336
+ })
1337
+ @Component({
1338
+ selector: 'vega-font',
1339
+ changeDetection: ChangeDetectionStrategy.OnPush,
1340
+ template: '<ng-content></ng-content>',
1341
+ inputs: ['as', 'color', 'disableResponsive', 'textAlign', 'variant']
1342
+ })
1343
+ export class VegaFont {
1344
+ protected el: HTMLElement;
1345
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1346
+ c.detach();
1347
+ this.el = r.nativeElement;
1348
+ }
1349
+ }
1350
+
1351
+
1352
+ export declare interface VegaForm extends Components.VegaForm {
1353
+ /**
1354
+ * An event emitter notifying the change in the validation result. @vegaVersion 1.9.1
1355
+ */
1356
+ vegaValidate: EventEmitter<CustomEvent<boolean>>;
1357
+ /**
1358
+ * An event emitter notifying the change in the validation result. @eventSemantics namespace:native,@vegaVersion 2.0.0
1359
+ */
1360
+ validate: EventEmitter<CustomEvent<boolean>>;
1361
+ /**
1362
+ * An event emitter notifying the submission of the form. @vegaVersion 1.24.0
1363
+ */
1364
+ vegaFormSubmit: EventEmitter<CustomEvent<unknown>>;
1365
+ /**
1366
+ * An event emitter notifying the submission of the form. @eventSemantics namespace:native,@vegaVersion 2.0.0
1367
+ */
1368
+ formSubmit: EventEmitter<CustomEvent<unknown>>;
1369
+ /**
1370
+ * An event emitter notifying the reset of the form. @vegaVersion 1.24.0
1371
+ */
1372
+ vegaFormReset: EventEmitter<CustomEvent<any>>;
1373
+ /**
1374
+ * An event emitter notifying the reset of the form. @eventSemantics namespace:native,@vegaVersion 2.0.0
1375
+ */
1376
+ formReset: EventEmitter<CustomEvent<any>>;
1377
+
1378
+ }
1379
+
1380
+ @ProxyCmp({
1381
+ defineCustomElementFn: undefined,
1382
+ inputs: ['disableBlurValidation', 'isTouched', 'isValid'],
1383
+ methods: ['valid', 'getValue', 'setValue', 'reset', 'setValidationStates']
1384
+ })
1385
+ @Component({
1386
+ selector: 'vega-form',
1387
+ changeDetection: ChangeDetectionStrategy.OnPush,
1388
+ template: '<ng-content></ng-content>',
1389
+ inputs: ['disableBlurValidation', 'isTouched', 'isValid']
1390
+ })
1391
+ export class VegaForm {
1392
+ protected el: HTMLElement;
1393
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1394
+ c.detach();
1395
+ this.el = r.nativeElement;
1396
+ proxyOutputs(this, this.el, ['vegaValidate', 'validate', 'vegaFormSubmit', 'formSubmit', 'vegaFormReset', 'formReset']);
1397
+ }
1398
+ }
1399
+
1400
+
1401
+ export declare interface VegaGrid extends Components.VegaGrid {}
1402
+
1403
+ @ProxyCmp({
1404
+ defineCustomElementFn: undefined,
1405
+ inputs: ['column', 'gap', 'row']
1406
+ })
1407
+ @Component({
1408
+ selector: 'vega-grid',
1409
+ changeDetection: ChangeDetectionStrategy.OnPush,
1410
+ template: '<ng-content></ng-content>',
1411
+ inputs: ['column', 'gap', 'row']
1412
+ })
1413
+ export class VegaGrid {
1414
+ protected el: HTMLElement;
1415
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1416
+ c.detach();
1417
+ this.el = r.nativeElement;
1418
+ }
1419
+ }
1420
+
1421
+
1422
+ export declare interface VegaHint extends Components.VegaHint {}
1423
+
1424
+ @ProxyCmp({
1425
+ defineCustomElementFn: undefined
1426
+ })
1427
+ @Component({
1428
+ selector: 'vega-hint',
1429
+ changeDetection: ChangeDetectionStrategy.OnPush,
1430
+ template: '<ng-content></ng-content>'
1431
+ })
1432
+ export class VegaHint {
1433
+ protected el: HTMLElement;
1434
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1435
+ c.detach();
1436
+ this.el = r.nativeElement;
1437
+ }
1438
+ }
1439
+
1440
+
1441
+ export declare interface VegaIcon extends Components.VegaIcon {}
1442
+
1443
+ @ProxyCmp({
1444
+ defineCustomElementFn: undefined,
1445
+ inputs: ['color', 'icon', 'size']
1446
+ })
1447
+ @Component({
1448
+ selector: 'vega-icon',
1449
+ changeDetection: ChangeDetectionStrategy.OnPush,
1450
+ template: '<ng-content></ng-content>',
1451
+ inputs: ['color', 'icon', 'size']
1452
+ })
1453
+ export class VegaIcon {
1454
+ protected el: HTMLElement;
1455
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1456
+ c.detach();
1457
+ this.el = r.nativeElement;
1458
+ }
1459
+ }
1460
+
1461
+ import type { VegaFileOptional as IVegaImageUploaderVegaFileOptional } from '@heartlandone/vega/dist/types/components/vega-image-uploader/types';
1462
+ export declare interface VegaImageUploader extends Components.VegaImageUploader {
1463
+ /**
1464
+ * An event emitter notifying a value change. @vegaVersion 1.14.0
1465
+ */
1466
+ vegaChange: EventEmitter<CustomEvent<IVegaImageUploaderVegaFileOptional>>;
1467
+ /**
1468
+ * An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.0.0
1469
+ */
1470
+ change: EventEmitter<CustomEvent<any>>;
1471
+ /**
1472
+ * An event emitter notifying the removal of a value. @vegaVersion 1.14.0
1473
+ */
1474
+ vegaRemove: EventEmitter<CustomEvent<any>>;
1475
+ /**
1476
+ * An event emitter notifying the removal of a value. @eventSemantics namespace:native,@vegaVersion 2.0.0
1477
+ */
1478
+ remove: EventEmitter<CustomEvent<any>>;
1479
+ /**
1480
+ * An event emitter notifying the cancellation of an uploading event. @vegaVersion 1.14.0
1481
+ */
1482
+ vegaCancel: EventEmitter<CustomEvent<any>>;
1483
+ /**
1484
+ * An event emitter notifying the removal of a value. @eventSemantics namespace:native,@vegaVersion 2.0.0
1485
+ */
1486
+ cancel: EventEmitter<CustomEvent<any>>;
1487
+
1488
+ }
1489
+
1490
+ @ProxyCmp({
1491
+ defineCustomElementFn: undefined,
1492
+ inputs: ['accept', 'actionSubTitle', 'actionTitle', 'autoValidation', 'disabled', 'height', 'hint', 'isValid', 'label', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value', 'width'],
1493
+ methods: ['getContentURL']
1494
+ })
1495
+ @Component({
1496
+ selector: 'vega-image-uploader',
1497
+ changeDetection: ChangeDetectionStrategy.OnPush,
1498
+ template: '<ng-content></ng-content>',
1499
+ inputs: ['accept', 'actionSubTitle', 'actionTitle', 'autoValidation', 'disabled', 'height', 'hint', 'isValid', 'label', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value', 'width']
1500
+ })
1501
+ export class VegaImageUploader {
1502
+ protected el: HTMLElement;
1503
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1504
+ c.detach();
1505
+ this.el = r.nativeElement;
1506
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRemove', 'remove', 'vegaCancel', 'cancel']);
1507
+ }
1508
+ }
1509
+
1510
+
1511
+ export declare interface VegaInput extends Components.VegaInput {
1512
+ /**
1513
+ * An event emitter notifying a value change. @vegaVersion 1.0.10
1514
+ */
1515
+ vegaChange: EventEmitter<CustomEvent<string>>;
1516
+ /**
1517
+ * An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.0.0
1518
+ */
1519
+ change: EventEmitter<CustomEvent<string>>;
1520
+ /**
1521
+ * An event emitter notifying the blur of the inner input element. @vegaVersion 1.3.0
1522
+ */
1523
+ vegaBlur: EventEmitter<CustomEvent<undefined>>;
1524
+ /**
1525
+ * An event emitter notifying the blur of the inner input element. @eventSemantics namespace:native,@vegaVersion 2.0.0
1526
+ */
1527
+ blur: EventEmitter<CustomEvent<undefined>>;
1528
+ /**
1529
+ * An event emitter notifying the focus of the inner input element. @vegaVersion 1.12.0
1530
+ */
1531
+ vegaFocus: EventEmitter<CustomEvent<undefined>>;
1532
+ /**
1533
+ * An event emitter notifying the focus of the inner input element. @eventSemantics namespace:native,@vegaVersion 2.0.0
1534
+ */
1535
+ focus: EventEmitter<CustomEvent<undefined>>;
1536
+ /**
1537
+ * An event emitter notifying that the suffix button associated with the field label has been clicked. @vegaVersion 2.25.0
1538
+ */
1539
+ vegaLabelButtonClick: EventEmitter<CustomEvent<any>>;
1540
+ /**
1541
+ * An event emitter notifying that the suffix button associated with the field label has been clicked. @eventSemantics namespace:native,@vegaVersion 2.25.0
1542
+ */
1543
+ labelButtonClick: EventEmitter<CustomEvent<any>>;
1544
+
1545
+ }
1546
+
1547
+ @ProxyCmp({
1548
+ defineCustomElementFn: undefined,
1549
+ inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'hint', 'isValid', 'label', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value', 'valueUpdateTrigger'],
1550
+ methods: ['doFocus', 'doBlur']
1551
+ })
1552
+ @Component({
1553
+ selector: 'vega-input',
1554
+ changeDetection: ChangeDetectionStrategy.OnPush,
1555
+ template: '<ng-content></ng-content>',
1556
+ inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'hint', 'isValid', 'label', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value', 'valueUpdateTrigger']
1557
+ })
1558
+ export class VegaInput {
1559
+ protected el: HTMLElement;
1560
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1561
+ c.detach();
1562
+ this.el = r.nativeElement;
1563
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur', 'vegaFocus', 'focus', 'vegaLabelButtonClick', 'labelButtonClick']);
1564
+ }
1565
+ }
1566
+
1567
+
1568
+ export declare interface VegaInputCreditCard extends Components.VegaInputCreditCard {
1569
+ /**
1570
+ * An event emitter notifying a value change. @vegaVersion 1.26.0
1571
+ */
1572
+ vegaChange: EventEmitter<CustomEvent<string>>;
1573
+ /**
1574
+ * A native change event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.0.0
1575
+ */
1576
+ change: EventEmitter<CustomEvent<string>>;
1577
+ /**
1578
+ * An event emitter notifying the blur event of the credit card element. @vegaVersion 1.26.0
1579
+ */
1580
+ vegaBlur: EventEmitter<CustomEvent<undefined>>;
1581
+ /**
1582
+ * An event emitter notifying the blur event of the credit card element. @eventSemantics namespace:native,@vegaVersion 2.0.0
1583
+ */
1584
+ blur: EventEmitter<CustomEvent<undefined>>;
1585
+ /**
1586
+ * An event emitter notifying the focus of the credit card element. @vegaVersion 1.26.0
1587
+ */
1588
+ vegaFocus: EventEmitter<CustomEvent<undefined>>;
1589
+ /**
1590
+ * An event emitter notifying the focus of the credit card element. @eventSemantics namespace:native,@vegaVersion 2.0.0
1591
+ */
1592
+ focus: EventEmitter<CustomEvent<undefined>>;
1593
+
1594
+ }
1595
+
1596
+ @ProxyCmp({
1597
+ defineCustomElementFn: undefined,
1598
+ inputs: ['autoValidation', 'disabled', 'hideCardNumberOnBlur', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
1599
+ })
1600
+ @Component({
1601
+ selector: 'vega-input-credit-card',
1602
+ changeDetection: ChangeDetectionStrategy.OnPush,
1603
+ template: '<ng-content></ng-content>',
1604
+ inputs: ['autoValidation', 'disabled', 'hideCardNumberOnBlur', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
1605
+ })
1606
+ export class VegaInputCreditCard {
1607
+ protected el: HTMLElement;
1608
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1609
+ c.detach();
1610
+ this.el = r.nativeElement;
1611
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur', 'vegaFocus', 'focus']);
1612
+ }
1613
+ }
1614
+
1615
+
1616
+ export declare interface VegaInputNumeric extends Components.VegaInputNumeric {
1617
+ /**
1618
+ * An event emitter notifying a value change. @vegaVersion 2.29.0
1619
+ */
1620
+ vegaChange: EventEmitter<CustomEvent<number>>;
1621
+ /**
1622
+ * An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.29.0
1623
+ */
1624
+ change: EventEmitter<CustomEvent<number>>;
1625
+
1626
+ }
1627
+
1628
+ @ProxyCmp({
1629
+ defineCustomElementFn: undefined,
1630
+ inputs: ['autoValidation', 'disabled', 'hint', 'integerOnly', 'isValid', 'label', 'majorIncrement', 'minorIncrement', 'placeholder', 'prefixIcon', 'prefixText', 'required', 'showClearIcon', 'size', 'suffixText', 'thousandComma', 'validationRules', 'value']
1631
+ })
1632
+ @Component({
1633
+ selector: 'vega-input-numeric',
1634
+ changeDetection: ChangeDetectionStrategy.OnPush,
1635
+ template: '<ng-content></ng-content>',
1636
+ inputs: ['autoValidation', 'disabled', 'hint', 'integerOnly', 'isValid', 'label', 'majorIncrement', 'minorIncrement', 'placeholder', 'prefixIcon', 'prefixText', 'required', 'showClearIcon', 'size', 'suffixText', 'thousandComma', 'validationRules', 'value']
1637
+ })
1638
+ export class VegaInputNumeric {
1639
+ protected el: HTMLElement;
1640
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1641
+ c.detach();
1642
+ this.el = r.nativeElement;
1643
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
1644
+ }
1645
+ }
1646
+
1647
+ import type { VegaCountryType as IVegaInputPhoneNumberVegaCountryType } from '@heartlandone/vega/dist/types/components/vega-input-phone-number/types';
1648
+ export declare interface VegaInputPhoneNumber extends Components.VegaInputPhoneNumber {
1649
+ /**
1650
+ * An event emitter notifying a value change. @vegaVersion 2.18.0
1651
+ */
1652
+ vegaChange: EventEmitter<CustomEvent<string>>;
1653
+ /**
1654
+ * An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.18.0
1655
+ */
1656
+ change: EventEmitter<CustomEvent<string>>;
1657
+ /**
1658
+ * An event emitter notifying a country change. @vegaVersion 2.18.0
1659
+ */
1660
+ vegaCountryChange: EventEmitter<CustomEvent<IVegaInputPhoneNumberVegaCountryType>>;
1661
+ /**
1662
+ * An event emitter notifying a country change. @eventSemantics namespace:native,@vegaVersion 2.18.0
1663
+ */
1664
+ countryChange: EventEmitter<CustomEvent<IVegaInputPhoneNumberVegaCountryType>>;
1665
+
1666
+ }
1667
+
1668
+ @ProxyCmp({
1669
+ defineCustomElementFn: undefined,
1670
+ inputs: ['allowedCountryCodes', 'autoValidation', 'countryCode', 'disabled', 'emptyValueEnabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
1671
+ })
1672
+ @Component({
1673
+ selector: 'vega-input-phone-number',
1674
+ changeDetection: ChangeDetectionStrategy.OnPush,
1675
+ template: '<ng-content></ng-content>',
1676
+ inputs: ['allowedCountryCodes', 'autoValidation', 'countryCode', 'disabled', 'emptyValueEnabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
1677
+ })
1678
+ export class VegaInputPhoneNumber {
1679
+ protected el: HTMLElement;
1680
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1681
+ c.detach();
1682
+ this.el = r.nativeElement;
1683
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaCountryChange', 'countryChange']);
1684
+ }
1685
+ }
1686
+
1687
+
1688
+ export declare interface VegaInputRange extends Components.VegaInputRange {
1689
+ /**
1690
+ * An event emitter notifying a value change. @vegaVersion 2.2.0
1691
+ */
1692
+ vegaChange: EventEmitter<CustomEvent<[number, number]>>;
1693
+ /**
1694
+ * An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.2.0
1695
+ */
1696
+ change: EventEmitter<CustomEvent<[number, number]>>;
1697
+
1698
+ }
1699
+
1700
+ @ProxyCmp({
1701
+ defineCustomElementFn: undefined,
1702
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'max', 'min', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'stack', 'validationRules', 'value']
1703
+ })
1704
+ @Component({
1705
+ selector: 'vega-input-range',
1706
+ changeDetection: ChangeDetectionStrategy.OnPush,
1707
+ template: '<ng-content></ng-content>',
1708
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'max', 'min', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'stack', 'validationRules', 'value']
1709
+ })
1710
+ export class VegaInputRange {
1711
+ protected el: HTMLElement;
1712
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1713
+ c.detach();
1714
+ this.el = r.nativeElement;
1715
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
1716
+ }
1717
+ }
1718
+
1719
+ import type { SelectValueType as IVegaInputSelectSelectValueType } from '@heartlandone/vega/dist/types/components/vega-input-select/types';
1720
+ import type { SelectType as IVegaInputSelectSelectType } from '@heartlandone/vega/dist/types/components/vega-input-select/types';
1721
+ import type { VegaDropdownSearchTriggerEventDetail as IVegaInputSelectVegaDropdownSearchTriggerEventDetail } from '@heartlandone/vega/dist/types/components/vega-dropdown/types';
1722
+ export declare interface VegaInputSelect extends Components.VegaInputSelect {
1723
+ /**
1724
+ * An event emitter notifying the change of the select value. @vegaVersion 1.0.11
1725
+ */
1726
+ vegaChange: EventEmitter<CustomEvent<IVegaInputSelectSelectValueType<IVegaInputSelectSelectType>>>;
1727
+ /**
1728
+ * An event emitter notifying the change of the select value. @eventSemantics namespace:native,@vegaVersion 2.0.0
1729
+ */
1730
+ change: EventEmitter<CustomEvent<IVegaInputSelectSelectValueType<IVegaInputSelectSelectType>>>;
1731
+ /**
1732
+ * An event emitter notifying the search of the dropdown. @vegaVersion 1.50.0
1733
+ */
1734
+ vegaSearch: EventEmitter<CustomEvent<string>>;
1735
+ /**
1736
+ * An event emitter notifying the search of the dropdown. @eventSemantics namespace:native,@vegaVersion 2.0.0
1737
+ */
1738
+ search: EventEmitter<CustomEvent<string>>;
1739
+ /**
1740
+ * An event emitter notifying the search event triggered within the dropdown,
1741
+ but only if `useDefaultFilter` is set to `false`.
1742
+ Unlike the Vegasearch event, this event includes the details of the user who triggered it.
1743
+ It can be triggered in two ways: by pressing "Enter" or through user input. @vegaVersion 2.30.0
1744
+ */
1745
+ vegaSearchTrigger: EventEmitter<CustomEvent<IVegaInputSelectVegaDropdownSearchTriggerEventDetail>>;
1746
+ /**
1747
+ * An event emitter notifying the search event triggered within the dropdown,
1748
+ Unlike the Vegasearch event, this event includes the details of the user who triggered it.
1749
+ It can be triggered in two ways: by pressing "Enter" or through user input. @eventSemantics namespace:native,@vegaVersion 2.30.0
1750
+ */
1751
+ searchTrigger: EventEmitter<CustomEvent<IVegaInputSelectVegaDropdownSearchTriggerEventDetail>>;
1752
+ /**
1753
+ * An event emitter notifying that the input-select has been opened,
1754
+ either programmatically or via user interaction. @vegaVersion 2.32.0
1755
+ */
1756
+ vegaShow: EventEmitter<CustomEvent<string>>;
1757
+ /**
1758
+ * Event emitter notifying that the input-select has been dismissed,
1759
+ either programmatically or via user interaction. @vegaVersion 2.32.0
1760
+ */
1761
+ vegaHide: EventEmitter<CustomEvent<string>>;
1762
+
1763
+ }
1764
+
1765
+ @ProxyCmp({
1766
+ defineCustomElementFn: undefined,
1767
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps'],
1768
+ methods: ['doClose', 'doOpen', 'doChange']
1769
+ })
1770
+ @Component({
1771
+ selector: 'vega-input-select',
1772
+ changeDetection: ChangeDetectionStrategy.OnPush,
1773
+ template: '<ng-content></ng-content>',
1774
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps']
1775
+ })
1776
+ export class VegaInputSelect {
1777
+ protected el: HTMLElement;
1778
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1779
+ c.detach();
1780
+ this.el = r.nativeElement;
1781
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaSearch', 'search', 'vegaSearchTrigger', 'searchTrigger', 'vegaShow', 'vegaHide']);
1782
+ }
1783
+ }
1784
+
1785
+
1786
+ export declare interface VegaItemToggle extends Components.VegaItemToggle {
1787
+ /**
1788
+ * An event emitter notifying an item toggle event. @vegaVersion 1.3.0
1789
+ */
1790
+ vegaToggleStatus: EventEmitter<CustomEvent<boolean>>;
1791
+ /**
1792
+ * An event emitter notifying an item toggle event. @eventSemantics namespace:native,@vegaVersion 2.0.0
1793
+ */
1794
+ toggleStatus: EventEmitter<CustomEvent<boolean>>;
1795
+
1796
+ }
1797
+
1798
+ @ProxyCmp({
1799
+ defineCustomElementFn: undefined,
1800
+ inputs: ['isToggled', 'itemToggleStatusMap', 'statusMap']
1801
+ })
1802
+ @Component({
1803
+ selector: 'vega-item-toggle',
1804
+ changeDetection: ChangeDetectionStrategy.OnPush,
1805
+ template: '<ng-content></ng-content>',
1806
+ inputs: ['isToggled', 'itemToggleStatusMap', 'statusMap']
1807
+ })
1808
+ export class VegaItemToggle {
1809
+ protected el: HTMLElement;
1810
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1811
+ c.detach();
1812
+ this.el = r.nativeElement;
1813
+ proxyOutputs(this, this.el, ['vegaToggleStatus', 'toggleStatus']);
1814
+ }
1815
+ }
1816
+
1817
+
1818
+ export declare interface VegaLeftNav extends Components.VegaLeftNav {
1819
+ /**
1820
+ * An event emitter notifying that the left-nav's open state has changed. @vegaVersion 1.31.0
1821
+ */
1822
+ vegaStateUpdate: EventEmitter<CustomEvent<string>>;
1823
+ /**
1824
+ * An event emitter notifying that the left-nav's open state has changed. @eventSemantics namespace:native,@vegaVersion 2.0.0
1825
+ */
1826
+ stateUpdate: EventEmitter<CustomEvent<string>>;
1827
+
1828
+ }
1829
+
1830
+ @ProxyCmp({
1831
+ defineCustomElementFn: undefined,
1832
+ inputs: ['autoCollapseGroups', 'autoCollapseOnOverlay', 'footnote', 'headerConfig', 'open', 'showAsOverlay', 'source'],
1833
+ methods: ['toggle']
1834
+ })
1835
+ @Component({
1836
+ selector: 'vega-left-nav',
1837
+ changeDetection: ChangeDetectionStrategy.OnPush,
1838
+ template: '<ng-content></ng-content>',
1839
+ inputs: ['autoCollapseGroups', 'autoCollapseOnOverlay', 'footnote', 'headerConfig', 'open', 'showAsOverlay', 'source']
1840
+ })
1841
+ export class VegaLeftNav {
1842
+ protected el: HTMLElement;
1843
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1844
+ c.detach();
1845
+ this.el = r.nativeElement;
1846
+ proxyOutputs(this, this.el, ['vegaStateUpdate', 'stateUpdate']);
1847
+ }
1848
+ }
1849
+
1850
+
1851
+ export declare interface VegaLeftNavGroup extends Components.VegaLeftNavGroup {
1852
+ /**
1853
+ * event emitter used for notifying consumers the click event * @vegaVersion 1.41.0
1854
+ */
1855
+ vegaGroupClick: EventEmitter<CustomEvent<string>>;
1856
+ /**
1857
+ * An event emitter used for notifying consumers the click event @eventSemantics namespace:native,@vegaVersion 2.0.0
1858
+ */
1859
+ groupClick: EventEmitter<CustomEvent<string>>;
1860
+
1861
+ }
1862
+
1863
+ @ProxyCmp({
1864
+ defineCustomElementFn: undefined,
1865
+ inputs: ['icon', 'itemKey', 'label', 'openByDefault']
1866
+ })
1867
+ @Component({
1868
+ selector: 'vega-left-nav-group',
1869
+ changeDetection: ChangeDetectionStrategy.OnPush,
1870
+ template: '<ng-content></ng-content>',
1871
+ inputs: ['icon', 'itemKey', 'label', 'openByDefault']
1872
+ })
1873
+ export class VegaLeftNavGroup {
1874
+ protected el: HTMLElement;
1875
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1876
+ c.detach();
1877
+ this.el = r.nativeElement;
1878
+ proxyOutputs(this, this.el, ['vegaGroupClick', 'groupClick']);
1879
+ }
1880
+ }
1881
+
1882
+
1883
+ export declare interface VegaLeftNavLink extends Components.VegaLeftNavLink {
1884
+ /**
1885
+ * An event emitter notifying the link click event. * @vegaVersion 1.31.0
1886
+ */
1887
+ vegaMenuClick: EventEmitter<CustomEvent<any>>;
1888
+ /**
1889
+ * An event emitter notifying the link click event. @eventSemantics namespace:native,@vegaVersion 2.0.0
1890
+ */
1891
+ menuClick: EventEmitter<CustomEvent<any>>;
1892
+
1893
+ }
1894
+
1895
+ @ProxyCmp({
1896
+ defineCustomElementFn: undefined,
1897
+ inputs: ['counterBadge', 'customSelectionEnabled', 'icon', 'itemKey', 'selected', 'target', 'url']
1898
+ })
1899
+ @Component({
1900
+ selector: 'vega-left-nav-link',
1901
+ changeDetection: ChangeDetectionStrategy.OnPush,
1902
+ template: '<ng-content></ng-content>',
1903
+ inputs: ['counterBadge', 'customSelectionEnabled', 'icon', 'itemKey', 'selected', 'target', 'url']
1904
+ })
1905
+ export class VegaLeftNavLink {
1906
+ protected el: HTMLElement;
1907
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1908
+ c.detach();
1909
+ this.el = r.nativeElement;
1910
+ proxyOutputs(this, this.el, ['vegaMenuClick', 'menuClick']);
1911
+ }
1912
+ }
1913
+
1914
+
1915
+ export declare interface VegaLeftNavSection extends Components.VegaLeftNavSection {
1916
+ /**
1917
+ * An event emitter notifying the action click event when the action link is not configured. @vegaVersion 2.11.0
1918
+ */
1919
+ vegaActionClick: EventEmitter<CustomEvent<string>>;
1920
+ /**
1921
+ * An event emitter notifying the action click event when the action link is not configured. @eventSemantics namespace:native,@vegaVersion 2.11.0
1922
+ */
1923
+ actionClick: EventEmitter<CustomEvent<any>>;
1924
+
1925
+ }
1926
+
1927
+ @ProxyCmp({
1928
+ defineCustomElementFn: undefined,
1929
+ inputs: ['itemKey', 'sectionHeader']
1930
+ })
1931
+ @Component({
1932
+ selector: 'vega-left-nav-section',
1933
+ changeDetection: ChangeDetectionStrategy.OnPush,
1934
+ template: '<ng-content></ng-content>',
1935
+ inputs: ['itemKey', 'sectionHeader']
1936
+ })
1937
+ export class VegaLeftNavSection {
1938
+ protected el: HTMLElement;
1939
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1940
+ c.detach();
1941
+ this.el = r.nativeElement;
1942
+ proxyOutputs(this, this.el, ['vegaActionClick', 'actionClick']);
1943
+ }
1944
+ }
1945
+
1946
+
1947
+ export declare interface VegaLineChart extends Components.VegaLineChart {}
1948
+
1949
+ @ProxyCmp({
1950
+ defineCustomElementFn: undefined,
1951
+ inputs: ['options'],
1952
+ methods: ['reRender']
1953
+ })
1954
+ @Component({
1955
+ selector: 'vega-line-chart',
1956
+ changeDetection: ChangeDetectionStrategy.OnPush,
1957
+ template: '<ng-content></ng-content>',
1958
+ inputs: ['options']
1959
+ })
1960
+ export class VegaLineChart {
1961
+ protected el: HTMLElement;
1962
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1963
+ c.detach();
1964
+ this.el = r.nativeElement;
1965
+ }
1966
+ }
1967
+
1968
+
1969
+ export declare interface VegaLoaderWrapper extends Components.VegaLoaderWrapper {}
1970
+
1971
+ @ProxyCmp({
1972
+ defineCustomElementFn: undefined
1973
+ })
1974
+ @Component({
1975
+ selector: 'vega-loader-wrapper',
1976
+ changeDetection: ChangeDetectionStrategy.OnPush,
1977
+ template: '<ng-content></ng-content>'
1978
+ })
1979
+ export class VegaLoaderWrapper {
1980
+ protected el: HTMLElement;
1981
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1982
+ c.detach();
1983
+ this.el = r.nativeElement;
1984
+ }
1985
+ }
1986
+
1987
+
1988
+ export declare interface VegaLoadingIndicator extends Components.VegaLoadingIndicator {}
1989
+
1990
+ @ProxyCmp({
1991
+ defineCustomElementFn: undefined,
1992
+ inputs: ['hint', 'label', 'mode', 'percent', 'shape', 'size', 'status']
1993
+ })
1994
+ @Component({
1995
+ selector: 'vega-loading-indicator',
1996
+ changeDetection: ChangeDetectionStrategy.OnPush,
1997
+ template: '<ng-content></ng-content>',
1998
+ inputs: ['hint', 'label', 'mode', 'percent', 'shape', 'size', 'status']
1999
+ })
2000
+ export class VegaLoadingIndicator {
2001
+ protected el: HTMLElement;
2002
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2003
+ c.detach();
2004
+ this.el = r.nativeElement;
2005
+ }
2006
+ }
2007
+
2008
+
2009
+ export declare interface VegaModal extends Components.VegaModal {
2010
+ /**
2011
+ * An event emitter notifying the modal close event. @vegaVersion 1.0.10
2012
+ */
2013
+ vegaClose: EventEmitter<CustomEvent<any>>;
2014
+ /**
2015
+ * An event emitter notifying the modal close event. @eventSemantics namespace:native,@vegaVersion 2.0.0
2016
+ */
2017
+ close: EventEmitter<CustomEvent<any>>;
2018
+ /**
2019
+ * An event emitter notifying the modal open event. @vegaVersion 1.0.10
2020
+ */
2021
+ vegaOpen: EventEmitter<CustomEvent<any>>;
2022
+ /**
2023
+ * 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
2024
+ */
2025
+ modalOpen: EventEmitter<CustomEvent<any>>;
2026
+
2027
+ }
2028
+
2029
+ @ProxyCmp({
2030
+ defineCustomElementFn: undefined,
2031
+ inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'handleClose', 'isVerticallyCenter', 'isVerticallyCentered', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size'],
2032
+ methods: ['modal']
2033
+ })
2034
+ @Component({
2035
+ selector: 'vega-modal',
2036
+ changeDetection: ChangeDetectionStrategy.OnPush,
2037
+ template: '<ng-content></ng-content>',
2038
+ inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'handleClose', 'isVerticallyCenter', 'isVerticallyCentered', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size']
2039
+ })
2040
+ export class VegaModal {
2041
+ protected el: HTMLElement;
2042
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2043
+ c.detach();
2044
+ this.el = r.nativeElement;
2045
+ proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaOpen', 'modalOpen']);
2046
+ }
2047
+ }
2048
+
2049
+
2050
+ export declare interface VegaNavCard extends Components.VegaNavCard {}
2051
+
2052
+ @ProxyCmp({
2053
+ defineCustomElementFn: undefined,
2054
+ inputs: ['maxHeight', 'source']
2055
+ })
2056
+ @Component({
2057
+ selector: 'vega-nav-card',
2058
+ changeDetection: ChangeDetectionStrategy.OnPush,
2059
+ template: '<ng-content></ng-content>',
2060
+ inputs: ['maxHeight', 'source']
2061
+ })
2062
+ export class VegaNavCard {
2063
+ protected el: HTMLElement;
2064
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2065
+ c.detach();
2066
+ this.el = r.nativeElement;
2067
+ }
2068
+ }
2069
+
2070
+
2071
+ export declare interface VegaPageNotification extends Components.VegaPageNotification {}
2072
+
2073
+ @ProxyCmp({
2074
+ defineCustomElementFn: undefined,
2075
+ inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type'],
2076
+ methods: ['close']
2077
+ })
2078
+ @Component({
2079
+ selector: 'vega-page-notification',
2080
+ changeDetection: ChangeDetectionStrategy.OnPush,
2081
+ template: '<ng-content></ng-content>',
2082
+ inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type']
2083
+ })
2084
+ export class VegaPageNotification {
2085
+ protected el: HTMLElement;
2086
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2087
+ c.detach();
2088
+ this.el = r.nativeElement;
2089
+ }
2090
+ }
2091
+
2092
+
2093
+ export declare interface VegaPageNotificationList extends Components.VegaPageNotificationList {}
2094
+
2095
+ @ProxyCmp({
2096
+ defineCustomElementFn: undefined
2097
+ })
2098
+ @Component({
2099
+ selector: 'vega-page-notification-list',
2100
+ changeDetection: ChangeDetectionStrategy.OnPush,
2101
+ template: '<ng-content></ng-content>'
2102
+ })
2103
+ export class VegaPageNotificationList {
2104
+ protected el: HTMLElement;
2105
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2106
+ c.detach();
2107
+ this.el = r.nativeElement;
2108
+ }
2109
+ }
2110
+
2111
+
2112
+ export declare interface VegaPagination extends Components.VegaPagination {
2113
+ /**
2114
+ * An event emitter notifying the current page change. @vegaVersion 1.3.0
2115
+ */
2116
+ vegaChange: EventEmitter<CustomEvent<number>>;
2117
+ /**
2118
+ * An event emitter notifying the current page change. @eventSemantics namespace:native,@vegaVersion 2.0.0
2119
+ */
2120
+ change: EventEmitter<CustomEvent<number>>;
2121
+ /**
2122
+ * An event emitter notifying a change in the number of
2123
+ data items displayed per page. @vegaVersion 1.25.0
2124
+ */
2125
+ vegaPageSizeChange: EventEmitter<CustomEvent<number>>;
2126
+ /**
2127
+ * An event emitter notifying a change in the number of
2128
+ data items displayed per page. @eventSemantics namespace:native,@vegaVersion 2.0.0
2129
+ */
2130
+ pageSizeChange: EventEmitter<CustomEvent<number>>;
2131
+
2132
+ }
2133
+
2134
+ @ProxyCmp({
2135
+ defineCustomElementFn: undefined,
2136
+ inputs: ['current', 'dropdownProps', 'extensions', 'layout', 'pageSize', 'pageSizeSelectorOptions', 'total']
2137
+ })
2138
+ @Component({
2139
+ selector: 'vega-pagination',
2140
+ changeDetection: ChangeDetectionStrategy.OnPush,
2141
+ template: '<ng-content></ng-content>',
2142
+ inputs: ['current', 'dropdownProps', 'extensions', 'layout', 'pageSize', 'pageSizeSelectorOptions', 'total']
2143
+ })
2144
+ export class VegaPagination {
2145
+ protected el: HTMLElement;
2146
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2147
+ c.detach();
2148
+ this.el = r.nativeElement;
2149
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaPageSizeChange', 'pageSizeChange']);
2150
+ }
2151
+ }
2152
+
2153
+
2154
+ export declare interface VegaPaginationPageSelectorMobile extends Components.VegaPaginationPageSelectorMobile {}
2155
+
2156
+ @ProxyCmp({
2157
+ defineCustomElementFn: undefined,
2158
+ inputs: ['current', 'pageCount', 'total', 'type']
2159
+ })
2160
+ @Component({
2161
+ selector: 'vega-pagination-page-selector-mobile',
2162
+ changeDetection: ChangeDetectionStrategy.OnPush,
2163
+ template: '<ng-content></ng-content>',
2164
+ inputs: ['current', 'pageCount', 'total', 'type']
2165
+ })
2166
+ export class VegaPaginationPageSelectorMobile {
2167
+ protected el: HTMLElement;
2168
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2169
+ c.detach();
2170
+ this.el = r.nativeElement;
2171
+ }
2172
+ }
2173
+
2174
+
2175
+ export declare interface VegaPaginationPageSizeSelectorMobile extends Components.VegaPaginationPageSizeSelectorMobile {}
2176
+
2177
+ @ProxyCmp({
2178
+ defineCustomElementFn: undefined,
2179
+ inputs: ['current', 'dropdownProps', 'pageSize', 'pageSizeSelectorOptions', 'total', 'type']
2180
+ })
2181
+ @Component({
2182
+ selector: 'vega-pagination-page-size-selector-mobile',
2183
+ changeDetection: ChangeDetectionStrategy.OnPush,
2184
+ template: '<ng-content></ng-content>',
2185
+ inputs: ['current', 'dropdownProps', 'pageSize', 'pageSizeSelectorOptions', 'total', 'type']
2186
+ })
2187
+ export class VegaPaginationPageSizeSelectorMobile {
2188
+ protected el: HTMLElement;
2189
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2190
+ c.detach();
2191
+ this.el = r.nativeElement;
2192
+ }
2193
+ }
2194
+
2195
+
2196
+ export declare interface VegaPieChart extends Components.VegaPieChart {}
2197
+
2198
+ @ProxyCmp({
2199
+ defineCustomElementFn: undefined,
2200
+ inputs: ['options'],
2201
+ methods: ['reRender']
2202
+ })
2203
+ @Component({
2204
+ selector: 'vega-pie-chart',
2205
+ changeDetection: ChangeDetectionStrategy.OnPush,
2206
+ template: '<ng-content></ng-content>',
2207
+ inputs: ['options']
2208
+ })
2209
+ export class VegaPieChart {
2210
+ protected el: HTMLElement;
2211
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2212
+ c.detach();
2213
+ this.el = r.nativeElement;
2214
+ }
2215
+ }
2216
+
2217
+
2218
+ export declare interface VegaPopover extends Components.VegaPopover {
2219
+ /**
2220
+ * An event emitter notifying the popover show event. @vegaVersion 1.22.0
2221
+ */
2222
+ vegaPopoverShow: EventEmitter<CustomEvent<string>>;
2223
+ /**
2224
+ * An event emitter notifying the popover show event. @eventSemantics namespace:native,@vegaVersion 2.0.0
2225
+ */
2226
+ popoverShow: EventEmitter<CustomEvent<string>>;
2227
+ /**
2228
+ * An event emitter notifying the popover hide event. @vegaVersion 1.22.0
2229
+ */
2230
+ vegaPopoverHide: EventEmitter<CustomEvent<string>>;
2231
+ /**
2232
+ * An event emitter notifying the popover hide event. @eventSemantics namespace:native,@vegaVersion 2.0.0
2233
+ */
2234
+ popoverHide: EventEmitter<CustomEvent<string>>;
2235
+
2236
+ }
2237
+
2238
+ @ProxyCmp({
2239
+ defineCustomElementFn: undefined,
2240
+ inputs: ['alignment', 'isScreenPosition', 'padding', 'placement', 'positionRelativeTo', 'showArrow', 'size', 'trigger'],
2241
+ methods: ['show', 'hide']
2242
+ })
2243
+ @Component({
2244
+ selector: 'vega-popover',
2245
+ changeDetection: ChangeDetectionStrategy.OnPush,
2246
+ template: '<ng-content></ng-content>',
2247
+ inputs: ['alignment', 'isScreenPosition', 'padding', 'placement', 'positionRelativeTo', 'showArrow', 'size', 'trigger']
2248
+ })
2249
+ export class VegaPopover {
2250
+ protected el: HTMLElement;
2251
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2252
+ c.detach();
2253
+ this.el = r.nativeElement;
2254
+ proxyOutputs(this, this.el, ['vegaPopoverShow', 'popoverShow', 'vegaPopoverHide', 'popoverHide']);
2255
+ }
2256
+ }
2257
+
2258
+
2259
+ export declare interface VegaPopoverContentBox extends Components.VegaPopoverContentBox {}
2260
+
2261
+ @ProxyCmp({
2262
+ defineCustomElementFn: undefined,
2263
+ inputs: ['padding', 'showArrow']
2264
+ })
2265
+ @Component({
2266
+ selector: 'vega-popover-content-box',
2267
+ changeDetection: ChangeDetectionStrategy.OnPush,
2268
+ template: '<ng-content></ng-content>',
2269
+ inputs: ['padding', 'showArrow']
2270
+ })
2271
+ export class VegaPopoverContentBox {
2272
+ protected el: HTMLElement;
2273
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2274
+ c.detach();
2275
+ this.el = r.nativeElement;
2276
+ }
2277
+ }
2278
+
2279
+
2280
+ export declare interface VegaProgressTracker extends Components.VegaProgressTracker {
2281
+ /**
2282
+ * An event emitter notifying that the current step has changed. @vegaVersion 1.5.0
2283
+ */
2284
+ vegaCurrentStepUpdate: EventEmitter<CustomEvent<string>>;
2285
+ /**
2286
+ * An event emitter notifying that the current step has changed. @eventSemantics namespace:native,@vegaVersion 2.0.0
2287
+ */
2288
+ currentStepUpdate: EventEmitter<CustomEvent<string>>;
2289
+
2290
+ }
2291
+
2292
+ @ProxyCmp({
2293
+ defineCustomElementFn: undefined,
2294
+ inputs: ['canClickStep', 'completedStepArray', 'completedSteps', 'current', 'direction', 'steps'],
2295
+ methods: ['nextStep', 'prevStep', 'setCurrent', 'getCurrent']
2296
+ })
2297
+ @Component({
2298
+ selector: 'vega-progress-tracker',
2299
+ changeDetection: ChangeDetectionStrategy.OnPush,
2300
+ template: '<ng-content></ng-content>',
2301
+ inputs: ['canClickStep', 'completedStepArray', 'completedSteps', 'current', 'direction', 'steps']
2302
+ })
2303
+ export class VegaProgressTracker {
2304
+ protected el: HTMLElement;
2305
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2306
+ c.detach();
2307
+ this.el = r.nativeElement;
2308
+ proxyOutputs(this, this.el, ['vegaCurrentStepUpdate', 'currentStepUpdate']);
2309
+ }
2310
+ }
2311
+
2312
+
2313
+ export declare interface VegaRadio extends Components.VegaRadio {
2314
+ /**
2315
+ * An event emitter notifying the focus event of the radio input. @vegaVersion 1.0.7
2316
+ */
2317
+ vegaFocus: EventEmitter<CustomEvent<any>>;
2318
+ /**
2319
+ * An event emitter notifying the focus event of the radio input. @eventSemantics namespace:native,@vegaVersion 2.0.0
2320
+ */
2321
+ focus: EventEmitter<CustomEvent<any>>;
2322
+ /**
2323
+ * An event emitter notifying the blur event of the radio input. @vegaVersion 1.0.7
2324
+ */
2325
+ vegaBlur: EventEmitter<CustomEvent<any>>;
2326
+ /**
2327
+ * An event emitter notifying the blur event of the radio input. @eventSemantics namespace:native,@vegaVersion 2.0.0
2328
+ */
2329
+ blur: EventEmitter<CustomEvent<any>>;
2330
+ /**
2331
+ * An event emitter notifying the change in the check status
2332
+ of the radio input. @vegaVersion 1.0.10
2333
+ */
2334
+ vegaChange: EventEmitter<CustomEvent<boolean>>;
2335
+ /**
2336
+ * An event emitter notifying the change in the check status
2337
+ of the radio input. @eventSemantics namespace:native,@vegaVersion 2.0.0
2338
+ */
2339
+ change: EventEmitter<CustomEvent<boolean>>;
2340
+
2341
+ }
2342
+
2343
+ @ProxyCmp({
2344
+ defineCustomElementFn: undefined,
2345
+ inputs: ['checked', 'disabled', 'name', 'size', 'value']
2346
+ })
2347
+ @Component({
2348
+ selector: 'vega-radio',
2349
+ changeDetection: ChangeDetectionStrategy.OnPush,
2350
+ template: '<ng-content></ng-content>',
2351
+ inputs: ['checked', 'disabled', 'name', 'size', 'value']
2352
+ })
2353
+ export class VegaRadio {
2354
+ protected el: HTMLElement;
2355
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2356
+ c.detach();
2357
+ this.el = r.nativeElement;
2358
+ proxyOutputs(this, this.el, ['vegaFocus', 'focus', 'vegaBlur', 'blur', 'vegaChange', 'change']);
2359
+ }
2360
+ }
2361
+
2362
+
2363
+ export declare interface VegaRadioGroup extends Components.VegaRadioGroup {
2364
+ /**
2365
+ * An event emitter notifying the change of the
2366
+ checked radio button in the radio group. @vegaVersion 1.0.10
2367
+ */
2368
+ vegaChange: EventEmitter<CustomEvent<string>>;
2369
+ /**
2370
+ * An event emitter notifying the change of the
2371
+ checked radio button in the radio group. @eventSemantics namespace:native,@vegaVersion 2.0.0
2372
+ */
2373
+ change: EventEmitter<CustomEvent<string>>;
2374
+
2375
+ }
2376
+
2377
+ @ProxyCmp({
2378
+ defineCustomElementFn: undefined,
2379
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'name', 'required', 'validationRules', 'value', 'vegaFlexProp']
2380
+ })
2381
+ @Component({
2382
+ selector: 'vega-radio-group',
2383
+ changeDetection: ChangeDetectionStrategy.OnPush,
2384
+ template: '<ng-content></ng-content>',
2385
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'name', 'required', 'validationRules', 'value', 'vegaFlexProp']
2386
+ })
2387
+ export class VegaRadioGroup {
2388
+ protected el: HTMLElement;
2389
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2390
+ c.detach();
2391
+ this.el = r.nativeElement;
2392
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2393
+ }
2394
+ }
2395
+
2396
+
2397
+ export declare interface VegaRichTextContent extends Components.VegaRichTextContent {}
2398
+
2399
+ @ProxyCmp({
2400
+ defineCustomElementFn: undefined,
2401
+ inputs: ['content'],
2402
+ methods: ['vegaFocus']
2403
+ })
2404
+ @Component({
2405
+ selector: 'vega-rich-text-content',
2406
+ changeDetection: ChangeDetectionStrategy.OnPush,
2407
+ template: '<ng-content></ng-content>',
2408
+ inputs: ['content']
2409
+ })
2410
+ export class VegaRichTextContent {
2411
+ protected el: HTMLElement;
2412
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2413
+ c.detach();
2414
+ this.el = r.nativeElement;
2415
+ }
2416
+ }
2417
+
2418
+ import type { VegaRTEContent as IVegaRichTextEditorVegaRTEContent } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/dto/content-state';
2419
+ import type { VegaRichTextEditorImage as IVegaRichTextEditorVegaRichTextEditorImage } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/interface';
2420
+ export declare interface VegaRichTextEditor extends Components.VegaRichTextEditor {
2421
+ /**
2422
+ * An event emitter notifying a value change. @vegaVersion 2.34.0
2423
+ */
2424
+ vegaChange: EventEmitter<CustomEvent<IVegaRichTextEditorVegaRTEContent>>;
2425
+ /**
2426
+ * An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.34.0
2427
+ */
2428
+ change: EventEmitter<CustomEvent<IVegaRichTextEditorVegaRTEContent>>;
2429
+ /**
2430
+ * An event emitter notifying an image insertion event. @vegaVersion 2.34.0
2431
+ */
2432
+ vegaImageInserted: EventEmitter<CustomEvent<IVegaRichTextEditorVegaRichTextEditorImage>>;
2433
+ /**
2434
+ * An event emitter notifying an image insertion event. @eventSemantics namespace:native,@vegaVersion 2.34.0
2435
+ */
2436
+ imageInserted: EventEmitter<CustomEvent<IVegaRichTextEditorVegaRichTextEditorImage>>;
2437
+
2438
+ }
2439
+
2440
+ @ProxyCmp({
2441
+ defineCustomElementFn: undefined,
2442
+ inputs: ['allowSourceEdit', 'autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'rows', 'sourceEditConfig', 'toolbarItems', 'validationRules', 'value']
2443
+ })
2444
+ @Component({
2445
+ selector: 'vega-rich-text-editor',
2446
+ changeDetection: ChangeDetectionStrategy.OnPush,
2447
+ template: '<ng-content></ng-content>',
2448
+ inputs: ['allowSourceEdit', 'autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'rows', 'sourceEditConfig', 'toolbarItems', 'validationRules', 'value']
2449
+ })
2450
+ export class VegaRichTextEditor {
2451
+ protected el: HTMLElement;
2452
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2453
+ c.detach();
2454
+ this.el = r.nativeElement;
2455
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaImageInserted', 'imageInserted']);
2456
+ }
2457
+ }
2458
+
2459
+
2460
+ export declare interface VegaRichTextEditorToolbarButton extends Components.VegaRichTextEditorToolbarButton {
2461
+ /**
2462
+ * An event emitter notifying the click event of the button. @vegaVersion 2.34.0
2463
+ */
2464
+ vegaClick: EventEmitter<CustomEvent<any>>;
2465
+ /**
2466
+ * An event emitter notifying the click event of the button. @eventSemantics namespace:native,@vegaVersion 2.34.0
2467
+ */
2468
+ click: EventEmitter<CustomEvent<any>>;
2469
+
2470
+ }
2471
+
2472
+ @ProxyCmp({
2473
+ defineCustomElementFn: undefined,
2474
+ inputs: ['disabled', 'hidden', 'icon', 'iconColor', 'selected', 'showArrowIcon']
2475
+ })
2476
+ @Component({
2477
+ selector: 'vega-rich-text-editor-toolbar-button',
2478
+ changeDetection: ChangeDetectionStrategy.OnPush,
2479
+ template: '<ng-content></ng-content>',
2480
+ inputs: ['disabled', 'hidden', 'icon', 'iconColor', 'selected', 'showArrowIcon']
2481
+ })
2482
+ export class VegaRichTextEditorToolbarButton {
2483
+ protected el: HTMLElement;
2484
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2485
+ c.detach();
2486
+ this.el = r.nativeElement;
2487
+ proxyOutputs(this, this.el, ['vegaClick', 'click']);
2488
+ }
2489
+ }
2490
+
2491
+ import type { VegaRichTextImageEditorChangeDetail as IVegaRichTextImageEditorVegaRichTextImageEditorChangeDetail } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/vega-rich-text-image-editor/types';
2492
+ export declare interface VegaRichTextImageEditor extends Components.VegaRichTextImageEditor {
2493
+ /**
2494
+ * An event emitter notifying content change. @vegaVersion 2.34.0
2495
+ */
2496
+ vegaChange: EventEmitter<CustomEvent<IVegaRichTextImageEditorVegaRichTextImageEditorChangeDetail>>;
2497
+ /**
2498
+ * An event emitter notifying content change. @vegaVersion 2.34.0
2499
+ */
2500
+ change: EventEmitter<CustomEvent<IVegaRichTextImageEditorVegaRichTextImageEditorChangeDetail>>;
2501
+
2502
+ }
2503
+
2504
+ @ProxyCmp({
2505
+ defineCustomElementFn: undefined,
2506
+ inputs: ['alt', 'size']
2507
+ })
2508
+ @Component({
2509
+ selector: 'vega-rich-text-image-editor',
2510
+ changeDetection: ChangeDetectionStrategy.OnPush,
2511
+ template: '<ng-content></ng-content>',
2512
+ inputs: ['alt', 'size']
2513
+ })
2514
+ export class VegaRichTextImageEditor {
2515
+ protected el: HTMLElement;
2516
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2517
+ c.detach();
2518
+ this.el = r.nativeElement;
2519
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2520
+ }
2521
+ }
2522
+
2523
+ import type { VegaRichTextLinkEditorChangeDetail as IVegaRichTextLinkEditorVegaRichTextLinkEditorChangeDetail } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/vega-rich-text-link-editor/types';
2524
+ export declare interface VegaRichTextLinkEditor extends Components.VegaRichTextLinkEditor {
2525
+ /**
2526
+ * An event emitter notifying content change. @vegaVersion 2.34.0
2527
+ */
2528
+ vegaChange: EventEmitter<CustomEvent<IVegaRichTextLinkEditorVegaRichTextLinkEditorChangeDetail>>;
2529
+ /**
2530
+ * An event emitter notifying content change. @vegaVersion 2.34.0
2531
+ */
2532
+ change: EventEmitter<CustomEvent<IVegaRichTextLinkEditorVegaRichTextLinkEditorChangeDetail>>;
2533
+
2534
+ }
2535
+
2536
+ @ProxyCmp({
2537
+ defineCustomElementFn: undefined,
2538
+ inputs: ['record', 'resetStatusAfterHide', 'status', 'target'],
2539
+ methods: ['show']
2540
+ })
2541
+ @Component({
2542
+ selector: 'vega-rich-text-link-editor',
2543
+ changeDetection: ChangeDetectionStrategy.OnPush,
2544
+ template: '<ng-content></ng-content>',
2545
+ inputs: ['record', 'resetStatusAfterHide', 'status', 'target']
2546
+ })
2547
+ export class VegaRichTextLinkEditor {
2548
+ protected el: HTMLElement;
2549
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2550
+ c.detach();
2551
+ this.el = r.nativeElement;
2552
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2553
+ }
2554
+ }
2555
+
2556
+
2557
+ export declare interface VegaSectionTitle extends Components.VegaSectionTitle {}
2558
+
2559
+ @ProxyCmp({
2560
+ defineCustomElementFn: undefined,
2561
+ inputs: ['description', 'icon', 'iconAlign', 'titleText']
2562
+ })
2563
+ @Component({
2564
+ selector: 'vega-section-title',
2565
+ changeDetection: ChangeDetectionStrategy.OnPush,
2566
+ template: '<ng-content></ng-content>',
2567
+ inputs: ['description', 'icon', 'iconAlign', 'titleText']
2568
+ })
2569
+ export class VegaSectionTitle {
2570
+ protected el: HTMLElement;
2571
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2572
+ c.detach();
2573
+ this.el = r.nativeElement;
2574
+ }
2575
+ }
2576
+
2577
+
2578
+ export declare interface VegaSegmentControl extends Components.VegaSegmentControl {
2579
+ /**
2580
+ * An event emitter notifying changes
2581
+ in the selected segment. @vegaVersion 2.3.0
2582
+ */
2583
+ vegaChange: EventEmitter<CustomEvent<string>>;
2584
+ /**
2585
+ * A native event emitter notifying changes
2586
+ in the selected segment. @eventSemantics namespace:native,@vegaVersion 2.3.0
2587
+ */
2588
+ change: EventEmitter<CustomEvent<string>>;
2589
+
2590
+ }
2591
+
2592
+ @ProxyCmp({
2593
+ defineCustomElementFn: undefined,
2594
+ inputs: ['block', 'segments', 'selected', 'size', 'variant']
2595
+ })
2596
+ @Component({
2597
+ selector: 'vega-segment-control',
2598
+ changeDetection: ChangeDetectionStrategy.OnPush,
2599
+ template: '<ng-content></ng-content>',
2600
+ inputs: ['block', 'segments', 'selected', 'size', 'variant']
2601
+ })
2602
+ export class VegaSegmentControl {
2603
+ protected el: HTMLElement;
2604
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2605
+ c.detach();
2606
+ this.el = r.nativeElement;
2607
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2608
+ }
2609
+ }
2610
+
2611
+
2612
+ export declare interface VegaSelectionChip extends Components.VegaSelectionChip {
2613
+ /**
2614
+ * An event emitter notifying changes in the value of the selection chip,
2615
+ whether triggered programmatically or through user interaction. @vegaVersion 2.22.0
2616
+ */
2617
+ vegaChange: EventEmitter<CustomEvent<string>>;
2618
+ /**
2619
+ * An event emitter notifying changes in the value of the selection chip,
2620
+ whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.22.0
2621
+ */
2622
+ change: EventEmitter<CustomEvent<string>>;
2623
+
2624
+ }
2625
+
2626
+ @ProxyCmp({
2627
+ defineCustomElementFn: undefined,
2628
+ inputs: ['block', 'checked', 'disabled', 'disabledTooltip', 'label', 'size', 'swatchColor', 'value', 'variant']
2629
+ })
2630
+ @Component({
2631
+ selector: 'vega-selection-chip',
2632
+ changeDetection: ChangeDetectionStrategy.OnPush,
2633
+ template: '<ng-content></ng-content>',
2634
+ inputs: ['block', 'checked', 'disabled', 'disabledTooltip', 'label', 'size', 'swatchColor', 'value', 'variant']
2635
+ })
2636
+ export class VegaSelectionChip {
2637
+ protected el: HTMLElement;
2638
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2639
+ c.detach();
2640
+ this.el = r.nativeElement;
2641
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2642
+ }
2643
+ }
2644
+
2645
+
2646
+ export declare interface VegaSelectionChipGroup extends Components.VegaSelectionChipGroup {
2647
+ /**
2648
+ * An event emitter notifying changes in the value of the selection chip group,
2649
+ whether triggered programmatically or through user interaction. @vegaVersion 2.22.0
2650
+ */
2651
+ vegaChange: EventEmitter<CustomEvent<string>>;
2652
+ /**
2653
+ * An event emitter notifying changes in the value of the selection chip group,
2654
+ whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.22.0
2655
+ */
2656
+ change: EventEmitter<CustomEvent<string>>;
2657
+
2658
+ }
2659
+
2660
+ @ProxyCmp({
2661
+ defineCustomElementFn: undefined,
2662
+ inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'selectType', 'validationRules', 'value']
2663
+ })
2664
+ @Component({
2665
+ selector: 'vega-selection-chip-group',
2666
+ changeDetection: ChangeDetectionStrategy.OnPush,
2667
+ template: '<ng-content></ng-content>',
2668
+ inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'selectType', 'validationRules', 'value']
2669
+ })
2670
+ export class VegaSelectionChipGroup {
2671
+ protected el: HTMLElement;
2672
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2673
+ c.detach();
2674
+ this.el = r.nativeElement;
2675
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2676
+ }
2677
+ }
2678
+
2679
+
2680
+ export declare interface VegaSelectionTile extends Components.VegaSelectionTile {
2681
+ /**
2682
+ * An event emitter notifying changes in the value of the selection tile,
2683
+ whether triggered programmatically or through user interaction. @vegaVersion 2.7.0
2684
+ */
2685
+ vegaChange: EventEmitter<CustomEvent<string>>;
2686
+ /**
2687
+ * An event emitter notifying changes in the value of the selection tile,
2688
+ whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.7.0
2689
+ */
2690
+ change: EventEmitter<CustomEvent<string>>;
2691
+
2692
+ }
2693
+
2694
+ @ProxyCmp({
2695
+ defineCustomElementFn: undefined,
2696
+ inputs: ['checked', 'disabled', 'note', 'prefixIcon', 'selectType', 'titleText', 'value']
2697
+ })
2698
+ @Component({
2699
+ selector: 'vega-selection-tile',
2700
+ changeDetection: ChangeDetectionStrategy.OnPush,
2701
+ template: '<ng-content></ng-content>',
2702
+ inputs: ['checked', 'disabled', 'note', 'prefixIcon', 'selectType', 'titleText', 'value']
2703
+ })
2704
+ export class VegaSelectionTile {
2705
+ protected el: HTMLElement;
2706
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2707
+ c.detach();
2708
+ this.el = r.nativeElement;
2709
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2710
+ }
2711
+ }
2712
+
2713
+
2714
+ export declare interface VegaSelectionTileGroup extends Components.VegaSelectionTileGroup {
2715
+ /**
2716
+ * An event emitter notifying changes in the value of the selection tile group,
2717
+ whether triggered programmatically or through user interaction. @vegaVersion 2.7.0
2718
+ */
2719
+ vegaChange: EventEmitter<CustomEvent<string>>;
2720
+ /**
2721
+ * An event emitter notifying changes in the value of the selection tile group,
2722
+ whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.7.0
2723
+ */
2724
+ change: EventEmitter<CustomEvent<string>>;
2725
+
2726
+ }
2727
+
2728
+ @ProxyCmp({
2729
+ defineCustomElementFn: undefined,
2730
+ inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'required', 'selectType', 'validationRules', 'value']
2731
+ })
2732
+ @Component({
2733
+ selector: 'vega-selection-tile-group',
2734
+ changeDetection: ChangeDetectionStrategy.OnPush,
2735
+ template: '<ng-content></ng-content>',
2736
+ inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'required', 'selectType', 'validationRules', 'value']
2737
+ })
2738
+ export class VegaSelectionTileGroup {
2739
+ protected el: HTMLElement;
2740
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2741
+ c.detach();
2742
+ this.el = r.nativeElement;
2743
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2744
+ }
2745
+ }
2746
+
2747
+
2748
+ export declare interface VegaSidenav extends Components.VegaSidenav {
2749
+ /**
2750
+ * An event emitter notifying the completion of a navigation menu state change (open or close). @vegaVersion 1, v2.29.0
2751
+ */
2752
+ vegaStateUpdate: EventEmitter<CustomEvent<string>>;
2753
+ /**
2754
+ * An event emitter notifying the completion of a navigation menu state change (open or close). @eventSemantics namespace:native,@vegaVersion 1, v2.29.0
2755
+ */
2756
+ stateUpdate: EventEmitter<CustomEvent<string>>;
2757
+
2758
+ }
2759
+
2760
+ @ProxyCmp({
2761
+ defineCustomElementFn: undefined,
2762
+ inputs: ['footnote', 'headerConfig', 'openByDefault', 'source'],
2763
+ methods: ['toggle']
2764
+ })
2765
+ @Component({
2766
+ selector: 'vega-sidenav',
2767
+ changeDetection: ChangeDetectionStrategy.OnPush,
2768
+ template: '<ng-content></ng-content>',
2769
+ inputs: ['footnote', 'headerConfig', 'openByDefault', 'source']
2770
+ })
2771
+ export class VegaSidenav {
2772
+ protected el: HTMLElement;
2773
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2774
+ c.detach();
2775
+ this.el = r.nativeElement;
2776
+ proxyOutputs(this, this.el, ['vegaStateUpdate', 'stateUpdate']);
2777
+ }
2778
+ }
2779
+
2780
+
2781
+ export declare interface VegaSidenavGroup extends Components.VegaSidenavGroup {}
2782
+
2783
+ @ProxyCmp({
2784
+ defineCustomElementFn: undefined,
2785
+ inputs: ['icon', 'label']
2786
+ })
2787
+ @Component({
2788
+ selector: 'vega-sidenav-group',
2789
+ changeDetection: ChangeDetectionStrategy.OnPush,
2790
+ template: '<ng-content></ng-content>',
2791
+ inputs: ['icon', 'label']
2792
+ })
2793
+ export class VegaSidenavGroup {
2794
+ protected el: HTMLElement;
2795
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2796
+ c.detach();
2797
+ this.el = r.nativeElement;
2798
+ }
2799
+ }
2800
+
2801
+
2802
+ export declare interface VegaSidenavLink extends Components.VegaSidenavLink {
2803
+ /**
2804
+ * An event emitter notifying about the occurrence of a click event. @vegaVersion 1, v2.29.0
2805
+ */
2806
+ vegaClick: EventEmitter<CustomEvent<any>>;
2807
+ /**
2808
+ * An event emitter notifying about the occurrence of a click event. @eventSemantics namespace:native,@vegaVersion 1, v2.29.0
2809
+ */
2810
+ click: EventEmitter<CustomEvent<any>>;
2811
+
2812
+ }
2813
+
2814
+ @ProxyCmp({
2815
+ defineCustomElementFn: undefined,
2816
+ inputs: ['icon', 'selected', 'showSideBarOnClickLink', 'url']
2817
+ })
2818
+ @Component({
2819
+ selector: 'vega-sidenav-link',
2820
+ changeDetection: ChangeDetectionStrategy.OnPush,
2821
+ template: '<ng-content></ng-content>',
2822
+ inputs: ['icon', 'selected', 'showSideBarOnClickLink', 'url']
2823
+ })
2824
+ export class VegaSidenavLink {
2825
+ protected el: HTMLElement;
2826
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2827
+ c.detach();
2828
+ this.el = r.nativeElement;
2829
+ proxyOutputs(this, this.el, ['vegaClick', 'click']);
2830
+ }
2831
+ }
2832
+
2833
+ import type { VegaSignatureValue as IVegaSignatureCaptureVegaSignatureValue } from '@heartlandone/vega/dist/types/components/vega-signature-capture/types';
2834
+ export declare interface VegaSignatureCapture extends Components.VegaSignatureCapture {
2835
+ /**
2836
+ * An event emitter notifying a value change. @vegaVersion 2.19.0
2837
+ */
2838
+ vegaChange: EventEmitter<CustomEvent<IVegaSignatureCaptureVegaSignatureValue>>;
2839
+ /**
2840
+ * An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.19.0
2841
+ */
2842
+ change: EventEmitter<CustomEvent<IVegaSignatureCaptureVegaSignatureValue>>;
2843
+
2844
+ }
2845
+
2846
+ @ProxyCmp({
2847
+ defineCustomElementFn: undefined,
2848
+ inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value'],
2849
+ methods: ['clear']
2850
+ })
2851
+ @Component({
2852
+ selector: 'vega-signature-capture',
2853
+ changeDetection: ChangeDetectionStrategy.OnPush,
2854
+ template: '<ng-content></ng-content>',
2855
+ inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value']
2856
+ })
2857
+ export class VegaSignatureCapture {
2858
+ protected el: HTMLElement;
2859
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2860
+ c.detach();
2861
+ this.el = r.nativeElement;
2862
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2863
+ }
2864
+ }
2865
+
2866
+
2867
+ export declare interface VegaSkeleton extends Components.VegaSkeleton {}
2868
+
2869
+ @ProxyCmp({
2870
+ defineCustomElementFn: undefined,
2871
+ inputs: ['animated', 'corners', 'height', 'type', 'width']
2872
+ })
2873
+ @Component({
2874
+ selector: 'vega-skeleton',
2875
+ changeDetection: ChangeDetectionStrategy.OnPush,
2876
+ template: '<ng-content></ng-content>',
2877
+ inputs: ['animated', 'corners', 'height', 'type', 'width']
2878
+ })
2879
+ export class VegaSkeleton {
2880
+ protected el: HTMLElement;
2881
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2882
+ c.detach();
2883
+ this.el = r.nativeElement;
2884
+ }
2885
+ }
2886
+
2887
+
2888
+ export declare interface VegaSlotContainer extends Components.VegaSlotContainer {}
2889
+
2890
+ @ProxyCmp({
2891
+ defineCustomElementFn: undefined
2892
+ })
2893
+ @Component({
2894
+ selector: 'vega-slot-container',
2895
+ changeDetection: ChangeDetectionStrategy.OnPush,
2896
+ template: '<ng-content></ng-content>'
2897
+ })
2898
+ export class VegaSlotContainer {
2899
+ protected el: HTMLElement;
2900
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2901
+ c.detach();
2902
+ this.el = r.nativeElement;
2903
+ }
2904
+ }
2905
+
2906
+
2907
+ export declare interface VegaStepper extends Components.VegaStepper {
2908
+ /**
2909
+ * An event emitter notifying changes in the value of the stepper component. @vegaVersion 1.0.8
2910
+ */
2911
+ vegaChange: EventEmitter<CustomEvent<number>>;
2912
+ /**
2913
+ * An event emitter notifying changes in the value of the stepper component. @eventSemantics namespace:native,@vegaVersion 2.0.0
2914
+ */
2915
+ change: EventEmitter<CustomEvent<number>>;
2916
+
2917
+ }
2918
+
2919
+ @ProxyCmp({
2920
+ defineCustomElementFn: undefined,
2921
+ inputs: ['autoValidation', 'buttonVariant', 'disabled', 'inputDisabled', 'isValid', 'label', 'max', 'min', 'stepperId', 'value']
2922
+ })
2923
+ @Component({
2924
+ selector: 'vega-stepper',
2925
+ changeDetection: ChangeDetectionStrategy.OnPush,
2926
+ template: '<ng-content></ng-content>',
2927
+ inputs: ['autoValidation', 'buttonVariant', 'disabled', 'inputDisabled', 'isValid', 'label', 'max', 'min', 'stepperId', 'value']
2928
+ })
2929
+ export class VegaStepper {
2930
+ protected el: HTMLElement;
2931
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2932
+ c.detach();
2933
+ this.el = r.nativeElement;
2934
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2935
+ }
2936
+ }
2937
+
2938
+
2939
+ export declare interface VegaTabGroup extends Components.VegaTabGroup {
2940
+ /**
2941
+ * An event emitter notifying the click event of a tab
2942
+ in the tab group. @vegaVersion 1.1.0
2943
+ */
2944
+ vegaClick: EventEmitter<CustomEvent<string>>;
2945
+ /**
2946
+ * An event emitter notifying the click event of a tab
2947
+ in the tab group. @eventSemantics namespace:native,@vegaVersion 2.0.0
2948
+ */
2949
+ click: EventEmitter<CustomEvent<string>>;
2950
+
2951
+ }
2952
+
2953
+ @ProxyCmp({
2954
+ defineCustomElementFn: undefined,
2955
+ inputs: ['gap', 'overflow', 'positionRelativeTo', 'selectedTabDataTarget', 'showCloseButton', 'tabItems', 'variant']
2956
+ })
2957
+ @Component({
2958
+ selector: 'vega-tab-group',
2959
+ changeDetection: ChangeDetectionStrategy.OnPush,
2960
+ template: '<ng-content></ng-content>',
2961
+ inputs: ['gap', 'overflow', 'positionRelativeTo', 'selectedTabDataTarget', 'showCloseButton', 'tabItems', 'variant']
2962
+ })
2963
+ export class VegaTabGroup {
2964
+ protected el: HTMLElement;
2965
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2966
+ c.detach();
2967
+ this.el = r.nativeElement;
2968
+ proxyOutputs(this, this.el, ['vegaClick', 'click']);
2969
+ }
2970
+ }
2971
+
2972
+
2973
+ export declare interface VegaTabGroupPanel extends Components.VegaTabGroupPanel {}
2974
+
2975
+ @ProxyCmp({
2976
+ defineCustomElementFn: undefined,
2977
+ inputs: ['isActive']
2978
+ })
2979
+ @Component({
2980
+ selector: 'vega-tab-group-panel',
2981
+ changeDetection: ChangeDetectionStrategy.OnPush,
2982
+ template: '<ng-content></ng-content>',
2983
+ inputs: ['isActive']
2984
+ })
2985
+ export class VegaTabGroupPanel {
2986
+ protected el: HTMLElement;
2987
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2988
+ c.detach();
2989
+ this.el = r.nativeElement;
2990
+ }
2991
+ }
2992
+
2993
+ import type { VegaTableChangePropType as IVegaTableVegaTableChangePropType } from '@heartlandone/vega/dist/types/components/vega-table/interface';
2994
+ import type { VegaTableRowClickPropType as IVegaTableVegaTableRowClickPropType } from '@heartlandone/vega/dist/types/components/vega-table/interface';
2995
+ import type { VegaTableRowExpandEventDetail as IVegaTableVegaTableRowExpandEventDetail } from '@heartlandone/vega/dist/types/components/vega-table/interface';
2996
+ import type { VegaTableRowSelectProp as IVegaTableVegaTableRowSelectProp } from '@heartlandone/vega/dist/types/components/vega-table/interface';
2997
+ import type { VegaTableSelectAllProp as IVegaTableVegaTableSelectAllProp } from '@heartlandone/vega/dist/types/components/vega-table/interface';
2998
+ import type { VegaTableRowSelectEventDetail as IVegaTableVegaTableRowSelectEventDetail } from '@heartlandone/vega/dist/types/components/vega-table/interface';
2999
+ import type { VegaTableRowSelectAllEventDetail as IVegaTableVegaTableRowSelectAllEventDetail } from '@heartlandone/vega/dist/types/components/vega-table/interface';
3000
+ export declare interface VegaTable extends Components.VegaTable {
3001
+ /**
3002
+ * An event emitter notifying changes in the table data. @vegaVersion 1.3.0
3003
+ */
3004
+ vegaChange: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;
3005
+ /**
3006
+ * An event emitter notifying changes in the table data. @eventSemantics namespace:native,@vegaVersion 2.0.0
3007
+ */
3008
+ change: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;
3009
+ /**
3010
+ * An event emitter notifying the click event of a row
3011
+ in the table. @vegaVersion 1.3.0
3012
+ */
3013
+ vegaRowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;
3014
+ /**
3015
+ * An event emitter notifying the click event of a row
3016
+ in the table. @eventSemantics namespace:native,@vegaVersion 2.0.0
3017
+ */
3018
+ rowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;
3019
+ /**
3020
+ * An event emitter notifying the expanded event of a row
3021
+ in the table. @vegaVersion 2.24.0
3022
+ */
3023
+ vegaRowExpand: EventEmitter<CustomEvent<IVegaTableVegaTableRowExpandEventDetail>>;
3024
+ /**
3025
+ * An event emitter notifying the expanded event of a row
3026
+ in the table. @eventSemantics namespace:native,@vegaVersion 2.24.0
3027
+ */
3028
+ rowExpand: EventEmitter<CustomEvent<IVegaTableVegaTableRowExpandEventDetail>>;
3029
+ /**
3030
+ * An event emitter notifying when the row selection changes. @vegaVersion 1.18.0
3031
+ */
3032
+ vegaSelectChange: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectProp>>;
3033
+ /**
3034
+ * An event emitter notifying when the selection state of all rows changes. @eventSemantics namespace:native,@vegaVersion 2.0.0
3035
+ */
3036
+ selectChange: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectProp>>;
3037
+ /**
3038
+ * An event emitter notifying changes in the selection of checkboxes,
3039
+ particularly the "Select All" checkbox in the table header. @vegaVersion 1.18.0
3040
+ */
3041
+ vegaSelectAllChange: EventEmitter<CustomEvent<IVegaTableVegaTableSelectAllProp>>;
3042
+ /**
3043
+ * An event emitter notifying changes in the selection of checkboxes,
3044
+ particularly the "Select All" checkbox in the table header. @eventSemantics namespace:native,@vegaVersion 2.0.0
3045
+ */
3046
+ selectAllChange: EventEmitter<CustomEvent<IVegaTableVegaTableSelectAllProp>>;
3047
+ /**
3048
+ * An event emitter notifying before the selected change when select/deselect one row @vegaVersion 2.23.0
3049
+ */
3050
+ vegaRowSelect: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectEventDetail>>;
3051
+ /**
3052
+ * An event emitter notifying before the selected change when select/deselect one row @eventSemantics namespace:native,@vegaVersion 2.23.0
3053
+ */
3054
+ rowSelect: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectEventDetail>>;
3055
+ /**
3056
+ * An event emitter notifying before the selected change when select/deselect all rows @vegaVersion 2.23.0
3057
+ */
3058
+ vegaRowSelectAll: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectAllEventDetail>>;
3059
+ /**
3060
+ * An event emitter notifying before the selected change when select/deselect all rows @eventSemantics namespace:native,@vegaVersion 2.23.0
3061
+ */
3062
+ rowSelectAll: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectAllEventDetail>>;
3063
+
3064
+ }
3065
+
3066
+ @ProxyCmp({
3067
+ defineCustomElementFn: undefined,
3068
+ inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'groupColumns', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowKey', 'rowSelection', 'scrollConfig', 'showHeader', 'sortConfig', 'striped'],
3069
+ methods: ['openExpandRow', 'closeExpandRow', 'closeAllExpandRow', 'toggleExpandRow', 'clearSelection', 'getSelection', 'setSelection', 'startRowEditMode', 'stopRowEditMode', 'stopAllRowEditMode', 'getRowData', 'getRowsData', 'getFormRef', 'addNewRow', 'saveEditRow', 'saveAllEditRows', 'getEditingRowsKey', 'removeRow']
3070
+ })
3071
+ @Component({
3072
+ selector: 'vega-table',
3073
+ changeDetection: ChangeDetectionStrategy.OnPush,
3074
+ template: '<ng-content></ng-content>',
3075
+ inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'groupColumns', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowKey', 'rowSelection', 'scrollConfig', 'showHeader', 'sortConfig', 'striped']
3076
+ })
3077
+ export class VegaTable {
3078
+ protected el: HTMLElement;
3079
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3080
+ c.detach();
3081
+ this.el = r.nativeElement;
3082
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRowClick', 'rowClick', 'vegaRowExpand', 'rowExpand', 'vegaSelectChange', 'selectChange', 'vegaSelectAllChange', 'selectAllChange', 'vegaRowSelect', 'rowSelect', 'vegaRowSelectAll', 'rowSelectAll']);
3083
+ }
3084
+ }
3085
+
3086
+
3087
+ export declare interface VegaTableBody extends Components.VegaTableBody {}
3088
+
3089
+ @ProxyCmp({
3090
+ defineCustomElementFn: undefined
3091
+ })
3092
+ @Component({
3093
+ selector: 'vega-table-body',
3094
+ changeDetection: ChangeDetectionStrategy.OnPush,
3095
+ template: '<ng-content></ng-content>'
3096
+ })
3097
+ export class VegaTableBody {
3098
+ protected el: HTMLElement;
3099
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3100
+ c.detach();
3101
+ this.el = r.nativeElement;
3102
+ }
3103
+ }
3104
+
3105
+
3106
+ export declare interface VegaTableCell extends Components.VegaTableCell {}
3107
+
3108
+ @ProxyCmp({
3109
+ defineCustomElementFn: undefined,
3110
+ inputs: ['breakpoint', 'overflow', 'textAlign', 'width']
3111
+ })
3112
+ @Component({
3113
+ selector: 'vega-table-cell',
3114
+ changeDetection: ChangeDetectionStrategy.OnPush,
3115
+ template: '<ng-content></ng-content>',
3116
+ inputs: ['breakpoint', 'overflow', 'textAlign', 'width']
3117
+ })
3118
+ export class VegaTableCell {
3119
+ protected el: HTMLElement;
3120
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3121
+ c.detach();
3122
+ this.el = r.nativeElement;
3123
+ }
3124
+ }
3125
+
3126
+
3127
+ export declare interface VegaTableExpandRow extends Components.VegaTableExpandRow {}
3128
+
3129
+ @ProxyCmp({
3130
+ defineCustomElementFn: undefined,
3131
+ inputs: ['rowKey', 'striped']
3132
+ })
3133
+ @Component({
3134
+ selector: 'vega-table-expand-row',
3135
+ changeDetection: ChangeDetectionStrategy.OnPush,
3136
+ template: '<ng-content></ng-content>',
3137
+ inputs: ['rowKey', 'striped']
3138
+ })
3139
+ export class VegaTableExpandRow {
3140
+ protected el: HTMLElement;
3141
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3142
+ c.detach();
3143
+ this.el = r.nativeElement;
3144
+ }
3145
+ }
3146
+
3147
+
3148
+ export declare interface VegaTableHead extends Components.VegaTableHead {}
3149
+
3150
+ @ProxyCmp({
3151
+ defineCustomElementFn: undefined
3152
+ })
3153
+ @Component({
3154
+ selector: 'vega-table-head',
3155
+ changeDetection: ChangeDetectionStrategy.OnPush,
3156
+ template: '<ng-content></ng-content>'
3157
+ })
3158
+ export class VegaTableHead {
3159
+ protected el: HTMLElement;
3160
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3161
+ c.detach();
3162
+ this.el = r.nativeElement;
3163
+ }
3164
+ }
3165
+
3166
+ import type { VegaTableHeadCellClickEvent as IVegaTableHeadCellVegaTableHeadCellClickEvent } from '@heartlandone/vega/dist/types/components/vega-table/interface';
3167
+ export declare interface VegaTableHeadCell extends Components.VegaTableHeadCell {
3168
+ /**
3169
+ * An event emitter notifying that the head cell has been clicked. @vegaVersion 1.44.0
3170
+ */
3171
+ vegaClick: EventEmitter<CustomEvent<IVegaTableHeadCellVegaTableHeadCellClickEvent>>;
3172
+ /**
3173
+ * An event emitter notifying that the head cell has been clicked. @eventSemantics namespace:native,@vegaVersion 2.0.0
3174
+ */
3175
+ click: EventEmitter<CustomEvent<IVegaTableHeadCellVegaTableHeadCellClickEvent>>;
3176
+
3177
+ }
3178
+
3179
+ @ProxyCmp({
3180
+ defineCustomElementFn: undefined,
3181
+ inputs: ['breakpoint', 'pinned', 'sortConfig', 'sortOrder', 'sorter', 'textAlign', 'width']
3182
+ })
3183
+ @Component({
3184
+ selector: 'vega-table-head-cell',
3185
+ changeDetection: ChangeDetectionStrategy.OnPush,
3186
+ template: '<ng-content></ng-content>',
3187
+ inputs: ['breakpoint', 'pinned', 'sortConfig', 'sortOrder', 'sorter', 'textAlign', 'width']
3188
+ })
3189
+ export class VegaTableHeadCell {
3190
+ protected el: HTMLElement;
3191
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3192
+ c.detach();
3193
+ this.el = r.nativeElement;
3194
+ proxyOutputs(this, this.el, ['vegaClick', 'click']);
3195
+ }
3196
+ }
3197
+
3198
+
3199
+ export declare interface VegaTableHeadRow extends Components.VegaTableHeadRow {}
3200
+
3201
+ @ProxyCmp({
3202
+ defineCustomElementFn: undefined,
3203
+ inputs: ['hideSelectAll', 'selectAllDisabled']
3204
+ })
3205
+ @Component({
3206
+ selector: 'vega-table-head-row',
3207
+ changeDetection: ChangeDetectionStrategy.OnPush,
3208
+ template: '<ng-content></ng-content>',
3209
+ inputs: ['hideSelectAll', 'selectAllDisabled']
3210
+ })
3211
+ export class VegaTableHeadRow {
3212
+ protected el: HTMLElement;
3213
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3214
+ c.detach();
3215
+ this.el = r.nativeElement;
3216
+ }
3217
+ }
3218
+
3219
+ import type { VegaTableRowClickEvent as IVegaTableRowVegaTableRowClickEvent } from '@heartlandone/vega/dist/types/components/vega-table/interface';
3220
+ import type { VegaTableRowExpandEvent as IVegaTableRowVegaTableRowExpandEvent } from '@heartlandone/vega/dist/types/components/vega-table/interface';
3221
+ export declare interface VegaTableRow extends Components.VegaTableRow {
3222
+ /**
3223
+ * An event emitter notifying that the row has been clicked. @vegaVersion 1.44.0
3224
+ */
3225
+ vegaClick: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
3226
+ /**
3227
+ * An event emitter notifying that the row has been clicked. @eventSemantics namespace:native,@vegaVersion 2.0.0
3228
+ */
3229
+ click: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
3230
+ /**
3231
+ * An event emitter notifying that the expand icon has been clicked. @vegaVersion 2.20.0
3232
+ */
3233
+ vegaExpand: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowExpandEvent>>;
3234
+ /**
3235
+ * An event emitter notifying that the expand icon has been clicked. @eventSemantics namespace:native,@vegaVersion 2.20.0
3236
+ */
3237
+ expand: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowExpandEvent>>;
3238
+
3239
+ }
3240
+
3241
+ @ProxyCmp({
3242
+ defineCustomElementFn: undefined,
3243
+ inputs: ['rowDivider', 'rowKey', 'striped']
3244
+ })
3245
+ @Component({
3246
+ selector: 'vega-table-row',
3247
+ changeDetection: ChangeDetectionStrategy.OnPush,
3248
+ template: '<ng-content></ng-content>',
3249
+ inputs: ['rowDivider', 'rowKey', 'striped']
3250
+ })
3251
+ export class VegaTableRow {
3252
+ protected el: HTMLElement;
3253
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3254
+ c.detach();
3255
+ this.el = r.nativeElement;
3256
+ proxyOutputs(this, this.el, ['vegaClick', 'click', 'vegaExpand', 'expand']);
3257
+ }
3258
+ }
3259
+
3260
+
3261
+ export declare interface VegaText extends Components.VegaText {}
3262
+
3263
+ @ProxyCmp({
3264
+ defineCustomElementFn: undefined,
3265
+ inputs: ['overflow', 'tooltip']
3266
+ })
3267
+ @Component({
3268
+ selector: 'vega-text',
3269
+ changeDetection: ChangeDetectionStrategy.OnPush,
3270
+ template: '<ng-content></ng-content>',
3271
+ inputs: ['overflow', 'tooltip']
3272
+ })
3273
+ export class VegaText {
3274
+ protected el: HTMLElement;
3275
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3276
+ c.detach();
3277
+ this.el = r.nativeElement;
3278
+ }
3279
+ }
3280
+
3281
+
3282
+ export declare interface VegaTextarea extends Components.VegaTextarea {
3283
+ /**
3284
+ * An event emitter notifying about changes in the value
3285
+ of the text area. @vegaVersion 1.11.0
3286
+ */
3287
+ vegaChange: EventEmitter<CustomEvent<string>>;
3288
+ /**
3289
+ * An event emitter notifying about changes in the value
3290
+ of the text area. @eventSemantics namespace:native,@vegaVersion 2.0.0
3291
+ */
3292
+ change: EventEmitter<CustomEvent<string>>;
3293
+ /**
3294
+ * An event emitter notifying the blur event of the inner
3295
+ textarea element within the text area. @vegaVersion 1.11.0
3296
+ */
3297
+ vegaBlur: EventEmitter<CustomEvent<undefined>>;
3298
+ /**
3299
+ * An event emitter notifying the blur event of the inner
3300
+ textarea element within the text area. @eventSemantics namespace:native,@vegaVersion 2.0.0
3301
+ */
3302
+ blur: EventEmitter<CustomEvent<undefined>>;
3303
+
3304
+ }
3305
+
3306
+ @ProxyCmp({
3307
+ defineCustomElementFn: undefined,
3308
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxLength', 'minLength', 'placeholder', 'required', 'resizable', 'showCounter', 'validationRules', 'value']
3309
+ })
3310
+ @Component({
3311
+ selector: 'vega-textarea',
3312
+ changeDetection: ChangeDetectionStrategy.OnPush,
3313
+ template: '<ng-content></ng-content>',
3314
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxLength', 'minLength', 'placeholder', 'required', 'resizable', 'showCounter', 'validationRules', 'value']
3315
+ })
3316
+ export class VegaTextarea {
3317
+ protected el: HTMLElement;
3318
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3319
+ c.detach();
3320
+ this.el = r.nativeElement;
3321
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur']);
3322
+ }
3323
+ }
3324
+
3325
+
3326
+ export declare interface VegaTimePicker extends Components.VegaTimePicker {
3327
+ /**
3328
+ * An event emitter notifying changes in the value of the time picker. @vegaVersion 1.12.0
3329
+ */
3330
+ vegaChange: EventEmitter<CustomEvent<string | string[]>>;
3331
+ /**
3332
+ * An event emitter notifying changes in the value of the time picker. @eventSemantics namespace:native,@vegaVersion 2.0.0
3333
+ */
3334
+ change: EventEmitter<CustomEvent<string | string[]>>;
3335
+
3336
+ }
3337
+
3338
+ @ProxyCmp({
3339
+ defineCustomElementFn: undefined,
3340
+ inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'required', 'size', 'timeFormat', 'validationRules', 'value']
3341
+ })
3342
+ @Component({
3343
+ selector: 'vega-time-picker',
3344
+ changeDetection: ChangeDetectionStrategy.OnPush,
3345
+ template: '<ng-content></ng-content>',
3346
+ inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'required', 'size', 'timeFormat', 'validationRules', 'value']
3347
+ })
3348
+ export class VegaTimePicker {
3349
+ protected el: HTMLElement;
3350
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3351
+ c.detach();
3352
+ this.el = r.nativeElement;
3353
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
3354
+ }
3355
+ }
3356
+
3357
+
3358
+ export declare interface VegaTimePickerDropdown extends Components.VegaTimePickerDropdown {}
3359
+
3360
+ @ProxyCmp({
3361
+ defineCustomElementFn: undefined
3362
+ })
3363
+ @Component({
3364
+ selector: 'vega-time-picker-dropdown',
3365
+ changeDetection: ChangeDetectionStrategy.OnPush,
3366
+ template: '<ng-content></ng-content>'
3367
+ })
3368
+ export class VegaTimePickerDropdown {
3369
+ protected el: HTMLElement;
3370
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3371
+ c.detach();
3372
+ this.el = r.nativeElement;
3373
+ }
3374
+ }
3375
+
3376
+
3377
+ export declare interface VegaToggleSwitch extends Components.VegaToggleSwitch {
3378
+ /**
3379
+ * An event emitter notifying changes in the toggle switch. @vegaVersion 1.3.0
3380
+ */
3381
+ vegaChange: EventEmitter<CustomEvent<boolean>>;
3382
+ /**
3383
+ * An event emitter notifying changes in the toggle switch. @eventSemantics namespace:native,@vegaVersion 2.0.0
3384
+ */
3385
+ change: EventEmitter<CustomEvent<boolean>>;
3386
+
3387
+ }
3388
+
3389
+ @ProxyCmp({
3390
+ defineCustomElementFn: undefined,
3391
+ inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'required', 'size', 'validationRules', 'value']
3392
+ })
3393
+ @Component({
3394
+ selector: 'vega-toggle-switch',
3395
+ changeDetection: ChangeDetectionStrategy.OnPush,
3396
+ template: '<ng-content></ng-content>',
3397
+ inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'required', 'size', 'validationRules', 'value']
3398
+ })
3399
+ export class VegaToggleSwitch {
3400
+ protected el: HTMLElement;
3401
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3402
+ c.detach();
3403
+ this.el = r.nativeElement;
3404
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
3405
+ }
3406
+ }
3407
+
3408
+
3409
+ export declare interface VegaTooltip extends Components.VegaTooltip {}
3410
+
3411
+ @ProxyCmp({
3412
+ defineCustomElementFn: undefined,
3413
+ inputs: ['alignment', 'content', 'disableInteractive', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'size', 'text', 'trigger']
3414
+ })
3415
+ @Component({
3416
+ selector: 'vega-tooltip',
3417
+ changeDetection: ChangeDetectionStrategy.OnPush,
3418
+ template: '<ng-content></ng-content>',
3419
+ inputs: ['alignment', 'content', 'disableInteractive', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'size', 'text', 'trigger']
3420
+ })
3421
+ export class VegaTooltip {
3422
+ protected el: HTMLElement;
3423
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3424
+ c.detach();
3425
+ this.el = r.nativeElement;
3426
+ }
3427
+ }
3428
+
3429
+
3430
+ export declare interface VegaTooltipContentBox extends Components.VegaTooltipContentBox {}
3431
+
3432
+ @ProxyCmp({
3433
+ defineCustomElementFn: undefined,
3434
+ inputs: ['text']
3435
+ })
3436
+ @Component({
3437
+ selector: 'vega-tooltip-content-box',
3438
+ changeDetection: ChangeDetectionStrategy.OnPush,
3439
+ template: '<ng-content></ng-content>',
3440
+ inputs: ['text']
3441
+ })
3442
+ export class VegaTooltipContentBox {
3443
+ protected el: HTMLElement;
3444
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3445
+ c.detach();
3446
+ this.el = r.nativeElement;
3447
+ }
3448
+ }
3449
+
3450
+
3451
+ export declare interface VegaVirtualScroll extends Components.VegaVirtualScroll {}
3452
+
3453
+ @ProxyCmp({
3454
+ defineCustomElementFn: undefined,
3455
+ inputs: ['approxItemHeight', 'isLoading', 'renderItem', 'source', 'sourceItemIdentifier', 'viewportMaxHeight', 'virtualizationThreshold'],
3456
+ methods: ['scrollToIndex']
3457
+ })
3458
+ @Component({
3459
+ selector: 'vega-virtual-scroll',
3460
+ changeDetection: ChangeDetectionStrategy.OnPush,
3461
+ template: '<ng-content></ng-content>',
3462
+ inputs: ['approxItemHeight', 'isLoading', 'renderItem', 'source', 'sourceItemIdentifier', 'viewportMaxHeight', 'virtualizationThreshold']
3463
+ })
3464
+ export class VegaVirtualScroll {
3465
+ protected el: HTMLElement;
3466
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3467
+ c.detach();
3468
+ this.el = r.nativeElement;
3469
+ }
3470
+ }
3471
+
3472
+ export default [
3473
+ VegaAccordion,
3474
+ VegaAppFooter,
3475
+ VegaAppHeaderButton,
3476
+ VegaBackdrop,
3477
+ VegaBanner,
3478
+ VegaBarChart,
3479
+ VegaBox,
3480
+ VegaBrandLogo,
3481
+ VegaBreadcrumb,
3482
+ VegaButton,
3483
+ VegaButtonCircle,
3484
+ VegaButtonGroup,
3485
+ VegaButtonGroupItem,
3486
+ VegaButtonLink,
3487
+ VegaCalendar,
3488
+ VegaCalendarEvent,
3489
+ VegaCalendarEventPreview,
3490
+ VegaCalendarEventSlot,
3491
+ VegaCard,
3492
+ VegaCarousel,
3493
+ VegaCheckbox,
3494
+ VegaCheckboxGroup,
3495
+ VegaChip,
3496
+ VegaCodeBlock,
3497
+ VegaColorPicker,
3498
+ VegaComboBox,
3499
+ VegaCounterBadge,
3500
+ VegaDatePicker,
3501
+ VegaDatePickerCalendar,
3502
+ VegaDialog,
3503
+ VegaDivider,
3504
+ VegaDropdown,
3505
+ VegaDropdownContentBox,
3506
+ VegaDropdownGroup,
3507
+ VegaDropdownItem,
3508
+ VegaFieldError,
3509
+ VegaFieldLabel,
3510
+ VegaFileUploader,
3511
+ VegaFlagIcon,
3512
+ VegaFlex,
3513
+ VegaFont,
3514
+ VegaForm,
3515
+ VegaGrid,
3516
+ VegaHint,
3517
+ VegaIcon,
3518
+ VegaImageUploader,
3519
+ VegaInput,
3520
+ VegaInputCreditCard,
3521
+ VegaInputNumeric,
3522
+ VegaInputPhoneNumber,
3523
+ VegaInputRange,
3524
+ VegaInputSelect,
3525
+ VegaItemToggle,
3526
+ VegaLeftNav,
3527
+ VegaLeftNavGroup,
3528
+ VegaLeftNavLink,
3529
+ VegaLeftNavSection,
3530
+ VegaLineChart,
3531
+ VegaLoaderWrapper,
3532
+ VegaLoadingIndicator,
3533
+ VegaModal,
3534
+ VegaNavCard,
3535
+ VegaPageNotification,
3536
+ VegaPageNotificationList,
3537
+ VegaPagination,
3538
+ VegaPaginationPageSelectorMobile,
3539
+ VegaPaginationPageSizeSelectorMobile,
3540
+ VegaPieChart,
3541
+ VegaPopover,
3542
+ VegaPopoverContentBox,
3543
+ VegaProgressTracker,
3544
+ VegaRadio,
3545
+ VegaRadioGroup,
3546
+ VegaRichTextContent,
3547
+ VegaRichTextEditor,
3548
+ VegaRichTextEditorToolbarButton,
3549
+ VegaRichTextImageEditor,
3550
+ VegaRichTextLinkEditor,
3551
+ VegaSectionTitle,
3552
+ VegaSegmentControl,
3553
+ VegaSelectionChip,
3554
+ VegaSelectionChipGroup,
3555
+ VegaSelectionTile,
3556
+ VegaSelectionTileGroup,
3557
+ VegaSidenav,
3558
+ VegaSidenavGroup,
3559
+ VegaSidenavLink,
3560
+ VegaSignatureCapture,
3561
+ VegaSkeleton,
3562
+ VegaSlotContainer,
3563
+ VegaStepper,
3564
+ VegaTabGroup,
3565
+ VegaTabGroupPanel,
3566
+ VegaTable,
3567
+ VegaTableBody,
3568
+ VegaTableCell,
3569
+ VegaTableExpandRow,
3570
+ VegaTableHead,
3571
+ VegaTableHeadCell,
3572
+ VegaTableHeadRow,
3573
+ VegaTableRow,
3574
+ VegaText,
3575
+ VegaTextarea,
3576
+ VegaTimePicker,
3577
+ VegaTimePickerDropdown,
3578
+ VegaToggleSwitch,
3579
+ VegaTooltip,
3580
+ VegaTooltipContentBox,
3581
+ VegaVirtualScroll,
3582
+ ];