@heartlandone/vega-angular 2.87.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
 
@@ -23,13 +23,13 @@ expand is an attribute, so the event name here uses accordionExpand @eventSemant
23
23
 
24
24
  @ProxyCmp({
25
25
  defineCustomElementFn: undefined,
26
- inputs: ['accordionTitle', 'drawsBackground', 'expand', 'expandIconAlign', 'groupId', 'iconPosition', 'prefixIcon', 'showExpandIcon']
26
+ inputs: ['accordionTitle', 'drawsBackground', 'expand', 'expandIconAlign', 'groupId', 'iconPosition', 'prefixIcon', 'showExpandIcon', 'titleBackgroundColor']
27
27
  })
28
28
  @Component({
29
29
  selector: 'vega-accordion',
30
30
  changeDetection: ChangeDetectionStrategy.OnPush,
31
31
  template: '<ng-content></ng-content>',
32
- inputs: ['accordionTitle', 'drawsBackground', 'expand', 'expandIconAlign', 'groupId', 'iconPosition', 'prefixIcon', 'showExpandIcon']
32
+ inputs: ['accordionTitle', 'drawsBackground', 'expand', 'expandIconAlign', 'groupId', 'iconPosition', 'prefixIcon', 'showExpandIcon', 'titleBackgroundColor']
33
33
  })
34
34
  export class VegaAccordion {
35
35
  protected el: HTMLElement;
@@ -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', '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', '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,
@@ -1041,6 +1076,14 @@ export declare interface VegaDatePickerCalendar extends Components.VegaDatePicke
1041
1076
  whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.72.0
1042
1077
  */
1043
1078
  selectionChange: EventEmitter<CustomEvent<string | string[]>>;
1079
+ /**
1080
+ * An event emitter notifying the today button is clicked in the date picker. @vegaVersion 2.88.0
1081
+ */
1082
+ vegaTodayClick: EventEmitter<CustomEvent<string>>;
1083
+ /**
1084
+ * An event emitter notifying the today button is clicked in the date picker. @eventSemantics namespace:native,@vegaVersion 2.88.0
1085
+ */
1086
+ todayClick: EventEmitter<CustomEvent<string>>;
1044
1087
 
1045
1088
  }
1046
1089
 
@@ -1060,7 +1103,7 @@ export class VegaDatePickerCalendar {
1060
1103
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1061
1104
  c.detach();
1062
1105
  this.el = r.nativeElement;
1063
- proxyOutputs(this, this.el, ['vegaClear', 'clear', 'vegaMonthYearChange', 'monthYearChange', 'vegaSelectionChange', 'selectionChange']);
1106
+ proxyOutputs(this, this.el, ['vegaClear', 'clear', 'vegaMonthYearChange', 'monthYearChange', 'vegaSelectionChange', 'selectionChange', 'vegaTodayClick', 'todayClick']);
1064
1107
  }
1065
1108
  }
1066
1109
 
@@ -1106,7 +1149,7 @@ export class VegaDivider {
1106
1149
  }
1107
1150
  }
1108
1151
 
