@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.
@@ -18,11 +18,6 @@ export declare interface VegaAccordion extends Components.VegaAccordion {
18
18
  * An event emitter notifying the expand event of the accordion.
19
19
  */
20
20
  vegaExpand: EventEmitter<CustomEvent<boolean>>;
21
- /**
22
- * An event emitter notifying the expand event of the accordion.
23
- expand is an attribute, so the event name here uses accordionExpand @eventSemantics namespace:native
24
- */
25
- accordionExpand: EventEmitter<CustomEvent<boolean>>;
26
21
  }
27
22
  export declare class VegaAccordion {
28
23
  protected z: NgZone;
@@ -45,20 +40,11 @@ export declare interface VegaAppHeaderButton extends Components.VegaAppHeaderBut
45
40
  * An event emitter notifying the click event of an app header button.
46
41
  */
47
42
  vegaClick: EventEmitter<CustomEvent<any>>;
48
- /**
49
- * An event emitter notifying the click event of an app header button. @eventSemantics namespace:native
50
- */
51
- click: EventEmitter<CustomEvent<any>>;
52
43
  /**
53
44
  * An event emitter notifying the click event of a dropdown item
54
45
  in the app header.
55
46
  */
56
47
  vegaDropdownClick: EventEmitter<CustomEvent<string>>;
57
- /**
58
- * An event emitter notifying the click event of a dropdown item
59
- in the app header. @eventSemantics namespace:native
60
- */
61
- dropdownClick: EventEmitter<CustomEvent<string>>;
62
48
  }
