@heartlandone/vega-angular 1.9.0 → 1.9.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.
@@ -78,6 +78,27 @@ export class VegaBadge {
78
78
  }
79
79
 
80
80
 
81
+ export declare interface VegaBanner extends Components.VegaBanner {}
82
+
83
+ @ProxyCmp({
84
+ defineCustomElementFn: undefined,
85
+ inputs: ['audienceEmail']
86
+ })
87
+ @Component({
88
+ selector: 'vega-banner',
89
+ changeDetection: ChangeDetectionStrategy.OnPush,
90
+ template: '<ng-content></ng-content>',
91
+ inputs: ['audienceEmail']
92
+ })
93
+ export class VegaBanner {
94
+ protected el: HTMLElement;
95
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
96
+ c.detach();
97
+ this.el = r.nativeElement;
98
+ }
99
+ }
100
+
101
+
81
102
  export declare interface VegaButton extends Components.VegaButton {
82
103
  /**
83
104
  * event emitter used for notifying consumers the button is clicked
@@ -385,7 +406,13 @@ export class VegaFooter {
385
406
  }
386
407
 
387
408
 
388
- export declare interface VegaForm extends Components.VegaForm {}
409
+ export declare interface VegaForm extends Components.VegaForm {
410
+ /**
411
+ * event emitter used for notifying consumers the validation result change event
412
+ */
413
+ vegaValidate: EventEmitter<CustomEvent<boolean>>;
414
+
415
+ }
389
416
 
390
417
  @ProxyCmp({
391
418
  defineCustomElementFn: undefined,
@@ -403,6 +430,7 @@ export class VegaForm {
403
430
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
404
431
  c.detach();
405
432
  this.el = r.nativeElement;
433
+ proxyOutputs(this, this.el, ['vegaValidate']);
406
434
  }
407
435
  }
408
436
 
@@ -695,13 +723,13 @@ export declare interface VegaRadio extends Components.VegaRadio {
695
723
 
696
724
  @ProxyCmp({
697
725
  defineCustomElementFn: undefined,
698
- inputs: ['checked', 'disabled', 'name', 'value']
726
+ inputs: ['checked', 'disabled', 'name', 'size', 'value']
699
727
  })
700
728
  @Component({
701
729
  selector: 'vega-radio',
702
730
  changeDetection: ChangeDetectionStrategy.OnPush,
703
731
  template: '<ng-content></ng-content>',
704
- inputs: ['checked', 'disabled', 'name', 'value']
732
+ inputs: ['checked', 'disabled', 'name', 'size', 'value']
705
733
  })
706
734
  export class VegaRadio {
707
735
  protected el: HTMLElement;
@@ -901,14 +929,14 @@ export declare interface VegaTable extends Components.VegaTable {
901
929
 
902
930
  @ProxyCmp({
903
931
  defineCustomElementFn: undefined,
904
- inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowSelection', 'showHeader', 'striped'],
932
+ inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowKey', 'rowSelection', 'showHeader', 'striped'],
905
933
  methods: ['openExpandRow', 'closeExpandRow', 'closeAllExpandRow', 'toggleExpandRow', 'clearSelection', 'getSelection', 'setSelection']
906
934
  })
907
935
  @Component({
908
936
  selector: 'vega-table',
909
937
  changeDetection: ChangeDetectionStrategy.OnPush,
910
938
  template: '<ng-content></ng-content>',
911
- inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowSelection', 'showHeader', 'striped']
939
+ inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowKey', 'rowSelection', 'showHeader', 'striped']
912
940
  })
913
941
  export class VegaTable {
914
942
  protected el: HTMLElement;
@@ -920,6 +948,27 @@ export class VegaTable {
920
948
  }
921
949
 
922
950
 
951
+ export declare interface VegaText extends Components.VegaText {}
952
+
953
+ @ProxyCmp({
954
+ defineCustomElementFn: undefined,
955
+ inputs: ['content', 'displayRule']
956
+ })
957
+ @Component({
958
+ selector: 'vega-text',
959
+ changeDetection: ChangeDetectionStrategy.OnPush,
960
+ template: '<ng-content></ng-content>',
961
+ inputs: ['content', 'displayRule']
962
+ })
963
+ export class VegaText {
964
+ protected el: HTMLElement;
965
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
966
+ c.detach();
967
+ this.el = r.nativeElement;
968
+ }
969
+ }
970
+
971
+
923
972
  export declare interface VegaToggleSwitch extends Components.VegaToggleSwitch {
924
973
  /**
925
974
  * event emitter used for notifying consumers the toggle switch is changed
@@ -972,6 +1021,7 @@ export default [
972
1021
  VegaAccordion,
973
1022
  VegaAppFooter,
974
1023
  VegaBadge,
1024
+ VegaBanner,
975
1025
  VegaButton,
976
1026
  VegaButtonCircle,
977
1027
  VegaButtonLink,
@@ -1002,6 +1052,7 @@ export default [
1002
1052
  VegaStepper,
1003
1053
  VegaTabGroup,
1004
1054
  VegaTable,
1055
+ VegaText,
1005
1056
  VegaToggleSwitch,
1006
1057
  VegaTooltip,
1007
1058
  ];