@heartlandone/vega-angular 2.74.0-RTE-table-preview → 2.75.0-RTE-table-preview

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.
@@ -14,6 +14,7 @@ import type { VegaFileUploaderFiles as IVegaFileUploaderVegaFileUploaderFiles }
14
14
  import type { VegaFileUploaderFile as IVegaFileUploaderVegaFileUploaderFile } from '@heartlandone/vega/dist/types/components/vega-file-uploader/types';
15
15
  import type { VegaFileOptional as IVegaImageUploaderVegaFileOptional } from '@heartlandone/vega/dist/types/components/vega-image-uploader/types';
16
16
  import type { DataTransferType as IVegaInputDataTransferType } from '@heartlandone/vega/dist/types/components/vega-input/types';
17
+ import type { VegaDropdownSourceItem as IVegaInputVegaDropdownSourceItem } from '@heartlandone/vega/dist/types/components/vega-dropdown/types';
17
18
  import type { VegaCountryType as IVegaInputPhoneNumberVegaCountryType } from '@heartlandone/vega/dist/types/components/vega-input-phone-number/types';
18
19
  import type { SelectValueType as IVegaInputSelectSelectValueType } from '@heartlandone/vega/dist/types/components/vega-input-select/types';
19
20
  import type { SelectType as IVegaInputSelectSelectType } from '@heartlandone/vega/dist/types/components/vega-input-select/types';
