@heartlandone/vega-angular 2.0.0-temp-test-0.1 → 2.0.0-temp-test-0.2

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.
@@ -13,11 +13,6 @@ export declare interface VegaAccordion extends Components.VegaAccordion {
13
13
  * An event emitter notifying the expand event of the accordion.
14
14
  */
15
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
19
- */
20
- accordionExpand: EventEmitter<CustomEvent<boolean>>;
21
16
 
22
17
  }
23
18
 
@@ -36,7 +31,7 @@ export class VegaAccordion {
36
31
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
37
32
  c.detach();
38
33
  this.el = r.nativeElement;
39
- proxyOutputs(this, this.el, ['vegaExpand', 'accordionExpand']);
34
+ proxyOutputs(this, this.el, ['vegaExpand']);
40
35
  }
41
36
  }
42
37
 
@@ -67,20 +62,11 @@ export declare interface VegaAppHeaderButton extends Components.VegaAppHeaderBut
67
62
  * An event emitter notifying the click event of an app header button.
68
63
  */
69
64
  vegaClick: EventEmitter<CustomEvent<any>>;
70
- /**
71
- * An event emitter notifying the click event of an app header button. @eventSemantics namespace:native
72
- */
73
- click: EventEmitter<CustomEvent<any>>;
74
65
  /**
75
66
  * An event emitter notifying the click event of a dropdown item
76
67
  in the app header.
77
68
  */
78
69
  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
82
- */
83
- dropdownClick: EventEmitter<CustomEvent<string>>;
84
70
 
85
71
  }
86
72
 
@@ -99,7 +85,7 @@ export class VegaAppHeaderButton {
99
85
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
100
86
  c.detach();
101
87
  this.el = r.nativeElement;
102
- proxyOutputs(this, this.el, ['vegaClick', 'click', 'vegaDropdownClick', 'dropdownClick']);
88
+ proxyOutputs(this, this.el, ['vegaClick', 'vegaDropdownClick']);
103
89
  }
104
90
  }
105
91
 
@@ -210,10 +196,6 @@ export declare interface VegaBreadcrumb extends Components.VegaBreadcrumb {
210
196
  * An event emitter notifying that a breadcrumb item has been clicked.
211
197
  */
212
198
  vegaClick: EventEmitter<CustomEvent<IVegaBreadcrumbVegaBreadcrumbItemType>>;
213
- /**
214
- * An native event emitter notifying that a breadcrumb item has been clicked. @eventSemantics namespace:native
215
- */
216
- click: EventEmitter<CustomEvent<IVegaBreadcrumbVegaBreadcrumbItemType>>;
217
199
 
218
200
  }
219
201
 
@@ -232,7 +214,7 @@ export class VegaBreadcrumb {
232
214
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
233
215
  c.detach();
234
216
  this.el = r.nativeElement;
235
- proxyOutputs(this, this.el, ['vegaClick', 'click']);
217
+ proxyOutputs(this, this.el, ['vegaClick']);
236
218
  }
237
219
  }
238
220
 
@@ -242,10 +224,6 @@ export declare interface VegaButton extends Components.VegaButton {
242
224
  * An event emitter notifying the click event of the button.
243
225
  */
244
226
  vegaClick: EventEmitter<CustomEvent<any>>;
245
- /**
246
- * An native event emitter notifying the click event of the button. @eventSemantics namespace:native
247
- */
248
- click: EventEmitter<CustomEvent<any>>;
249
227
 
250
228
  }
251
229
 
@@ -264,7 +242,7 @@ export class VegaButton {
264
242
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
265
243
  c.detach();
266
244
  this.el = r.nativeElement;
267
- proxyOutputs(this, this.el, ['vegaClick', 'click']);
245
+ proxyOutputs(this, this.el, ['vegaClick']);
268
246
  }
269
247
  }
270
248
 
@@ -274,10 +252,6 @@ export declare interface VegaButtonCircle extends Components.VegaButtonCircle {
274
252
  * An event emitter notifying the click event of the circular button.
275
253
  */
276
254
  vegaClick: EventEmitter<CustomEvent<any>>;
277
- /**
278
- * An event emitter notifying the click event of the circular button. @eventSemantics namespace:native
279
- */
280
- click: EventEmitter<CustomEvent<any>>;
281
255
 
282
256
  }
283
257
 
@@ -296,7 +270,7 @@ export class VegaButtonCircle {
296
270
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
297
271
  c.detach();
298
272
  this.el = r.nativeElement;
299
- proxyOutputs(this, this.el, ['vegaClick', 'click']);
273
+ proxyOutputs(this, this.el, ['vegaClick']);
300
274
  }
301
275
  }
302
276
 
@@ -306,10 +280,6 @@ export declare interface VegaButtonLink extends Components.VegaButtonLink {
306
280
  * An event emitter notifying the click event of the button.
307
281
  */
308
282
  vegaClick: EventEmitter<CustomEvent<any>>;
309
- /**
310
- * An event emitter notifying the click event of the button. @eventSemantics namespace:native
311
- */
312
- click: EventEmitter<CustomEvent<any>>;
313
283
 
314
284
  }
315
285
 
@@ -328,7 +298,7 @@ export class VegaButtonLink {
328
298
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
329
299
  c.detach();
330
300
  this.el = r.nativeElement;
331
- proxyOutputs(this, this.el, ['vegaClick', 'click']);
301
+ proxyOutputs(this, this.el, ['vegaClick']);
332
302
  }
333
303
  }
334
304
 
@@ -360,11 +330,6 @@ export declare interface VegaCarousel extends Components.VegaCarousel {
360
330
  whether triggered programmatically or through user interaction.
361
331
  */
362
332
  vegaPageUpdate: EventEmitter<CustomEvent<number>>;
363
- /**
364
- * A native event emitter notifying the transition of the carousel to another page,
365
- whether triggered programmatically or through user interaction. @eventSemantics namespace:native
366
- */
367
- pageUpdate: EventEmitter<CustomEvent<number>>;
368
333
 
369
334
  }
370
335
 
