@heartlandone/vega-angular 2.88.0 → 2.89.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.
@@ -3,7 +3,7 @@
3
3
  import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, NgZone } from '@angular/core';
4
4
  import { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';
5
5
 
6
- import { Components } from '@globalpayments/vega';
6
+ import { Components } from '@heartlandone/vega';
7
7
 
8
8
 
9
9
 
@@ -149,7 +149,7 @@ export class VegaBackdrop {
149
149
  }
150
150
  }
151
151
 
152
- import type { VegaBannerActionButtonType as IVegaBannerVegaBannerActionButtonType } from '@globalpayments/vega/dist/types/components/vega-banner/types';
152
+ import type { VegaBannerActionButtonType as IVegaBannerVegaBannerActionButtonType } from '@heartlandone/vega/dist/types/components/vega-banner/types';
153
153
  export declare interface VegaBanner extends Components.VegaBanner {
154
154
  /**
155
155
  * An event emitter notifying the banner close event. @vegaVersion 1.13.0
@@ -253,7 +253,7 @@ export class VegaBrandLogo {
253
253
  }
254
254
  }
255
255
 
256
- import type { VegaBreadcrumbItemType as IVegaBreadcrumbVegaBreadcrumbItemType } from '@globalpayments/vega/dist/types/components/vega-breadcrumb/types';
256
+ import type { VegaBreadcrumbItemType as IVegaBreadcrumbVegaBreadcrumbItemType } from '@heartlandone/vega/dist/types/components/vega-breadcrumb/types';
257
257
  export declare interface VegaBreadcrumb extends Components.VegaBreadcrumb {
258
258
  /**
259
259
  * An event emitter notifying that a breadcrumb item has been clicked. @vegaVersion 1.41.0
@@ -434,10 +434,10 @@ export class VegaButtonLink {
434
434
  }
435
435
  }
436
436
 
437
- import type { VegaCalendarChangeEventType as IVegaCalendarVegaCalendarChangeEventType } from '@globalpayments/vega/dist/types/components/vega-calendar/types';
438
- import type { VegaCalendarEventClickInfo as IVegaCalendarVegaCalendarEventClickInfo } from '@globalpayments/vega/dist/types/components/vega-calendar/types';
439
- import type { VegaCalendarEventEditInfo as IVegaCalendarVegaCalendarEventEditInfo } from '@globalpayments/vega/dist/types/components/vega-calendar/types';
440
- import type { VegaCalendarDateClickInfo as IVegaCalendarVegaCalendarDateClickInfo } from '@globalpayments/vega/dist/types/components/vega-calendar/types';
437
+ import type { VegaCalendarChangeEventType as IVegaCalendarVegaCalendarChangeEventType } from '@heartlandone/vega/dist/types/components/vega-calendar/types';
438
+ import type { VegaCalendarEventClickInfo as IVegaCalendarVegaCalendarEventClickInfo } from '@heartlandone/vega/dist/types/components/vega-calendar/types';
439
+ import type { VegaCalendarEventEditInfo as IVegaCalendarVegaCalendarEventEditInfo } from '@heartlandone/vega/dist/types/components/vega-calendar/types';
440
+ import type { VegaCalendarDateClickInfo as IVegaCalendarVegaCalendarDateClickInfo } from '@heartlandone/vega/dist/types/components/vega-calendar/types';
441
441
  export declare interface VegaCalendar extends Components.VegaCalendar {
442
442
  /**
443
443
  * An event emitter notifying the component view content change after a switch panel click. @vegaVersion 2.14.0
@@ -633,6 +633,22 @@ export declare interface VegaCheckbox extends Components.VegaCheckbox {
633
633
  whether triggered programmatically or through user interaction. @vegaVersion 1.0.10
634
634
  */
635
635
  vegaChange: EventEmitter<CustomEvent<string | boolean>>;
636
+ /**
637
+ * An event emitter notifying changes in the value of the checkbox
638
+ triggered exclusively by user interaction (mouse click or keyboard activation).
639
+
640
+ Unlike `vegaChange`, this event does NOT fire when the `checked` or `value`
641
+ prop is reassigned programmatically. Use this event when you want to react
642
+ only to real user input (e.g., analytics, derived "select all" state). @remarks Calling `event.preventDefault()` is a no-op — it does not roll
643
+ back `checked`/`value` nor suppress the paired `vegaChange` event.
644
+ `cancelable: true` is retained only for parity with `vegaChange`.,@see {module :vega-checkbox-user-change},@see {module :vega-checkbox-user-change-keyboard},@see {module :vega-checkbox-user-change-keyboard-enter},@see {module :vega-checkbox-user-change-programmatic},@see {module :vega-checkbox-user-change-containment},@vegaVersion 2.89.0
645
+ */
646
+ vegaUserChange: EventEmitter<CustomEvent<string | boolean>>;
647
+ /**
648
+ * An event emitter notifying changes in the value of the checkbox
649
+ triggered exclusively by user interaction (mouse click or keyboard activation). @eventSemantics namespace:native,@vegaVersion 2.89.0
650
+ */
651
+ userChange: EventEmitter<CustomEvent<string | boolean>>;
636
652
  /**
637
653
  * An event emitter notifying changes in the value of the checkbox,
638
654
  whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
@@ -657,7 +673,7 @@ export class VegaCheckbox {
657
673
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
658
674
  c.detach();
659
675
  this.el = r.nativeElement;
660
- proxyOutputs(this, this.el, ['vegaChange', 'change']);
676
+ proxyOutputs(this, this.el, ['vegaChange', 'vegaUserChange', 'userChange', 'change']);
661
677
  }
662
678
  }
663
679
 
@@ -670,6 +686,25 @@ export declare interface VegaCheckboxGroup extends Components.VegaCheckboxGroup
670
686
  user interaction. @vegaVersion 1.0.10
671
687
  */
672
688
  vegaChange: EventEmitter<CustomEvent<string[]>>;
689
+ /**
690
+ * An event emitter notifying changes in the value of the checkbox group
691
+ triggered exclusively by user interaction (mouse click or keyboard
692
+ activation) on a nested checkbox.
693
+
694
+ Unlike `vegaChange`, this event does NOT fire when the `value` prop
695
+ is reassigned programmatically. Use this event when you want to
696
+ react only to real user input (e.g., analytics, derived
697
+ "select all" state). @remarks Calling `event.preventDefault()` is a no-op — it does not roll
698
+ back `value` nor suppress the paired `vegaChange` event.
699
+ `cancelable: true` is retained only for parity with `vegaChange`.,@see {module :vega-checkbox-group-user-change},@see {module :vega-checkbox-group-user-change-programmatic},@see {module :vega-checkbox-group-user-change-no-double},@vegaVersion 2.89.0
700
+ */
701
+ vegaUserChange: EventEmitter<CustomEvent<string[]>>;
702
+ /**
703
+ * An event emitter notifying changes in the value
704
+ of any nested checkbox within the checkbox group,
705
+ triggered exclusively by user interaction (mouse click or keyboard activation). @eventSemantics namespace:native,@vegaVersion 2.89.0
706
+ */
707
+ userChange: EventEmitter<CustomEvent<string[]>>;
673
708
  /**
674
709
  * An event emitter notifying changes in the value
675
710
  of any nested checkbox within the checkbox group,
@@ -695,7 +730,7 @@ export class VegaCheckboxGroup {
695
730
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
696
731
  c.detach();
697
732
  this.el = r.nativeElement;
698
- proxyOutputs(this, this.el, ['vegaChange', 'change']);
733
+ proxyOutputs(this, this.el, ['vegaChange', 'vegaUserChange', 'userChange', 'change']);
699
734
  }
700
735
  }
701
736
 
@@ -743,7 +778,7 @@ export class VegaChip {
743
778
  }
744
779
  }
745
780
 
746
- import type { VegaCodeBlockValue as IVegaCodeBlockVegaCodeBlockValue } from '@globalpayments/vega/dist/types/components/vega-code-block/types';
781
+ import type { VegaCodeBlockValue as IVegaCodeBlockVegaCodeBlockValue } from '@heartlandone/vega/dist/types/components/vega-code-block/types';
747
782
  export declare interface VegaCodeBlock extends Components.VegaCodeBlock {
748
783
  /**
749
784
  * An event emitter notifying a value change. @vegaVersion 2.50.0
@@ -801,13 +836,13 @@ export declare interface VegaColorPicker extends Components.VegaColorPicker {
801
836
 
802
837
  @ProxyCmp({
803
838
  defineCustomElementFn: undefined,
804
- inputs: ['autoValidation', 'colors', 'columns', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'required', 'validationRules', 'value']
839
+ inputs: ['autoValidation', 'colors', 'columns', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'optional', 'required', 'validationRules', 'value']
805
840
  })
806
841
  @Component({
807
842
  selector: 'vega-color-picker',
808
843
  changeDetection: ChangeDetectionStrategy.OnPush,
809
844
  template: '<ng-content></ng-content>',
810
- inputs: ['autoValidation', 'colors', 'columns', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'required', 'validationRules', 'value']
845
+ inputs: ['autoValidation', 'colors', 'columns', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'optional', 'required', 'validationRules', 'value']
811
846
  })
812
847
  export class VegaColorPicker {
813
848
  protected el: HTMLElement;
@@ -927,14 +962,14 @@ The combo box _does not_ automatically add the new value to its `source` and `va
927
962
 
928
963
  @ProxyCmp({
929
964
  defineCustomElementFn: undefined,
930
- inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'optional', 'placeholder', 'required', 'size', 'source', 'useDefaultFilter', 'validationRules', 'value', 'vegaDropdownProps'],
965
+ inputs: ['autoValidation', 'containerMaxHeight', 'disabled', 'hint', 'isValid', 'label', 'optional', 'placeholder', 'required', 'size', 'source', 'useDefaultFilter', 'validationRules', 'value', 'vegaDropdownProps'],
931
966
  methods: ['close', 'open']
932
967
  })
933
968
  @Component({
934
969
  selector: 'vega-combo-box',
935
970
  changeDetection: ChangeDetectionStrategy.OnPush,
936
971
  template: '<ng-content></ng-content>',
937
- inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'optional', 'placeholder', 'required', 'size', 'source', 'useDefaultFilter', 'validationRules', 'value', 'vegaDropdownProps']
972
+ inputs: ['autoValidation', 'containerMaxHeight', 'disabled', 'hint', 'isValid', 'label', 'optional', 'placeholder', 'required', 'size', 'source', 'useDefaultFilter', 'validationRules', 'value', 'vegaDropdownProps']
938
973
  })
939
974
  export class VegaComboBox {
940
975
  protected el: HTMLElement;
@@ -966,7 +1001,7 @@ export class VegaCounterBadge {
966
1001
  }
967
1002
  }
968
1003
 
969
- import type { DatePickerMonthYearTypes as IVegaDatePickerDatePickerMonthYearTypes } from '@globalpayments/vega/dist/types/components/vega-date-picker/types';
1004
+ import type { DatePickerMonthYearTypes as IVegaDatePickerDatePickerMonthYearTypes } from '@heartlandone/vega/dist/types/components/vega-date-picker/types';
970
1005
  export declare interface VegaDatePicker extends Components.VegaDatePicker {
971
1006
  /**
972
1007
  * An event emitter notifying the change of the value in the date picker,
@@ -992,14 +1027,14 @@ export declare interface VegaDatePicker extends Components.VegaDatePicker {
992
1027
 
993
1028
  @ProxyCmp({
994
1029
  defineCustomElementFn: undefined,
995
- inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isDateDisabled', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'showClearIcon', 'showYearMonthDropdowns', 'size', 'timezone', 'validationRules', 'value'],
1030
+ inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isDateDisabled', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'optional', 'placeholder', 'readOnly', 'required', 'showClearIcon', 'showYearMonthDropdowns', 'size', 'timezone', 'validationRules', 'value'],
996
1031
  methods: ['doClose', 'doOpen']
997
1032
  })
998
1033
  @Component({
999
1034
  selector: 'vega-date-picker',
1000
1035
  changeDetection: ChangeDetectionStrategy.OnPush,
1001
1036
  template: '<ng-content></ng-content>',
1002
- inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isDateDisabled', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'showClearIcon', 'showYearMonthDropdowns', 'size', 'timezone', 'validationRules', 'value']
1037
+ inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isDateDisabled', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'optional', 'placeholder', 'readOnly', 'required', 'showClearIcon', 'showYearMonthDropdowns', 'size', 'timezone', 'validationRules', 'value']
1003
1038
  })
1004
1039
  export class VegaDatePicker {
1005
1040
  protected el: HTMLElement;
@@ -1010,7 +1045,7 @@ export class VegaDatePicker {
1010
1045
  }
1011
1046
  }
1012
1047
 
1013
- import type { DatePickerMonthYearTypes as IVegaDatePickerCalendarDatePickerMonthYearTypes } from '@globalpayments/vega/dist/types/components/vega-date-picker/types';
1048
+ import type { DatePickerMonthYearTypes as IVegaDatePickerCalendarDatePickerMonthYearTypes } from '@heartlandone/vega/dist/types/components/vega-date-picker/types';
1014
1049
  export declare interface VegaDatePickerCalendar extends Components.VegaDatePickerCalendar {
1015
1050
  /**
1016
1051
  * An event emitter notifying the change of the value in the date picker,
@@ -1114,7 +1149,7 @@ export class VegaDivider {
1114
1149
  }
1115
1150
  }
1116
1151
 
1117
- import type { VegaDropdownSearchTriggerEventDetail as IVegaDropdownVegaDropdownSearchTriggerEventDetail } from '@globalpayments/vega/dist/types/components/vega-dropdown/types';
1152
+ import type { VegaDropdownSearchTriggerEventDetail as IVegaDropdownVegaDropdownSearchTriggerEventDetail } from '@heartlandone/vega/dist/types/components/vega-dropdown/types';
1118
1153
  export declare interface VegaDropdown extends Components.VegaDropdown {
1119
1154
  /**
1120
1155
  * An event emitter notifying that a dropdown item has been clicked.
@@ -1261,7 +1296,7 @@ export class VegaDropdownGroup {
1261
1296
  }
1262
1297
  }
1263
1298
 
1264
- import type { VegaDropdownItemClickEvent as IVegaDropdownItemVegaDropdownItemClickEvent } from '@globalpayments/vega/dist/types/components/vega-dropdown/vega-dropdown-item/types';
1299
+ import type { VegaDropdownItemClickEvent as IVegaDropdownItemVegaDropdownItemClickEvent } from '@heartlandone/vega/dist/types/components/vega-dropdown/vega-dropdown-item/types';
1265
1300
  export declare interface VegaDropdownItem extends Components.VegaDropdownItem {
1266
1301
  /**
1267
1302
  * An event emitter notifying the dropdown item has been clicked. @vegaVersion 1.47.0
@@ -1350,8 +1385,8 @@ export class VegaFieldLabel {
1350
1385
  }
1351
1386
  }
1352
1387
 
1353
- import type { VegaFileUploaderFiles as IVegaFileUploaderVegaFileUploaderFiles } from '@globalpayments/vega/dist/types/components/vega-file-uploader/types';
1354
- import type { VegaFileUploaderFile as IVegaFileUploaderVegaFileUploaderFile } from '@globalpayments/vega/dist/types/components/vega-file-uploader/types';
1388
+ import type { VegaFileUploaderFiles as IVegaFileUploaderVegaFileUploaderFiles } from '@heartlandone/vega/dist/types/components/vega-file-uploader/types';
1389
+ import type { VegaFileUploaderFile as IVegaFileUploaderVegaFileUploaderFile } from '@heartlandone/vega/dist/types/components/vega-file-uploader/types';
1355
1390
  export declare interface VegaFileUploader extends Components.VegaFileUploader {
1356
1391
  /**
1357
1392
  * An event emitter notifying a change in the file list. @vegaVersion 2.25.0
@@ -1592,7 +1627,7 @@ export class VegaIcon {
1592
1627
  }
1593
1628
  }
1594
1629
 
1595
- import type { VegaFileOptional as IVegaImageUploaderVegaFileOptional } from '@globalpayments/vega/dist/types/components/vega-image-uploader/types';
1630
+ import type { VegaFileOptional as IVegaImageUploaderVegaFileOptional } from '@heartlandone/vega/dist/types/components/vega-image-uploader/types';
1596
1631
  export declare interface VegaImageUploader extends Components.VegaImageUploader {
1597
1632
  /**
1598
1633
  * An event emitter notifying a value change. @vegaVersion 1.14.0
@@ -1623,14 +1658,14 @@ export declare interface VegaImageUploader extends Components.VegaImageUploader
1623
1658
 
1624
1659
  @ProxyCmp({
1625
1660
  defineCustomElementFn: undefined,
1626
- inputs: ['accept', 'actionSubTitle', 'actionTitle', 'autoValidation', 'disabled', 'height', 'hint', 'isValid', 'label', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value', 'width'],
1661
+ inputs: ['accept', 'actionSubTitle', 'actionTitle', 'autoValidation', 'disabled', 'height', 'hint', 'isValid', 'label', 'optional', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value', 'width'],
1627
1662
  methods: ['getContentURL']
1628
1663
  })
1629
1664
  @Component({
1630
1665
  selector: 'vega-image-uploader',
1631
1666
  changeDetection: ChangeDetectionStrategy.OnPush,
1632
1667
  template: '<ng-content></ng-content>',
1633
- inputs: ['accept', 'actionSubTitle', 'actionTitle', 'autoValidation', 'disabled', 'height', 'hint', 'isValid', 'label', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value', 'width']
1668
+ inputs: ['accept', 'actionSubTitle', 'actionTitle', 'autoValidation', 'disabled', 'height', 'hint', 'isValid', 'label', 'optional', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value', 'width']
1634
1669
  })
1635
1670
  export class VegaImageUploader {
1636
1671
  protected el: HTMLElement;
@@ -1641,8 +1676,8 @@ export class VegaImageUploader {
1641
1676
  }
1642
1677
  }
1643
1678
 
1644
- import type { DataTransferType as IVegaInputDataTransferType } from '@globalpayments/vega/dist/types/components/vega-input/types';
1645
- import type { VegaDropdownSourceItem as IVegaInputVegaDropdownSourceItem } from '@globalpayments/vega/dist/types/components/vega-dropdown/types';
1679
+ import type { DataTransferType as IVegaInputDataTransferType } from '@heartlandone/vega/dist/types/components/vega-input/types';
1680
+ import type { VegaDropdownSourceItem as IVegaInputVegaDropdownSourceItem } from '@heartlandone/vega/dist/types/components/vega-dropdown/types';
1646
1681
  export declare interface VegaInput extends Components.VegaInput {
1647
1682
  /**
1648
1683
  * Emitted when the input value changes.
@@ -1858,13 +1893,13 @@ and at the same time, allowing consumers to listen using the standard
1858
1893
 
1859
1894
  @ProxyCmp({
1860
1895
  defineCustomElementFn: undefined,
1861
- inputs: ['autoValidation', 'disabled', 'hint', 'integerOnly', 'isValid', 'label', 'majorIncrement', 'max', 'min', 'minorIncrement', 'placeholder', 'prefixIcon', 'prefixText', 'required', 'showClearIcon', 'size', 'suffixText', 'thousandComma', 'validationRules', 'value']
1896
+ inputs: ['autoValidation', 'disabled', 'hint', 'integerOnly', 'isValid', 'label', 'majorIncrement', 'max', 'min', 'minorIncrement', 'optional', 'placeholder', 'prefixIcon', 'prefixText', 'required', 'showClearIcon', 'size', 'suffixText', 'thousandComma', 'validationRules', 'value']
1862
1897
  })
1863
1898
  @Component({
1864
1899
  selector: 'vega-input-numeric',
1865
1900
  changeDetection: ChangeDetectionStrategy.OnPush,
1866
1901
  template: '<ng-content></ng-content>',
1867
- inputs: ['autoValidation', 'disabled', 'hint', 'integerOnly', 'isValid', 'label', 'majorIncrement', 'max', 'min', 'minorIncrement', 'placeholder', 'prefixIcon', 'prefixText', 'required', 'showClearIcon', 'size', 'suffixText', 'thousandComma', 'validationRules', 'value']
1902
+ inputs: ['autoValidation', 'disabled', 'hint', 'integerOnly', 'isValid', 'label', 'majorIncrement', 'max', 'min', 'minorIncrement', 'optional', 'placeholder', 'prefixIcon', 'prefixText', 'required', 'showClearIcon', 'size', 'suffixText', 'thousandComma', 'validationRules', 'value']
1868
1903
  })
1869
1904
  export class VegaInputNumeric {
1870
1905
  protected el: HTMLElement;
@@ -1924,7 +1959,7 @@ export class VegaInputPasscode {
1924
1959
  }
1925
1960
  }
1926
1961
 
1927
- import type { VegaCountryType as IVegaInputPhoneNumberVegaCountryType } from '@globalpayments/vega/dist/types/components/vega-input-phone-number/types';
1962
+ import type { VegaCountryType as IVegaInputPhoneNumberVegaCountryType } from '@heartlandone/vega/dist/types/components/vega-input-phone-number/types';
1928
1963
  export declare interface VegaInputPhoneNumber extends Components.VegaInputPhoneNumber {
1929
1964
  /**
1930
1965
  * Fires whenever the phone number value changes — including typing,
@@ -1987,13 +2022,13 @@ export declare interface VegaInputRange extends Components.VegaInputRange {
1987
2022
 
1988
2023
  @ProxyCmp({
1989
2024
  defineCustomElementFn: undefined,
1990
- inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'max', 'min', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'stack', 'validationRules', 'value']
2025
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'max', 'min', 'optional', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'stack', 'validationRules', 'value']
1991
2026
  })
1992
2027
  @Component({
1993
2028
  selector: 'vega-input-range',
1994
2029
  changeDetection: ChangeDetectionStrategy.OnPush,
1995
2030
  template: '<ng-content></ng-content>',
1996
- inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'max', 'min', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'stack', 'validationRules', 'value']
2031
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'max', 'min', 'optional', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'stack', 'validationRules', 'value']
1997
2032
  })
1998
2033
  export class VegaInputRange {
1999
2034
  protected el: HTMLElement;
@@ -2004,9 +2039,9 @@ export class VegaInputRange {
2004
2039
  }
2005
2040
  }
2006
2041
 
2007
- import type { SelectValueType as IVegaInputSelectSelectValueType } from '@globalpayments/vega/dist/types/components/vega-input-select/types';
2008
- import type { SelectType as IVegaInputSelectSelectType } from '@globalpayments/vega/dist/types/components/vega-input-select/types';
2009
- import type { VegaDropdownSearchTriggerEventDetail as IVegaInputSelectVegaDropdownSearchTriggerEventDetail } from '@globalpayments/vega/dist/types/components/vega-dropdown/types';
2042
+ import type { SelectValueType as IVegaInputSelectSelectValueType } from '@heartlandone/vega/dist/types/components/vega-input-select/types';
2043
+ import type { SelectType as IVegaInputSelectSelectType } from '@heartlandone/vega/dist/types/components/vega-input-select/types';
2044
+ import type { VegaDropdownSearchTriggerEventDetail as IVegaInputSelectVegaDropdownSearchTriggerEventDetail } from '@heartlandone/vega/dist/types/components/vega-dropdown/types';
2010
2045
  export declare interface VegaInputSelect extends Components.VegaInputSelect {
2011
2046
  /**
2012
2047
  * An event emitter notifying the change of the select value. @vegaVersion 1.0.11
@@ -2060,14 +2095,14 @@ It can be triggered in two ways: by pressing "Enter" or through user input. @eve
2060
2095
 
2061
2096
  @ProxyCmp({
2062
2097
  defineCustomElementFn: undefined,
2063
- inputs: ['autoValidation', 'disabled', 'dropdownItemTooltipProps', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'selectedLabelTooltipProps', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps'],
2098
+ inputs: ['autoValidation', 'disabled', 'dropdownItemTooltipProps', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'optional', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'selectedLabelTooltipProps', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps'],
2064
2099
  methods: ['doClose', 'doOpen', 'doChange']
2065
2100
  })
2066
2101
  @Component({
2067
2102
  selector: 'vega-input-select',
2068
2103
  changeDetection: ChangeDetectionStrategy.OnPush,
2069
2104
  template: '<ng-content></ng-content>',
2070
- inputs: ['autoValidation', 'disabled', 'dropdownItemTooltipProps', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'selectedLabelTooltipProps', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps']
2105
+ inputs: ['autoValidation', 'disabled', 'dropdownItemTooltipProps', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'optional', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'selectedLabelTooltipProps', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps']
2071
2106
  })
2072
2107
  export class VegaInputSelect {
2073
2108
  protected el: HTMLElement;
@@ -2732,8 +2767,8 @@ export class VegaRichTextContent {
2732
2767
  }
2733
2768
  }
2734
2769
 
2735
- import type { VegaRTEContent as IVegaRichTextEditorVegaRTEContent } from '@globalpayments/vega/dist/types/components/vega-rich-text-editor/dto/content-state';
2736
- import type { VegaRichTextEditorImage as IVegaRichTextEditorVegaRichTextEditorImage } from '@globalpayments/vega/dist/types/components/vega-rich-text-editor/interface';
2770
+ import type { VegaRTEContent as IVegaRichTextEditorVegaRTEContent } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/dto/content-state';
2771
+ import type { VegaRichTextEditorImage as IVegaRichTextEditorVegaRichTextEditorImage } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/interface';
2737
2772
  export declare interface VegaRichTextEditor extends Components.VegaRichTextEditor {
2738
2773
  /**
2739
2774
  * An event emitter notifying a value change. @vegaVersion 2.34.0
@@ -2813,7 +2848,7 @@ export class VegaRichTextEditorToolbarButton {
2813
2848
  }
2814
2849
  }
2815
2850
 
2816
- import type { VegaRichTextImageEditorChangeDetail as IVegaRichTextImageEditorVegaRichTextImageEditorChangeDetail } from '@globalpayments/vega/dist/types/components/vega-rich-text-editor/vega-rich-text-image-editor/types';
2851
+ import type { VegaRichTextImageEditorChangeDetail as IVegaRichTextImageEditorVegaRichTextImageEditorChangeDetail } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/vega-rich-text-image-editor/types';
2817
2852
  export declare interface VegaRichTextImageEditor extends Components.VegaRichTextImageEditor {
2818
2853
  /**
2819
2854
  * An event emitter notifying content change. @vegaVersion 2.34.0
@@ -2845,7 +2880,7 @@ export class VegaRichTextImageEditor {
2845
2880
  }
2846
2881
  }
2847
2882
 
2848
- import type { VegaRichTextLinkEditorChangeDetail as IVegaRichTextLinkEditorVegaRichTextLinkEditorChangeDetail } from '@globalpayments/vega/dist/types/components/vega-rich-text-editor/vega-rich-text-link-editor/types';
2883
+ import type { VegaRichTextLinkEditorChangeDetail as IVegaRichTextLinkEditorVegaRichTextLinkEditorChangeDetail } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/vega-rich-text-link-editor/types';
2849
2884
  export declare interface VegaRichTextLinkEditor extends Components.VegaRichTextLinkEditor {
2850
2885
  /**
2851
2886
  * An event emitter notifying content change. @vegaVersion 2.34.0
@@ -2911,7 +2946,7 @@ export class VegaRichTextSpecialCharactersPanel {
2911
2946
  }
2912
2947
  }
2913
2948
 
2914
- import type { RTETablePropertiesType as IVegaRichTextTablePropertiesRTETablePropertiesType } from '@globalpayments/vega/dist/types/components/vega-rich-text-editor/interface';
2949
+ import type { RTETablePropertiesType as IVegaRichTextTablePropertiesRTETablePropertiesType } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/interface';
2915
2950
  export declare interface VegaRichTextTableProperties extends Components.VegaRichTextTableProperties {
2916
2951
  /**
2917
2952
  * @vegaVersion 2.79.0
@@ -3175,13 +3210,13 @@ export declare interface VegaSelectionTileGroup extends Components.VegaSelection
3175
3210
 
3176
3211
  @ProxyCmp({
3177
3212
  defineCustomElementFn: undefined,
3178
- inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'required', 'selectType', 'validationRules', 'value']
3213
+ inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'optional', 'required', 'selectType', 'validationRules', 'value']
3179
3214
  })
3180
3215
  @Component({
3181
3216
  selector: 'vega-selection-tile-group',
3182
3217
  changeDetection: ChangeDetectionStrategy.OnPush,
3183
3218
  template: '<ng-content></ng-content>',
3184
- inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'required', 'selectType', 'validationRules', 'value']
3219
+ inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'optional', 'required', 'selectType', 'validationRules', 'value']
3185
3220
  })
3186
3221
  export class VegaSelectionTileGroup {
3187
3222
  protected el: HTMLElement;
@@ -3278,7 +3313,7 @@ export class VegaSidenavLink {
3278
3313
  }
3279
3314
  }
3280
3315
 
3281
- import type { VegaSignatureValue as IVegaSignatureCaptureVegaSignatureValue } from '@globalpayments/vega/dist/types/components/vega-signature-capture/types';
3316
+ import type { VegaSignatureValue as IVegaSignatureCaptureVegaSignatureValue } from '@heartlandone/vega/dist/types/components/vega-signature-capture/types';
3282
3317
  export declare interface VegaSignatureCapture extends Components.VegaSignatureCapture {
3283
3318
  /**
3284
3319
  * An event emitter notifying a value change. @vegaVersion 2.19.0
@@ -3293,14 +3328,14 @@ export declare interface VegaSignatureCapture extends Components.VegaSignatureCa
3293
3328
 
3294
3329
  @ProxyCmp({
3295
3330
  defineCustomElementFn: undefined,
3296
- inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value'],
3331
+ inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'optional', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value'],
3297
3332
  methods: ['clear']
3298
3333
  })
3299
3334
  @Component({
3300
3335
  selector: 'vega-signature-capture',
3301
3336
  changeDetection: ChangeDetectionStrategy.OnPush,
3302
3337
  template: '<ng-content></ng-content>',
3303
- inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value']
3338
+ inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'optional', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value']
3304
3339
  })
3305
3340
  export class VegaSignatureCapture {
3306
3341
  protected el: HTMLElement;
@@ -3438,14 +3473,14 @@ export class VegaTabGroupPanel {
3438
3473
  }
3439
3474
  }
3440
3475
 
3441
- import type { VegaTableChangePropType as IVegaTableVegaTableChangePropType } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3442
- import type { VegaTableRowClickPropType as IVegaTableVegaTableRowClickPropType } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3443
- import type { VegaTableRowExpandEventDetail as IVegaTableVegaTableRowExpandEventDetail } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3444
- import type { VegaTableRowSelectProp as IVegaTableVegaTableRowSelectProp } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3445
- import type { VegaTableSelectAllProp as IVegaTableVegaTableSelectAllProp } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3446
- import type { VegaTableRowSelectEventDetail as IVegaTableVegaTableRowSelectEventDetail } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3447
- import type { VegaTableRowSelectAllEventDetail as IVegaTableVegaTableRowSelectAllEventDetail } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3448
- import type { DragDropEventPayload as IVegaTableDragDropEventPayload } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3476
+ import type { VegaTableChangePropType as IVegaTableVegaTableChangePropType } from '@heartlandone/vega/dist/types/components/vega-table/interface';
3477
+ import type { VegaTableRowClickPropType as IVegaTableVegaTableRowClickPropType } from '@heartlandone/vega/dist/types/components/vega-table/interface';
3478
+ import type { VegaTableRowExpandEventDetail as IVegaTableVegaTableRowExpandEventDetail } from '@heartlandone/vega/dist/types/components/vega-table/interface';
3479
+ import type { VegaTableRowSelectProp as IVegaTableVegaTableRowSelectProp } from '@heartlandone/vega/dist/types/components/vega-table/interface';
3480
+ import type { VegaTableSelectAllProp as IVegaTableVegaTableSelectAllProp } from '@heartlandone/vega/dist/types/components/vega-table/interface';
3481
+ import type { VegaTableRowSelectEventDetail as IVegaTableVegaTableRowSelectEventDetail } from '@heartlandone/vega/dist/types/components/vega-table/interface';
3482
+ import type { VegaTableRowSelectAllEventDetail as IVegaTableVegaTableRowSelectAllEventDetail } from '@heartlandone/vega/dist/types/components/vega-table/interface';
3483
+ import type { DragDropEventPayload as IVegaTableDragDropEventPayload } from '@heartlandone/vega/dist/types/components/vega-table/interface';
3449
3484
  export declare interface VegaTable extends Components.VegaTable {
3450
3485
  /**
3451
3486
  * An event emitter notifying changes in the table data. @vegaVersion 1.3.0
@@ -3681,7 +3716,7 @@ export class VegaTableHead {
3681
3716
  }
3682
3717
  }
3683
3718
 
3684
- import type { VegaTableHeadCellClickEvent as IVegaTableHeadCellVegaTableHeadCellClickEvent } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3719
+ import type { VegaTableHeadCellClickEvent as IVegaTableHeadCellVegaTableHeadCellClickEvent } from '@heartlandone/vega/dist/types/components/vega-table/interface';
3685
3720
  export declare interface VegaTableHeadCell extends Components.VegaTableHeadCell {
3686
3721
  /**
3687
3722
  * An event emitter notifying that the head cell has been clicked. @vegaVersion 1.44.0
@@ -3734,8 +3769,8 @@ export class VegaTableHeadRow {
3734
3769
  }
3735
3770
  }
3736
3771
 
3737
- import type { VegaTableRowClickEvent as IVegaTableRowVegaTableRowClickEvent } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3738
- import type { VegaTableRowExpandEvent as IVegaTableRowVegaTableRowExpandEvent } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3772
+ import type { VegaTableRowClickEvent as IVegaTableRowVegaTableRowClickEvent } from '@heartlandone/vega/dist/types/components/vega-table/interface';
3773
+ import type { VegaTableRowExpandEvent as IVegaTableRowVegaTableRowExpandEvent } from '@heartlandone/vega/dist/types/components/vega-table/interface';
3739
3774
  export declare interface VegaTableRow extends Components.VegaTableRow {
3740
3775
  /**
3741
3776
  * An event emitter notifying that the row has been clicked. @vegaVersion 1.44.0
@@ -3780,13 +3815,13 @@ export declare interface VegaText extends Components.VegaText {}
3780
3815
 
3781
3816
  @ProxyCmp({
3782
3817
  defineCustomElementFn: undefined,
3783
- inputs: ['overflow', 'tooltip']
3818
+ inputs: ['overflow', 'text', 'tooltip']
3784
3819
  })
3785
3820
  @Component({
3786
3821
  selector: 'vega-text',
3787
3822
  changeDetection: ChangeDetectionStrategy.OnPush,
3788
3823
  template: '<ng-content></ng-content>',
3789
- inputs: ['overflow', 'tooltip']
3824
+ inputs: ['overflow', 'text', 'tooltip']
3790
3825
  })
3791
3826
  export class VegaText {
3792
3827
  protected el: HTMLElement;
@@ -3871,13 +3906,13 @@ export declare interface VegaTimePicker extends Components.VegaTimePicker {
3871
3906
 
3872
3907
  @ProxyCmp({
3873
3908
  defineCustomElementFn: undefined,
3874
- inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'readOnly', 'required', 'showClearIcon', 'size', 'timeFormat', 'validationRules', 'value']
3909
+ inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'optional', 'placeholder', 'positionRelativeTo', 'readOnly', 'required', 'showClearIcon', 'size', 'timeFormat', 'validationRules', 'value']
3875
3910
  })
3876
3911
  @Component({
3877
3912
  selector: 'vega-time-picker',
3878
3913
  changeDetection: ChangeDetectionStrategy.OnPush,
3879
3914
  template: '<ng-content></ng-content>',
3880
- inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'readOnly', 'required', 'showClearIcon', 'size', 'timeFormat', 'validationRules', 'value']
3915
+ inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'optional', 'placeholder', 'positionRelativeTo', 'readOnly', 'required', 'showClearIcon', 'size', 'timeFormat', 'validationRules', 'value']
3881
3916
  })
3882
3917
  export class VegaTimePicker {
3883
3918
  protected el: HTMLElement;
@@ -3922,13 +3957,13 @@ export declare interface VegaToggleSwitch extends Components.VegaToggleSwitch {
3922
3957
 
3923
3958
  @ProxyCmp({
3924
3959
  defineCustomElementFn: undefined,
3925
- inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'required', 'size', 'validationRules', 'value']
3960
+ inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'optional', 'required', 'size', 'validationRules', 'value']
3926
3961
  })
3927
3962
  @Component({
3928
3963
  selector: 'vega-toggle-switch',
3929
3964
  changeDetection: ChangeDetectionStrategy.OnPush,
3930
3965
  template: '<ng-content></ng-content>',
3931
- inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'required', 'size', 'validationRules', 'value']
3966
+ inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'optional', 'required', 'size', 'validationRules', 'value']
3932
3967
  })
3933
3968
  export class VegaToggleSwitch {
3934
3969
  protected el: HTMLElement;
@@ -1,6 +1,6 @@
1
1
  import { Directive, ElementRef, HostListener } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
- import { VegaEventManager } from '@globalpayments/vega';
3
+ import { VegaEventManager } from '@heartlandone/vega';
4
4
 
5
5
  @Directive({ selector: 'vega-value-accessor' })
6
6
  export class ValueAccessor implements ControlValueAccessor {
@@ -69,10 +69,10 @@ function resolveEventPayloadImportPath(componentsContent) {
69
69
  ]);
70
70
 
71
71
  return componentsContent.replace(
72
- /(import type { (.*) as .* } from )'@globalpayments\/vega'/g,
72
+ /(import type { (.*) as .* } from )'@heartlandone\/vega'/g,
73
73
  function (matched, group1, group2) {
74
74
  const componentTypePath = EVENT_PAYLOAD_TYPE_TO_COMPONENT_TAG_MAP.get(group2);
75
- return `${group1}'@globalpayments/vega/dist/types/components/${componentTypePath}'`;
75
+ return `${group1}'@heartlandone/vega/dist/types/components/${componentTypePath}'`;
76
76
  },
77
77
  );
78
78
  }
package/testing/index.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { FeatureFlag } from '@globalpayments/vega';
2
- import { waitForVega } from '@globalpayments/vega';
1
+ import { FeatureFlag } from '@heartlandone/vega';
2
+ import { waitForVega } from '@heartlandone/vega';
3
3
  import type { RenderResult } from '@testing-library/angular';
4
4
 
5
5
  type Nullable<T> = T | undefined | null;
@@ -4,5 +4,5 @@
4
4
  "lib": {
5
5
  "entryFile": "./public-api.ts"
6
6
  },
7
- "allowedNonPeerDependencies": ["@testing-library/angular", "@globalpayments/vega"]
7
+ "allowedNonPeerDependencies": ["@testing-library/angular", "@heartlandone/vega"]
8
8
  }