@@ -953,6 +954,14 @@ export declare interface VegaInput extends Components.VegaInput {
953
954
  * An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.0.0
954
955
  */
955
956
  change: EventEmitter<CustomEvent<string>>;
957
+ /**
958
+ * An event emitter notifying a value change by input action of native input dom. @vegaVersion 2.75.0
959
+ */
960
+ vegaNativeInputChange: EventEmitter<CustomEvent<string>>;
961
+ /**
962
+ * An event emitter notifying a value change by input action of native input dom. @eventSemantics namespace:native,@vegaVersion 2.75.0
963
+ */
964
+ nativeInputChange: EventEmitter<CustomEvent<string>>;
956
965
  /**
957
966
  * An event emitter notifying the blur of the inner input element. @vegaVersion 1.3.0
958
967
  */
@@ -985,13 +994,21 @@ export declare interface VegaInput extends Components.VegaInput {
985
994
  * An event emitter notifying the paste of the inner input element. @eventSemantics namespace:native,@vegaVersion 2.66.0
986
995
  */
987
996
  paste: EventEmitter<CustomEvent<IVegaInputDataTransferType>>;
997
+ /**
998
+ * An event emitter notifying the click of a suggestion item. @vegaVersion 2.75.0
999
+ */
1000
+ vegaSuggestionItemClick: EventEmitter<CustomEvent<IVegaInputVegaDropdownSourceItem>>;
1001
+ /**
1002
+ * An event emitter notifying the click of a suggestion item. @eventSemantics namespace:native,@vegaVersion 2.75.0
1003
+ */
1004
+ suggestionItemClick: EventEmitter<CustomEvent<IVegaInputVegaDropdownSourceItem>>;
988
1005
  }
989
1006
  export declare class VegaInput {
990
1007
  protected z: NgZone;
991
1008
  protected el: HTMLElement;
992
1009
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
993
1010
  static ɵfac: i0.ɵɵFactoryDeclaration<VegaInput, never>;
994
- static ɵcmp: i0.ɵɵComponentDeclaration<VegaInput, "vega-input", never, { "autoValidation": "autoValidation"; "autocomplete": "autocomplete"; "disableCopyPaste": "disableCopyPaste"; "disabled": "disabled"; "email": "email"; "hint": "hint"; "inputmode": "inputmode"; "isValid": "isValid"; "label": "label"; "labelSuffixButtonConfig": "labelSuffixButtonConfig"; "labelSuffixButtonProps": "labelSuffixButtonProps"; "maskConfig": "maskConfig"; "max": "max"; "maxLength": "maxLength"; "min": "min"; "minLength": "minLength"; "name": "name"; "placeholder": "placeholder"; "prefixIcon": "prefixIcon"; "required": "required"; "showClearIcon": "showClearIcon"; "size": "size"; "type": "type"; "validationRules": "validationRules"; "value": "value"; "valueUpdateTrigger": "valueUpdateTrigger"; }, {}, never, ["*"]>;
1011
+ static ɵcmp: i0.ɵɵComponentDeclaration<VegaInput, "vega-input", never, { "autoValidation": "autoValidation"; "autocomplete": "autocomplete"; "disableCopyPaste": "disableCopyPaste"; "disabled": "disabled"; "email": "email"; "hint": "hint"; "inputmode": "inputmode"; "isValid": "isValid"; "label": "label"; "labelSuffixButtonConfig": "labelSuffixButtonConfig"; "labelSuffixButtonProps": "labelSuffixButtonProps"; "maskConfig": "maskConfig"; "max": "max"; "maxLength": "maxLength"; "min": "min"; "minLength": "minLength"; "name": "name"; "placeholder": "placeholder"; "prefixIcon": "prefixIcon"; "required": "required"; "showClearIcon": "showClearIcon"; "size": "size"; "suggestionsDropdownSource": "suggestionsDropdownSource"; "type": "type"; "validationRules": "validationRules"; "value": "value"; "valueUpdateTrigger": "valueUpdateTrigger"; }, {}, never, ["*"]>;
995
1012
  }
996
1013
  export declare interface VegaInputCreditCard extends Components.VegaInputCreditCard {
997
1014
  /**
@@ -1589,15 +1606,15 @@ export declare class VegaRichTextLinkEditor {
1589
1606
  }
1590
1607
  export declare interface VegaRichTextTableProperties extends Components.VegaRichTextTableProperties {
1591
1608
  /**
1592
- * @vegaVersion 2.74.0-RTE-table-preview
1609
+ * @vegaVersion 2.75.0-RTE-table-preview
1593
1610
  */
1594
1611
  vegaChange: EventEmitter<CustomEvent<IVegaRichTextTablePropertiesRTETablePropertiesType>>;
1595
1612
  /**
1596
- * @vegaVersion 2.74.0-RTE-table-preview
1613
+ * @vegaVersion 2.75.0-RTE-table-preview
1597
1614
  */
1598
1615
  vegaCancel: EventEmitter<CustomEvent<IVegaRichTextTablePropertiesRTETablePropertiesType>>;
1599
1616
  /**
1600
- * @vegaVersion 2.74.0-RTE-table-preview
1617
+ * @vegaVersion 2.75.0-RTE-table-preview
1601
1618
  */
1602
1619
  vegaSave: EventEmitter<CustomEvent<unknown>>;
1603
1620
  }
@@ -1610,7 +1627,7 @@ export declare class VegaRichTextTableProperties {
1610
1627
  }
1611
1628
  export declare interface VegaRichTextTableSelectionWidget extends Components.VegaRichTextTableSelectionWidget {
1612
1629
  /**
1613
- * An event emitter notifying a delete action on the widget. @vegaVersion 2.74.0-RTE-table-preview
1630
+ * An event emitter notifying a delete action on the widget. @vegaVersion 2.75.0-RTE-table-preview
1614
1631
  */
1615
1632
  vegaRemove: EventEmitter<CustomEvent<any>>;
1616
1633
  }
@@ -1623,7 +1640,7 @@ export declare class VegaRichTextTableSelectionWidget {
1623
1640
  }
1624
1641
  export declare interface VegaRichTextTableSetting extends Components.VegaRichTextTableSetting {
1625
1642
  /**
1626
- * @vegaVersion 2.74.0-RTE-table-preview
1643
+ * @vegaVersion 2.75.0-RTE-table-preview
1627
1644
  */
1628
1645
  vegaClick: EventEmitter<CustomEvent<Array<string>>>;
1629
1646
  }
package/dist/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@heartlandone/vega-angular",
3
3
  "sideEffects": false,
4
- "version": "2.73.0",
4
+ "version": "2.75.0",
5
5
  "description": "Angular specific wrapper for @heartlandone/vega",
6
6
  "license": "UNLICENSED",
7
7
  "peerDependencies": {
@@ -19,7 +19,7 @@
19
19
  "url": "https://github.com/heartlandpayments/Vega/tree/main/vega-angular-workspace/projects/vega-angular"
20
20
  },
21
21
  "dependencies": {
22
- "@heartlandone/vega": "2.73.0",
22
+ "@heartlandone/vega": "2.75.0",
23
23
  "tslib": "^2.3.0",
24
24
  "@juggle/resize-observer": "^3.4.0"
25
25
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@heartlandone/vega-angular",
3
3
  "sideEffects": false,
4
- "version": "2.74.0-RTE-table-preview",
4
+ "version": "2.75.0-RTE-table-preview",
5
5
  "description": "Angular specific wrapper for @heartlandone/vega",
6
6
  "license": "UNLICENSED",
7
7
  "peerDependencies": {
@@ -27,7 +27,7 @@
27
27
  "url": "https://github.com/heartlandpayments/Vega/tree/main/vega-angular-workspace/projects/vega-angular"
28
28
  },
29
29
  "dependencies": {
30
- "@heartlandone/vega": "2.74.0-RTE-table-preview",
30
+ "@heartlandone/vega": "2.75.0-RTE-table-preview",
31
31
  "tslib": "^2.3.0",
32
32
  "@juggle/resize-observer": "^3.4.0"
33
33
  },
@@ -1551,6 +1551,7 @@ export class VegaImageUploader {
1551
1551
  }
1552
1552
 
1553
1553
  import type { DataTransferType as IVegaInputDataTransferType } from '@heartlandone/vega/dist/types/components/vega-input/types';
1554
+ import type { VegaDropdownSourceItem as IVegaInputVegaDropdownSourceItem } from '@heartlandone/vega/dist/types/components/vega-dropdown/types';
1554
1555
  export declare interface VegaInput extends Components.VegaInput {
1555
1556
  /**
1556
1557
  * An event emitter notifying a value change. @vegaVersion 1.0.10
@@ -1560,6 +1561,14 @@ export declare interface VegaInput extends Components.VegaInput {
1560
1561
  * An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.0.0
1561
1562
  */
1562
1563
  change: EventEmitter<CustomEvent<string>>;
1564
+ /**
1565
+ * An event emitter notifying a value change by input action of native input dom. @vegaVersion 2.75.0
1566
+ */
1567
+ vegaNativeInputChange: EventEmitter<CustomEvent<string>>;
1568
+ /**
1569
+ * An event emitter notifying a value change by input action of native input dom. @eventSemantics namespace:native,@vegaVersion 2.75.0
1570
+ */
1571
+ nativeInputChange: EventEmitter<CustomEvent<string>>;
1563
1572
  /**
1564
1573
  * An event emitter notifying the blur of the inner input element. @vegaVersion 1.3.0
1565
1574
  */
@@ -1592,26 +1601,34 @@ export declare interface VegaInput extends Components.VegaInput {
1592
1601
  * An event emitter notifying the paste of the inner input element. @eventSemantics namespace:native,@vegaVersion 2.66.0
1593
1602
  */
1594
1603
  paste: EventEmitter<CustomEvent<IVegaInputDataTransferType>>;
1604
+ /**
1605
+ * An event emitter notifying the click of a suggestion item. @vegaVersion 2.75.0
1606
+ */
1607
+ vegaSuggestionItemClick: EventEmitter<CustomEvent<IVegaInputVegaDropdownSourceItem>>;
1608
+ /**
1609
+ * An event emitter notifying the click of a suggestion item. @eventSemantics namespace:native,@vegaVersion 2.75.0
1610
+ */
1611
+ suggestionItemClick: EventEmitter<CustomEvent<IVegaInputVegaDropdownSourceItem>>;
1595
1612
 
1596
1613
  }
1597
1614
 
1598
1615
  @ProxyCmp({
1599
1616
  defineCustomElementFn: undefined,
1600
- inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'hint', 'inputmode', 'isValid', 'label', 'labelSuffixButtonConfig', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value', 'valueUpdateTrigger'],
1601
- methods: ['doFocus', 'doBlur']
1617
+ inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'hint', 'inputmode', 'isValid', 'label', 'labelSuffixButtonConfig', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'suggestionsDropdownSource', 'type', 'validationRules', 'value', 'valueUpdateTrigger'],
1618
+ methods: ['doFocus', 'doBlur', 'showSuggestionsDropdown', 'hideSuggestionsDropdown']
1602
1619
  })
1603
1620
  @Component({
1604
1621
  selector: 'vega-input',
1605
1622
  changeDetection: ChangeDetectionStrategy.OnPush,
1606
1623
  template: '<ng-content></ng-content>',
1607
- inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'hint', 'inputmode', 'isValid', 'label', 'labelSuffixButtonConfig', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value', 'valueUpdateTrigger']
1624
+ inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'hint', 'inputmode', 'isValid', 'label', 'labelSuffixButtonConfig', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'suggestionsDropdownSource', 'type', 'validationRules', 'value', 'valueUpdateTrigger']
1608
1625
  })
1609
1626
  export class VegaInput {
1610
1627
  protected el: HTMLElement;
1611
1628
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1612
1629
  c.detach();
1613
1630
  this.el = r.nativeElement;
1614
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur', 'vegaFocus', 'focus', 'vegaLabelButtonClick', 'labelButtonClick', 'vegaPaste', 'paste']);
1631
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaNativeInputChange', 'nativeInputChange', 'vegaBlur', 'blur', 'vegaFocus', 'focus', 'vegaLabelButtonClick', 'labelButtonClick', 'vegaPaste', 'paste', 'vegaSuggestionItemClick', 'suggestionItemClick']);
1615
1632
  }
1616
1633
  }