@@ -384,7 +349,7 @@ export class VegaCarousel {
384
349
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
385
350
  c.detach();
386
351
  this.el = r.nativeElement;
387
- proxyOutputs(this, this.el, ['vegaPageUpdate', 'pageUpdate']);
352
+ proxyOutputs(this, this.el, ['vegaPageUpdate']);
388
353
  }
389
354
  }
390
355
 
@@ -399,11 +364,6 @@ export declare interface VegaCheckbox extends Components.VegaCheckbox {
399
364
  whether triggered programmatically or through user interaction.
400
365
  */
401
366
  vegaChange: EventEmitter<CustomEvent<string | boolean>>;
402
- /**
403
- * An event emitter notifying changes in the value of the checkbox,
404
- whether triggered programmatically or through user interaction. @eventSemantics namespace:native
405
- */
406
- change: EventEmitter<CustomEvent<string | boolean>>;
407
367
 
408
368
  }
409
369
 
@@ -423,7 +383,7 @@ export class VegaCheckbox {
423
383
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
424
384
  c.detach();
425
385
  this.el = r.nativeElement;
426
- proxyOutputs(this, this.el, ['vegaValidate', 'vegaChange', 'change']);
386
+ proxyOutputs(this, this.el, ['vegaValidate', 'vegaChange']);
427
387
  }
428
388
  }
429
389
 
@@ -436,13 +396,6 @@ export declare interface VegaCheckboxGroup extends Components.VegaCheckboxGroup
436
396
  user interaction.
437
397
  */
438
398
  vegaChange: EventEmitter<CustomEvent<string[]>>;
439
- /**
440
- * An event emitter notifying changes in the value
441
- of any nested checkbox within the checkbox group,
442
- whether triggered programmatically or through
443
- user interaction. @eventSemantics namespace:native
444
- */
445
- change: EventEmitter<CustomEvent<string[]>>;
446
399
  /**
447
400
  * An event emitter notifying changes in the
448
401
  validation result of the checkbox group. @deprecated vegaValidate is only used to listen on the vega-form component.
@@ -467,7 +420,7 @@ export class VegaCheckboxGroup {
467
420
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
468
421
  c.detach();
469
422
  this.el = r.nativeElement;
470
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
423
+ proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
471
424
  }
472
425
  }
473
426
 
@@ -479,20 +432,12 @@ export declare interface VegaChip extends Components.VegaChip {
479
432
  This event is only dispatched when the `showCloseIcon` property is set to `true`.
480
433
  */
481
434
  vegaClose: EventEmitter<CustomEvent<void>>;
482
- /**
483
- * An event emitter notifying the click event of the close button of the chip. @eventSemantics namespace:native
484
- */
485
- close: EventEmitter<CustomEvent<void>>;
486
435
  /**
487
436
  * An event emitter notifying the click event of the chip.
488
437
 
489
438
  This event is only dispatched when the `clickable` property is set to `true`.
490
439
  */
491
440
  vegaClick: EventEmitter<CustomEvent<void>>;
492
- /**
493
- * An event emitter notifying the click event of the chip. @eventSemantics namespace:native
494
- */
495
- click: EventEmitter<CustomEvent<void>>;
496
441
 
497
442
  }
498
443
 
@@ -511,7 +456,7 @@ export class VegaChip {
511
456
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
512
457
  c.detach();
513
458
  this.el = r.nativeElement;
514
- proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaClick', 'click']);
459
+ proxyOutputs(this, this.el, ['vegaClose', 'vegaClick']);
515
460
  }
516
461
  }
517
462
 
@@ -522,11 +467,6 @@ export declare interface VegaColorPicker extends Components.VegaColorPicker {
522
467
  whether triggered programmatically or through user interaction.
523
468
  */
524
469
  vegaChange: EventEmitter<CustomEvent<string>>;
525
- /**
526
- * An event emitter notifying changes in the value of the color picker,
527
- whether triggered programmatically or through user interaction. @eventSemantics namespace:native
528
- */
529
- change: EventEmitter<CustomEvent<string>>;
530
470
  /**
531
471
  * An event emitter notifying changes in the validation result of the color picker. @deprecated vegaValidate is only used to listen on the vega-form component.
532
472
  */
@@ -550,7 +490,7 @@ export class VegaColorPicker {
550
490
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
551
491
  c.detach();
552
492
  this.el = r.nativeElement;
553
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
493
+ proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
554
494
  }
555
495
  }
556
496
 
@@ -561,11 +501,6 @@ export declare interface VegaComboBox extends Components.VegaComboBox {
561
501
  whether triggered programmatically or through user interaction.
562
502
  */
563
503
  vegaChange: EventEmitter<CustomEvent<string[]>>;
564
- /**
565
- * An native event emitter notifying changes in the items of the combo box value,
566
- whether triggered programmatically or through user interaction. @eventSemantics namespace:native
567
- */
568
- change: EventEmitter<CustomEvent<string[]>>;
569
504
  /**
570
505
  * An event emitter notifying changes in the validation result of the combo box. @deprecated vegaValidate is only used to listen on the vega-form component.
571
506
  */
@@ -579,25 +514,11 @@ The event's `detail` property contains the new value.
579
514
  The combo box _does not_ automatically add the new value to its `source` and `value`.
580
515
  */
581
516
  vegaCreate: EventEmitter<CustomEvent<string>>;
582
- /**
583
- * An native event emitter notifying when the user has chosen to add a new value
584
- to the source and value of the combo box.
585
-
586
- The event's `detail` property contains the new value.
587
-
588
- The combo box _does not_ automatically add the new value to its `source` and `value`. @eventSemantics namespace:native
589
- */
590
- create: EventEmitter<CustomEvent<string>>;
591
517
  /**
592
518
  * An event emitter notifying the user's search action in the combo box,
593
519
  but only if the `useDefaultFilter` property is set to `false`.
594
520
  */
595
521
  vegaSearch: EventEmitter<CustomEvent<string>>;
596
- /**
597
- * An native event emitter notifying the user's search action in the combo box,
598
- but only if the `useDefaultFilter` property is set to `false`. @eventSemantics namespace:native
599
- */
600
- search: EventEmitter<CustomEvent<string>>;
601
522
 
602
523
  }