63
49
  export declare class VegaAppHeaderButton {
64
50
  protected z: NgZone;
@@ -122,10 +108,6 @@ export declare interface VegaBreadcrumb extends Components.VegaBreadcrumb {
122
108
  * An event emitter notifying that a breadcrumb item has been clicked.
123
109
  */
124
110
  vegaClick: EventEmitter<CustomEvent<IVegaBreadcrumbVegaBreadcrumbItemType>>;
125
- /**
126
- * An native event emitter notifying that a breadcrumb item has been clicked. @eventSemantics namespace:native
127
- */
128
- click: EventEmitter<CustomEvent<IVegaBreadcrumbVegaBreadcrumbItemType>>;
129
111
  }
130
112
  export declare class VegaBreadcrumb {
131
113
  protected z: NgZone;
@@ -139,10 +121,6 @@ export declare interface VegaButton extends Components.VegaButton {
139
121
  * An event emitter notifying the click event of the button.
140
122
  */
141
123
  vegaClick: EventEmitter<CustomEvent<any>>;
142
- /**
143
- * An native event emitter notifying the click event of the button. @eventSemantics namespace:native
144
- */
145
- click: EventEmitter<CustomEvent<any>>;
146
124
  }
147
125
  export declare class VegaButton {
148
126
  protected z: NgZone;
@@ -156,10 +134,6 @@ export declare interface VegaButtonCircle extends Components.VegaButtonCircle {
156
134
  * An event emitter notifying the click event of the circular button.
157
135
  */
158
136
  vegaClick: EventEmitter<CustomEvent<any>>;
159
- /**
160
- * An event emitter notifying the click event of the circular button. @eventSemantics namespace:native
161
- */
162
- click: EventEmitter<CustomEvent<any>>;
163
137
  }
164
138
  export declare class VegaButtonCircle {
165
139
  protected z: NgZone;
@@ -173,10 +147,6 @@ export declare interface VegaButtonLink extends Components.VegaButtonLink {
173
147
  * An event emitter notifying the click event of the button.
174
148
  */
175
149
  vegaClick: EventEmitter<CustomEvent<any>>;
176
- /**
177
- * An event emitter notifying the click event of the button. @eventSemantics namespace:native
178
- */
179
- click: EventEmitter<CustomEvent<any>>;
180
150
  }
181
151
  export declare class VegaButtonLink {
182
152
  protected z: NgZone;
@@ -200,11 +170,6 @@ export declare interface VegaCarousel extends Components.VegaCarousel {
200
170
  whether triggered programmatically or through user interaction.
201
171
  */
202
172
  vegaPageUpdate: EventEmitter<CustomEvent<number>>;
203
- /**
204
- * A native event emitter notifying the transition of the carousel to another page,
205
- whether triggered programmatically or through user interaction. @eventSemantics namespace:native
206
- */
207
- pageUpdate: EventEmitter<CustomEvent<number>>;
208
173
  }
209
174
  export declare class VegaCarousel {
210
175
  protected z: NgZone;
@@ -223,11 +188,6 @@ export declare interface VegaCheckbox extends Components.VegaCheckbox {
223
188
  whether triggered programmatically or through user interaction.
224
189
  */
225
190
  vegaChange: EventEmitter<CustomEvent<string | boolean>>;
226
- /**
227
- * An event emitter notifying changes in the value of the checkbox,
228
- whether triggered programmatically or through user interaction. @eventSemantics namespace:native
229
- */
230
- change: EventEmitter<CustomEvent<string | boolean>>;
231
191
  }
232
192
  export declare class VegaCheckbox {
233
193
  protected z: NgZone;
@@ -244,13 +204,6 @@ export declare interface VegaCheckboxGroup extends Components.VegaCheckboxGroup
244
204
  user interaction.
245
205
  */
246
206
  vegaChange: EventEmitter<CustomEvent<string[]>>;
247
- /**
248
- * An event emitter notifying changes in the value
249
- of any nested checkbox within the checkbox group,
250
- whether triggered programmatically or through
251
- user interaction. @eventSemantics namespace:native
252
- */
253
- change: EventEmitter<CustomEvent<string[]>>;
254
207
  /**
255
208
  * An event emitter notifying changes in the
256
209
  validation result of the checkbox group. @deprecated vegaValidate is only used to listen on the vega-form component.
@@ -271,20 +224,12 @@ export declare interface VegaChip extends Components.VegaChip {
271
224
  This event is only dispatched when the `showCloseIcon` property is set to `true`.
272
225
  */
273
226
  vegaClose: EventEmitter<CustomEvent<void>>;
274
- /**
275
- * An event emitter notifying the click event of the close button of the chip. @eventSemantics namespace:native
276
- */
277
- close: EventEmitter<CustomEvent<void>>;
278
227
  /**
279
228
  * An event emitter notifying the click event of the chip.
280
229
 
281
230
  This event is only dispatched when the `clickable` property is set to `true`.
282
231
  */
283
232
  vegaClick: EventEmitter<CustomEvent<void>>;
284
- /**
285
- * An event emitter notifying the click event of the chip. @eventSemantics namespace:native
286
- */
287
- click: EventEmitter<CustomEvent<void>>;
288
233
  }
289
234
  export declare class VegaChip {
290
235
  protected z: NgZone;
@@ -299,11 +244,6 @@ export declare interface VegaColorPicker extends Components.VegaColorPicker {
299
244
  whether triggered programmatically or through user interaction.
300
245
  */
301
246
  vegaChange: EventEmitter<CustomEvent<string>>;
302
- /**
303
- * An event emitter notifying changes in the value of the color picker,
304
- whether triggered programmatically or through user interaction. @eventSemantics namespace:native
305
- */
306
- change: EventEmitter<CustomEvent<string>>;
307
247
  /**
308
248
  * 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.
309
249
  */
@@ -322,11 +262,6 @@ export declare interface VegaComboBox extends Components.VegaComboBox {
322
262
  whether triggered programmatically or through user interaction.
323
263
  */
324
264
  vegaChange: EventEmitter<CustomEvent<string[]>>;
325
- /**
326
- * An native event emitter notifying changes in the items of the combo box value,
327
- whether triggered programmatically or through user interaction. @eventSemantics namespace:native
328
- */
329
- change: EventEmitter<CustomEvent<string[]>>;
330
265
  /**
331
266
  * 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.
332
267
  */
@@ -340,25 +275,11 @@ export declare interface VegaComboBox extends Components.VegaComboBox {
340
275
  The combo box _does not_ automatically add the new value to its `source` and `value`.
341
276
  */
342
277
  vegaCreate: EventEmitter<CustomEvent<string>>;
343
- /**
344
- * An native event emitter notifying when the user has chosen to add a new value
345
- to the source and value of the combo box.
346
-
347
- The event's `detail` property contains the new value.
348
-
349
- The combo box _does not_ automatically add the new value to its `source` and `value`. @eventSemantics namespace:native
350
- */
351
- create: EventEmitter<CustomEvent<string>>;
352
278
  /**
353
279
  * An event emitter notifying the user's search action in the combo box,
354
280
  but only if the `useDefaultFilter` property is set to `false`.
355
281
  */
356
282
  vegaSearch: EventEmitter<CustomEvent<string>>;
357
- /**
358
- * An native event emitter notifying the user's search action in the combo box,
359
- but only if the `useDefaultFilter` property is set to `false`. @eventSemantics namespace:native
360
- */
361
- search: EventEmitter<CustomEvent<string>>;
362
283
  }
363
284
  export declare class VegaComboBox {
364
285
  protected z: NgZone;
@@ -382,11 +303,6 @@ export declare interface VegaDatePicker extends Components.VegaDatePicker {
382
303
  whether triggered programmatically or through user interaction.
383
304
  */
384
305
  vegaChange: EventEmitter<CustomEvent<string | string[]>>;
385
- /**
386
- * A native event emitter notifying the change of the value in the date picker,
387
- whether triggered programmatically or through user interaction. @eventSemantics namespace:native
388
- */
389
- change: EventEmitter<CustomEvent<string | string[]>>;
390
306
  /**
391
307
  * An event emitter notifying the change in the validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
392
308
  */
@@ -413,42 +329,22 @@ export declare interface VegaDropdown extends Components.VegaDropdown {
413
329
  * @deprecated This property will be removed soon *
414
330
  */
415
331
  vegaClick: EventEmitter<CustomEvent<string | string[]>>;
416
- /**
417
- * An native event emitter notifying the dropdown item has been clicked. @eventSemantics namespace:native
418
- */
419
- click: EventEmitter<CustomEvent<string | string[]>>;
420
332
  /**
421
333
  * An event emitter notifying that a dropdown item has been clicked.
422
334
 
423
335
  The event's `detail` property contains the key of the clicked item.
424
336
  */
425
337
  vegaDropdownClick: EventEmitter<CustomEvent<string>>;
426
- /**
427
- * An event emitter notifying that a dropdown item has been clicked.
428
-
429
- The event's `detail` property contains the key of the clicked item. @eventSemantics namespace:native
430
- */
431
- dropdownClick: EventEmitter<CustomEvent<string>>;
432
338
  /**
433
339
  * An event emitter notifying that the dropdown has been displayed,
434
340
  either programmatically or via user interaction.
435
341
  */
436
342
  vegaShow: EventEmitter<CustomEvent<string>>;
437
- /**
438
- * An native event emitter notifying that the dropdown has been displayed,
439
- either programmatically or via user interaction. The name is not `show` because already has a method `show`. @eventSemantics namespace:native
440
- */
441
- dropdownShow: EventEmitter<CustomEvent<string>>;
442
343
  /**
443
344
  * Event emitter notifying that the dropdown has been dismissed,
444
345
  either programmatically or via user interaction.
445
346
  */
446
347
  vegaHide: EventEmitter<CustomEvent<string>>;
447
- /**
448
- * An native event emitter notifying that the dropdown has been dismissed,
449
- either programmatically or via user interaction. The name is not `hide` because already has a method `hide`. @eventSemantics namespace:native
450
- */
451
- dropdownHide: EventEmitter<CustomEvent<string>>;
452
348
  /**
453
349
  * An event emitter notifying the addition of a new value
454
350
  to the dropdown source list.
@@ -458,25 +354,11 @@ export declare interface VegaDropdown extends Components.VegaDropdown {
458
354
  The dropdown _does not_ automatically add the new value to the source list.
459
355
  */
460
356
  vegaCreate: EventEmitter<CustomEvent<string>>;
461
- /**
462
- * An event emitter notifying the addition of a new value
463
- to the dropdown source list.
464
-
465
- The event's `detail` property contains the new value.
466
-
467
- The dropdown _does not_ automatically add the new value to the source list. @eventSemantics namespace:native
468
- */
469
- create: EventEmitter<CustomEvent<string>>;
470
357
  /**
471
358
  * An event emitter notifying the search event in the dropdown,
472
359
  but only if `useDefaultFilter` is set to `false`.
473
360
  */
474
361
  vegaSearch: EventEmitter<CustomEvent<string>>;
475
- /**
476
- * An event emitter notifying the search event in the dropdown,
477
- but only if `useDefaultFilter` is set to `false`. The name is not `search` because already has a method `search`. @eventSemantics namespace:native
478
- */
479
- dropdownSearch: EventEmitter<CustomEvent<string>>;
480
362
  }
481
363
  export declare class VegaDropdown {
482
364
  protected z: NgZone;
@@ -499,10 +381,6 @@ export declare interface VegaDropdownItem extends Components.VegaDropdownItem {
499
381
  * An event emitter notifying the dropdown item has been clicked.
500
382
  */
501
383
  vegaClick: EventEmitter<CustomEvent<IVegaDropdownItemVegaDropdownItemClickEvent>>;
502
- /**
503
- * An native event emitter notifying the dropdown item has been clicked. @eventSemantics namespace:native
504
- */
505
- click: EventEmitter<CustomEvent<IVegaDropdownItemVegaDropdownItemClickEvent>>;
506
384
  }
507
385
  export declare class VegaDropdownItem {
508
386
  protected z: NgZone;
@@ -565,26 +443,14 @@ export declare interface VegaForm extends Components.VegaForm {
565
443
  * An event emitter notifying the change in the validation result.
566
444
  */
567
445
  vegaValidate: EventEmitter<CustomEvent<boolean>>;
568
- /**
569
- * An event emitter notifying the change in the validation result. @eventSemantics namespace:native
570
- */
571
- validate: EventEmitter<CustomEvent<boolean>>;
572
446
  /**
573
447
  * An event emitter notifying the submission of the form.
574
448
  */
575
449
  vegaFormSubmit: EventEmitter<CustomEvent<unknown>>;
576
- /**
577
- * An event emitter notifying the submission of the form. @eventSemantics namespace:native
578
- */
579
- formSubmit: EventEmitter<CustomEvent<unknown>>;
580
450
  /**
581
451
  * An event emitter notifying the reset of the form.
582
452
  */
583
453
  vegaFormReset: EventEmitter<CustomEvent<any>>;
584
- /**
585
- * An event emitter notifying the reset of the form. @eventSemantics namespace:native
586
- */
587
- formReset: EventEmitter<CustomEvent<any>>;
588
454
  }
589
455
  export declare class VegaForm {
590
456
  protected z: NgZone;
@@ -625,26 +491,14 @@ export declare interface VegaImageUploader extends Components.VegaImageUploader
625
491
  * An event emitter notifying a value change.
626
492
  */
627
493
  vegaChange: EventEmitter<CustomEvent<IVegaImageUploaderVegaFileOptional>>;
628
- /**
629
- * An event emitter notifying a value change. @eventSemantics namespace:native
630
- */
631
- change: EventEmitter<CustomEvent<any>>;
632
494
  /**
633
495
  * An event emitter notifying the removal of a value.
634
496
  */
635
497
  vegaRemove: EventEmitter<CustomEvent<any>>;
636
- /**
637
- * An event emitter notifying the removal of a value. @eventSemantics namespace:native
638
- */
639
- remove: EventEmitter<CustomEvent<any>>;
640
498
  /**
641
499
  * An event emitter notifying the cancellation of an uploading event.
642
500
  */
643
501
  vegaCancel: EventEmitter<CustomEvent<any>>;
644
- /**
645
- * An event emitter notifying the removal of a value. @eventSemantics namespace:native
646
- */
647
- cancel: EventEmitter<CustomEvent<any>>;
648
502
  /**
649
503
  * An event emitter notifying the change in the validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
650
504
  */
@@ -662,10 +516,6 @@ export declare interface VegaInput extends Components.VegaInput {
662
516
  * An event emitter notifying a value change.
663
517
  */
664
518
  vegaChange: EventEmitter<CustomEvent<string>>;
665
- /**
666
- * An native event emitter notifying a value change. @eventSemantics namespace:native
667
- */
668
- change: EventEmitter<CustomEvent<string>>;
669
519
  /**
670
520
  * An event emitter notifying the change in the validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
671
521
  */
@@ -674,18 +524,10 @@ export declare interface VegaInput extends Components.VegaInput {
674
524
  * An event emitter notifying the blur of the inner input element.
675
525
  */
676
526
  vegaBlur: EventEmitter<CustomEvent<undefined>>;
677
- /**
678
- * An native event emitter notifying the blur of the inner input element. @eventSemantics namespace:native
679
- */
680
- blur: EventEmitter<CustomEvent<undefined>>;
681
527
  /**
682
528
  * An event emitter notifying the focus of the inner input element.
683
529
  */
684
530
  vegaFocus: EventEmitter<CustomEvent<undefined>>;
685
- /**
686
- * An native event emitter notifying the focus of the inner input element. @eventSemantics namespace:native
687
- */
688
- focus: EventEmitter<CustomEvent<undefined>>;
689
531
  }
690
532
  export declare class VegaInput {
691
533
  protected z: NgZone;
@@ -703,26 +545,14 @@ export declare interface VegaInputCreditCard extends Components.VegaInputCreditC
703
545
  * An event emitter notifying a value change.
704
546
  */
705
547
  vegaChange: EventEmitter<CustomEvent<string>>;
706
- /**
707
- * A native change event emitter notifying a value change. @eventSemantics namespace:native
708
- */
709
- change: EventEmitter<CustomEvent<string>>;
710
548
  /**
711
549
  * An event emitter notifying the blur event of the credit card element.
712
550
  */
713
551
  vegaBlur: EventEmitter<CustomEvent<undefined>>;
714
- /**
715
- * A native event emitter notifying the blur event of the credit card element. @eventSemantics namespace:native
716
- */
717
- blur: EventEmitter<CustomEvent<undefined>>;
718
552
  /**
719
553
  * An event emitter notifying the focus of the credit card element.
720
554
  */
721
555
  vegaFocus: EventEmitter<CustomEvent<undefined>>;
722
- /**
723
- * A native event emitter notifying the focus of the credit card element. @eventSemantics namespace:native
724
- */
725
- focus: EventEmitter<CustomEvent<undefined>>;
726
556
  }
727
557
  export declare class VegaInputCreditCard {
728
558
  protected z: NgZone;
@@ -736,10 +566,6 @@ export declare interface VegaInputSelect extends Components.VegaInputSelect {
736
566
  * An event emitter notifying the change of the select value.
737
567
  */
738
568
  vegaChange: EventEmitter<CustomEvent<IVegaInputSelectSelectValueType<IVegaInputSelectSelectType>>>;
739
- /**
740
- * An native event emitter notifying the change of the select value. @eventSemantics namespace:native
741
- */
742
- change: EventEmitter<CustomEvent<IVegaInputSelectSelectValueType<IVegaInputSelectSelectType>>>;
743
569
  /**
744
570
  * An event emitter notifying the change in the validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
745
571
  */
@@ -748,10 +574,6 @@ export declare interface VegaInputSelect extends Components.VegaInputSelect {
748
574
  * An event emitter notifying the search of the dropdown.
749
575
  */
750
576
  vegaSearch: EventEmitter<CustomEvent<string>>;
751
- /**
752
- * An event emitter notifying the search of the dropdown. @eventSemantics namespace:native
753
- */
754
- search: EventEmitter<CustomEvent<string>>;
755
577
  }
756
578
  export declare class VegaInputSelect {
757
579
  protected z: NgZone;
@@ -765,10 +587,6 @@ export declare interface VegaItemToggle extends Components.VegaItemToggle {
765
587
  * An event emitter notifying an item toggle event.
766
588
  */
767
589
  vegaToggleStatus: EventEmitter<CustomEvent<boolean>>;
768
- /**
769
- * A native event emitter notifying an item toggle event. @eventSemantics namespace:native
770
- */
771
- toggleStatus: EventEmitter<CustomEvent<boolean>>;
772
590
  }
773
591
  export declare class VegaItemToggle {
774
592
  protected z: NgZone;
@@ -782,10 +600,6 @@ export declare interface VegaLeftNav extends Components.VegaLeftNav {
782
600
  * An event emitter notifying that the left-nav's open state has changed.
783
601
  */
784
602
  vegaStateUpdate: EventEmitter<CustomEvent<string>>;
785
- /**
786
- * A native event emitter notifying that the left-nav's open state has changed. @eventSemantics namespace:native
787
- */
788
- stateUpdate: EventEmitter<CustomEvent<string>>;
789
603
  }
790
604
  export declare class VegaLeftNav {
791
605
  protected z: NgZone;
@@ -799,10 +613,6 @@ export declare interface VegaLeftNavGroup extends Components.VegaLeftNavGroup {
799
613
  * event emitter used for notifying consumers the click event
800
614
  */
801
615
  vegaGroupClick: EventEmitter<CustomEvent<string>>;
802
- /**
803
- * A native event emitter used for notifying consumers the click event @eventSemantics namespace:native
804
- */
805
- groupClick: EventEmitter<CustomEvent<string>>;
806
616
  }
807
617
  export declare class VegaLeftNavGroup {
808
618
  protected z: NgZone;
@@ -816,10 +626,6 @@ export declare interface VegaLeftNavLink extends Components.VegaLeftNavLink {
816
626
  * event emitter used for notifying consumers the click event
817
627
  */
818
628
  vegaMenuClick: EventEmitter<CustomEvent<any>>;
819
- /**
820
- * event emitter used for notifying consumers the click event @eventSemantics namespace:native
821
- */
822
- menuClick: EventEmitter<CustomEvent<any>>;
823
629
  }
824
630
  export declare class VegaLeftNavLink {
825
631
  protected z: NgZone;
@@ -860,18 +666,10 @@ export declare interface VegaModal extends Components.VegaModal {
860
666
  * An event emitter notifying the modal close event.
861
667
  */
862
668
  vegaClose: EventEmitter<CustomEvent<any>>;
863
- /**
864
- * An event emitter notifying the modal close event. @eventSemantics namespace:native
865
- */
866
- close: EventEmitter<CustomEvent<any>>;
867
669
  /**
868
670
  * An event emitter notifying the modal open event.
869
671
  */
870
672
  vegaOpen: EventEmitter<CustomEvent<any>>;
871
- /**
872
- * An native event emitter notifying the modal open event. The event name is not `open` because already has a property `open` @eventSemantics namespace:native
873
- */
874
- modalOpen: EventEmitter<CustomEvent<any>>;
875
673
  }
876
674
  export declare class VegaModal {
877
675
  protected z: NgZone;
@@ -912,20 +710,11 @@ export declare interface VegaPagination extends Components.VegaPagination {
912
710
  * An event emitter notifying the current page change.
913
711
  */
914
712
  vegaChange: EventEmitter<CustomEvent<number>>;
915
- /**
916
- * An event emitter notifying the current page change. @eventSemantics namespace:native
917
- */
918
- change: EventEmitter<CustomEvent<number>>;
919
713
  /**
920
714
  * An event emitter notifying a change in the number of
921
715
  data items displayed per page.
922
716
  */
923
717
  vegaPageSizeChange: EventEmitter<CustomEvent<number>>;
924
- /**
925
- * An event emitter notifying a change in the number of
926
- data items displayed per page. @eventSemantics namespace:native
927
- */
928
- pageSizeChange: EventEmitter<CustomEvent<number>>;
929
718
  }
930
719
  export declare class VegaPagination {
931
720
  protected z: NgZone;
@@ -948,18 +737,10 @@ export declare interface VegaPopover extends Components.VegaPopover {
948
737
  * An event emitter notifying the popover show event.
949
738
  */
950
739
  vegaPopoverShow: EventEmitter<CustomEvent<string>>;
951
- /**
952
- * A native event emitter notifying the popover show event. @eventSemantics namespace:native
953
- */
954
- popoverShow: EventEmitter<CustomEvent<string>>;
955
740
  /**
956
741
  * An event emitter notifying the popover hide event.
957
742
  */
958
743
  vegaPopoverHide: EventEmitter<CustomEvent<string>>;
959
- /**
960
- * A native event emitter notifying the popover hide event. @eventSemantics namespace:native
961
- */
962
- popoverHide: EventEmitter<CustomEvent<string>>;
963
744
  }
964
745
  export declare class VegaPopover {
965
746
  protected z: NgZone;
@@ -973,10 +754,6 @@ export declare interface VegaProgressTracker extends Components.VegaProgressTrac
973
754
  * An event emitter notifying that the current step has changed.
974
755
  */
975
756
  vegaCurrentStepUpdate: EventEmitter<CustomEvent<string>>;
976
- /**
977
- * A native event emitter notifying that the current step has changed. @eventSemantics namespace:native
978
- */
979
- currentStepUpdate: EventEmitter<CustomEvent<string>>;
980
757
  }
981
758
  export declare class VegaProgressTracker {
982
759
  protected z: NgZone;
@@ -990,28 +767,15 @@ export declare interface VegaRadio extends Components.VegaRadio {
990
767
  * An event emitter notifying the focus event of the radio input.
991
768
  */
992
769
  vegaFocus: EventEmitter<CustomEvent<any>>;
993
- /**
994
- * An event emitter notifying the focus event of the radio input. @eventSemantics namespace:native
995
- */
996
- focus: EventEmitter<CustomEvent<any>>;
997
770
  /**
998
771
  * An event emitter notifying the blur event of the radio input.
999
772
  */
1000
773
  vegaBlur: EventEmitter<CustomEvent<any>>;
1001
- /**
1002
- * An event emitter notifying the blur event of the radio input. @eventSemantics namespace:native
1003
- */
1004
- blur: EventEmitter<CustomEvent<any>>;
1005
774
  /**
1006
775
  * An event emitter notifying the change in the check status
1007
776
  of the radio input.
1008
777
  */
1009
778
  vegaChange: EventEmitter<CustomEvent<boolean>>;
1010
- /**
1011
- * An event emitter notifying the change in the check status
1012
- of the radio input. @eventSemantics namespace:native
1013
- */
1014
- change: EventEmitter<CustomEvent<boolean>>;
1015
779
  }
1016
780
  export declare class VegaRadio {
1017
781
  protected z: NgZone;
@@ -1026,11 +790,6 @@ export declare interface VegaRadioGroup extends Components.VegaRadioGroup {
1026
790
  checked radio button in the radio group.
1027
791
  */
1028
792
  vegaChange: EventEmitter<CustomEvent<string>>;
1029
- /**
1030
- * An event emitter notifying the change of the
1031
- checked radio button in the radio group. @eventSemantics namespace:native
1032
- */
1033
- change: EventEmitter<CustomEvent<string>>;
1034
793
  /**
1035
794
  * An event emitter notifying the change in the
1036
795
  validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
@@ -1090,13 +849,10 @@ export declare class VegaSlotContainer {
1090
849
  }
1091
850
  export declare interface VegaStepper extends Components.VegaStepper {
1092
851
  /**
1093
- * An event emitter notifying changes in the value of the stepper component.
852
+ * An event emitter notifying changes in the value of
853
+ the stepper component.
1094
854
  */
1095
855
  vegaChange: EventEmitter<CustomEvent<number>>;
1096
- /**
1097
- * An event emitter notifying changes in the value of the stepper component. @eventSemantics namespace:native
1098
- */
1099
- change: EventEmitter<CustomEvent<number>>;
1100
856
  /**
1101
857
  * An event emitter notifying changes in the validation
1102
858
  result of the stepper component. @deprecated vegaValidate is only used to listen on the vega-form component.
@@ -1116,11 +872,6 @@ export declare interface VegaTabGroup extends Components.VegaTabGroup {
1116
872
  in the tab group.
1117
873
  */
1118
874
  vegaClick: EventEmitter<CustomEvent<string>>;
1119
- /**
1120
- * A native event emitter notifying the click event of a tab
1121
- in the tab group. @eventSemantics namespace:native
1122
- */
1123
- click: EventEmitter<CustomEvent<string>>;
1124
875
  }
1125
876
  export declare class VegaTabGroup {
1126
877
  protected z: NgZone;
@@ -1143,40 +894,21 @@ export declare interface VegaTable extends Components.VegaTable {
1143
894
  * An event emitter notifying changes in the table data.
1144
895
  */
1145
896
  vegaChange: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;
1146
- /**
1147
- * An event emitter notifying changes in the table data. @eventSemantics namespace:native
1148
- */
1149
- change: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;
1150
897
  /**
1151
898
  * An event emitter notifying the click event of a row
1152
899
  in the table.
1153
900
  */
1154
901
  vegaRowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;
1155
- /**
1156
- * An event emitter notifying the click event of a row
1157
- in the table. @eventSemantics namespace:native
1158
- */
1159
- rowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;
1160
902
  /**
1161
903
  * An event emitter notifying the selection or deselection
1162
904
  of a row in the table.
1163
905
  */
1164
906
  vegaSelectChange: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectProp>>;
1165
- /**
1166
- * An event emitter notifying the selection or deselection
1167
- of a row in the table. @eventSemantics namespace:native
1168
- */
1169
- selectChange: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectProp>>;
1170
907
  /**
1171
908
  * An event emitter notifying changes in the selection of checkboxes,
1172
909
  particularly the "Select All" checkbox in the table header.
1173
910
  */
1174
911
  vegaSelectAllChange: EventEmitter<CustomEvent<IVegaTableVegaTableSelectAllProp>>;
1175
- /**
1176
- * An event emitter notifying changes in the selection of checkboxes,
1177
- particularly the "Select All" checkbox in the table header. @eventSemantics namespace:native
1178
- */
1179
- selectAllChange: EventEmitter<CustomEvent<IVegaTableVegaTableSelectAllProp>>;
1180
912
  }
1181
913
  export declare class VegaTable {
1182
914
  protected z: NgZone;
@@ -1226,10 +958,6 @@ export declare interface VegaTableHeadCell extends Components.VegaTableHeadCell
1226
958
  * An event emitter notifying that the head cell has been clicked.
1227
959
  */
1228
960
  vegaClick: EventEmitter<CustomEvent<IVegaTableHeadCellVegaTableHeadCellClickEvent>>;
1229
- /**
1230
- * An event emitter notifying that the head cell has been clicked. @eventSemantics namespace:native
1231
- */
1232
- click: EventEmitter<CustomEvent<IVegaTableHeadCellVegaTableHeadCellClickEvent>>;
1233
961
  }
1234
962
  export declare class VegaTableHeadCell {
1235
963
  protected z: NgZone;
@@ -1252,10 +980,6 @@ export declare interface VegaTableRow extends Components.VegaTableRow {
1252
980
  * An event emitter notifying that the row has been clicked.
1253
981
  */
1254
982
  vegaClick: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
1255
- /**
1256
- * An event emitter notifying that the row has been clicked. @eventSemantics namespace:native
1257
- */
1258
- click: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
1259
983
  }
1260
984
  export declare class VegaTableRow {
1261
985
  protected z: NgZone;
@@ -1279,11 +1003,6 @@ export declare interface VegaTextarea extends Components.VegaTextarea {
1279
1003
  of the text area.
1280
1004
  */
1281
1005
  vegaChange: EventEmitter<CustomEvent<string>>;
1282
- /**
1283
- * An event emitter notifying about changes in the value
1284
- of the text area. @eventSemantics namespace:native
1285
- */
1286
- change: EventEmitter<CustomEvent<string>>;
1287
1006
  /**
1288
1007
  * An event emitter notifying changes in the validation result
1289
1008
  of the text area. @deprecated vegaValidate is only used to listen on the vega-form component.
@@ -1294,11 +1013,6 @@ export declare interface VegaTextarea extends Components.VegaTextarea {
1294
1013
  textarea element within the text area.
1295
1014
  */
1296
1015
  vegaBlur: EventEmitter<CustomEvent<undefined>>;
1297
- /**
1298
- * An event emitter notifying the blur event of the inner
1299
- textarea element within the text area. @eventSemantics namespace:native
1300
- */
1301
- blur: EventEmitter<CustomEvent<undefined>>;
1302
1016
  }
1303
1017
  export declare class VegaTextarea {
1304
1018
  protected z: NgZone;
@@ -1312,10 +1026,6 @@ export declare interface VegaTimePicker extends Components.VegaTimePicker {
1312
1026
  * An event emitter notifying changes in the value of the time picker.
1313
1027
  */
1314
1028
  vegaChange: EventEmitter<CustomEvent<string | string[]>>;
1315
- /**
1316
- * An event emitter notifying changes in the value of the time picker. @eventSemantics namespace:native
1317
- */
1318
- change: EventEmitter<CustomEvent<string | string[]>>;
1319
1029
  /**
1320
1030
  * An event emitter notifying changes in the validation result
1321
1031
  of the time picker. @deprecated vegaValidate is only used to listen on the vega-form component.
@@ -1334,10 +1044,6 @@ export declare interface VegaToggleSwitch extends Components.VegaToggleSwitch {
1334
1044
  * An event emitter notifying changes in the toggle switch.
1335
1045
  */
1336
1046
  vegaChange: EventEmitter<CustomEvent<boolean>>;
1337
- /**
1338
- * An native event emitter notifying changes in the toggle switch. @eventSemantics namespace:native
1339
- */
1340
- change: EventEmitter<CustomEvent<boolean>>;
1341
1047
  }
1342
1048
  export declare class VegaToggleSwitch {
1343
1049
  protected z: NgZone;