@heartlandone/vega-angular 2.67.0 → 2.68.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.
@@ -730,7 +730,7 @@ export declare class VegaFieldLabel {
730
730
  protected el: HTMLElement;
731
731
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
732
732
  static ɵfac: i0.ɵɵFactoryDeclaration<VegaFieldLabel, never>;
733
- static ɵcmp: i0.ɵɵComponentDeclaration<VegaFieldLabel, "vega-field-label", never, { "disabled": "disabled"; "isFieldRequired": "isFieldRequired"; "label": "label"; "suffixButtonProps": "suffixButtonProps"; }, {}, never, ["*"]>;
733
+ static ɵcmp: i0.ɵɵComponentDeclaration<VegaFieldLabel, "vega-field-label", never, { "disabled": "disabled"; "isFieldRequired": "isFieldRequired"; "label": "label"; "suffixButtonConfig": "suffixButtonConfig"; "suffixButtonProps": "suffixButtonProps"; }, {}, never, ["*"]>;
734
734
  }
735
735
  export declare interface VegaFileUploader extends Components.VegaFileUploader {
736
736
  /**
@@ -952,7 +952,7 @@ export declare class VegaInput {
952
952
  protected el: HTMLElement;
953
953
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
954
954
  static ɵfac: i0.ɵɵFactoryDeclaration<VegaInput, never>;
955
- static ɵcmp: i0.ɵɵComponentDeclaration<VegaInput, "vega-input", never, { "autoValidation": "autoValidation"; "autocomplete": "autocomplete"; "disableCopyPaste": "disableCopyPaste"; "disabled": "disabled"; "email": "email"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "labelSuffixButtonProps": "labelSuffixButtonProps"; "maskConfig": "maskConfig"; "max": "max"; "maxLength": "maxLength"; "min": "min"; "minLength": "minLength"; "name": "name"; "placeholder": "placeholder"; "prefixIcon": "prefixIcon"; "required": "required"; "showClearIcon": "showClearIcon"; "size": "size"; "type": "type"; "validationRules": "validationRules"; "value": "value"; "valueUpdateTrigger": "valueUpdateTrigger"; }, {}, never, ["*"]>;
955
+ static ɵcmp: i0.ɵɵComponentDeclaration<VegaInput, "vega-input", never, { "autoValidation": "autoValidation"; "autocomplete": "autocomplete"; "disableCopyPaste": "disableCopyPaste"; "disabled": "disabled"; "email": "email"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "labelSuffixButtonConfig": "labelSuffixButtonConfig"; "labelSuffixButtonProps": "labelSuffixButtonProps"; "maskConfig": "maskConfig"; "max": "max"; "maxLength": "maxLength"; "min": "min"; "minLength": "minLength"; "name": "name"; "placeholder": "placeholder"; "prefixIcon": "prefixIcon"; "required": "required"; "showClearIcon": "showClearIcon"; "size": "size"; "type": "type"; "validationRules": "validationRules"; "value": "value"; "valueUpdateTrigger": "valueUpdateTrigger"; }, {}, never, ["*"]>;
956
956
  }
957
957
  export declare interface VegaInputCreditCard extends Components.VegaInputCreditCard {
958
958
  /**
@@ -1115,13 +1115,21 @@ export declare interface VegaInputSelect extends Components.VegaInputSelect {
1115
1115
  either programmatically or via user interaction. @vegaVersion 2.32.0
1116
1116
  */
1117
1117
  vegaHide: EventEmitter<CustomEvent<string>>;
1118
+ /**
1119
+ * An event emitter notifying that the suffix button associated with the field label has been clicked. @vegaVersion 2.68.0
1120
+ */
1121
+ vegaLabelButtonClick: EventEmitter<CustomEvent<any>>;
1122
+ /**
1123
+ * An event emitter notifying that the suffix button associated with the field label has been clicked. @eventSemantics namespace:native,@vegaVersion 2.68.0
1124
+ */
1125
+ labelButtonClick: EventEmitter<CustomEvent<any>>;
1118
1126
  }
1119
1127
  export declare class VegaInputSelect {
1120
1128
  protected z: NgZone;
1121
1129
  protected el: HTMLElement;
1122
1130
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1123
1131
  static ɵfac: i0.ɵɵFactoryDeclaration<VegaInputSelect, never>;
1124
- static ɵcmp: i0.ɵɵComponentDeclaration<VegaInputSelect, "vega-input-select", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "placeholder": "placeholder"; "prefixIcon": "prefixIcon"; "required": "required"; "selectType": "selectType"; "selectedLabel": "selectedLabel"; "size": "size"; "source": "source"; "sourceLazyLoadCallback": "sourceLazyLoadCallback"; "validationRules": "validationRules"; "value": "value"; "vegaDropdownProps": "vegaDropdownProps"; }, {}, never, ["*"]>;
1132
+ static ɵcmp: i0.ɵɵComponentDeclaration<VegaInputSelect, "vega-input-select", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "labelSuffixButtonConfig": "labelSuffixButtonConfig"; "placeholder": "placeholder"; "prefixIcon": "prefixIcon"; "required": "required"; "selectType": "selectType"; "selectedLabel": "selectedLabel"; "size": "size"; "source": "source"; "sourceLazyLoadCallback": "sourceLazyLoadCallback"; "validationRules": "validationRules"; "value": "value"; "vegaDropdownProps": "vegaDropdownProps"; }, {}, never, ["*"]>;
1125
1133
  }