603
524
 
@@ -617,7 +538,7 @@ export class VegaComboBox {
617
538
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
618
539
  c.detach();
619
540
  this.el = r.nativeElement;
620
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate', 'vegaCreate', 'create', 'vegaSearch', 'search']);
541
+ proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaCreate', 'vegaSearch']);
621
542
  }
622
543
  }
623
544
 
@@ -649,11 +570,6 @@ export declare interface VegaDatePicker extends Components.VegaDatePicker {
649
570
  whether triggered programmatically or through user interaction.
650
571
  */
651
572
  vegaChange: EventEmitter<CustomEvent<string | string[]>>;
652
- /**
653
- * A native event emitter notifying the change of the value in the date picker,
654
- whether triggered programmatically or through user interaction. @eventSemantics namespace:native
655
- */
656
- change: EventEmitter<CustomEvent<string | string[]>>;
657
573
  /**
658
574
  * An event emitter notifying the change in the validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
659
575
  */
@@ -677,7 +593,7 @@ export class VegaDatePicker {
677
593
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
678
594
  c.detach();
679
595
  this.el = r.nativeElement;
680
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
596
+ proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
681
597
  }
682
598
  }
683
599
 
@@ -708,42 +624,22 @@ export declare interface VegaDropdown extends Components.VegaDropdown {
708
624
  * @deprecated This property will be removed soon *
709
625
  */
710
626
  vegaClick: EventEmitter<CustomEvent<string | string[]>>;
711
- /**
712
- * An native event emitter notifying the dropdown item has been clicked. @eventSemantics namespace:native
713
- */
714
- click: EventEmitter<CustomEvent<string | string[]>>;
715
627
  /**
716
628
  * An event emitter notifying that a dropdown item has been clicked.
717
629
 
718
630
  The event's `detail` property contains the key of the clicked item.
719
631
  */
720
632
  vegaDropdownClick: EventEmitter<CustomEvent<string>>;
721
- /**
722
- * An event emitter notifying that a dropdown item has been clicked.
723
-
724
- The event's `detail` property contains the key of the clicked item. @eventSemantics namespace:native
725
- */
726
- dropdownClick: EventEmitter<CustomEvent<string>>;
727
633
  /**
728
634
  * An event emitter notifying that the dropdown has been displayed,
729
635
  either programmatically or via user interaction.
730
636
  */
731
637
  vegaShow: EventEmitter<CustomEvent<string>>;
732
- /**
733
- * An native event emitter notifying that the dropdown has been displayed,
734
- either programmatically or via user interaction. The name is not `show` because already has a method `show`. @eventSemantics namespace:native
735
- */
736
- dropdownShow: EventEmitter<CustomEvent<string>>;
737
638
  /**
738
639
  * Event emitter notifying that the dropdown has been dismissed,
739
640
  either programmatically or via user interaction.
740
641
  */
741
642
  vegaHide: EventEmitter<CustomEvent<string>>;
742
- /**
743
- * An native event emitter notifying that the dropdown has been dismissed,
744
- either programmatically or via user interaction. The name is not `hide` because already has a method `hide`. @eventSemantics namespace:native
745
- */
746
- dropdownHide: EventEmitter<CustomEvent<string>>;
747
643
  /**
748
644
  * An event emitter notifying the addition of a new value
749
645
  to the dropdown source list.
@@ -753,25 +649,11 @@ The event's `detail` property contains the new value.
753
649
  The dropdown _does not_ automatically add the new value to the source list.
754
650
  */
755
651
  vegaCreate: EventEmitter<CustomEvent<string>>;
756
- /**
757
- * An event emitter notifying the addition of a new value
758
- to the dropdown source list.
759
-
760
- The event's `detail` property contains the new value.
761
-
762
- The dropdown _does not_ automatically add the new value to the source list. @eventSemantics namespace:native
763
- */
764
- create: EventEmitter<CustomEvent<string>>;
765
652
  /**
766
653
  * An event emitter notifying the search event in the dropdown,
767
654
  but only if `useDefaultFilter` is set to `false`.
768
655
  */
769
656
  vegaSearch: EventEmitter<CustomEvent<string>>;
770
- /**
771
- * An event emitter notifying the search event in the dropdown,
772
- but only if `useDefaultFilter` is set to `false`. The name is not `search` because already has a method `search`. @eventSemantics namespace:native
773
- */
774
- dropdownSearch: EventEmitter<CustomEvent<string>>;
775
657
 
776
658
  }
777
659
 
@@ -791,7 +673,7 @@ export class VegaDropdown {
791
673
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
792
674
  c.detach();
793
675
  this.el = r.nativeElement;
794
- proxyOutputs(this, this.el, ['vegaClick', 'click', 'vegaDropdownClick', 'dropdownClick', 'vegaShow', 'dropdownShow', 'vegaHide', 'dropdownHide', 'vegaCreate', 'create', 'vegaSearch', 'dropdownSearch']);
676
+ proxyOutputs(this, this.el, ['vegaClick', 'vegaDropdownClick', 'vegaShow', 'vegaHide', 'vegaCreate', 'vegaSearch']);
795
677
  }
796
678
  }
797
679
 
@@ -822,10 +704,6 @@ export declare interface VegaDropdownItem extends Components.VegaDropdownItem {
822
704
  * An event emitter notifying the dropdown item has been clicked.
823
705
  */
824
706
  vegaClick: EventEmitter<CustomEvent<IVegaDropdownItemVegaDropdownItemClickEvent>>;
825
- /**
826
- * An native event emitter notifying the dropdown item has been clicked. @eventSemantics namespace:native
827
- */
828
- click: EventEmitter<CustomEvent<IVegaDropdownItemVegaDropdownItemClickEvent>>;
829
707
 
830
708
  }
831
709
 