1109
- 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';
1110
1153
  export declare interface VegaDropdown extends Components.VegaDropdown {
1111
1154
  /**
1112
1155
  * An event emitter notifying that a dropdown item has been clicked.
@@ -1253,7 +1296,7 @@ export class VegaDropdownGroup {
1253
1296
  }
1254
1297
  }
1255
1298
 
1256
- 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';
1257
1300
  export declare interface VegaDropdownItem extends Components.VegaDropdownItem {
1258
1301
  /**
1259
1302
  * An event emitter notifying the dropdown item has been clicked. @vegaVersion 1.47.0
@@ -1325,13 +1368,13 @@ export declare interface VegaFieldLabel extends Components.VegaFieldLabel {
1325
1368
 
1326
1369
  @ProxyCmp({
1327
1370
  defineCustomElementFn: undefined,
1328
- inputs: ['disabled', 'isFieldRequired', 'label', 'suffixButtonConfig', 'suffixButtonProps']
1371
+ inputs: ['disabled', 'isFieldRequired', 'label', 'optional', 'suffixButtonConfig', 'suffixButtonProps']
1329
1372
  })
1330
1373
  @Component({
1331
1374
  selector: 'vega-field-label',
1332
1375
  changeDetection: ChangeDetectionStrategy.OnPush,
1333
1376
  template: '<ng-content></ng-content>',
1334
- inputs: ['disabled', 'isFieldRequired', 'label', 'suffixButtonConfig', 'suffixButtonProps']
1377
+ inputs: ['disabled', 'isFieldRequired', 'label', 'optional', 'suffixButtonConfig', 'suffixButtonProps']
1335
1378
  })
1336
1379
  export class VegaFieldLabel {
1337
1380
  protected el: HTMLElement;
@@ -1342,8 +1385,8 @@ export class VegaFieldLabel {
1342
1385
  }
1343
1386
  }
1344
1387
 
1345
- import type { VegaFileUploaderFiles as IVegaFileUploaderVegaFileUploaderFiles } from '@globalpayments/vega/dist/types/components/vega-file-uploader/types';
1346
- 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';
1347
1390
  export declare interface VegaFileUploader extends Components.VegaFileUploader {
1348
1391
  /**
1349
1392
  * An event emitter notifying a change in the file list. @vegaVersion 2.25.0
@@ -1394,13 +1437,13 @@ export declare interface VegaFileUploader extends Components.VegaFileUploader {
1394
1437
 
1395
1438
  @ProxyCmp({
1396
1439
  defineCustomElementFn: undefined,
1397
- inputs: ['accept', 'autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxCount', 'required', 'validationRules', 'value', 'variant']
1440
+ inputs: ['accept', 'autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxCount', 'optional', 'required', 'validationRules', 'value', 'variant']
1398
1441
  })
1399
1442
  @Component({
1400
1443
  selector: 'vega-file-uploader',
1401
1444
  changeDetection: ChangeDetectionStrategy.OnPush,
1402
1445
  template: '<ng-content></ng-content>',
1403
- inputs: ['accept', 'autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxCount', 'required', 'validationRules', 'value', 'variant']
1446
+ inputs: ['accept', 'autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxCount', 'optional', 'required', 'validationRules', 'value', 'variant']
1404
1447
  })
1405
1448
  export class VegaFileUploader {
1406
1449
  protected el: HTMLElement;
@@ -1584,7 +1627,7 @@ export class VegaIcon {
1584
1627
  }
1585
1628
  }
1586
1629
 
1587
- 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';
1588
1631
  export declare interface VegaImageUploader extends Components.VegaImageUploader {
1589
1632
  /**
1590
1633
  * An event emitter notifying a value change. @vegaVersion 1.14.0
@@ -1615,14 +1658,14 @@ export declare interface VegaImageUploader extends Components.VegaImageUploader
1615
1658
 
1616
1659
  @ProxyCmp({
1617
1660
  defineCustomElementFn: undefined,
1618
- 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'],
1619
1662
  methods: ['getContentURL']
1620
1663
  })
1621
1664
  @Component({
1622
1665
  selector: 'vega-image-uploader',
1623
1666
  changeDetection: ChangeDetectionStrategy.OnPush,
1624
1667
  template: '<ng-content></ng-content>',
1625
- 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']
1626
1669
  })
1627
1670
  export class VegaImageUploader {
1628
1671
  protected el: HTMLElement;
@@ -1633,8 +1676,8 @@ export class VegaImageUploader {
1633
1676
  }
1634
1677
  }
1635
1678
 
1636
- import type { DataTransferType as IVegaInputDataTransferType } from '@globalpayments/vega/dist/types/components/vega-input/types';
1637
- 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';
1638
1681
  export declare interface VegaInput extends Components.VegaInput {
1639
1682
  /**
1640
1683
  * Emitted when the input value changes.
@@ -1763,14 +1806,14 @@ suggestion item, including its `label`, `value`, and any custom properties.,@eve
1763
1806
 
1764
1807
  @ProxyCmp({
1765
1808
  defineCustomElementFn: undefined,
1766
- inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'enterkeyhint', 'hint', 'inputmode', 'isValid', 'label', 'labelSuffixButtonConfig', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'readOnly', 'required', 'showClearIcon', 'size', 'suggestionsDropdownSource', 'type', 'validationRules', 'value', 'valueUpdateTrigger'],
1809
+ inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'enterkeyhint', 'hint', 'inputmode', 'isValid', 'label', 'labelSuffixButtonConfig', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'optional', 'placeholder', 'prefixIcon', 'readOnly', 'required', 'showClearIcon', 'size', 'suggestionsDropdownSource', 'type', 'validationRules', 'value', 'valueUpdateTrigger'],
1767
1810
  methods: ['doFocus', 'doBlur', 'showSuggestionsDropdown', 'hideSuggestionsDropdown']
1768
1811
  })
1769
1812
  @Component({
1770
1813
  selector: 'vega-input',
1771
1814
  changeDetection: ChangeDetectionStrategy.OnPush,
1772
1815
  template: '<ng-content></ng-content>',
1773
- inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'enterkeyhint', 'hint', 'inputmode', 'isValid', 'label', 'labelSuffixButtonConfig', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'readOnly', 'required', 'showClearIcon', 'size', 'suggestionsDropdownSource', 'type', 'validationRules', 'value', 'valueUpdateTrigger']
1816
+ inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'enterkeyhint', 'hint', 'inputmode', 'isValid', 'label', 'labelSuffixButtonConfig', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'optional', 'placeholder', 'prefixIcon', 'readOnly', 'required', 'showClearIcon', 'size', 'suggestionsDropdownSource', 'type', 'validationRules', 'value', 'valueUpdateTrigger']
1774
1817
  })
1775
1818
  export class VegaInput {
1776
1819
  protected el: HTMLElement;
@@ -1850,13 +1893,13 @@ and at the same time, allowing consumers to listen using the standard
1850
1893
 
1851
1894
  @ProxyCmp({
1852
1895
  defineCustomElementFn: undefined,
1853
- 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']
1854
1897
  })
1855
1898
  @Component({
1856
1899
  selector: 'vega-input-numeric',
1857
1900
  changeDetection: ChangeDetectionStrategy.OnPush,
1858
1901
  template: '<ng-content></ng-content>',
1859
- 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']
1860
1903
  })
1861
1904
  export class VegaInputNumeric {
1862
1905
  protected el: HTMLElement;
@@ -1899,13 +1942,13 @@ and at the same time, allowing consumers to listen using the standard
1899
1942
 
1900
1943
  @ProxyCmp({
1901
1944
  defineCustomElementFn: undefined,
1902
- inputs: ['autoValidation', 'disabled', 'hint', 'inputType', 'isValid', 'label', 'length', 'required', 'size', 'validationRules', 'value']
1945
+ inputs: ['autoValidation', 'disabled', 'hint', 'inputType', 'isValid', 'label', 'length', 'optional', 'required', 'size', 'validationRules', 'value']
1903
1946
  })
1904
1947
  @Component({
1905
1948
  selector: 'vega-input-passcode',
1906
1949
  changeDetection: ChangeDetectionStrategy.OnPush,
1907
1950
  template: '<ng-content></ng-content>',
1908
- inputs: ['autoValidation', 'disabled', 'hint', 'inputType', 'isValid', 'label', 'length', 'required', 'size', 'validationRules', 'value']
1951
+ inputs: ['autoValidation', 'disabled', 'hint', 'inputType', 'isValid', 'label', 'length', 'optional', 'required', 'size', 'validationRules', 'value']
1909
1952
  })
1910
1953
  export class VegaInputPasscode {
1911
1954
  protected el: HTMLElement;
@@ -1916,7 +1959,7 @@ export class VegaInputPasscode {
1916
1959
  }
1917
1960
  }
1918
1961
 
1919
- 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';
1920
1963
  export declare interface VegaInputPhoneNumber extends Components.VegaInputPhoneNumber {
1921
1964
  /**
1922
1965
  * Fires whenever the phone number value changes — including typing,
@@ -1947,13 +1990,13 @@ standard `countryChange` event name. @eventDetail VegaCountryType,@eventSemantic
1947
1990
 
1948
1991
  @ProxyCmp({
1949
1992
  defineCustomElementFn: undefined,
1950
- inputs: ['allowedCountryCodes', 'autoValidation', 'countryCode', 'disabled', 'emptyValueEnabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
1993
+ inputs: ['allowedCountryCodes', 'autoValidation', 'countryCode', 'disabled', 'emptyValueEnabled', 'hint', 'isValid', 'label', 'optional', 'placeholder', 'required', 'size', 'validationRules', 'value']
1951
1994
  })
1952
1995
  @Component({
1953
1996
  selector: 'vega-input-phone-number',
1954
1997
  changeDetection: ChangeDetectionStrategy.OnPush,
1955
1998
  template: '<ng-content></ng-content>',
1956
- inputs: ['allowedCountryCodes', 'autoValidation', 'countryCode', 'disabled', 'emptyValueEnabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
1999
+ inputs: ['allowedCountryCodes', 'autoValidation', 'countryCode', 'disabled', 'emptyValueEnabled', 'hint', 'isValid', 'label', 'optional', 'placeholder', 'required', 'size', 'validationRules', 'value']
1957
2000
  })
1958
2001
  export class VegaInputPhoneNumber {
1959
2002
  protected el: HTMLElement;
@@ -1979,13 +2022,13 @@ export declare interface VegaInputRange extends Components.VegaInputRange {
1979
2022
 
1980
2023
  @ProxyCmp({
1981
2024
  defineCustomElementFn: undefined,
1982
- 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']
1983
2026
  })
1984
2027
  @Component({
1985
2028
  selector: 'vega-input-range',
1986
2029
  changeDetection: ChangeDetectionStrategy.OnPush,
1987
2030
  template: '<ng-content></ng-content>',
1988
- 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']
1989
2032
  })
1990
2033
  export class VegaInputRange {
1991
2034
  protected el: HTMLElement;
@@ -1996,9 +2039,9 @@ export class VegaInputRange {
1996
2039
  }
1997
2040
  }
1998
2041
 
1999
- import type { SelectValueType as IVegaInputSelectSelectValueType } from '@globalpayments/vega/dist/types/components/vega-input-select/types';
2000
- import type { SelectType as IVegaInputSelectSelectType } from '@globalpayments/vega/dist/types/components/vega-input-select/types';
2001
- 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';
2002
2045
  export declare interface VegaInputSelect extends Components.VegaInputSelect {
2003
2046
  /**
2004
2047
  * An event emitter notifying the change of the select value. @vegaVersion 1.0.11
@@ -2052,14 +2095,14 @@ It can be triggered in two ways: by pressing "Enter" or through user input. @eve
2052
2095
 
2053
2096
  @ProxyCmp({
2054
2097
  defineCustomElementFn: undefined,
2055
- 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'],
2056
2099
  methods: ['doClose', 'doOpen', 'doChange']
2057
2100
  })
2058
2101
  @Component({
2059
2102
  selector: 'vega-input-select',
2060
2103
  changeDetection: ChangeDetectionStrategy.OnPush,
2061
2104
  template: '<ng-content></ng-content>',
2062
- 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']
2063
2106
  })
2064
2107
  export class VegaInputSelect {
2065
2108
  protected el: HTMLElement;
@@ -2724,8 +2767,8 @@ export class VegaRichTextContent {
2724
2767
  }
2725
2768
  }
2726
2769
 
2727
- import type { VegaRTEContent as IVegaRichTextEditorVegaRTEContent } from '@globalpayments/vega/dist/types/components/vega-rich-text-editor/dto/content-state';
2728
- 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';
2729
2772
  export declare interface VegaRichTextEditor extends Components.VegaRichTextEditor {
2730
2773
  /**
2731
2774
  * An event emitter notifying a value change. @vegaVersion 2.34.0
@@ -2756,13 +2799,13 @@ export declare interface VegaRichTextEditor extends Components.VegaRichTextEdito
2756
2799
 
2757
2800
  @ProxyCmp({
2758
2801
  defineCustomElementFn: undefined,
2759
- inputs: ['allowSourceEdit', 'autoValidation', 'disabled', 'extensions', 'hint', 'isValid', 'label', 'placeholder', 'required', 'rows', 'sourceEditConfig', 'textStyleItems', 'toolbarItems', 'validationRules', 'value']
2802
+ inputs: ['allowSourceEdit', 'autoValidation', 'disabled', 'extensions', 'hint', 'isValid', 'label', 'optional', 'placeholder', 'required', 'rows', 'sourceEditConfig', 'textStyleItems', 'toolbarItems', 'validationRules', 'value']
2760
2803
  })
2761
2804
  @Component({
2762
2805
  selector: 'vega-rich-text-editor',
2763
2806
  changeDetection: ChangeDetectionStrategy.OnPush,
2764
2807
  template: '<ng-content></ng-content>',
2765
- inputs: ['allowSourceEdit', 'autoValidation', 'disabled', 'extensions', 'hint', 'isValid', 'label', 'placeholder', 'required', 'rows', 'sourceEditConfig', 'textStyleItems', 'toolbarItems', 'validationRules', 'value']
2808
+ inputs: ['allowSourceEdit', 'autoValidation', 'disabled', 'extensions', 'hint', 'isValid', 'label', 'optional', 'placeholder', 'required', 'rows', 'sourceEditConfig', 'textStyleItems', 'toolbarItems', 'validationRules', 'value']
2766
2809
  })
2767
2810
  export class VegaRichTextEditor {
2768
2811
  protected el: HTMLElement;
@@ -2805,7 +2848,7 @@ export class VegaRichTextEditorToolbarButton {
2805
2848
  }
2806
2849
  }
2807
2850
 
2808
- 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';
2809
2852
  export declare interface VegaRichTextImageEditor extends Components.VegaRichTextImageEditor {
2810
2853
  /**
2811
2854
  * An event emitter notifying content change. @vegaVersion 2.34.0
@@ -2837,7 +2880,7 @@ export class VegaRichTextImageEditor {
2837
2880
  }
2838
2881
  }
2839
2882
 
2840
- 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';
2841
2884
  export declare interface VegaRichTextLinkEditor extends Components.VegaRichTextLinkEditor {
2842
2885
  /**
2843
2886
  * An event emitter notifying content change. @vegaVersion 2.34.0
@@ -2870,7 +2913,40 @@ export class VegaRichTextLinkEditor {
2870
2913
  }
2871
2914
  }
2872
2915
 
2873
- import type { RTETablePropertiesType as IVegaRichTextTablePropertiesRTETablePropertiesType } from '@globalpayments/vega/dist/types/components/vega-rich-text-editor/interface';
2916
+
2917
+ export declare interface VegaRichTextSpecialCharactersPanel extends Components.VegaRichTextSpecialCharactersPanel {
2918
+ /**
2919
+ * Emitted when a character cell is clicked. The payload is the Unicode character string. @vegaVersion 2.88.0
2920
+ */
2921
+ vegaClick: EventEmitter<CustomEvent<string>>;
2922
+ /**
2923
+ * Emitted when a character cell is clicked. The payload is the Unicode character string. @vegaVersion 2.88.0
2924
+ */
2925
+ click: EventEmitter<CustomEvent<string>>;
2926
+
2927
+ }
2928
+
2929
+ @ProxyCmp({
2930
+ defineCustomElementFn: undefined,
2931
+ inputs: ['categories'],
2932
+ methods: ['resetPanel']
2933
+ })
2934
+ @Component({
2935
+ selector: 'vega-rich-text-special-characters-panel',
2936
+ changeDetection: ChangeDetectionStrategy.OnPush,
2937
+ template: '<ng-content></ng-content>',
2938
+ inputs: ['categories']
2939
+ })
2940
+ export class VegaRichTextSpecialCharactersPanel {
2941
+ protected el: HTMLElement;
2942
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2943
+ c.detach();
2944
+ this.el = r.nativeElement;
2945
+ proxyOutputs(this, this.el, ['vegaClick', 'click']);
2946
+ }
2947
+ }
2948
+
2949
+ import type { RTETablePropertiesType as IVegaRichTextTablePropertiesRTETablePropertiesType } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/interface';
2874
2950
  export declare interface VegaRichTextTableProperties extends Components.VegaRichTextTableProperties {
2875
2951
  /**
2876
2952
  * @vegaVersion 2.79.0
@@ -3134,13 +3210,13 @@ export declare interface VegaSelectionTileGroup extends Components.VegaSelection
3134
3210
 
3135
3211
  @ProxyCmp({
3136
3212
  defineCustomElementFn: undefined,
3137
- inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'required', 'selectType', 'validationRules', 'value']
3213
+ inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'optional', 'required', 'selectType', 'validationRules', 'value']
3138
3214
  })
3139
3215
  @Component({
3140
3216
  selector: 'vega-selection-tile-group',
3141
3217
  changeDetection: ChangeDetectionStrategy.OnPush,
3142
3218
  template: '<ng-content></ng-content>',
3143
- inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'required', 'selectType', 'validationRules', 'value']
3219
+ inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'optional', 'required', 'selectType', 'validationRules', 'value']
3144
3220
  })
3145
3221
  export class VegaSelectionTileGroup {
3146
3222
  protected el: HTMLElement;
@@ -3237,7 +3313,7 @@ export class VegaSidenavLink {
3237
3313
  }
3238
3314
  }
3239
3315
 
3240
- 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';
3241
3317
  export declare interface VegaSignatureCapture extends Components.VegaSignatureCapture {
3242
3318
  /**
3243
3319
  * An event emitter notifying a value change. @vegaVersion 2.19.0
@@ -3252,14 +3328,14 @@ export declare interface VegaSignatureCapture extends Components.VegaSignatureCa
3252
3328
 
3253
3329
  @ProxyCmp({
3254
3330
  defineCustomElementFn: undefined,
3255
- 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'],
3256
3332
  methods: ['clear']
3257
3333
  })
3258
3334
  @Component({
3259
3335
  selector: 'vega-signature-capture',
3260
3336
  changeDetection: ChangeDetectionStrategy.OnPush,
3261
3337
  template: '<ng-content></ng-content>',
3262
- 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']
3263
3339
  })
3264
3340
  export class VegaSignatureCapture {
3265
3341
  protected el: HTMLElement;
@@ -3397,14 +3473,14 @@ export class VegaTabGroupPanel {
3397
3473
  }
3398
3474
  }
3399
3475
 
3400
- import type { VegaTableChangePropType as IVegaTableVegaTableChangePropType } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3401
- import type { VegaTableRowClickPropType as IVegaTableVegaTableRowClickPropType } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3402
- import type { VegaTableRowExpandEventDetail as IVegaTableVegaTableRowExpandEventDetail } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3403
- import type { VegaTableRowSelectProp as IVegaTableVegaTableRowSelectProp } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3404
- import type { VegaTableSelectAllProp as IVegaTableVegaTableSelectAllProp } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3405
- import type { VegaTableRowSelectEventDetail as IVegaTableVegaTableRowSelectEventDetail } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3406
- import type { VegaTableRowSelectAllEventDetail as IVegaTableVegaTableRowSelectAllEventDetail } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3407
- 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';
3408
3484
  export declare interface VegaTable extends Components.VegaTable {
3409
3485
  /**
3410
3486
  * An event emitter notifying changes in the table data. @vegaVersion 1.3.0
@@ -3640,7 +3716,7 @@ export class VegaTableHead {
3640
3716
  }
3641
3717
  }
3642
3718
 
3643
- 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';
3644
3720
  export declare interface VegaTableHeadCell extends Components.VegaTableHeadCell {
3645
3721
  /**
3646
3722
  * An event emitter notifying that the head cell has been clicked. @vegaVersion 1.44.0
@@ -3693,8 +3769,8 @@ export class VegaTableHeadRow {
3693
3769
  }
3694
3770
  }
3695
3771
 
3696
- import type { VegaTableRowClickEvent as IVegaTableRowVegaTableRowClickEvent } from '@globalpayments/vega/dist/types/components/vega-table/interface';
3697
- 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';
3698
3774
  export declare interface VegaTableRow extends Components.VegaTableRow {
3699
3775
  /**
3700
3776
  * An event emitter notifying that the row has been clicked. @vegaVersion 1.44.0
@@ -3739,13 +3815,13 @@ export declare interface VegaText extends Components.VegaText {}
3739
3815
 
3740
3816
  @ProxyCmp({
3741
3817
  defineCustomElementFn: undefined,
3742
- inputs: ['overflow', 'tooltip']
3818
+ inputs: ['overflow', 'text', 'tooltip']
3743
3819
  })
3744
3820
  @Component({
3745
3821
  selector: 'vega-text',
3746
3822
  changeDetection: ChangeDetectionStrategy.OnPush,
3747
3823
  template: '<ng-content></ng-content>',
3748
- inputs: ['overflow', 'tooltip']
3824
+ inputs: ['overflow', 'text', 'tooltip']
3749
3825
  })
3750
3826
  export class VegaText {
3751
3827
  protected el: HTMLElement;
@@ -3798,13 +3874,13 @@ event listeners. @eventDetail void,@eventSemantics namespace:native,@vegaVersion
3798
3874
 
3799
3875
  @ProxyCmp({
3800
3876
  defineCustomElementFn: undefined,
3801
- inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'maxLength', 'minLength', 'placeholder', 'required', 'resizable', 'rows', 'showCounter', 'validationRules', 'value']
3877
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'maxLength', 'minLength', 'optional', 'placeholder', 'required', 'resizable', 'rows', 'showCounter', 'validationRules', 'value']
3802
3878
  })
3803
3879
  @Component({
3804
3880
  selector: 'vega-textarea',
3805
3881
  changeDetection: ChangeDetectionStrategy.OnPush,
3806
3882
  template: '<ng-content></ng-content>',
3807
- inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'maxLength', 'minLength', 'placeholder', 'required', 'resizable', 'rows', 'showCounter', 'validationRules', 'value']
3883
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'maxLength', 'minLength', 'optional', 'placeholder', 'required', 'resizable', 'rows', 'showCounter', 'validationRules', 'value']
3808
3884
  })
3809
3885
  export class VegaTextarea {
3810
3886
  protected el: HTMLElement;
@@ -3830,13 +3906,13 @@ export declare interface VegaTimePicker extends Components.VegaTimePicker {
3830
3906
 
3831
3907
  @ProxyCmp({
3832
3908
  defineCustomElementFn: undefined,
3833
- 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']
3834
3910
  })
3835
3911
  @Component({
3836
3912
  selector: 'vega-time-picker',
3837
3913
  changeDetection: ChangeDetectionStrategy.OnPush,
3838
3914
  template: '<ng-content></ng-content>',
3839
- 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']
3840
3916
  })
3841
3917
  export class VegaTimePicker {
3842
3918
  protected el: HTMLElement;
@@ -3881,13 +3957,13 @@ export declare interface VegaToggleSwitch extends Components.VegaToggleSwitch {
3881
3957
 
3882
3958
  @ProxyCmp({
3883
3959
  defineCustomElementFn: undefined,
3884
- inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'required', 'size', 'validationRules', 'value']
3960
+ inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'optional', 'required', 'size', 'validationRules', 'value']
3885
3961
  })
3886
3962
  @Component({
3887
3963
  selector: 'vega-toggle-switch',
3888
3964
  changeDetection: ChangeDetectionStrategy.OnPush,
3889
3965
  template: '<ng-content></ng-content>',
3890
- inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'required', 'size', 'validationRules', 'value']
3966
+ inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'optional', 'required', 'size', 'validationRules', 'value']
3891
3967
  })
3892
3968
  export class VegaToggleSwitch {
3893
3969
  protected el: HTMLElement;
@@ -4045,6 +4121,7 @@ export default [
4045
4121
  VegaRichTextEditorToolbarButton,
4046
4122
  VegaRichTextImageEditor,
4047
4123
  VegaRichTextLinkEditor,
4124
+ VegaRichTextSpecialCharactersPanel,
4048
4125
  VegaRichTextTableProperties,
4049
4126
  VegaRichTextTableSelectionWidget,
4050
4127
  VegaRichTextTableSetting,