@heartlandone/vega-angular 2.77.1 → 2.79.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.
- package/dist/esm2020/lib/components-module.mjs +2 -2
- package/dist/esm2020/lib/stencil-generated/components.mjs +90 -11
- package/dist/fesm2015/heartlandone-vega-angular.mjs +88 -12
- package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/heartlandone-vega-angular.mjs +88 -12
- package/dist/fesm2020/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/lib/components-module.d.ts +1 -1
- package/dist/lib/stencil-generated/components.d.ts +191 -42
- package/dist/package.json +2 -2
- package/package.json +2 -2
- package/src/lib/stencil-generated/components.ts +239 -45
- package/src/scripts/stencil-post-build-script.js +1 -0
|
@@ -1445,13 +1445,13 @@ export declare interface VegaGrid extends Components.VegaGrid {}
|
|
|
1445
1445
|
|
|
1446
1446
|
@ProxyCmp({
|
|
1447
1447
|
defineCustomElementFn: undefined,
|
|
1448
|
-
inputs: ['column', 'gap', 'row']
|
|
1448
|
+
inputs: ['column', 'gap', 'justifyItems', 'row']
|
|
1449
1449
|
})
|
|
1450
1450
|
@Component({
|
|
1451
1451
|
selector: 'vega-grid',
|
|
1452
1452
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1453
1453
|
template: '<ng-content></ng-content>',
|
|
1454
|
-
inputs: ['column', 'gap', 'row']
|
|
1454
|
+
inputs: ['column', 'gap', 'justifyItems', 'row']
|
|
1455
1455
|
})
|
|
1456
1456
|
export class VegaGrid {
|
|
1457
1457
|
protected el: HTMLElement;
|
|
@@ -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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
|
|
@@ -1614,14 +1680,14 @@ export declare interface VegaInput extends Components.VegaInput {
|
|
|
1614
1680
|
|
|
1615
1681
|
@ProxyCmp({
|
|
1616
1682
|
defineCustomElementFn: undefined,
|
|
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'],
|
|
1683
|
+
inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'hint', 'inputmode', 'isValid', 'label', 'labelSuffixButtonConfig', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'readOnly', 'required', 'showClearIcon', 'size', 'suggestionsDropdownSource', 'type', 'validationRules', 'value', 'valueUpdateTrigger'],
|
|
1618
1684
|
methods: ['doFocus', 'doBlur', 'showSuggestionsDropdown', 'hideSuggestionsDropdown']
|
|
1619
1685
|
})
|
|
1620
1686
|
@Component({
|
|
1621
1687
|
selector: 'vega-input',
|
|
1622
1688
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1623
1689
|
template: '<ng-content></ng-content>',
|
|
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']
|
|
1690
|
+
inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'hint', 'inputmode', 'isValid', 'label', 'labelSuffixButtonConfig', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'readOnly', 'required', 'showClearIcon', 'size', 'suggestionsDropdownSource', 'type', 'validationRules', 'value', 'valueUpdateTrigger']
|
|
1625
1691
|
})
|
|
1626
1692
|
export class VegaInput {
|
|
1627
1693
|
protected el: HTMLElement;
|
|
@@ -1683,11 +1749,17 @@ export class VegaInputCreditCard {
|
|
|
1683
1749
|
|
|
1684
1750
|
export declare interface VegaInputNumeric extends Components.VegaInputNumeric {
|
|
1685
1751
|
/**
|
|
1686
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
1719
|
-
|
|
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
|
-
*
|
|
1724
|
-
|
|
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
|
-
*
|
|
1729
|
-
|
|
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
|
-
*
|
|
1734
|
-
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
|
|
@@ -2694,6 +2787,96 @@ export class VegaRichTextLinkEditor {
|
|
|
2694
2787
|
}
|
|
2695
2788
|
}
|
|
2696
2789
|
|
|
2790
|
+
import type { RTETablePropertiesType as IVegaRichTextTablePropertiesRTETablePropertiesType } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/interface';
|
|
2791
|
+
export declare interface VegaRichTextTableProperties extends Components.VegaRichTextTableProperties {
|
|
2792
|
+
/**
|
|
2793
|
+
* @vegaVersion 2.79.0
|
|
2794
|
+
*/
|
|
2795
|
+
vegaChange: EventEmitter<CustomEvent<IVegaRichTextTablePropertiesRTETablePropertiesType>>;
|
|
2796
|
+
/**
|
|
2797
|
+
* @vegaVersion 2.79.0
|
|
2798
|
+
*/
|
|
2799
|
+
vegaCancel: EventEmitter<CustomEvent<IVegaRichTextTablePropertiesRTETablePropertiesType>>;
|
|
2800
|
+
/**
|
|
2801
|
+
* @vegaVersion 2.79.0
|
|
2802
|
+
*/
|
|
2803
|
+
vegaSave: EventEmitter<CustomEvent<unknown>>;
|
|
2804
|
+
|
|
2805
|
+
}
|
|
2806
|
+
|
|
2807
|
+
@ProxyCmp({
|
|
2808
|
+
defineCustomElementFn: undefined,
|
|
2809
|
+
inputs: ['colors', 'defaultValue', 'styleMap', 'type']
|
|
2810
|
+
})
|
|
2811
|
+
@Component({
|
|
2812
|
+
selector: 'vega-rich-text-table-properties',
|
|
2813
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2814
|
+
template: '<ng-content></ng-content>',
|
|
2815
|
+
inputs: ['colors', 'defaultValue', 'styleMap', 'type']
|
|
2816
|
+
})
|
|
2817
|
+
export class VegaRichTextTableProperties {
|
|
2818
|
+
protected el: HTMLElement;
|
|
2819
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2820
|
+
c.detach();
|
|
2821
|
+
this.el = r.nativeElement;
|
|
2822
|
+
proxyOutputs(this, this.el, ['vegaChange', 'vegaCancel', 'vegaSave']);
|
|
2823
|
+
}
|
|
2824
|
+
}
|
|
2825
|
+
|
|
2826
|
+
|
|
2827
|
+
export declare interface VegaRichTextTableSelectionWidget extends Components.VegaRichTextTableSelectionWidget {
|
|
2828
|
+
/**
|
|
2829
|
+
* An event emitter notifying a delete action on the widget. @vegaVersion 2.79.0
|
|
2830
|
+
*/
|
|
2831
|
+
vegaRemove: EventEmitter<CustomEvent<any>>;
|
|
2832
|
+
|
|
2833
|
+
}
|
|
2834
|
+
|
|
2835
|
+
@ProxyCmp({
|
|
2836
|
+
defineCustomElementFn: undefined
|
|
2837
|
+
})
|
|
2838
|
+
@Component({
|
|
2839
|
+
selector: 'vega-rich-text-table-selection-widget',
|
|
2840
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2841
|
+
template: '<ng-content></ng-content>'
|
|
2842
|
+
})
|
|
2843
|
+
export class VegaRichTextTableSelectionWidget {
|
|
2844
|
+
protected el: HTMLElement;
|
|
2845
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2846
|
+
c.detach();
|
|
2847
|
+
this.el = r.nativeElement;
|
|
2848
|
+
proxyOutputs(this, this.el, ['vegaRemove']);
|
|
2849
|
+
}
|
|
2850
|
+
}
|
|
2851
|
+
|
|
2852
|
+
|
|
2853
|
+
export declare interface VegaRichTextTableSetting extends Components.VegaRichTextTableSetting {
|
|
2854
|
+
/**
|
|
2855
|
+
* @vegaVersion 2.79.0
|
|
2856
|
+
*/
|
|
2857
|
+
vegaClick: EventEmitter<CustomEvent<Array<string>>>;
|
|
2858
|
+
|
|
2859
|
+
}
|
|
2860
|
+
|
|
2861
|
+
@ProxyCmp({
|
|
2862
|
+
defineCustomElementFn: undefined,
|
|
2863
|
+
inputs: ['hasCaption', 'selectedCells', 'target']
|
|
2864
|
+
})
|
|
2865
|
+
@Component({
|
|
2866
|
+
selector: 'vega-rich-text-table-setting',
|
|
2867
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2868
|
+
template: '<ng-content></ng-content>',
|
|
2869
|
+
inputs: ['hasCaption', 'selectedCells', 'target']
|
|
2870
|
+
})
|
|
2871
|
+
export class VegaRichTextTableSetting {
|
|
2872
|
+
protected el: HTMLElement;
|
|
2873
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2874
|
+
c.detach();
|
|
2875
|
+
this.el = r.nativeElement;
|
|
2876
|
+
proxyOutputs(this, this.el, ['vegaClick']);
|
|
2877
|
+
}
|
|
2878
|
+
}
|
|
2879
|
+
|
|
2697
2880
|
|
|
2698
2881
|
export declare interface VegaSectionTitle extends Components.VegaSectionTitle {}
|
|
2699
2882
|
|
|
@@ -3481,31 +3664,39 @@ export class VegaText {
|
|
|
3481
3664
|
|
|
3482
3665
|
export declare interface VegaTextarea extends Components.VegaTextarea {
|
|
3483
3666
|
/**
|
|
3484
|
-
*
|
|
3485
|
-
|
|
3667
|
+
* Fired whenever the text area value changes, whether by user input or
|
|
3668
|
+
programmatic update of the `value` property. This is the primary event
|
|
3669
|
+
for reacting to content changes and implementing two-way binding. @eventDetail string — The updated text area value.,@vegaVersion 1.11.0
|
|
3486
3670
|
*/
|
|
3487
3671
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
3488
3672
|
/**
|
|
3489
|
-
*
|
|
3490
|
-
|
|
3673
|
+
* Native-namespace mirror of `vegaChange`. Fired whenever the text area
|
|
3674
|
+
value changes. Provided for compatibility with standard DOM event
|
|
3675
|
+
listeners. @eventDetail string — The updated text area value.,@eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
3491
3676
|
*/
|
|
3492
3677
|
change: EventEmitter<CustomEvent<string>>;
|
|
3493
3678
|
/**
|
|
3494
|
-
*
|
|
3495
|
-
|
|
3679
|
+
* Fired when the inner `<textarea>` element loses focus (blur). Use this
|
|
3680
|
+
event to trigger validation or save actions when the user leaves the
|
|
3681
|
+
text area. @eventDetail undefined — No payload; signals the blur occurrence only.,@vegaVersion 1.11.0
|
|
3496
3682
|
*/
|
|
3497
3683
|
vegaBlur: EventEmitter<CustomEvent<undefined>>;
|
|
3498
3684
|
/**
|
|
3499
|
-
*
|
|
3500
|
-
|
|
3685
|
+
* Native-namespace mirror of `vegaBlur`. Fired when the inner `<textarea>`
|
|
3686
|
+
element loses focus. Provided for compatibility with standard DOM event
|
|
3687
|
+
listeners. @eventDetail undefined — No payload; signals the blur occurrence only.,@eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
3501
3688
|
*/
|
|
3502
3689
|
blur: EventEmitter<CustomEvent<undefined>>;
|
|
3503
3690
|
/**
|
|
3504
|
-
*
|
|
3691
|
+
* Fired when the suffix button configured via `labelSuffixButtonConfig` is
|
|
3692
|
+
clicked. Listen for this event to handle inline label actions such as
|
|
3693
|
+
opening a help dialog or toggling additional information. @eventDetail void,@vegaVersion 2.68.0
|
|
3505
3694
|
*/
|
|
3506
3695
|
vegaLabelButtonClick: EventEmitter<CustomEvent<any>>;
|
|
3507
3696
|
/**
|
|
3508
|
-
*
|
|
3697
|
+
* Native-namespace mirror of `vegaLabelButtonClick`. Fired when the label
|
|
3698
|
+
suffix button is clicked. Provided for compatibility with standard DOM
|
|
3699
|
+
event listeners. @eventDetail void,@eventSemantics namespace:native,@vegaVersion 2.68.0
|
|
3509
3700
|
*/
|
|
3510
3701
|
labelButtonClick: EventEmitter<CustomEvent<any>>;
|
|
3511
3702
|
|
|
@@ -3545,13 +3736,13 @@ export declare interface VegaTimePicker extends Components.VegaTimePicker {
|
|
|
3545
3736
|
|
|
3546
3737
|
@ProxyCmp({
|
|
3547
3738
|
defineCustomElementFn: undefined,
|
|
3548
|
-
inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'required', 'size', 'timeFormat', 'validationRules', 'value']
|
|
3739
|
+
inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'readOnly', 'required', 'size', 'timeFormat', 'validationRules', 'value']
|
|
3549
3740
|
})
|
|
3550
3741
|
@Component({
|
|
3551
3742
|
selector: 'vega-time-picker',
|
|
3552
3743
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3553
3744
|
template: '<ng-content></ng-content>',
|
|
3554
|
-
inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'required', 'size', 'timeFormat', 'validationRules', 'value']
|
|
3745
|
+
inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'readOnly', 'required', 'size', 'timeFormat', 'validationRules', 'value']
|
|
3555
3746
|
})
|
|
3556
3747
|
export class VegaTimePicker {
|
|
3557
3748
|
protected el: HTMLElement;
|
|
@@ -3758,6 +3949,9 @@ export default [
|
|
|
3758
3949
|
VegaRichTextEditorToolbarButton,
|
|
3759
3950
|
VegaRichTextImageEditor,
|
|
3760
3951
|
VegaRichTextLinkEditor,
|
|
3952
|
+
VegaRichTextTableProperties,
|
|
3953
|
+
VegaRichTextTableSelectionWidget,
|
|
3954
|
+
VegaRichTextTableSetting,
|
|
3761
3955
|
VegaSectionTitle,
|
|
3762
3956
|
VegaSegmentControl,
|
|
3763
3957
|
VegaSelectionChip,
|
|
@@ -54,6 +54,7 @@ function resolveEventPayloadImportPath(componentsContent) {
|
|
|
54
54
|
['VegaFileUploaderFile', 'vega-file-uploader/types'],
|
|
55
55
|
['VegaDropdownSearchTriggerEventDetail', 'vega-dropdown/types'],
|
|
56
56
|
['VegaRTEContentBlock', 'vega-rich-text-editor/interface'],
|
|
57
|
+
['RTETablePropertiesType', 'vega-rich-text-editor/interface'],
|
|
57
58
|
['VegaRichTextLinkEditorChangeDetail', 'vega-rich-text-editor/vega-rich-text-link-editor/types'],
|
|
58
59
|
['VegaRichTextImageEditorChangeDetail', 'vega-rich-text-editor/vega-rich-text-image-editor/types'],
|
|
59
60
|
['VegaRichTextEditorImage', 'vega-rich-text-editor/interface'],
|