@@ -844,7 +722,7 @@ export class VegaDropdownItem {
844
722
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
845
723
  c.detach();
846
724
  this.el = r.nativeElement;
847
- proxyOutputs(this, this.el, ['vegaClick', 'click']);
725
+ proxyOutputs(this, this.el, ['vegaClick']);
848
726
  }
849
727
  }
850
728
 
@@ -966,26 +844,14 @@ export declare interface VegaForm extends Components.VegaForm {
966
844
  * An event emitter notifying the change in the validation result.
967
845
  */
968
846
  vegaValidate: EventEmitter<CustomEvent<boolean>>;
969
- /**
970
- * An event emitter notifying the change in the validation result. @eventSemantics namespace:native
971
- */
972
- validate: EventEmitter<CustomEvent<boolean>>;
973
847
  /**
974
848
  * An event emitter notifying the submission of the form.
975
849
  */
976
850
  vegaFormSubmit: EventEmitter<CustomEvent<unknown>>;
977
- /**
978
- * An event emitter notifying the submission of the form. @eventSemantics namespace:native
979
- */
980
- formSubmit: EventEmitter<CustomEvent<unknown>>;
981
851
  /**
982
852
  * An event emitter notifying the reset of the form.
983
853
  */
984
854
  vegaFormReset: EventEmitter<CustomEvent<any>>;
985
- /**
986
- * An event emitter notifying the reset of the form. @eventSemantics namespace:native
987
- */
988
- formReset: EventEmitter<CustomEvent<any>>;
989
855
 
990
856
  }
991
857
 
@@ -1005,7 +871,7 @@ export class VegaForm {
1005
871
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1006
872
  c.detach();
1007
873
  this.el = r.nativeElement;
1008
- proxyOutputs(this, this.el, ['vegaValidate', 'validate', 'vegaFormSubmit', 'formSubmit', 'vegaFormReset', 'formReset']);
874
+ proxyOutputs(this, this.el, ['vegaValidate', 'vegaFormSubmit', 'vegaFormReset']);
1009
875
  }
1010
876
  }
1011
877
 
@@ -1076,26 +942,14 @@ export declare interface VegaImageUploader extends Components.VegaImageUploader
1076
942
  * An event emitter notifying a value change.
1077
943
  */
1078
944
  vegaChange: EventEmitter<CustomEvent<IVegaImageUploaderVegaFileOptional>>;
1079
- /**
1080
- * An event emitter notifying a value change. @eventSemantics namespace:native
1081
- */
1082
- change: EventEmitter<CustomEvent<any>>;
1083
945
  /**
1084
946
  * An event emitter notifying the removal of a value.
1085
947
  */
1086
948
  vegaRemove: EventEmitter<CustomEvent<any>>;
1087
- /**
1088
- * An event emitter notifying the removal of a value. @eventSemantics namespace:native
1089
- */
1090
- remove: EventEmitter<CustomEvent<any>>;
1091
949
  /**
1092
950
  * An event emitter notifying the cancellation of an uploading event.
1093
951
  */
1094
952
  vegaCancel: EventEmitter<CustomEvent<any>>;
1095
- /**
1096
- * An event emitter notifying the removal of a value. @eventSemantics namespace:native
1097
- */
1098
- cancel: EventEmitter<CustomEvent<any>>;
1099
953
  /**
1100
954
  * An event emitter notifying the change in the validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
1101
955
  */
@@ -1119,7 +973,7 @@ export class VegaImageUploader {
1119
973
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1120
974
  c.detach();
1121
975
  this.el = r.nativeElement;
1122
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRemove', 'remove', 'vegaCancel', 'cancel', 'vegaValidate']);
976
+ proxyOutputs(this, this.el, ['vegaChange', 'vegaRemove', 'vegaCancel', 'vegaValidate']);
1123
977
  }
1124
978
  }
1125
979
 
@@ -1129,10 +983,6 @@ export declare interface VegaInput extends Components.VegaInput {
1129
983
  * An event emitter notifying a value change.
1130
984
  */
1131
985
  vegaChange: EventEmitter<CustomEvent<string>>;
1132
- /**
1133
- * An native event emitter notifying a value change. @eventSemantics namespace:native
1134
- */
1135
- change: EventEmitter<CustomEvent<string>>;
1136
986
  /**
1137
987
  * An event emitter notifying the change in the validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
1138
988
  */
@@ -1141,18 +991,10 @@ export declare interface VegaInput extends Components.VegaInput {
1141
991
  * An event emitter notifying the blur of the inner input element.
1142
992
  */
1143
993
  vegaBlur: EventEmitter<CustomEvent<undefined>>;
1144
- /**
1145
- * An native event emitter notifying the blur of the inner input element. @eventSemantics namespace:native
1146
- */
1147
- blur: EventEmitter<CustomEvent<undefined>>;
1148
994
  /**
1149
995
  * An event emitter notifying the focus of the inner input element.
1150
996
  */
1151
997
  vegaFocus: EventEmitter<CustomEvent<undefined>>;
1152
- /**
1153
- * An native event emitter notifying the focus of the inner input element. @eventSemantics namespace:native
1154
- */
1155
- focus: EventEmitter<CustomEvent<undefined>>;
1156
998
 
1157
999
  }
1158
1000
 
@@ -1172,7 +1014,7 @@ export class VegaInput {
1172
1014
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1173
1015
  c.detach();
1174
1016
  this.el = r.nativeElement;
1175
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate', 'vegaBlur', 'blur', 'vegaFocus', 'focus']);
1017
+ proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaBlur', 'vegaFocus']);
1176
1018
  }
1177
1019
  }
1178
1020
 
@@ -1186,26 +1028,14 @@ export declare interface VegaInputCreditCard extends Components.VegaInputCreditC
1186
1028
  * An event emitter notifying a value change.
1187
1029
  */
1188
1030
  vegaChange: EventEmitter<CustomEvent<string>>;
1189
- /**
1190
- * A native change event emitter notifying a value change. @eventSemantics namespace:native
1191
- */
1192
- change: EventEmitter<CustomEvent<string>>;
1193
1031
  /**
1194
1032
  * An event emitter notifying the blur event of the credit card element.
1195
1033
  */