1126
1134
  export declare interface VegaItemToggle extends Components.VegaItemToggle {
1127
1135
  /**
@@ -1946,13 +1954,21 @@ export declare interface VegaTextarea extends Components.VegaTextarea {
1946
1954
  textarea element within the text area. @eventSemantics namespace:native,@vegaVersion 2.0.0
1947
1955
  */
1948
1956
  blur: EventEmitter<CustomEvent<undefined>>;
1957
+ /**
1958
+ * An event emitter notifying that the suffix button associated with the field label has been clicked. @vegaVersion 2.68.0
1959
+ */
1960
+ vegaLabelButtonClick: EventEmitter<CustomEvent<any>>;
1961
+ /**
1962
+ * An event emitter notifying that the suffix button associated with the field label has been clicked. @eventSemantics namespace:native,@vegaVersion 2.68.0
1963
+ */
1964
+ labelButtonClick: EventEmitter<CustomEvent<any>>;
1949
1965
  }
1950
1966
  export declare class VegaTextarea {
1951
1967
  protected z: NgZone;
1952
1968
  protected el: HTMLElement;
1953
1969
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1954
1970
  static ɵfac: i0.ɵɵFactoryDeclaration<VegaTextarea, never>;
1955
- static ɵcmp: i0.ɵɵComponentDeclaration<VegaTextarea, "vega-textarea", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "maxLength": "maxLength"; "minLength": "minLength"; "placeholder": "placeholder"; "required": "required"; "resizable": "resizable"; "rows": "rows"; "showCounter": "showCounter"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
1971
+ static ɵcmp: i0.ɵɵComponentDeclaration<VegaTextarea, "vega-textarea", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "labelSuffixButtonConfig": "labelSuffixButtonConfig"; "maxLength": "maxLength"; "minLength": "minLength"; "placeholder": "placeholder"; "required": "required"; "resizable": "resizable"; "rows": "rows"; "showCounter": "showCounter"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
1956
1972
  }
1957
1973
  export declare interface VegaTimePicker extends Components.VegaTimePicker {
1958
1974
  /**
package/dist/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@heartlandone/vega-angular",
3
3
  "sideEffects": false,
4
- "version": "2.66.0",
4
+ "version": "2.67.0",
5
5
  "description": "Angular specific wrapper for @heartlandone/vega",
6
6
  "license": "UNLICENSED",
7
7
  "peerDependencies": {
@@ -19,7 +19,7 @@
19
19
  "url": "https://github.com/heartlandpayments/Vega/tree/main/vega-angular-workspace/projects/vega-angular"
20
20
  },
21
21
  "dependencies": {
22
- "@heartlandone/vega": "2.66.0",
22
+ "@heartlandone/vega": "2.67.0",
23
23
  "tslib": "^2.3.0",
24
24
  "@juggle/resize-observer": "^3.4.0"
25
25
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@heartlandone/vega-angular",
3
3
  "sideEffects": false,
4
- "version": "2.67.0",
4
+ "version": "2.68.0",
5
5
  "description": "Angular specific wrapper for @heartlandone/vega",
6
6
  "license": "UNLICENSED",
7
7
  "peerDependencies": {
@@ -27,7 +27,7 @@
27
27
  "url": "https://github.com/heartlandpayments/Vega/tree/main/vega-angular-workspace/projects/vega-angular"
28
28
  },
29
29
  "dependencies": {
30
- "@heartlandone/vega": "2.67.0",
30
+ "@heartlandone/vega": "2.68.0",
31
31
  "tslib": "^2.3.0",
32
32
  "@juggle/resize-observer": "^3.4.0"
33
33
  },
@@ -1199,13 +1199,13 @@ export declare interface VegaFieldLabel extends Components.VegaFieldLabel {
1199
1199
 
1200
1200
  @ProxyCmp({
1201
1201
  defineCustomElementFn: undefined,
1202
- inputs: ['disabled', 'isFieldRequired', 'label', 'suffixButtonProps']
1202
+ inputs: ['disabled', 'isFieldRequired', 'label', 'suffixButtonConfig', 'suffixButtonProps']
1203
1203
  })
1204
1204
  @Component({
1205
1205
  selector: 'vega-field-label',
1206
1206
  changeDetection: ChangeDetectionStrategy.OnPush,
1207
1207
  template: '<ng-content></ng-content>',
1208
- inputs: ['disabled', 'isFieldRequired', 'label', 'suffixButtonProps']
1208
+ inputs: ['disabled', 'isFieldRequired', 'label', 'suffixButtonConfig', 'suffixButtonProps']
1209
1209
  })
1210
1210
  export class VegaFieldLabel {
1211
1211
  protected el: HTMLElement;
@@ -1554,14 +1554,14 @@ export declare interface VegaInput extends Components.VegaInput {
1554
1554
 
1555
1555
  @ProxyCmp({
1556
1556
  defineCustomElementFn: undefined,
1557
- 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
+ inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value', 'valueUpdateTrigger'],
1558
1558
  methods: ['doFocus', 'doBlur']
1559
1559
  })
1560
1560
  @Component({
1561
1561
  selector: 'vega-input',
1562
1562
  changeDetection: ChangeDetectionStrategy.OnPush,
1563
1563
  template: '<ng-content></ng-content>',
1564
- 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']
1564
+ inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value', 'valueUpdateTrigger']
1565
1565
  })
1566
1566
  export class VegaInput {
1567
1567
  protected el: HTMLElement;
@@ -1811,26 +1811,34 @@ It can be triggered in two ways: by pressing "Enter" or through user input. @eve
1811
1811
  either programmatically or via user interaction. @vegaVersion 2.32.0
1812
1812
  */
1813
1813
  vegaHide: EventEmitter<CustomEvent<string>>;
1814
+ /**
1815
+ * An event emitter notifying that the suffix button associated with the field label has been clicked. @vegaVersion 2.68.0
1816
+ */
1817
+ vegaLabelButtonClick: EventEmitter<CustomEvent<any>>;
1818
+ /**
1819
+ * An event emitter notifying that the suffix button associated with the field label has been clicked. @eventSemantics namespace:native,@vegaVersion 2.68.0
1820
+ */
1821
+ labelButtonClick: EventEmitter<CustomEvent<any>>;
1814
1822
 
1815
1823
  }
