@heartlandone/vega-angular 2.77.1 → 2.78.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.
@@ -1554,59 +1554,125 @@ import type { DataTransferType as IVegaInputDataTransferType } from '@heartlando
1554
1554
  import type { VegaDropdownSourceItem as IVegaInputVegaDropdownSourceItem } from '@heartlandone/vega/dist/types/components/vega-dropdown/types';
1555
1555
  export declare interface VegaInput extends Components.VegaInput {
1556
1556
  /**
1557
- * An event emitter notifying a value change. @vegaVersion 1.0.10
1557
+ * Emitted when the input value changes.
1558
+
1559
+ The timing of this event depends on the `valueUpdateTrigger` prop:
1560
+ - When `valueUpdateTrigger` is `'input'` (default), fires on every keystroke.
1561
+ - When `valueUpdateTrigger` is `'change'`, fires on blur or when the user presses Enter.
1562
+
1563
+ Also fires when the user clicks the clear icon or when the value is
1564
+ programmatically updated. @eventDetail `string` — The current input value after the change.,@vegaVersion 1.0.10
1558
1565
  */
1559
1566
  vegaChange: EventEmitter<CustomEvent<string>>;
1560
1567
  /**
1561
- * An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.0.0
1568
+ * Native-namespace alias for the `vegaChange` event.
1569
+
1570
+ Emitted at the same time and under the same conditions as `vegaChange`.
1571
+ Use this event when integrating with frameworks that expect native-style
1572
+ event names (e.g., `@change` in Vue or Angular). @eventDetail `string` — The current input value after the change.,@eventSemantics namespace:native,@vegaVersion 2.0.0
1562
1573
  */
1563
1574
  change: EventEmitter<CustomEvent<string>>;
1564
1575
  /**
1565
- * An event emitter notifying a value change by input action of native input dom. @vegaVersion 2.75.0
1576
+ * Emitted on every native `input` event from the underlying `<input>` element,
1577
+ regardless of the `valueUpdateTrigger` setting.
1578
+
1579
+ This event fires on every keystroke and provides the raw input value.
1580
+ Use this for real-time monitoring (e.g., driving a suggestions dropdown)
1581
+ while keeping `vegaChange` set to `'change'` trigger for the main value binding. @eventDetail `string` — The raw value from the native input element.,@vegaVersion 2.75.0
1566
1582
  */
1567
1583
  vegaNativeInputChange: EventEmitter<CustomEvent<string>>;
1568
1584
  /**
1569
- * An event emitter notifying a value change by input action of native input dom. @eventSemantics namespace:native,@vegaVersion 2.75.0
1585
+ * Native-namespace alias for the `vegaNativeInputChange` event.
1586
+
1587
+ Emitted at the same time and under the same conditions as
1588
+ `vegaNativeInputChange`. Use this event when integrating with frameworks
1589
+ that expect native-style event names. @eventDetail `string` — The raw value from the native input element.,@eventSemantics namespace:native,@vegaVersion 2.75.0
1570
1590
  */
1571
1591
  nativeInputChange: EventEmitter<CustomEvent<string>>;
1572
1592
  /**
1573
- * An event emitter notifying the blur of the inner input element. @vegaVersion 1.3.0
1593
+ * Emitted when the input field loses focus.
1594
+
1595
+ This event fires after the underlying native `<input>` element's `blur`
1596
+ event. Useful for triggering validation, saving state, or updating UI
1597
+ when the user navigates away from the field. @eventDetail `undefined` — No payload; listen for the event occurrence only.,@vegaVersion 1.3.0
1574
1598
  */
1575
1599
  vegaBlur: EventEmitter<CustomEvent<undefined>>;
1576
1600
  /**
1577
- * An event emitter notifying the blur of the inner input element. @eventSemantics namespace:native,@vegaVersion 2.0.0
1601
+ * Native-namespace alias for the `vegaBlur` event.
1602
+
1603
+ Emitted at the same time and under the same conditions as `vegaBlur`.
1604
+ Use this event when integrating with frameworks that expect native-style
1605
+ event names. @eventDetail `undefined` — No payload; listen for the event occurrence only.,@eventSemantics namespace:native,@vegaVersion 2.0.0
1578
1606
  */
1579
1607
  blur: EventEmitter<CustomEvent<undefined>>;
1580
1608
  /**
1581
- * An event emitter notifying the focus of the inner input element. @vegaVersion 1.12.0
1609
+ * Emitted when the input field receives focus.
1610
+
1611
+ This event fires after the underlying native `<input>` element's `focus`
1612
+ event, including when focus is set programmatically via the `doFocus()` method.
1613
+ Useful for highlighting the field, showing contextual help, or opening
1614
+ a suggestions dropdown. @eventDetail `undefined` — No payload; listen for the event occurrence only.,@vegaVersion 1.12.0
1582
1615
  */
1583
1616
  vegaFocus: EventEmitter<CustomEvent<undefined>>;
1584
1617
  /**
1585
- * An event emitter notifying the focus of the inner input element. @eventSemantics namespace:native,@vegaVersion 2.0.0
1618
+ * Native-namespace alias for the `vegaFocus` event.
1619
+
1620
+ Emitted at the same time and under the same conditions as `vegaFocus`.
1621
+ Use this event when integrating with frameworks that expect native-style
1622
+ event names. @eventDetail `undefined` — No payload; listen for the event occurrence only.,@eventSemantics namespace:native,@vegaVersion 2.0.0
1586
1623
  */
1587
1624
  focus: EventEmitter<CustomEvent<undefined>>;
1588
1625
  /**
1589
- * An event emitter notifying that the suffix button associated with the field label has been clicked. @vegaVersion 2.25.0
1626
+ * Emitted when the user clicks the suffix button in the field label.
1627
+
1628
+ This event only fires when a `labelSuffixButtonConfig` (or the deprecated
1629
+ `labelSuffixButtonProps`) is provided. Use it to handle contextual actions
1630
+ such as opening a tooltip, navigating to a help page, or triggering a
1631
+ "Forgot password?" flow. @eventDetail `void` — No payload.,@vegaVersion 2.25.0
1590
1632
  */
1591
1633
  vegaLabelButtonClick: EventEmitter<CustomEvent<any>>;
1592
1634
  /**
1593
- * An event emitter notifying that the suffix button associated with the field label has been clicked. @eventSemantics namespace:native,@vegaVersion 2.25.0
1635
+ * Native-namespace alias for the `vegaLabelButtonClick` event.
1636
+
1637
+ Emitted at the same time and under the same conditions as
1638
+ `vegaLabelButtonClick`. Use this event when integrating with frameworks
1639
+ that expect native-style event names. @eventDetail `void` — No payload.,@eventSemantics namespace:native,@vegaVersion 2.25.0
1594
1640
  */
1595
1641
  labelButtonClick: EventEmitter<CustomEvent<any>>;
1596
1642
  /**
1597
- * An event emitter notifying the paste of the inner input element. @vegaVersion 2.66.0
1643
+ * Emitted when the user pastes content into the input field.
1644
+
1645
+ This event fires regardless of the `disableCopyPaste` setting — the paste
1646
+ action is blocked visually, but the event still propagates for tracking
1647
+ purposes. Use this to inspect or transform pasted data before it is applied. @eventDetail `DataTransferType` — An object containing the pasted data,
1648
+ including the MIME type and raw text content from the clipboard.,@vegaVersion 2.66.0
1598
1649
  */
1599
1650
  vegaPaste: EventEmitter<CustomEvent<IVegaInputDataTransferType>>;
1600
1651
  /**
1601
- * An event emitter notifying the paste of the inner input element. @eventSemantics namespace:native,@vegaVersion 2.66.0
1652
+ * Native-namespace alias for the `vegaPaste` event.
1653
+
1654
+ Emitted at the same time and under the same conditions as `vegaPaste`.
1655
+ Use this event when integrating with frameworks that expect native-style
1656
+ event names. @eventDetail `DataTransferType` — An object containing the pasted data,
1657
+ including the MIME type and raw text content from the clipboard.,@eventSemantics namespace:native,@vegaVersion 2.66.0
1602
1658
  */
1603
1659
  paste: EventEmitter<CustomEvent<IVegaInputDataTransferType>>;
1604
1660
  /**
1605
- * An event emitter notifying the click of a suggestion item. @vegaVersion 2.75.0
1661
+ * Emitted when the user selects an item from the suggestions dropdown.
1662
+
1663
+ This event only fires when the `suggestionsDropdownSource` prop is set.
1664
+ Use it to respond to the user's selection — for example, to populate
1665
+ related fields, navigate to a detail page, or trigger a search. @eventDetail `VegaDropdownSourceItem` — The full data object of the selected
1666
+ suggestion item, including its `label`, `value`, and any custom properties.,@vegaVersion 2.75.0
1606
1667
  */
1607
1668
  vegaSuggestionItemClick: EventEmitter<CustomEvent<IVegaInputVegaDropdownSourceItem>>;
1608
1669
  /**
1609
- * An event emitter notifying the click of a suggestion item. @eventSemantics namespace:native,@vegaVersion 2.75.0
1670
+ * Native-namespace alias for the `vegaSuggestionItemClick` event.
1671
+
1672
+ Emitted at the same time and under the same conditions as
1673
+ `vegaSuggestionItemClick`. Use this event when integrating with frameworks
1674
+ that expect native-style event names. @eventDetail `VegaDropdownSourceItem` — The full data object of the selected
1675
+ suggestion item, including its `label`, `value`, and any custom properties.,@eventSemantics namespace:native,@vegaVersion 2.75.0
1610
1676
  */
1611
1677
  suggestionItemClick: EventEmitter<CustomEvent<IVegaInputVegaDropdownSourceItem>>;
1612
1678
 
@@ -1683,11 +1749,17 @@ export class VegaInputCreditCard {
1683
1749
 
1684
1750
  export declare interface VegaInputNumeric extends Components.VegaInputNumeric {
1685
1751
  /**
1686
- * An event emitter notifying a value change. @vegaVersion 2.29.0
1752
+ * Fires whenever the numeric input's value changes including typing,
1753
+ keyboard increment/decrement, clearing, and programmatic updates.
1754
+
1755
+ The event detail contains the new numeric value (`number`), or `NaN`
1756
+ when the field is empty. @eventDetail number,@vegaVersion 2.29.0
1687
1757
  */
1688
1758
  vegaChange: EventEmitter<CustomEvent<number>>;
1689
1759
  /**
1690
- * An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.29.0
1760
+ * Native-equivalent mirror of `vegaChange`. Fires with the same payload
1761
+ and at the same time, allowing consumers to listen using the standard
1762
+ `change` event name. @eventDetail number,@eventSemantics namespace:native,@vegaVersion 2.29.0
1691
1763
  */
1692
1764
  change: EventEmitter<CustomEvent<number>>;
1693
1765
 
@@ -1715,23 +1787,28 @@ export class VegaInputNumeric {
1715
1787
 
1716
1788
  export declare interface VegaInputPasscode extends Components.VegaInputPasscode {
1717
1789
  /**
1718
- * An event emitter notifying the change of the value in the input passcode,
1719
- whether triggered programmatically or through user interaction. @vegaVersion 2.66.0
1790
+ * Fires whenever the passcode value changes each time a character is
1791
+ entered, deleted, or pasted into any box. The event detail contains the
1792
+ concatenated string of all box values at the time of the change. @eventDetail string,@vegaVersion 2.66.0
1720
1793
  */
1721
1794
  vegaChange: EventEmitter<CustomEvent<string>>;
1722
1795
  /**
1723
- * An event emitter notifying the change of the value in the input passcode,
1724
- whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.66.0
1796
+ * Native-equivalent mirror of `vegaChange`. Fires with the same payload
1797
+ and at the same time, allowing consumers to listen using the standard
1798
+ `change` event name. @eventDetail string,@eventSemantics namespace:native,@vegaVersion 2.66.0
1725
1799
  */
1726
1800
  change: EventEmitter<CustomEvent<string>>;
1727
1801
  /**
1728
- * An event emitter notifying the completion of all input passcode boxes.
1729
- whether triggered programmatically or through user interaction. @vegaVersion 2.66.0
1802
+ * Fires when all passcode boxes have been filled (i.e., the value length
1803
+ equals the configured `length`). The event detail contains the complete
1804
+ passcode string. Useful for triggering auto-submit or verification
1805
+ workflows. @eventDetail string,@vegaVersion 2.66.0
1730
1806
  */
1731
1807
  vegaComplete: EventEmitter<CustomEvent<string>>;
1732
1808
  /**
1733
- * An event emitter notifying the completion of all input passcode boxes.
1734
- whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.66.0
1809
+ * Native-equivalent mirror of `vegaComplete`. Fires with the same payload
1810
+ and at the same time, allowing consumers to listen using the standard
1811
+ `complete` event name. @eventDetail string,@eventSemantics namespace:native,@vegaVersion 2.66.0
1735
1812
  */
1736
1813
  complete: EventEmitter<CustomEvent<string>>;
1737
1814
 
@@ -1759,19 +1836,27 @@ export class VegaInputPasscode {
1759
1836
  import type { VegaCountryType as IVegaInputPhoneNumberVegaCountryType } from '@heartlandone/vega/dist/types/components/vega-input-phone-number/types';
1760
1837
  export declare interface VegaInputPhoneNumber extends Components.VegaInputPhoneNumber {
1761
1838
  /**
1762
- * An event emitter notifying a value change. @vegaVersion 2.18.0
1839
+ * Fires whenever the phone number value changes including typing,
1840
+ pasting, or programmatic updates. The event detail contains the full
1841
+ phone number in E.164 format (e.g., `'+14155552671'`). @eventDetail string,@vegaVersion 2.18.0
1763
1842
  */
1764
1843
  vegaChange: EventEmitter<CustomEvent<string>>;
1765
1844
  /**
1766
- * An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.18.0
1845
+ * Native-equivalent mirror of `vegaChange`. Fires with the same payload
1846
+ and at the same time, allowing consumers to listen using the standard
1847
+ `change` event name. @eventDetail string,@eventSemantics namespace:native,@vegaVersion 2.18.0
1767
1848
  */
1768
1849
  change: EventEmitter<CustomEvent<string>>;
1769
1850
  /**
1770
- * An event emitter notifying a country change. @vegaVersion 2.18.0
1851
+ * Fires whenever the selected country changes via the country dropdown.
1852
+ The event detail contains a `VegaCountryType` object with the country
1853
+ code, calling code, and display name of the newly selected country. @eventDetail VegaCountryType,@vegaVersion 2.18.0
1771
1854
  */
1772
1855
  vegaCountryChange: EventEmitter<CustomEvent<IVegaInputPhoneNumberVegaCountryType>>;
1773
1856
  /**
1774
- * An event emitter notifying a country change. @eventSemantics namespace:native,@vegaVersion 2.18.0
1857
+ * Native-equivalent mirror of `vegaCountryChange`. Fires with the same
1858
+ payload and at the same time, allowing consumers to listen using the
1859
+ standard `countryChange` event name. @eventDetail VegaCountryType,@eventSemantics namespace:native,@vegaVersion 2.18.0
1775
1860
  */
1776
1861
  countryChange: EventEmitter<CustomEvent<IVegaInputPhoneNumberVegaCountryType>>;
1777
1862
 
@@ -2575,6 +2660,14 @@ export declare interface VegaRichTextEditor extends Components.VegaRichTextEdito
2575
2660
  * An event emitter notifying an image insertion event. @eventSemantics namespace:native,@vegaVersion 2.34.0
2576
2661
  */
2577
2662
  imageInserted: EventEmitter<CustomEvent<IVegaRichTextEditorVegaRichTextEditorImage>>;
2663
+ /**
2664
+ * An event emitter notifying a source code change event. It triggers when the editor loses focus in source edit mode. @vegaVersion 2.78.0
2665
+ */
2666
+ vegaSourceCodeChange: EventEmitter<CustomEvent<string>>;
2667
+ /**
2668
+ * An event emitter notifying a source code change event. It triggers when the editor loses focus in source edit mode. @eventSemantics namespace:native,@vegaVersion 2.78.0
2669
+ */
2670
+ sourceCodeChange: EventEmitter<CustomEvent<string>>;
2578
2671
 
2579
2672
  }
2580
2673
 
@@ -2593,7 +2686,7 @@ export class VegaRichTextEditor {
2593
2686
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2594
2687
  c.detach();
2595
2688
  this.el = r.nativeElement;
2596
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaImageInserted', 'imageInserted']);
2689
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaImageInserted', 'imageInserted', 'vegaSourceCodeChange', 'sourceCodeChange']);
2597
2690
  }
2598
2691
  }
2599
2692
 
@@ -3481,31 +3574,39 @@ export class VegaText {
3481
3574
 
3482
3575
  export declare interface VegaTextarea extends Components.VegaTextarea {
3483
3576
  /**
3484
- * An event emitter notifying about changes in the value
3485
- of the text area. @vegaVersion 1.11.0
3577
+ * Fired whenever the text area value changes, whether by user input or
3578
+ programmatic update of the `value` property. This is the primary event
3579
+ for reacting to content changes and implementing two-way binding. @eventDetail string — The updated text area value.,@vegaVersion 1.11.0
3486
3580
  */
3487
3581
  vegaChange: EventEmitter<CustomEvent<string>>;
3488
3582
  /**
3489
- * An event emitter notifying about changes in the value
3490
- of the text area. @eventSemantics namespace:native,@vegaVersion 2.0.0
3583
+ * Native-namespace mirror of `vegaChange`. Fired whenever the text area
3584
+ value changes. Provided for compatibility with standard DOM event
3585
+ listeners. @eventDetail string — The updated text area value.,@eventSemantics namespace:native,@vegaVersion 2.0.0
3491
3586
  */
3492
3587
  change: EventEmitter<CustomEvent<string>>;
3493
3588
  /**
3494
- * An event emitter notifying the blur event of the inner
3495
- textarea element within the text area. @vegaVersion 1.11.0
3589
+ * Fired when the inner `<textarea>` element loses focus (blur). Use this
3590
+ event to trigger validation or save actions when the user leaves the
3591
+ text area. @eventDetail undefined — No payload; signals the blur occurrence only.,@vegaVersion 1.11.0
3496
3592
  */
3497
3593
  vegaBlur: EventEmitter<CustomEvent<undefined>>;
3498
3594
  /**
3499
- * An event emitter notifying the blur event of the inner
3500
- textarea element within the text area. @eventSemantics namespace:native,@vegaVersion 2.0.0
3595
+ * Native-namespace mirror of `vegaBlur`. Fired when the inner `<textarea>`
3596
+ element loses focus. Provided for compatibility with standard DOM event
3597
+ listeners. @eventDetail undefined — No payload; signals the blur occurrence only.,@eventSemantics namespace:native,@vegaVersion 2.0.0
3501
3598
  */
3502
3599
  blur: EventEmitter<CustomEvent<undefined>>;
3503
3600
  /**
3504
- * An event emitter notifying that the suffix button associated with the field label has been clicked. @vegaVersion 2.68.0
3601
+ * Fired when the suffix button configured via `labelSuffixButtonConfig` is
3602
+ clicked. Listen for this event to handle inline label actions such as
3603
+ opening a help dialog or toggling additional information. @eventDetail void,@vegaVersion 2.68.0
3505
3604
  */
3506
3605
  vegaLabelButtonClick: EventEmitter<CustomEvent<any>>;
3507
3606
  /**
3508
- * An event emitter notifying that the suffix button associated with the field label has been clicked. @eventSemantics namespace:native,@vegaVersion 2.68.0
3607
+ * Native-namespace mirror of `vegaLabelButtonClick`. Fired when the label
3608
+ suffix button is clicked. Provided for compatibility with standard DOM
3609
+ event listeners. @eventDetail void,@eventSemantics namespace:native,@vegaVersion 2.68.0
3509
3610
  */
3510
3611
  labelButtonClick: EventEmitter<CustomEvent<any>>;
3511
3612