1196
1034
  vegaBlur: EventEmitter<CustomEvent<undefined>>;
1197
- /**
1198
- * A native event emitter notifying the blur event of the credit card element. @eventSemantics namespace:native
1199
- */
1200
- blur: EventEmitter<CustomEvent<undefined>>;
1201
1035
  /**
1202
1036
  * An event emitter notifying the focus of the credit card element.
1203
1037
  */
1204
1038
  vegaFocus: EventEmitter<CustomEvent<undefined>>;
1205
- /**
1206
- * A native event emitter notifying the focus of the credit card element. @eventSemantics namespace:native
1207
- */
1208
- focus: EventEmitter<CustomEvent<undefined>>;
1209
1039
 
1210
1040
  }
1211
1041
 
@@ -1225,7 +1055,7 @@ export class VegaInputCreditCard {
1225
1055
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1226
1056
  c.detach();
1227
1057
  this.el = r.nativeElement;
1228
- proxyOutputs(this, this.el, ['vegaValidate', 'vegaChange', 'change', 'vegaBlur', 'blur', 'vegaFocus', 'focus']);
1058
+ proxyOutputs(this, this.el, ['vegaValidate', 'vegaChange', 'vegaBlur', 'vegaFocus']);
1229
1059
  }
1230
1060
  }
1231
1061
 
@@ -1236,10 +1066,6 @@ export declare interface VegaInputSelect extends Components.VegaInputSelect {
1236
1066
  * An event emitter notifying the change of the select value.
1237
1067
  */
1238
1068
  vegaChange: EventEmitter<CustomEvent<IVegaInputSelectSelectValueType<IVegaInputSelectSelectType>>>;
1239
- /**
1240
- * An native event emitter notifying the change of the select value. @eventSemantics namespace:native
1241
- */
1242
- change: EventEmitter<CustomEvent<IVegaInputSelectSelectValueType<IVegaInputSelectSelectType>>>;
1243
1069
  /**
1244
1070
  * An event emitter notifying the change in the validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
1245
1071
  */
@@ -1248,10 +1074,6 @@ export declare interface VegaInputSelect extends Components.VegaInputSelect {
1248
1074
  * An event emitter notifying the search of the dropdown.
1249
1075
  */
1250
1076
  vegaSearch: EventEmitter<CustomEvent<string>>;
1251
- /**
1252
- * An event emitter notifying the search of the dropdown. @eventSemantics namespace:native
1253
- */
1254
- search: EventEmitter<CustomEvent<string>>;
1255
1077
 
1256
1078
  }
1257
1079
 
@@ -1271,7 +1093,7 @@ export class VegaInputSelect {
1271
1093
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1272
1094
  c.detach();
1273
1095
  this.el = r.nativeElement;
1274
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate', 'vegaSearch', 'search']);
1096
+ proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaSearch']);
1275
1097
  }
1276
1098
  }
1277
1099
 
@@ -1281,10 +1103,6 @@ export declare interface VegaItemToggle extends Components.VegaItemToggle {
1281
1103
  * An event emitter notifying an item toggle event.
1282
1104
  */
1283
1105
  vegaToggleStatus: EventEmitter<CustomEvent<boolean>>;
1284
- /**
1285
- * A native event emitter notifying an item toggle event. @eventSemantics namespace:native
1286
- */
1287
- toggleStatus: EventEmitter<CustomEvent<boolean>>;
1288
1106
 
1289
1107
  }
1290
1108
 
@@ -1303,7 +1121,7 @@ export class VegaItemToggle {
1303
1121
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1304
1122
  c.detach();
1305
1123
  this.el = r.nativeElement;
1306
- proxyOutputs(this, this.el, ['vegaToggleStatus', 'toggleStatus']);
1124
+ proxyOutputs(this, this.el, ['vegaToggleStatus']);
1307
1125
  }
1308
1126
  }
1309
1127
 
@@ -1313,10 +1131,6 @@ export declare interface VegaLeftNav extends Components.VegaLeftNav {
1313
1131
  * An event emitter notifying that the left-nav's open state has changed.
1314
1132
  */
1315
1133
  vegaStateUpdate: EventEmitter<CustomEvent<string>>;
1316
- /**
1317
- * A native event emitter notifying that the left-nav's open state has changed. @eventSemantics namespace:native
1318
- */
1319
- stateUpdate: EventEmitter<CustomEvent<string>>;
1320
1134
 
1321
1135
  }
1322
1136
 
@@ -1336,7 +1150,7 @@ export class VegaLeftNav {
1336
1150
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1337
1151
  c.detach();
1338
1152
  this.el = r.nativeElement;
1339
- proxyOutputs(this, this.el, ['vegaStateUpdate', 'stateUpdate']);
1153
+ proxyOutputs(this, this.el, ['vegaStateUpdate']);
1340
1154
  }
1341
1155
  }
1342
1156
 
@@ -1346,10 +1160,6 @@ export declare interface VegaLeftNavGroup extends Components.VegaLeftNavGroup {
1346
1160
  * event emitter used for notifying consumers the click event
1347
1161
  */
1348
1162
  vegaGroupClick: EventEmitter<CustomEvent<string>>;
1349
- /**
1350
- * A native event emitter used for notifying consumers the click event @eventSemantics namespace:native
1351
- */
1352
- groupClick: EventEmitter<CustomEvent<string>>;
1353
1163
 
1354
1164
  }
1355
1165
 
@@ -1368,7 +1178,7 @@ export class VegaLeftNavGroup {
1368
1178
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1369
1179
  c.detach();
1370
1180
  this.el = r.nativeElement;
1371
- proxyOutputs(this, this.el, ['vegaGroupClick', 'groupClick']);
1181
+ proxyOutputs(this, this.el, ['vegaGroupClick']);
1372
1182
  }
1373
1183
  }
1374
1184
 
