@heartlandone/vega-angular 1.30.0 → 1.32.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 +12 -2
- package/dist/esm2020/lib/stencil-generated/components.mjs +138 -4
- package/dist/fesm2015/heartlandone-vega-angular.mjs +144 -5
- package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/heartlandone-vega-angular.mjs +144 -5
- package/dist/fesm2020/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/lib/components-module.d.ts +2 -1
- package/dist/lib/stencil-generated/components.d.ts +55 -2
- package/dist/package.json +4 -3
- package/ng-package.json +2 -1
- package/package.json +4 -3
- package/src/lib/components-module.ts +11 -1
- package/src/lib/stencil-generated/components.ts +128 -2
|
@@ -4,6 +4,8 @@ import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
|
4
4
|
import { __decorate } from 'tslib';
|
|
5
5
|
import { fromEvent } from 'rxjs';
|
|
6
6
|
import { defineCustomElements } from '@heartlandone/vega/loader';
|
|
7
|
+
import { ResizeObserver } from '@juggle/resize-observer';
|
|
8
|
+
import { FeatureFlag } from '@heartlandone/vega';
|
|
7
9
|
|
|
8
10
|
class ValueAccessor {
|
|
9
11
|
constructor(el) {
|
|
@@ -936,6 +938,130 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
936
938
|
inputs: ['isError', 'isToggled', 'itemToggleStatusMap']
|
|
937
939
|
}]
|
|
938
940
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
941
|
+
let VegaLeftNav = class VegaLeftNav {
|
|
942
|
+
constructor(c, r, z) {
|
|
943
|
+
this.z = z;
|
|
944
|
+
c.detach();
|
|
945
|
+
this.el = r.nativeElement;
|
|
946
|
+
proxyOutputs(this, this.el, ['vegaStateUpdate']);
|
|
947
|
+
}
|
|
948
|
+
};
|
|
949
|
+
VegaLeftNav.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNav, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
950
|
+
VegaLeftNav.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaLeftNav, selector: "vega-left-nav", inputs: { footnote: "footnote", headerConfig: "headerConfig", source: "source" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
951
|
+
VegaLeftNav = __decorate([
|
|
952
|
+
ProxyCmp({
|
|
953
|
+
defineCustomElementFn: undefined,
|
|
954
|
+
inputs: ['footnote', 'headerConfig', 'source'],
|
|
955
|
+
methods: ['toggle']
|
|
956
|
+
})
|
|
957
|
+
], VegaLeftNav);
|
|
958
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNav, decorators: [{
|
|
959
|
+
type: Component,
|
|
960
|
+
args: [{
|
|
961
|
+
selector: 'vega-left-nav',
|
|
962
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
963
|
+
template: '<ng-content></ng-content>',
|
|
964
|
+
inputs: ['footnote', 'headerConfig', 'source']
|
|
965
|
+
}]
|
|
966
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
967
|
+
let VegaLeftNavGroup = class VegaLeftNavGroup {
|
|
968
|
+
constructor(c, r, z) {
|
|
969
|
+
this.z = z;
|
|
970
|
+
c.detach();
|
|
971
|
+
this.el = r.nativeElement;
|
|
972
|
+
}
|
|
973
|
+
};
|
|
974
|
+
VegaLeftNavGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNavGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
975
|
+
VegaLeftNavGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaLeftNavGroup, selector: "vega-left-nav-group", inputs: { icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
976
|
+
VegaLeftNavGroup = __decorate([
|
|
977
|
+
ProxyCmp({
|
|
978
|
+
defineCustomElementFn: undefined,
|
|
979
|
+
inputs: ['icon', 'label']
|
|
980
|
+
})
|
|
981
|
+
], VegaLeftNavGroup);
|
|
982
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNavGroup, decorators: [{
|
|
983
|
+
type: Component,
|
|
984
|
+
args: [{
|
|
985
|
+
selector: 'vega-left-nav-group',
|
|
986
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
987
|
+
template: '<ng-content></ng-content>',
|
|
988
|
+
inputs: ['icon', 'label']
|
|
989
|
+
}]
|
|
990
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
991
|
+
let VegaLeftNavLink = class VegaLeftNavLink {
|
|
992
|
+
constructor(c, r, z) {
|
|
993
|
+
this.z = z;
|
|
994
|
+
c.detach();
|
|
995
|
+
this.el = r.nativeElement;
|
|
996
|
+
proxyOutputs(this, this.el, ['vegaMenuClick']);
|
|
997
|
+
}
|
|
998
|
+
};
|
|
999
|
+
VegaLeftNavLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNavLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1000
|
+
VegaLeftNavLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaLeftNavLink, selector: "vega-left-nav-link", inputs: { counterBadge: "counterBadge", icon: "icon", selected: "selected", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1001
|
+
VegaLeftNavLink = __decorate([
|
|
1002
|
+
ProxyCmp({
|
|
1003
|
+
defineCustomElementFn: undefined,
|
|
1004
|
+
inputs: ['counterBadge', 'icon', 'selected', 'url']
|
|
1005
|
+
})
|
|
1006
|
+
], VegaLeftNavLink);
|
|
1007
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNavLink, decorators: [{
|
|
1008
|
+
type: Component,
|
|
1009
|
+
args: [{
|
|
1010
|
+
selector: 'vega-left-nav-link',
|
|
1011
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1012
|
+
template: '<ng-content></ng-content>',
|
|
1013
|
+
inputs: ['counterBadge', 'icon', 'selected', 'url']
|
|
1014
|
+
}]
|
|
1015
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1016
|
+
let VegaLeftNavSection = class VegaLeftNavSection {
|
|
1017
|
+
constructor(c, r, z) {
|
|
1018
|
+
this.z = z;
|
|
1019
|
+
c.detach();
|
|
1020
|
+
this.el = r.nativeElement;
|
|
1021
|
+
}
|
|
1022
|
+
};
|
|
1023
|
+
VegaLeftNavSection.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNavSection, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1024
|
+
VegaLeftNavSection.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaLeftNavSection, selector: "vega-left-nav-section", inputs: { sectionHeader: "sectionHeader" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1025
|
+
VegaLeftNavSection = __decorate([
|
|
1026
|
+
ProxyCmp({
|
|
1027
|
+
defineCustomElementFn: undefined,
|
|
1028
|
+
inputs: ['sectionHeader']
|
|
1029
|
+
})
|
|
1030
|
+
], VegaLeftNavSection);
|
|
1031
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNavSection, decorators: [{
|
|
1032
|
+
type: Component,
|
|
1033
|
+
args: [{
|
|
1034
|
+
selector: 'vega-left-nav-section',
|
|
1035
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1036
|
+
template: '<ng-content></ng-content>',
|
|
1037
|
+
inputs: ['sectionHeader']
|
|
1038
|
+
}]
|
|
1039
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1040
|
+
let VegaLineChart = class VegaLineChart {
|
|
1041
|
+
constructor(c, r, z) {
|
|
1042
|
+
this.z = z;
|
|
1043
|
+
c.detach();
|
|
1044
|
+
this.el = r.nativeElement;
|
|
1045
|
+
}
|
|
1046
|
+
};
|
|
1047
|
+
VegaLineChart.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLineChart, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1048
|
+
VegaLineChart.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaLineChart, selector: "vega-line-chart", inputs: { options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1049
|
+
VegaLineChart = __decorate([
|
|
1050
|
+
ProxyCmp({
|
|
1051
|
+
defineCustomElementFn: undefined,
|
|
1052
|
+
inputs: ['options'],
|
|
1053
|
+
methods: ['reRender']
|
|
1054
|
+
})
|
|
1055
|
+
], VegaLineChart);
|
|
1056
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLineChart, decorators: [{
|
|
1057
|
+
type: Component,
|
|
1058
|
+
args: [{
|
|
1059
|
+
selector: 'vega-line-chart',
|
|
1060
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1061
|
+
template: '<ng-content></ng-content>',
|
|
1062
|
+
inputs: ['options']
|
|
1063
|
+
}]
|
|
1064
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
939
1065
|
let VegaLoadingIndicator = class VegaLoadingIndicator {
|
|
940
1066
|
constructor(c, r, z) {
|
|
941
1067
|
this.z = z;
|
|
@@ -1247,11 +1373,11 @@ let VegaStepper = class VegaStepper {
|
|
|
1247
1373
|
}
|
|
1248
1374
|
};
|
|
1249
1375
|
VegaStepper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1250
|
-
VegaStepper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaStepper, selector: "vega-stepper", inputs: { autoValidation: "autoValidation", buttonVariant: "buttonVariant", disabled: "disabled", formValidation: "formValidation", inputEditable: "inputEditable", isValid: "isValid", label: "label", max: "max", min: "min", stepperId: "stepperId", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1376
|
+
VegaStepper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaStepper, selector: "vega-stepper", inputs: { autoValidation: "autoValidation", buttonVariant: "buttonVariant", disabled: "disabled", formValidation: "formValidation", inputDisabled: "inputDisabled", inputEditable: "inputEditable", isValid: "isValid", label: "label", max: "max", min: "min", stepperId: "stepperId", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1251
1377
|
VegaStepper = __decorate([
|
|
1252
1378
|
ProxyCmp({
|
|
1253
1379
|
defineCustomElementFn: undefined,
|
|
1254
|
-
inputs: ['autoValidation', 'buttonVariant', 'disabled', 'formValidation', 'inputEditable', 'isValid', 'label', 'max', 'min', 'stepperId', 'value'],
|
|
1380
|
+
inputs: ['autoValidation', 'buttonVariant', 'disabled', 'formValidation', 'inputDisabled', 'inputEditable', 'isValid', 'label', 'max', 'min', 'stepperId', 'value'],
|
|
1255
1381
|
methods: ['valid']
|
|
1256
1382
|
})
|
|
1257
1383
|
], VegaStepper);
|
|
@@ -1261,7 +1387,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1261
1387
|
selector: 'vega-stepper',
|
|
1262
1388
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1263
1389
|
template: '<ng-content></ng-content>',
|
|
1264
|
-
inputs: ['autoValidation', 'buttonVariant', 'disabled', 'formValidation', 'inputEditable', 'isValid', 'label', 'max', 'min', 'stepperId', 'value']
|
|
1390
|
+
inputs: ['autoValidation', 'buttonVariant', 'disabled', 'formValidation', 'inputDisabled', 'inputEditable', 'isValid', 'label', 'max', 'min', 'stepperId', 'value']
|
|
1265
1391
|
}]
|
|
1266
1392
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1267
1393
|
let VegaTabGroup = class VegaTabGroup {
|
|
@@ -1522,6 +1648,11 @@ var VegaComponents = [
|
|
|
1522
1648
|
VegaInputCreditCard,
|
|
1523
1649
|
VegaInputSelect,
|
|
1524
1650
|
VegaItemToggle,
|
|
1651
|
+
VegaLeftNav,
|
|
1652
|
+
VegaLeftNavGroup,
|
|
1653
|
+
VegaLeftNavLink,
|
|
1654
|
+
VegaLeftNavSection,
|
|
1655
|
+
VegaLineChart,
|
|
1525
1656
|
VegaLoadingIndicator,
|
|
1526
1657
|
VegaModal,
|
|
1527
1658
|
VegaOption,
|
|
@@ -1548,11 +1679,19 @@ var VegaComponents = [
|
|
|
1548
1679
|
|
|
1549
1680
|
class VegaComponentModule {
|
|
1550
1681
|
constructor() {
|
|
1682
|
+
this.useJuggleResizeObserver();
|
|
1551
1683
|
defineCustomElements(window).then();
|
|
1552
1684
|
}
|
|
1685
|
+
useJuggleResizeObserver() {
|
|
1686
|
+
if (FeatureFlag.isEnabled('VEGA_ANGULAR.USE_JUGGLE_RESIZE_OBSERVER')) {
|
|
1687
|
+
Object.assign(window, {
|
|
1688
|
+
'VegaResizeObserver': ResizeObserver
|
|
1689
|
+
});
|
|
1690
|
+
}
|
|
1691
|
+
}
|
|
1553
1692
|
}
|
|
1554
1693
|
VegaComponentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1555
|
-
VegaComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, declarations: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBadge, VegaBanner, VegaBox, 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, VegaLoadingIndicator, VegaModal, VegaOption, VegaPageNotification, VegaPagination, VegaPopover, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaText, VegaTextarea, VegaTimePicker, VegaToggleSwitch, VegaTooltip, VegaVirtualScroll, TextValueAccessor, ValueAccessor], exports: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBadge, VegaBanner, VegaBox, 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, VegaLoadingIndicator, VegaModal, VegaOption, VegaPageNotification, VegaPagination, VegaPopover, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaText, VegaTextarea, VegaTimePicker, VegaToggleSwitch, VegaTooltip, VegaVirtualScroll, TextValueAccessor, ValueAccessor] });
|
|
1694
|
+
VegaComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, declarations: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBadge, VegaBanner, VegaBox, 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, VegaOption, VegaPageNotification, VegaPagination, VegaPopover, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaText, VegaTextarea, VegaTimePicker, VegaToggleSwitch, VegaTooltip, VegaVirtualScroll, TextValueAccessor, ValueAccessor], exports: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBadge, VegaBanner, VegaBox, 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, VegaOption, VegaPageNotification, VegaPagination, VegaPopover, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaText, VegaTextarea, VegaTimePicker, VegaToggleSwitch, VegaTooltip, VegaVirtualScroll, TextValueAccessor, ValueAccessor] });
|
|
1556
1695
|
VegaComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, imports: [[]] });
|
|
1557
1696
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, decorators: [{
|
|
1558
1697
|
type: NgModule,
|
|
@@ -1571,5 +1710,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1571
1710
|
* Generated bundle index. Do not edit.
|
|
1572
1711
|
*/
|
|
1573
1712
|
|
|
1574
|
-
export { TextValueAccessor, ValueAccessor, VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBadge, VegaBanner, VegaBox, 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, VegaLoadingIndicator, VegaModal, VegaOption, VegaPageNotification, VegaPagination, VegaPopover, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaText, VegaTextarea, VegaTimePicker, VegaToggleSwitch, VegaTooltip, VegaVirtualScroll };
|
|
1713
|
+
export { TextValueAccessor, ValueAccessor, VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBadge, VegaBanner, VegaBox, 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, VegaOption, VegaPageNotification, VegaPagination, VegaPopover, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaText, VegaTextarea, VegaTimePicker, VegaToggleSwitch, VegaTooltip, VegaVirtualScroll };
|
|
1575
1714
|
//# sourceMappingURL=heartlandone-vega-angular.mjs.map
|