1617
1634
 
@@ -2680,15 +2697,15 @@ export class VegaRichTextLinkEditor {
2680
2697
  import type { RTETablePropertiesType as IVegaRichTextTablePropertiesRTETablePropertiesType } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/interface';
2681
2698
  export declare interface VegaRichTextTableProperties extends Components.VegaRichTextTableProperties {
2682
2699
  /**
2683
- * @vegaVersion 2.74.0-RTE-table-preview
2700
+ * @vegaVersion 2.75.0-RTE-table-preview
2684
2701
  */
2685
2702
  vegaChange: EventEmitter<CustomEvent<IVegaRichTextTablePropertiesRTETablePropertiesType>>;
2686
2703
  /**
2687
- * @vegaVersion 2.74.0-RTE-table-preview
2704
+ * @vegaVersion 2.75.0-RTE-table-preview
2688
2705
  */
2689
2706
  vegaCancel: EventEmitter<CustomEvent<IVegaRichTextTablePropertiesRTETablePropertiesType>>;
2690
2707
  /**
2691
- * @vegaVersion 2.74.0-RTE-table-preview
2708
+ * @vegaVersion 2.75.0-RTE-table-preview
2692
2709
  */
2693
2710
  vegaSave: EventEmitter<CustomEvent<unknown>>;
2694
2711
 
@@ -2716,7 +2733,7 @@ export class VegaRichTextTableProperties {
2716
2733
 
2717
2734
  export declare interface VegaRichTextTableSelectionWidget extends Components.VegaRichTextTableSelectionWidget {
2718
2735
  /**
2719
- * An event emitter notifying a delete action on the widget. @vegaVersion 2.74.0-RTE-table-preview
2736
+ * An event emitter notifying a delete action on the widget. @vegaVersion 2.75.0-RTE-table-preview
2720
2737
  */
2721
2738
  vegaRemove: EventEmitter<CustomEvent<any>>;
2722
2739
 
@@ -2742,7 +2759,7 @@ export class VegaRichTextTableSelectionWidget {
2742
2759
 
2743
2760
  export declare interface VegaRichTextTableSetting extends Components.VegaRichTextTableSetting {
2744
2761
  /**
2745
- * @vegaVersion 2.74.0-RTE-table-preview
2762
+ * @vegaVersion 2.75.0-RTE-table-preview
2746
2763
  */
2747
2764
  vegaClick: EventEmitter<CustomEvent<Array<string>>>;
2748
2765
 
@@ -61,7 +61,8 @@ function resolveEventPayloadImportPath(componentsContent) {
61
61
  ['VegaRTEContent', 'vega-rich-text-editor/dto/content-state'],
62
62
  ['VegaCodeBlockValue', 'vega-code-block/types'],
63
63
  ['DatePickerMonthYearTypes', 'vega-date-picker/types'],
64
- ['DataTransferType', 'vega-input/types']
64
+ ['DataTransferType', 'vega-input/types'],
65
+ ['VegaDropdownSourceItem', 'vega-dropdown/types']
65
66
  ]);
66
67
 
67
68
  return componentsContent.replace(