@@ -1378,10 +1188,6 @@ export declare interface VegaLeftNavLink extends Components.VegaLeftNavLink {
1378
1188
  * event emitter used for notifying consumers the click event
1379
1189
  */
1380
1190
  vegaMenuClick: EventEmitter<CustomEvent<any>>;
1381
- /**
1382
- * event emitter used for notifying consumers the click event @eventSemantics namespace:native
1383
- */
1384
- menuClick: EventEmitter<CustomEvent<any>>;
1385
1191
 
1386
1192
  }
1387
1193
 
@@ -1400,7 +1206,7 @@ export class VegaLeftNavLink {
1400
1206
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1401
1207
  c.detach();
1402
1208
  this.el = r.nativeElement;
1403
- proxyOutputs(this, this.el, ['vegaMenuClick', 'menuClick']);
1209
+ proxyOutputs(this, this.el, ['vegaMenuClick']);
1404
1210
  }
1405
1211
  }
1406
1212
 
@@ -1474,18 +1280,10 @@ export declare interface VegaModal extends Components.VegaModal {
1474
1280
  * An event emitter notifying the modal close event.
1475
1281
  */
1476
1282
  vegaClose: EventEmitter<CustomEvent<any>>;
1477
- /**
1478
- * An event emitter notifying the modal close event. @eventSemantics namespace:native
1479
- */
1480
- close: EventEmitter<CustomEvent<any>>;
1481
1283
  /**
1482
1284
  * An event emitter notifying the modal open event.
1483
1285
  */
1484
1286
  vegaOpen: EventEmitter<CustomEvent<any>>;
1485
- /**
1486
- * An native event emitter notifying the modal open event. The event name is not `open` because already has a property `open` @eventSemantics namespace:native
1487
- */
1488
- modalOpen: EventEmitter<CustomEvent<any>>;
1489
1287
 
1490
1288
  }
1491
1289
 
@@ -1505,7 +1303,7 @@ export class VegaModal {
1505
1303
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1506
1304
  c.detach();
1507
1305
  this.el = r.nativeElement;
1508
- proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaOpen', 'modalOpen']);
1306
+ proxyOutputs(this, this.el, ['vegaClose', 'vegaOpen']);
1509
1307
  }
1510
1308
  }
1511
1309
 
@@ -1579,20 +1377,11 @@ export declare interface VegaPagination extends Components.VegaPagination {
1579
1377
  * An event emitter notifying the current page change.
1580
1378
  */
1581
1379
  vegaChange: EventEmitter<CustomEvent<number>>;
1582
- /**
1583
- * An event emitter notifying the current page change. @eventSemantics namespace:native
1584
- */
1585
- change: EventEmitter<CustomEvent<number>>;
1586
1380
  /**
1587
1381
  * An event emitter notifying a change in the number of
1588
1382
  data items displayed per page.
1589
1383
  */
1590
1384
  vegaPageSizeChange: EventEmitter<CustomEvent<number>>;
1591
- /**
1592
- * An event emitter notifying a change in the number of
1593
- data items displayed per page. @eventSemantics namespace:native
1594
- */
1595
- pageSizeChange: EventEmitter<CustomEvent<number>>;
1596
1385
 
1597
1386
  }
1598
1387
 
@@ -1611,7 +1400,7 @@ export class VegaPagination {
1611
1400
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1612
1401
  c.detach();
1613
1402
  this.el = r.nativeElement;
1614
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaPageSizeChange', 'pageSizeChange']);
1403
+ proxyOutputs(this, this.el, ['vegaChange', 'vegaPageSizeChange']);
1615
1404
  }
1616
1405
  }
1617
1406
 
@@ -1643,18 +1432,10 @@ export declare interface VegaPopover extends Components.VegaPopover {
1643
1432
  * An event emitter notifying the popover show event.
1644
1433
  */
1645
1434
  vegaPopoverShow: EventEmitter<CustomEvent<string>>;
1646
- /**
1647
- * A native event emitter notifying the popover show event. @eventSemantics namespace:native
1648
- */
1649
- popoverShow: EventEmitter<CustomEvent<string>>;
1650
1435
  /**
1651
1436
  * An event emitter notifying the popover hide event.
1652
1437
  */
1653
1438
  vegaPopoverHide: EventEmitter<CustomEvent<string>>;
1654
- /**
1655
- * A native event emitter notifying the popover hide event. @eventSemantics namespace:native
1656
- */
1657
- popoverHide: EventEmitter<CustomEvent<string>>;
1658
1439
 
1659
1440
  }
1660
1441
 
@@ -1674,7 +1455,7 @@ export class VegaPopover {
1674
1455
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1675
1456
  c.detach();
1676
1457
  this.el = r.nativeElement;
1677
- proxyOutputs(this, this.el, ['vegaPopoverShow', 'popoverShow', 'vegaPopoverHide', 'popoverHide']);
1458
+ proxyOutputs(this, this.el, ['vegaPopoverShow', 'vegaPopoverHide']);
1678
1459
  }
1679
1460
  }
1680
1461
 
@@ -1684,10 +1465,6 @@ export declare interface VegaProgressTracker extends Components.VegaProgressTrac
1684
1465
  * An event emitter notifying that the current step has changed.
1685
1466
  */
1686
1467
  vegaCurrentStepUpdate: EventEmitter<CustomEvent<string>>;
1687
- /**
1688
- * A native event emitter notifying that the current step has changed. @eventSemantics namespace:native
1689
- */
1690
- currentStepUpdate: EventEmitter<CustomEvent<string>>;
1691
1468
 
1692
1469
  }
1693
1470
 
@@ -1707,7 +1484,7 @@ export class VegaProgressTracker {
1707
1484
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1708
1485
  c.detach();
1709
1486
  this.el = r.nativeElement;
1710
- proxyOutputs(this, this.el, ['vegaCurrentStepUpdate', 'currentStepUpdate']);
1487
+ proxyOutputs(this, this.el, ['vegaCurrentStepUpdate']);
1711
1488
  }
1712
1489
  }
1713
1490
 