1816
1824
 
1817
1825
  @ProxyCmp({
1818
1826
  defineCustomElementFn: undefined,
1819
- inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps'],
1827
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps'],
1820
1828
  methods: ['doClose', 'doOpen', 'doChange']
1821
1829
  })
1822
1830
  @Component({
1823
1831
  selector: 'vega-input-select',
1824
1832
  changeDetection: ChangeDetectionStrategy.OnPush,
1825
1833
  template: '<ng-content></ng-content>',
1826
- inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps']
1834
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps']
1827
1835
  })
1828
1836
  export class VegaInputSelect {
1829
1837
  protected el: HTMLElement;
1830
1838
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1831
1839
  c.detach();
1832
1840
  this.el = r.nativeElement;
1833
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaSearch', 'search', 'vegaSearchTrigger', 'searchTrigger', 'vegaShow', 'vegaHide']);
1841
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaSearch', 'search', 'vegaSearchTrigger', 'searchTrigger', 'vegaShow', 'vegaHide', 'vegaLabelButtonClick', 'labelButtonClick']);
1834
1842
  }
1835
1843
  }
1836
1844
 
@@ -3352,25 +3360,33 @@ export declare interface VegaTextarea extends Components.VegaTextarea {
3352
3360
  textarea element within the text area. @eventSemantics namespace:native,@vegaVersion 2.0.0
3353
3361
  */
3354
3362
  blur: EventEmitter<CustomEvent<undefined>>;
3363
+ /**
3364
+ * An event emitter notifying that the suffix button associated with the field label has been clicked. @vegaVersion 2.68.0
3365
+ */
3366
+ vegaLabelButtonClick: EventEmitter<CustomEvent<any>>;
3367
+ /**
3368
+ * An event emitter notifying that the suffix button associated with the field label has been clicked. @eventSemantics namespace:native,@vegaVersion 2.68.0
3369
+ */
3370
+ labelButtonClick: EventEmitter<CustomEvent<any>>;
3355
3371
 
3356
3372
  }
3357
3373
 
3358
3374
  @ProxyCmp({
3359
3375
  defineCustomElementFn: undefined,
3360
- inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxLength', 'minLength', 'placeholder', 'required', 'resizable', 'rows', 'showCounter', 'validationRules', 'value']
3376
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'maxLength', 'minLength', 'placeholder', 'required', 'resizable', 'rows', 'showCounter', 'validationRules', 'value']
3361
3377
  })
3362
3378
  @Component({
3363
3379
  selector: 'vega-textarea',
3364
3380
  changeDetection: ChangeDetectionStrategy.OnPush,
3365
3381
  template: '<ng-content></ng-content>',
3366
- inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxLength', 'minLength', 'placeholder', 'required', 'resizable', 'rows', 'showCounter', 'validationRules', 'value']
3382
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'maxLength', 'minLength', 'placeholder', 'required', 'resizable', 'rows', 'showCounter', 'validationRules', 'value']
3367
3383
  })
3368
3384
  export class VegaTextarea {
3369
3385
  protected el: HTMLElement;
3370
3386
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3371
3387
  c.detach();
3372
3388
  this.el = r.nativeElement;
3373
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur']);
3389
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur', 'vegaLabelButtonClick', 'labelButtonClick']);
3374
3390
  }
3375
3391
  }
3376
3392