@heartlandone/vega-angular 1.44.1 → 1.45.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/angular-component-lib/utils.mjs +28 -2
- package/dist/esm2020/lib/stencil-generated/components.mjs +40 -16
- package/dist/fesm2015/heartlandone-vega-angular.mjs +67 -18
- package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/heartlandone-vega-angular.mjs +67 -18
- 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 +14 -5
- package/dist/package.json +2 -2
- package/package.json +2 -2
- package/src/lib/stencil-generated/angular-component-lib/utils.ts +30 -1
- package/src/lib/stencil-generated/components.ts +31 -11
|
@@ -81,6 +81,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
81
81
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
82
82
|
|
|
83
83
|
/* eslint-disable */
|
|
84
|
+
/**
|
|
85
|
+
* ALL: all properties should skip the componentOnReady check
|
|
86
|
+
* Set<string>: only properties in the Set should skip the componentOnReady check
|
|
87
|
+
*/
|
|
88
|
+
const COMPONENT_ON_READY_IGNORE_MAP = new Map([
|
|
89
|
+
['VEGA-TABLE', 'ALL'],
|
|
90
|
+
['VEGA-TABLE-HEAD', 'ALL'],
|
|
91
|
+
['VEGA-TABLE-HEAD-ROW', 'ALL'],
|
|
92
|
+
['VEGA-TABLE-HEAD-CELL', 'ALL'],
|
|
93
|
+
['VEGA-TABLE-BODY', 'ALL'],
|
|
94
|
+
['VEGA-TABLE-ROW', 'ALL'],
|
|
95
|
+
['VEGA-TABLE-CELL', 'ALL'],
|
|
96
|
+
['VEGA-TABLE-EXPAND-ROW', 'ALL'],
|
|
97
|
+
]);
|
|
98
|
+
const shouldSkipComponentOnReady = (componentName, propName) => {
|
|
99
|
+
const props = COMPONENT_ON_READY_IGNORE_MAP.get(componentName);
|
|
100
|
+
if (!props)
|
|
101
|
+
return false;
|
|
102
|
+
return props === 'ALL' || props.has(propName);
|
|
103
|
+
};
|
|
84
104
|
const proxyInputs = (Cmp, inputs) => {
|
|
85
105
|
const Prototype = Cmp.prototype;
|
|
86
106
|
inputs.forEach(item => {
|
|
@@ -91,7 +111,13 @@ const proxyInputs = (Cmp, inputs) => {
|
|
|
91
111
|
set(val) {
|
|
92
112
|
// Link issues: https://gethired.atlassian.net/browse/GHUI-331
|
|
93
113
|
// add a beforehand checking to make sure value is only set when component is loaded
|
|
94
|
-
|
|
114
|
+
/*
|
|
115
|
+
* Update(2023/10/28): The value should be set directly, so that the initial value can be get in componentWillLoad.
|
|
116
|
+
* Link issue https://gethired.atlassian.net/browse/VD-1810
|
|
117
|
+
* We need to consider remove the componentOnReady
|
|
118
|
+
* https://github.com/ionic-team/stencil-ds-output-targets/blob/main/packages/angular-output-target/angular-component-lib/utils.ts#L13
|
|
119
|
+
*/
|
|
120
|
+
if (this.el.classList.contains('hydrated') || shouldSkipComponentOnReady(this.el.tagName, item)) {
|
|
95
121
|
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
96
122
|
}
|
|
97
123
|
else {
|
|
@@ -690,6 +716,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
690
716
|
inputs: ['alignment', 'caseSensitive', 'dynamicOption', 'isLoading', 'itemDisplayRule', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger', 'useDefaultFilter']
|
|
691
717
|
}]
|
|
692
718
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
719
|
+
let VegaFieldError = class VegaFieldError {
|
|
720
|
+
constructor(c, r, z) {
|
|
721
|
+
this.z = z;
|
|
722
|
+
c.detach();
|
|
723
|
+
this.el = r.nativeElement;
|
|
724
|
+
}
|
|
725
|
+
};
|
|
726
|
+
VegaFieldError.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaFieldError, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
727
|
+
VegaFieldError.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaFieldError, selector: "vega-field-error", inputs: { message: "message" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
728
|
+
VegaFieldError = __decorate([
|
|
729
|
+
ProxyCmp({
|
|
730
|
+
defineCustomElementFn: undefined,
|
|
731
|
+
inputs: ['message']
|
|
732
|
+
})
|
|
733
|
+
], VegaFieldError);
|
|
734
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaFieldError, decorators: [{
|
|
735
|
+
type: Component,
|
|
736
|
+
args: [{
|
|
737
|
+
selector: 'vega-field-error',
|
|
738
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
739
|
+
template: '<ng-content></ng-content>',
|
|
740
|
+
inputs: ['message']
|
|
741
|
+
}]
|
|
742
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
693
743
|
let VegaFieldLabel = class VegaFieldLabel {
|
|
694
744
|
constructor(c, r, z) {
|
|
695
745
|
this.z = z;
|
|
@@ -873,7 +923,7 @@ VegaImageUploader = __decorate([
|
|
|
873
923
|
ProxyCmp({
|
|
874
924
|
defineCustomElementFn: undefined,
|
|
875
925
|
inputs: ['accept', 'autoValidation', 'disabled', 'isValid', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value'],
|
|
876
|
-
methods: ['valid']
|
|
926
|
+
methods: ['valid', 'getContentURL']
|
|
877
927
|
})
|
|
878
928
|
], VegaImageUploader);
|
|
879
929
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaImageUploader, decorators: [{
|
|
@@ -1619,11 +1669,11 @@ let VegaTableExpandRow = class VegaTableExpandRow {
|
|
|
1619
1669
|
}
|
|
1620
1670
|
};
|
|
1621
1671
|
VegaTableExpandRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableExpandRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1622
|
-
VegaTableExpandRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTableExpandRow, selector: "vega-table-expand-row", inputs: {
|
|
1672
|
+
VegaTableExpandRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTableExpandRow, selector: "vega-table-expand-row", inputs: { rowKey: "rowKey" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1623
1673
|
VegaTableExpandRow = __decorate([
|
|
1624
1674
|
ProxyCmp({
|
|
1625
1675
|
defineCustomElementFn: undefined,
|
|
1626
|
-
inputs: ['
|
|
1676
|
+
inputs: ['rowKey']
|
|
1627
1677
|
})
|
|
1628
1678
|
], VegaTableExpandRow);
|
|
1629
1679
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableExpandRow, decorators: [{
|
|
@@ -1632,7 +1682,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1632
1682
|
selector: 'vega-table-expand-row',
|
|
1633
1683
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1634
1684
|
template: '<ng-content></ng-content>',
|
|
1635
|
-
inputs: ['
|
|
1685
|
+
inputs: ['rowKey']
|
|
1636
1686
|
}]
|
|
1637
1687
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1638
1688
|
let VegaTableHead = class VegaTableHead {
|
|
@@ -1643,11 +1693,10 @@ let VegaTableHead = class VegaTableHead {
|
|
|
1643
1693
|
}
|
|
1644
1694
|
};
|
|
1645
1695
|
VegaTableHead.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableHead, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1646
|
-
VegaTableHead.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTableHead, selector: "vega-table-head",
|
|
1696
|
+
VegaTableHead.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTableHead, selector: "vega-table-head", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1647
1697
|
VegaTableHead = __decorate([
|
|
1648
1698
|
ProxyCmp({
|
|
1649
|
-
defineCustomElementFn: undefined
|
|
1650
|
-
inputs: ['fixed']
|
|
1699
|
+
defineCustomElementFn: undefined
|
|
1651
1700
|
})
|
|
1652
1701
|
], VegaTableHead);
|
|
1653
1702
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableHead, decorators: [{
|
|
@@ -1655,8 +1704,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1655
1704
|
args: [{
|
|
1656
1705
|
selector: 'vega-table-head',
|
|
1657
1706
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1658
|
-
template: '<ng-content></ng-content>'
|
|
1659
|
-
inputs: ['fixed']
|
|
1707
|
+
template: '<ng-content></ng-content>'
|
|
1660
1708
|
}]
|
|
1661
1709
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1662
1710
|
let VegaTableHeadCell = class VegaTableHeadCell {
|
|
@@ -1692,11 +1740,11 @@ let VegaTableHeadRow = class VegaTableHeadRow {
|
|
|
1692
1740
|
}
|
|
1693
1741
|
};
|
|
1694
1742
|
VegaTableHeadRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableHeadRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1695
|
-
VegaTableHeadRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTableHeadRow, selector: "vega-table-head-row", inputs: {
|
|
1743
|
+
VegaTableHeadRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTableHeadRow, selector: "vega-table-head-row", inputs: { hideSelectAll: "hideSelectAll", selectAllDisabled: "selectAllDisabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1696
1744
|
VegaTableHeadRow = __decorate([
|
|
1697
1745
|
ProxyCmp({
|
|
1698
1746
|
defineCustomElementFn: undefined,
|
|
1699
|
-
inputs: ['
|
|
1747
|
+
inputs: ['hideSelectAll', 'selectAllDisabled']
|
|
1700
1748
|
})
|
|
1701
1749
|
], VegaTableHeadRow);
|
|
1702
1750
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableHeadRow, decorators: [{
|
|
@@ -1705,7 +1753,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1705
1753
|
selector: 'vega-table-head-row',
|
|
1706
1754
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1707
1755
|
template: '<ng-content></ng-content>',
|
|
1708
|
-
inputs: ['
|
|
1756
|
+
inputs: ['hideSelectAll', 'selectAllDisabled']
|
|
1709
1757
|
}]
|
|
1710
1758
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1711
1759
|
let VegaTableRow = class VegaTableRow {
|
|
@@ -1717,11 +1765,11 @@ let VegaTableRow = class VegaTableRow {
|
|
|
1717
1765
|
}
|
|
1718
1766
|
};
|
|
1719
1767
|
VegaTableRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1720
|
-
VegaTableRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTableRow, selector: "vega-table-row", inputs: {
|
|
1768
|
+
VegaTableRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTableRow, selector: "vega-table-row", inputs: { rowKey: "rowKey" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1721
1769
|
VegaTableRow = __decorate([
|
|
1722
1770
|
ProxyCmp({
|
|
1723
1771
|
defineCustomElementFn: undefined,
|
|
1724
|
-
inputs: ['
|
|
1772
|
+
inputs: ['rowKey']
|
|
1725
1773
|
})
|
|
1726
1774
|
], VegaTableRow);
|
|
1727
1775
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableRow, decorators: [{
|
|
@@ -1730,7 +1778,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1730
1778
|
selector: 'vega-table-row',
|
|
1731
1779
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1732
1780
|
template: '<ng-content></ng-content>',
|
|
1733
|
-
inputs: ['
|
|
1781
|
+
inputs: ['rowKey']
|
|
1734
1782
|
}]
|
|
1735
1783
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1736
1784
|
let VegaText = class VegaText {
|
|
@@ -1906,6 +1954,7 @@ var VegaComponents = [
|
|
|
1906
1954
|
VegaDatePicker,
|
|
1907
1955
|
VegaDialog,
|
|
1908
1956
|
VegaDropdown,
|
|
1957
|
+
VegaFieldError,
|
|
1909
1958
|
VegaFieldLabel,
|
|
1910
1959
|
VegaFlex,
|
|
1911
1960
|
VegaFooter,
|
|
@@ -1970,7 +2019,7 @@ class VegaComponentModule {
|
|
|
1970
2019
|
}
|
|
1971
2020
|
}
|
|
1972
2021
|
VegaComponentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1973
|
-
VegaComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, declarations: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBadge, VegaBanner, VegaBarChart, VegaBox, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonLink, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaColorPicker, VegaComboBox, VegaCounterBadge, VegaDatePicker, VegaDialog, VegaDropdown, VegaFieldLabel, VegaFlex, VegaFooter, VegaForm, VegaGrid, VegaHeader, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaOption, VegaPageNotification, VegaPagination, VegaPieChart, VegaPopover, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaToggleSwitch, VegaTooltip, VegaVirtualScroll, TextValueAccessor, ValueAccessor], exports: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBadge, VegaBanner, VegaBarChart, VegaBox, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonLink, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaColorPicker, VegaComboBox, VegaCounterBadge, VegaDatePicker, VegaDialog, VegaDropdown, VegaFieldLabel, VegaFlex, VegaFooter, VegaForm, VegaGrid, VegaHeader, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaOption, VegaPageNotification, VegaPagination, VegaPieChart, VegaPopover, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaToggleSwitch, VegaTooltip, VegaVirtualScroll, TextValueAccessor, ValueAccessor] });
|
|
2022
|
+
VegaComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, declarations: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBadge, VegaBanner, VegaBarChart, VegaBox, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonLink, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaColorPicker, VegaComboBox, VegaCounterBadge, VegaDatePicker, VegaDialog, VegaDropdown, VegaFieldError, VegaFieldLabel, VegaFlex, VegaFooter, VegaForm, VegaGrid, VegaHeader, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaOption, VegaPageNotification, VegaPagination, VegaPieChart, VegaPopover, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaToggleSwitch, VegaTooltip, VegaVirtualScroll, TextValueAccessor, ValueAccessor], exports: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBadge, VegaBanner, VegaBarChart, VegaBox, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonLink, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaColorPicker, VegaComboBox, VegaCounterBadge, VegaDatePicker, VegaDialog, VegaDropdown, VegaFieldError, VegaFieldLabel, VegaFlex, VegaFooter, VegaForm, VegaGrid, VegaHeader, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaOption, VegaPageNotification, VegaPagination, VegaPieChart, VegaPopover, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaToggleSwitch, VegaTooltip, VegaVirtualScroll, TextValueAccessor, ValueAccessor] });
|
|
1974
2023
|
VegaComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, imports: [[]] });
|
|
1975
2024
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, decorators: [{
|
|
1976
2025
|
type: NgModule,
|
|
@@ -1989,5 +2038,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1989
2038
|
* Generated bundle index. Do not edit.
|
|
1990
2039
|
*/
|
|
1991
2040
|
|
|
1992
|
-
export { TextValueAccessor, ValueAccessor, VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBadge, VegaBanner, VegaBarChart, VegaBox, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonLink, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaColorPicker, VegaComboBox, VegaComponentModule, VegaCounterBadge, VegaDatePicker, VegaDialog, VegaDropdown, VegaFieldLabel, VegaFlex, VegaFooter, VegaForm, VegaGrid, VegaHeader, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaOption, VegaPageNotification, VegaPagination, VegaPieChart, VegaPopover, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaToggleSwitch, VegaTooltip, VegaVirtualScroll };
|
|
2041
|
+
export { TextValueAccessor, ValueAccessor, VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBadge, VegaBanner, VegaBarChart, VegaBox, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonLink, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaColorPicker, VegaComboBox, VegaComponentModule, VegaCounterBadge, VegaDatePicker, VegaDialog, VegaDropdown, VegaFieldError, VegaFieldLabel, VegaFlex, VegaFooter, VegaForm, VegaGrid, VegaHeader, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaOption, VegaPageNotification, VegaPagination, VegaPieChart, VegaPopover, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaToggleSwitch, VegaTooltip, VegaVirtualScroll };
|
|
1993
2042
|
//# sourceMappingURL=heartlandone-vega-angular.mjs.map
|