@@ -1717,28 +1494,15 @@ export declare interface VegaRadio extends Components.VegaRadio {
1717
1494
  * An event emitter notifying the focus event of the radio input.
1718
1495
  */
1719
1496
  vegaFocus: EventEmitter<CustomEvent<any>>;
1720
- /**
1721
- * An event emitter notifying the focus event of the radio input. @eventSemantics namespace:native
1722
- */
1723
- focus: EventEmitter<CustomEvent<any>>;
1724
1497
  /**
1725
1498
  * An event emitter notifying the blur event of the radio input.
1726
1499
  */
1727
1500
  vegaBlur: EventEmitter<CustomEvent<any>>;
1728
- /**
1729
- * An event emitter notifying the blur event of the radio input. @eventSemantics namespace:native
1730
- */
1731
- blur: EventEmitter<CustomEvent<any>>;
1732
1501
  /**
1733
1502
  * An event emitter notifying the change in the check status
1734
1503
  of the radio input.
1735
1504
  */
1736
1505
  vegaChange: EventEmitter<CustomEvent<boolean>>;
1737
- /**
1738
- * An event emitter notifying the change in the check status
1739
- of the radio input. @eventSemantics namespace:native
1740
- */
1741
- change: EventEmitter<CustomEvent<boolean>>;
1742
1506
 
1743
1507
  }
1744
1508
 
@@ -1757,7 +1521,7 @@ export class VegaRadio {
1757
1521
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1758
1522
  c.detach();
1759
1523
  this.el = r.nativeElement;
1760
- proxyOutputs(this, this.el, ['vegaFocus', 'focus', 'vegaBlur', 'blur', 'vegaChange', 'change']);
1524
+ proxyOutputs(this, this.el, ['vegaFocus', 'vegaBlur', 'vegaChange']);
1761
1525
  }
1762
1526
  }
1763
1527
 
@@ -1768,11 +1532,6 @@ export declare interface VegaRadioGroup extends Components.VegaRadioGroup {
1768
1532
  checked radio button in the radio group.
1769
1533
  */
1770
1534
  vegaChange: EventEmitter<CustomEvent<string>>;
1771
- /**
1772
- * An event emitter notifying the change of the
1773
- checked radio button in the radio group. @eventSemantics namespace:native
1774
- */
1775
- change: EventEmitter<CustomEvent<string>>;
1776
1535
  /**
1777
1536
  * An event emitter notifying the change in the
1778
1537
  validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
@@ -1797,7 +1556,7 @@ export class VegaRadioGroup {
1797
1556
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1798
1557
  c.detach();
1799
1558
  this.el = r.nativeElement;
1800
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
1559
+ proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
1801
1560
  }
1802
1561
  }
1803
1562
 
@@ -1901,13 +1660,10 @@ export class VegaSlotContainer {
1901
1660
 
1902
1661
  export declare interface VegaStepper extends Components.VegaStepper {
1903
1662
  /**
1904
- * An event emitter notifying changes in the value of the stepper component.
1663
+ * An event emitter notifying changes in the value of
1664
+ the stepper component.
1905
1665
  */
1906
1666
  vegaChange: EventEmitter<CustomEvent<number>>;
1907
- /**
1908
- * An event emitter notifying changes in the value of the stepper component. @eventSemantics namespace:native
1909
- */
1910
- change: EventEmitter<CustomEvent<number>>;
1911
1667
  /**
1912
1668
  * An event emitter notifying changes in the validation
1913
1669
  result of the stepper component. @deprecated vegaValidate is only used to listen on the vega-form component.
@@ -1932,7 +1688,7 @@ export class VegaStepper {
1932
1688
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1933
1689
  c.detach();
1934
1690
  this.el = r.nativeElement;
1935
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
1691
+ proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
1936
1692
  }
1937
1693
  }
1938
1694
 
@@ -1943,11 +1699,6 @@ export declare interface VegaTabGroup extends Components.VegaTabGroup {
1943
1699
  in the tab group.
1944
1700
  */
1945
1701
  vegaClick: EventEmitter<CustomEvent<string>>;
1946
- /**
1947
- * A native event emitter notifying the click event of a tab
1948
- in the tab group. @eventSemantics namespace:native
1949
- */
1950
- click: EventEmitter<CustomEvent<string>>;
1951
1702
 
1952
1703
  }
1953
1704
 
@@ -1966,7 +1717,7 @@ export class VegaTabGroup {
1966
1717
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1967
1718
  c.detach();
1968
1719
  this.el = r.nativeElement;
1969
- proxyOutputs(this, this.el, ['vegaClick', 'click']);
1720
+ proxyOutputs(this, this.el, ['vegaClick']);
1970
1721
  }
1971
1722
  }
1972
1723
 
@@ -2000,40 +1751,21 @@ export declare interface VegaTable extends Components.VegaTable {
2000
1751
  * An event emitter notifying changes in the table data.
2001
1752
  */
2002
1753
  vegaChange: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;
2003
- /**
2004
- * An event emitter notifying changes in the table data. @eventSemantics namespace:native
2005
- */
2006
- change: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;
2007
1754
  /**
2008
1755
  * An event emitter notifying the click event of a row
2009
1756
  in the table.
2010
1757
  */
2011
1758
  vegaRowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;
2012
- /**
2013
- * An event emitter notifying the click event of a row
2014
- in the table. @eventSemantics namespace:native
2015
- */
2016
- rowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;
2017
1759
  /**
2018
1760
  * An event emitter notifying the selection or deselection
2019
1761
  of a row in the table.
2020
1762
  */
2021
1763
  vegaSelectChange: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectProp>>;
2022
- /**
2023
- * An event emitter notifying the selection or deselection
2024
- of a row in the table. @eventSemantics namespace:native
2025
- */
2026
- selectChange: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectProp>>;
2027
1764
  /**
2028
1765
  * An event emitter notifying changes in the selection of checkboxes,
2029
1766
  particularly the "Select All" checkbox in the table header.
2030
1767
  */
2031
1768
  vegaSelectAllChange: EventEmitter<CustomEvent<IVegaTableVegaTableSelectAllProp>>;
2032
- /**
2033
- * An event emitter notifying changes in the selection of checkboxes,
2034
- particularly the "Select All" checkbox in the table header. @eventSemantics namespace:native
2035
- */
2036
- selectAllChange: EventEmitter<CustomEvent<IVegaTableVegaTableSelectAllProp>>;
2037
1769
 
2038
1770
  }
2039
1771
 
@@ -2053,7 +1785,7 @@ export class VegaTable {
2053
1785
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2054
1786
  c.detach();
2055
1787
  this.el = r.nativeElement;
2056
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRowClick', 'rowClick', 'vegaSelectChange', 'selectChange', 'vegaSelectAllChange', 'selectAllChange']);
1788
+ proxyOutputs(this, this.el, ['vegaChange', 'vegaRowClick', 'vegaSelectChange', 'vegaSelectAllChange']);
2057
1789
  }
2058
1790
  }
2059
1791
 
@@ -2143,10 +1875,6 @@ export declare interface VegaTableHeadCell extends Components.VegaTableHeadCell
2143
1875
  * An event emitter notifying that the head cell has been clicked.
2144
1876
  */
2145
1877
  vegaClick: EventEmitter<CustomEvent<IVegaTableHeadCellVegaTableHeadCellClickEvent>>;
2146
- /**
2147
- * An event emitter notifying that the head cell has been clicked. @eventSemantics namespace:native
2148
- */
2149
- click: EventEmitter<CustomEvent<IVegaTableHeadCellVegaTableHeadCellClickEvent>>;
2150
1878
 
2151
1879
  }
2152
1880
 
@@ -2165,7 +1893,7 @@ export class VegaTableHeadCell {
2165
1893
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2166
1894
  c.detach();
2167
1895
  this.el = r.nativeElement;
2168
- proxyOutputs(this, this.el, ['vegaClick', 'click']);
1896
+ proxyOutputs(this, this.el, ['vegaClick']);
2169
1897
  }
2170
1898
  }
2171
1899
 
@@ -2196,10 +1924,6 @@ export declare interface VegaTableRow extends Components.VegaTableRow {
2196
1924
  * An event emitter notifying that the row has been clicked.
2197
1925
  */
2198
1926
  vegaClick: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
2199
- /**
2200
- * An event emitter notifying that the row has been clicked. @eventSemantics namespace:native
2201
- */
2202
- click: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
2203
1927
 
2204
1928
  }
2205
1929
 
@@ -2218,7 +1942,7 @@ export class VegaTableRow {
2218
1942
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2219
1943
  c.detach();
2220
1944
  this.el = r.nativeElement;
2221
- proxyOutputs(this, this.el, ['vegaClick', 'click']);
1945
+ proxyOutputs(this, this.el, ['vegaClick']);
2222
1946
  }
2223
1947
  }
2224
1948
 
@@ -2250,11 +1974,6 @@ export declare interface VegaTextarea extends Components.VegaTextarea {
2250
1974
  of the text area.
2251
1975
  */
2252
1976
  vegaChange: EventEmitter<CustomEvent<string>>;
2253
- /**
2254
- * An event emitter notifying about changes in the value
2255
- of the text area. @eventSemantics namespace:native
2256
- */
2257
- change: EventEmitter<CustomEvent<string>>;
2258
1977
  /**
2259
1978
  * An event emitter notifying changes in the validation result
2260
1979
  of the text area. @deprecated vegaValidate is only used to listen on the vega-form component.
@@ -2265,11 +1984,6 @@ export declare interface VegaTextarea extends Components.VegaTextarea {
2265
1984
  textarea element within the text area.
2266
1985
  */
2267
1986
  vegaBlur: EventEmitter<CustomEvent<undefined>>;
2268
- /**
2269
- * An event emitter notifying the blur event of the inner
2270
- textarea element within the text area. @eventSemantics namespace:native
2271
- */
2272
- blur: EventEmitter<CustomEvent<undefined>>;
2273
1987
 
2274
1988
  }
2275
1989
 
@@ -2289,7 +2003,7 @@ export class VegaTextarea {
2289
2003
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2290
2004
  c.detach();
2291
2005
  this.el = r.nativeElement;
2292
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate', 'vegaBlur', 'blur']);
2006
+ proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaBlur']);
2293
2007
  }
2294
2008
  }
2295
2009
 
@@ -2299,10 +2013,6 @@ export declare interface VegaTimePicker extends Components.VegaTimePicker {
2299
2013
  * An event emitter notifying changes in the value of the time picker.
2300
2014
  */
2301
2015
  vegaChange: EventEmitter<CustomEvent<string | string[]>>;
2302
- /**
2303
- * An event emitter notifying changes in the value of the time picker. @eventSemantics namespace:native
2304
- */
2305
- change: EventEmitter<CustomEvent<string | string[]>>;
2306
2016
  /**
2307
2017
  * An event emitter notifying changes in the validation result
2308
2018
  of the time picker. @deprecated vegaValidate is only used to listen on the vega-form component.
@@ -2327,7 +2037,7 @@ export class VegaTimePicker {
2327
2037
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2328
2038
  c.detach();
2329
2039
  this.el = r.nativeElement;
2330
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
2040
+ proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
2331
2041
  }
2332
2042
  }
2333
2043
 
@@ -2337,10 +2047,6 @@ export declare interface VegaToggleSwitch extends Components.VegaToggleSwitch {
2337
2047
  * An event emitter notifying changes in the toggle switch.
2338
2048
  */
2339
2049
  vegaChange: EventEmitter<CustomEvent<boolean>>;
2340
- /**
2341
- * An native event emitter notifying changes in the toggle switch. @eventSemantics namespace:native
2342
- */
2343
- change: EventEmitter<CustomEvent<boolean>>;
2344
2050
 
2345
2051
  }
2346
2052
 
@@ -2359,7 +2065,7 @@ export class VegaToggleSwitch {
2359
2065
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2360
2066
  c.detach();
2361
2067
  this.el = r.nativeElement;
2362
- proxyOutputs(this, this.el, ['vegaChange', 'change']);
2068
+ proxyOutputs(this, this.el, ['vegaChange']);
2363
2069
  }
2364
2070
  }
2365
2071