@heartlandone/vega-angular 2.80.0 → 2.82.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 +58 -31
- package/dist/esm2020/lib/stencil-generated/value-accessor.mjs +3 -2
- package/dist/fesm2015/heartlandone-vega-angular.mjs +60 -33
- package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/heartlandone-vega-angular.mjs +60 -33
- 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 +28 -11
- package/dist/package.json +2 -2
- package/package.json +2 -2
- package/src/lib/stencil-generated/components.ts +53 -20
- package/src/lib/stencil-generated/value-accessor.ts +3 -2
|
@@ -22,7 +22,8 @@ class ValueAccessor {
|
|
|
22
22
|
}
|
|
23
23
|
handleChangeEvent(value, semantics) {
|
|
24
24
|
if (VegaEventManager.getSemantics(this.el.nativeElement).namespace === semantics) {
|
|
25
|
-
|
|
25
|
+
const isNumberCompare = typeof value === 'number' || typeof this.lastValue === 'number';
|
|
26
|
+
if (isNumberCompare ? String(value) !== String(this.lastValue) : value !== this.lastValue) {
|
|
26
27
|
this.lastValue = value;
|
|
27
28
|
this.onChange(value);
|
|
28
29
|
}
|
|
@@ -375,11 +376,11 @@ let VegaBreadcrumb = class VegaBreadcrumb {
|
|
|
375
376
|
}
|
|
376
377
|
};
|
|
377
378
|
VegaBreadcrumb.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
378
|
-
VegaBreadcrumb.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaBreadcrumb, selector: "vega-breadcrumb", inputs: { compactOnMobile: "compactOnMobile", items: "items", maxItems: "maxItems" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
379
|
+
VegaBreadcrumb.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaBreadcrumb, selector: "vega-breadcrumb", inputs: { compactOnMobile: "compactOnMobile", items: "items", lastItemClickable: "lastItemClickable", maxItems: "maxItems" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
379
380
|
VegaBreadcrumb = __decorate([
|
|
380
381
|
ProxyCmp({
|
|
381
382
|
defineCustomElementFn: undefined,
|
|
382
|
-
inputs: ['compactOnMobile', 'items', 'maxItems']
|
|
383
|
+
inputs: ['compactOnMobile', 'items', 'lastItemClickable', 'maxItems']
|
|
383
384
|
})
|
|
384
385
|
], VegaBreadcrumb);
|
|
385
386
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaBreadcrumb, decorators: [{
|
|
@@ -388,7 +389,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
388
389
|
selector: 'vega-breadcrumb',
|
|
389
390
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
390
391
|
template: '<ng-content></ng-content>',
|
|
391
|
-
inputs: ['compactOnMobile', 'items', 'maxItems']
|
|
392
|
+
inputs: ['compactOnMobile', 'items', 'lastItemClickable', 'maxItems']
|
|
392
393
|
}]
|
|
393
394
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
394
395
|
let VegaButton = class VegaButton {
|
|
@@ -720,11 +721,11 @@ let VegaChip = class VegaChip {
|
|
|
720
721
|
}
|
|
721
722
|
};
|
|
722
723
|
VegaChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
723
|
-
VegaChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaChip, selector: "vega-chip", inputs: { bgColor: "bgColor", chipType: "chipType", clickable: "clickable", icon: "icon", iconAlign: "iconAlign", showCloseIcon: "showCloseIcon", size: "size", statusColor: "statusColor", text: "text", textColor: "textColor", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
724
|
+
VegaChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaChip, selector: "vega-chip", inputs: { bgColor: "bgColor", chipType: "chipType", clickable: "clickable", icon: "icon", iconAlign: "iconAlign", iconColor: "iconColor", showCloseIcon: "showCloseIcon", size: "size", statusColor: "statusColor", text: "text", textColor: "textColor", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
724
725
|
VegaChip = __decorate([
|
|
725
726
|
ProxyCmp({
|
|
726
727
|
defineCustomElementFn: undefined,
|
|
727
|
-
inputs: ['bgColor', 'chipType', 'clickable', 'icon', 'iconAlign', 'showCloseIcon', 'size', 'statusColor', 'text', 'textColor', 'variant']
|
|
728
|
+
inputs: ['bgColor', 'chipType', 'clickable', 'icon', 'iconAlign', 'iconColor', 'showCloseIcon', 'size', 'statusColor', 'text', 'textColor', 'variant']
|
|
728
729
|
})
|
|
729
730
|
], VegaChip);
|
|
730
731
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaChip, decorators: [{
|
|
@@ -733,7 +734,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
733
734
|
selector: 'vega-chip',
|
|
734
735
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
735
736
|
template: '<ng-content></ng-content>',
|
|
736
|
-
inputs: ['bgColor', 'chipType', 'clickable', 'icon', 'iconAlign', 'showCloseIcon', 'size', 'statusColor', 'text', 'textColor', 'variant']
|
|
737
|
+
inputs: ['bgColor', 'chipType', 'clickable', 'icon', 'iconAlign', 'iconColor', 'showCloseIcon', 'size', 'statusColor', 'text', 'textColor', 'variant']
|
|
737
738
|
}]
|
|
738
739
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
739
740
|
let VegaCodeBlock = class VegaCodeBlock {
|
|
@@ -771,11 +772,11 @@ let VegaColorPicker = class VegaColorPicker {
|
|
|
771
772
|
}
|
|
772
773
|
};
|
|
773
774
|
VegaColorPicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaColorPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
774
|
-
VegaColorPicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaColorPicker, selector: "vega-color-picker", inputs: { autoValidation: "autoValidation", colors: "colors", disabled: "disabled", hint: "hint", isInline: "isInline", isValid: "isValid", label: "label", required: "required", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
775
|
+
VegaColorPicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaColorPicker, selector: "vega-color-picker", inputs: { autoValidation: "autoValidation", colors: "colors", columns: "columns", disabled: "disabled", hint: "hint", isInline: "isInline", isValid: "isValid", label: "label", required: "required", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
775
776
|
VegaColorPicker = __decorate([
|
|
776
777
|
ProxyCmp({
|
|
777
778
|
defineCustomElementFn: undefined,
|
|
778
|
-
inputs: ['autoValidation', 'colors', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'required', 'validationRules', 'value']
|
|
779
|
+
inputs: ['autoValidation', 'colors', 'columns', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'required', 'validationRules', 'value']
|
|
779
780
|
})
|
|
780
781
|
], VegaColorPicker);
|
|
781
782
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaColorPicker, decorators: [{
|
|
@@ -784,7 +785,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
784
785
|
selector: 'vega-color-picker',
|
|
785
786
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
786
787
|
template: '<ng-content></ng-content>',
|
|
787
|
-
inputs: ['autoValidation', 'colors', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'required', 'validationRules', 'value']
|
|
788
|
+
inputs: ['autoValidation', 'colors', 'columns', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'required', 'validationRules', 'value']
|
|
789
|
+
}]
|
|
790
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
791
|
+
let VegaColorSwatch = class VegaColorSwatch {
|
|
792
|
+
constructor(c, r, z) {
|
|
793
|
+
this.z = z;
|
|
794
|
+
c.detach();
|
|
795
|
+
this.el = r.nativeElement;
|
|
796
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
797
|
+
}
|
|
798
|
+
};
|
|
799
|
+
VegaColorSwatch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaColorSwatch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
800
|
+
VegaColorSwatch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaColorSwatch, selector: "vega-color-swatch", inputs: { color: "color", disabled: "disabled", label: "label", selected: "selected", shape: "shape", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
801
|
+
VegaColorSwatch = __decorate([
|
|
802
|
+
ProxyCmp({
|
|
803
|
+
defineCustomElementFn: undefined,
|
|
804
|
+
inputs: ['color', 'disabled', 'label', 'selected', 'shape', 'size', 'variant']
|
|
805
|
+
})
|
|
806
|
+
], VegaColorSwatch);
|
|
807
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaColorSwatch, decorators: [{
|
|
808
|
+
type: Component,
|
|
809
|
+
args: [{
|
|
810
|
+
selector: 'vega-color-swatch',
|
|
811
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
812
|
+
template: '<ng-content></ng-content>',
|
|
813
|
+
inputs: ['color', 'disabled', 'label', 'selected', 'shape', 'size', 'variant']
|
|
788
814
|
}]
|
|
789
815
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
790
816
|
let VegaComboBox = class VegaComboBox {
|
|
@@ -872,11 +898,11 @@ let VegaDatePickerCalendar = class VegaDatePickerCalendar {
|
|
|
872
898
|
}
|
|
873
899
|
};
|
|
874
900
|
VegaDatePickerCalendar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDatePickerCalendar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
875
|
-
VegaDatePickerCalendar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaDatePickerCalendar, selector: "vega-date-picker-calendar", inputs: { clearButton: "clearButton", dateIndicator: "dateIndicator", format: "format", isDateDisabled: "isDateDisabled", maxDate: "maxDate", minDate: "minDate", mode: "mode", selection: "selection", showYearMonthDropdowns: "showYearMonthDropdowns", size: "size", staticHeight: "staticHeight", timezone: "timezone", yearMonthDropdownProps: "yearMonthDropdownProps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
901
|
+
VegaDatePickerCalendar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaDatePickerCalendar, selector: "vega-date-picker-calendar", inputs: { clearButton: "clearButton", dateIndicator: "dateIndicator", dualMonths: "dualMonths", format: "format", isDateDisabled: "isDateDisabled", maxDate: "maxDate", minDate: "minDate", mode: "mode", selection: "selection", showYearMonthDropdowns: "showYearMonthDropdowns", size: "size", staticHeight: "staticHeight", timezone: "timezone", yearMonthDropdownProps: "yearMonthDropdownProps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
876
902
|
VegaDatePickerCalendar = __decorate([
|
|
877
903
|
ProxyCmp({
|
|
878
904
|
defineCustomElementFn: undefined,
|
|
879
|
-
inputs: ['clearButton', 'dateIndicator', 'format', 'isDateDisabled', 'maxDate', 'minDate', 'mode', 'selection', 'showYearMonthDropdowns', 'size', 'staticHeight', 'timezone', 'yearMonthDropdownProps'],
|
|
905
|
+
inputs: ['clearButton', 'dateIndicator', 'dualMonths', 'format', 'isDateDisabled', 'maxDate', 'minDate', 'mode', 'selection', 'showYearMonthDropdowns', 'size', 'staticHeight', 'timezone', 'yearMonthDropdownProps'],
|
|
880
906
|
methods: ['reset', 'triggerRepick']
|
|
881
907
|
})
|
|
882
908
|
], VegaDatePickerCalendar);
|
|
@@ -886,7 +912,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
886
912
|
selector: 'vega-date-picker-calendar',
|
|
887
913
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
888
914
|
template: '<ng-content></ng-content>',
|
|
889
|
-
inputs: ['clearButton', 'dateIndicator', 'format', 'isDateDisabled', 'maxDate', 'minDate', 'mode', 'selection', 'showYearMonthDropdowns', 'size', 'staticHeight', 'timezone', 'yearMonthDropdownProps']
|
|
915
|
+
inputs: ['clearButton', 'dateIndicator', 'dualMonths', 'format', 'isDateDisabled', 'maxDate', 'minDate', 'mode', 'selection', 'showYearMonthDropdowns', 'size', 'staticHeight', 'timezone', 'yearMonthDropdownProps']
|
|
890
916
|
}]
|
|
891
917
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
892
918
|
let VegaDialog = class VegaDialog {
|
|
@@ -946,11 +972,11 @@ let VegaDropdown = class VegaDropdown {
|
|
|
946
972
|
}
|
|
947
973
|
};
|
|
948
974
|
VegaDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
949
|
-
VegaDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaDropdown, selector: "vega-dropdown", inputs: { alignment: "alignment", caseSensitive: "caseSensitive", dynamicOption: "dynamicOption", isLazyLoading: "isLazyLoading", isLoading: "isLoading", isScreenPosition: "isScreenPosition", itemDisplayRule: "itemDisplayRule", matchContainerHeight: "matchContainerHeight", matchTargetWidth: "matchTargetWidth", maxHeight: "maxHeight", maxWidth: "maxWidth", minWidth: "minWidth", placement: "placement", positionRelativeTo: "positionRelativeTo", prefixIconSlot: "prefixIconSlot", preserveValueIfNotInSource: "preserveValueIfNotInSource", resettable: "resettable", searchNoResultsText: "searchNoResultsText", searchTriggerBy: "searchTriggerBy", searchable: "searchable", selectType: "selectType", selectedSourceKey: "selectedSourceKey", size: "size", source: "source", translocation: "translocation", trigger: "trigger", useDefaultFilter: "useDefaultFilter", virtualizationThreshold: "virtualizationThreshold" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
975
|
+
VegaDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaDropdown, selector: "vega-dropdown", inputs: { alignment: "alignment", caseSensitive: "caseSensitive", dynamicOption: "dynamicOption", isLazyLoading: "isLazyLoading", isLoading: "isLoading", isScreenPosition: "isScreenPosition", itemDisplayRule: "itemDisplayRule", itemTooltipProps: "itemTooltipProps", matchContainerHeight: "matchContainerHeight", matchTargetWidth: "matchTargetWidth", maxHeight: "maxHeight", maxWidth: "maxWidth", minWidth: "minWidth", placement: "placement", positionRelativeTo: "positionRelativeTo", prefixIconSlot: "prefixIconSlot", preserveValueIfNotInSource: "preserveValueIfNotInSource", resettable: "resettable", searchNoResultsText: "searchNoResultsText", searchTriggerBy: "searchTriggerBy", searchable: "searchable", selectType: "selectType", selectedSourceKey: "selectedSourceKey", size: "size", source: "source", translocation: "translocation", trigger: "trigger", useDefaultFilter: "useDefaultFilter", virtualizationThreshold: "virtualizationThreshold" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
950
976
|
VegaDropdown = __decorate([
|
|
951
977
|
ProxyCmp({
|
|
952
978
|
defineCustomElementFn: undefined,
|
|
953
|
-
inputs: ['alignment', 'caseSensitive', 'dynamicOption', 'isLazyLoading', 'isLoading', 'isScreenPosition', 'itemDisplayRule', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'prefixIconSlot', 'preserveValueIfNotInSource', 'resettable', 'searchNoResultsText', 'searchTriggerBy', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger', 'useDefaultFilter', 'virtualizationThreshold'],
|
|
979
|
+
inputs: ['alignment', 'caseSensitive', 'dynamicOption', 'isLazyLoading', 'isLoading', 'isScreenPosition', 'itemDisplayRule', 'itemTooltipProps', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'prefixIconSlot', 'preserveValueIfNotInSource', 'resettable', 'searchNoResultsText', 'searchTriggerBy', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger', 'useDefaultFilter', 'virtualizationThreshold'],
|
|
954
980
|
methods: ['show', 'hide', 'search', 'clearSelection', 'getSelection', 'setSelection']
|
|
955
981
|
})
|
|
956
982
|
], VegaDropdown);
|
|
@@ -960,7 +986,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
960
986
|
selector: 'vega-dropdown',
|
|
961
987
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
962
988
|
template: '<ng-content></ng-content>',
|
|
963
|
-
inputs: ['alignment', 'caseSensitive', 'dynamicOption', 'isLazyLoading', 'isLoading', 'isScreenPosition', 'itemDisplayRule', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'prefixIconSlot', 'preserveValueIfNotInSource', 'resettable', 'searchNoResultsText', 'searchTriggerBy', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger', 'useDefaultFilter', 'virtualizationThreshold']
|
|
989
|
+
inputs: ['alignment', 'caseSensitive', 'dynamicOption', 'isLazyLoading', 'isLoading', 'isScreenPosition', 'itemDisplayRule', 'itemTooltipProps', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'prefixIconSlot', 'preserveValueIfNotInSource', 'resettable', 'searchNoResultsText', 'searchTriggerBy', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger', 'useDefaultFilter', 'virtualizationThreshold']
|
|
964
990
|
}]
|
|
965
991
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
966
992
|
let VegaDropdownContentBox = class VegaDropdownContentBox {
|
|
@@ -1311,11 +1337,11 @@ let VegaInput = class VegaInput {
|
|
|
1311
1337
|
}
|
|
1312
1338
|
};
|
|
1313
1339
|
VegaInput.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1314
|
-
VegaInput.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaInput, selector: "vega-input", inputs: { 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", readOnly: "readOnly", required: "required", showClearIcon: "showClearIcon", size: "size", suggestionsDropdownSource: "suggestionsDropdownSource", type: "type", validationRules: "validationRules", value: "value", valueUpdateTrigger: "valueUpdateTrigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1340
|
+
VegaInput.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaInput, selector: "vega-input", inputs: { autoValidation: "autoValidation", autocomplete: "autocomplete", disableCopyPaste: "disableCopyPaste", disabled: "disabled", email: "email", enterkeyhint: "enterkeyhint", 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", readOnly: "readOnly", required: "required", showClearIcon: "showClearIcon", size: "size", suggestionsDropdownSource: "suggestionsDropdownSource", type: "type", validationRules: "validationRules", value: "value", valueUpdateTrigger: "valueUpdateTrigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1315
1341
|
VegaInput = __decorate([
|
|
1316
1342
|
ProxyCmp({
|
|
1317
1343
|
defineCustomElementFn: undefined,
|
|
1318
|
-
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'],
|
|
1344
|
+
inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'enterkeyhint', 'hint', 'inputmode', 'isValid', 'label', 'labelSuffixButtonConfig', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'readOnly', 'required', 'showClearIcon', 'size', 'suggestionsDropdownSource', 'type', 'validationRules', 'value', 'valueUpdateTrigger'],
|
|
1319
1345
|
methods: ['doFocus', 'doBlur', 'showSuggestionsDropdown', 'hideSuggestionsDropdown']
|
|
1320
1346
|
})
|
|
1321
1347
|
], VegaInput);
|
|
@@ -1325,7 +1351,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1325
1351
|
selector: 'vega-input',
|
|
1326
1352
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1327
1353
|
template: '<ng-content></ng-content>',
|
|
1328
|
-
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']
|
|
1354
|
+
inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'enterkeyhint', 'hint', 'inputmode', 'isValid', 'label', 'labelSuffixButtonConfig', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'readOnly', 'required', 'showClearIcon', 'size', 'suggestionsDropdownSource', 'type', 'validationRules', 'value', 'valueUpdateTrigger']
|
|
1329
1355
|
}]
|
|
1330
1356
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1331
1357
|
let VegaInputCreditCard = class VegaInputCreditCard {
|
|
@@ -1462,11 +1488,11 @@ let VegaInputSelect = class VegaInputSelect {
|
|
|
1462
1488
|
}
|
|
1463
1489
|
};
|
|
1464
1490
|
VegaInputSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1465
|
-
VegaInputSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaInputSelect, selector: "vega-input-select", inputs: { autoValidation: "autoValidation", disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", labelSuffixButtonConfig: "labelSuffixButtonConfig", placeholder: "placeholder", prefixIcon: "prefixIcon", required: "required", selectType: "selectType", selectedLabel: "selectedLabel", size: "size", source: "source", sourceLazyLoadCallback: "sourceLazyLoadCallback", validationRules: "validationRules", value: "value", vegaDropdownProps: "vegaDropdownProps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1491
|
+
VegaInputSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaInputSelect, selector: "vega-input-select", inputs: { autoValidation: "autoValidation", disabled: "disabled", dropdownItemTooltipProps: "dropdownItemTooltipProps", hint: "hint", isValid: "isValid", label: "label", labelSuffixButtonConfig: "labelSuffixButtonConfig", placeholder: "placeholder", prefixIcon: "prefixIcon", required: "required", selectType: "selectType", selectedLabel: "selectedLabel", selectedLabelTooltipProps: "selectedLabelTooltipProps", size: "size", source: "source", sourceLazyLoadCallback: "sourceLazyLoadCallback", validationRules: "validationRules", value: "value", vegaDropdownProps: "vegaDropdownProps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1466
1492
|
VegaInputSelect = __decorate([
|
|
1467
1493
|
ProxyCmp({
|
|
1468
1494
|
defineCustomElementFn: undefined,
|
|
1469
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps'],
|
|
1495
|
+
inputs: ['autoValidation', 'disabled', 'dropdownItemTooltipProps', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'selectedLabelTooltipProps', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps'],
|
|
1470
1496
|
methods: ['doClose', 'doOpen', 'doChange']
|
|
1471
1497
|
})
|
|
1472
1498
|
], VegaInputSelect);
|
|
@@ -1476,7 +1502,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1476
1502
|
selector: 'vega-input-select',
|
|
1477
1503
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1478
1504
|
template: '<ng-content></ng-content>',
|
|
1479
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps']
|
|
1505
|
+
inputs: ['autoValidation', 'disabled', 'dropdownItemTooltipProps', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'selectedLabelTooltipProps', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps']
|
|
1480
1506
|
}]
|
|
1481
1507
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1482
1508
|
let VegaItemToggle = class VegaItemToggle {
|
|
@@ -1685,11 +1711,11 @@ let VegaModal = class VegaModal {
|
|
|
1685
1711
|
}
|
|
1686
1712
|
};
|
|
1687
1713
|
VegaModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1688
|
-
VegaModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaModal, selector: "vega-modal", inputs: { animation: "animation", backdrop: "backdrop", backdropColor: "backdropColor", contentMaxHeight: "contentMaxHeight", handleClose: "handleClose", isVerticallyCenter: "isVerticallyCenter", isVerticallyCentered: "isVerticallyCentered", modalTitle: "modalTitle", open: "open", padding: "padding", showCloseButton: "showCloseButton", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1714
|
+
VegaModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaModal, selector: "vega-modal", inputs: { animation: "animation", backdrop: "backdrop", backdropColor: "backdropColor", contentMaxHeight: "contentMaxHeight", handleClose: "handleClose", height: "height", isVerticallyCenter: "isVerticallyCenter", isVerticallyCentered: "isVerticallyCentered", margin: "margin", modalTitle: "modalTitle", open: "open", padding: "padding", showCloseButton: "showCloseButton", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1689
1715
|
VegaModal = __decorate([
|
|
1690
1716
|
ProxyCmp({
|
|
1691
1717
|
defineCustomElementFn: undefined,
|
|
1692
|
-
inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'handleClose', 'isVerticallyCenter', 'isVerticallyCentered', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size'],
|
|
1718
|
+
inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'handleClose', 'height', 'isVerticallyCenter', 'isVerticallyCentered', 'margin', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size'],
|
|
1693
1719
|
methods: ['modal']
|
|
1694
1720
|
})
|
|
1695
1721
|
], VegaModal);
|
|
@@ -1699,7 +1725,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1699
1725
|
selector: 'vega-modal',
|
|
1700
1726
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1701
1727
|
template: '<ng-content></ng-content>',
|
|
1702
|
-
inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'handleClose', 'isVerticallyCenter', 'isVerticallyCentered', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size']
|
|
1728
|
+
inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'handleClose', 'height', 'isVerticallyCenter', 'isVerticallyCentered', 'margin', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size']
|
|
1703
1729
|
}]
|
|
1704
1730
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1705
1731
|
let VegaNavCard = class VegaNavCard {
|
|
@@ -1930,11 +1956,11 @@ let VegaProgressTracker = class VegaProgressTracker {
|
|
|
1930
1956
|
}
|
|
1931
1957
|
};
|
|
1932
1958
|
VegaProgressTracker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaProgressTracker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1933
|
-
VegaProgressTracker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaProgressTracker, selector: "vega-progress-tracker", inputs: { canClickStep: "canClickStep", completedStepArray: "completedStepArray", completedSteps: "completedSteps", current: "current", direction: "direction", steps: "steps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1959
|
+
VegaProgressTracker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaProgressTracker, selector: "vega-progress-tracker", inputs: { allowNoCurrentStep: "allowNoCurrentStep", canClickStep: "canClickStep", completedStepArray: "completedStepArray", completedSteps: "completedSteps", current: "current", direction: "direction", steps: "steps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1934
1960
|
VegaProgressTracker = __decorate([
|
|
1935
1961
|
ProxyCmp({
|
|
1936
1962
|
defineCustomElementFn: undefined,
|
|
1937
|
-
inputs: ['canClickStep', 'completedStepArray', 'completedSteps', 'current', 'direction', 'steps'],
|
|
1963
|
+
inputs: ['allowNoCurrentStep', 'canClickStep', 'completedStepArray', 'completedSteps', 'current', 'direction', 'steps'],
|
|
1938
1964
|
methods: ['nextStep', 'prevStep', 'setCurrent', 'getCurrent']
|
|
1939
1965
|
})
|
|
1940
1966
|
], VegaProgressTracker);
|
|
@@ -1944,7 +1970,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1944
1970
|
selector: 'vega-progress-tracker',
|
|
1945
1971
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1946
1972
|
template: '<ng-content></ng-content>',
|
|
1947
|
-
inputs: ['canClickStep', 'completedStepArray', 'completedSteps', 'current', 'direction', 'steps']
|
|
1973
|
+
inputs: ['allowNoCurrentStep', 'canClickStep', 'completedStepArray', 'completedSteps', 'current', 'direction', 'steps']
|
|
1948
1974
|
}]
|
|
1949
1975
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1950
1976
|
let VegaProgressTrackerStep = class VegaProgressTrackerStep {
|
|
@@ -2228,11 +2254,11 @@ let VegaSectionTitle = class VegaSectionTitle {
|
|
|
2228
2254
|
}
|
|
2229
2255
|
};
|
|
2230
2256
|
VegaSectionTitle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSectionTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2231
|
-
VegaSectionTitle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSectionTitle, selector: "vega-section-title", inputs: { description: "description", icon: "icon", iconAlign: "iconAlign", titleText: "titleText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2257
|
+
VegaSectionTitle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSectionTitle, selector: "vega-section-title", inputs: { description: "description", icon: "icon", iconAlign: "iconAlign", iconColor: "iconColor", size: "size", titleText: "titleText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2232
2258
|
VegaSectionTitle = __decorate([
|
|
2233
2259
|
ProxyCmp({
|
|
2234
2260
|
defineCustomElementFn: undefined,
|
|
2235
|
-
inputs: ['description', 'icon', 'iconAlign', 'titleText']
|
|
2261
|
+
inputs: ['description', 'icon', 'iconAlign', 'iconColor', 'size', 'titleText']
|
|
2236
2262
|
})
|
|
2237
2263
|
], VegaSectionTitle);
|
|
2238
2264
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSectionTitle, decorators: [{
|
|
@@ -2241,7 +2267,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
2241
2267
|
selector: 'vega-section-title',
|
|
2242
2268
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2243
2269
|
template: '<ng-content></ng-content>',
|
|
2244
|
-
inputs: ['description', 'icon', 'iconAlign', 'titleText']
|
|
2270
|
+
inputs: ['description', 'icon', 'iconAlign', 'iconColor', 'size', 'titleText']
|
|
2245
2271
|
}]
|
|
2246
2272
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2247
2273
|
let VegaSegmentControl = class VegaSegmentControl {
|
|
@@ -3070,6 +3096,7 @@ var VegaComponents = [
|
|
|
3070
3096
|
VegaChip,
|
|
3071
3097
|
VegaCodeBlock,
|
|
3072
3098
|
VegaColorPicker,
|
|
3099
|
+
VegaColorSwatch,
|
|
3073
3100
|
VegaComboBox,
|
|
3074
3101
|
VegaCounterBadge,
|
|
3075
3102
|
VegaDatePicker,
|
|
@@ -3179,7 +3206,7 @@ class VegaComponentModule {
|
|
|
3179
3206
|
}
|
|
3180
3207
|
}
|
|
3181
3208
|
VegaComponentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3182
|
-
VegaComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, declarations: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, VegaBanner, VegaBarChart, VegaBox, VegaBrandLogo, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonGroup, VegaButtonGroupItem, VegaButtonLink, VegaCalendar, VegaCalendarEvent, VegaCalendarEventPreview, VegaCalendarEventSlot, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaCodeBlock, VegaColorPicker, VegaComboBox, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDivider, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFileUploader, VegaFlagIcon, VegaFlex, VegaFont, VegaForm, VegaGrid, VegaHint, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputNumeric, VegaInputPasscode, VegaInputPhoneNumber, VegaInputRange, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPaginationPageSelectorMobile, VegaPaginationPageSizeSelectorMobile, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaProgressTrackerStep, VegaRadio, VegaRadioGroup, VegaRichTextContent, VegaRichTextEditor, VegaRichTextEditorToolbarButton, VegaRichTextImageEditor, VegaRichTextLinkEditor, VegaRichTextTableProperties, VegaRichTextTableSelectionWidget, VegaRichTextTableSetting, VegaSectionTitle, VegaSegmentControl, VegaSelectionChip, VegaSelectionChipGroup, VegaSelectionTile, VegaSelectionTileGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaSignatureCapture, VegaSkeleton, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableFoot, VegaTableFootCell, VegaTableFootRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll, TextValueAccessor, ValueAccessor], exports: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, VegaBanner, VegaBarChart, VegaBox, VegaBrandLogo, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonGroup, VegaButtonGroupItem, VegaButtonLink, VegaCalendar, VegaCalendarEvent, VegaCalendarEventPreview, VegaCalendarEventSlot, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaCodeBlock, VegaColorPicker, VegaComboBox, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDivider, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFileUploader, VegaFlagIcon, VegaFlex, VegaFont, VegaForm, VegaGrid, VegaHint, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputNumeric, VegaInputPasscode, VegaInputPhoneNumber, VegaInputRange, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPaginationPageSelectorMobile, VegaPaginationPageSizeSelectorMobile, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaProgressTrackerStep, VegaRadio, VegaRadioGroup, VegaRichTextContent, VegaRichTextEditor, VegaRichTextEditorToolbarButton, VegaRichTextImageEditor, VegaRichTextLinkEditor, VegaRichTextTableProperties, VegaRichTextTableSelectionWidget, VegaRichTextTableSetting, VegaSectionTitle, VegaSegmentControl, VegaSelectionChip, VegaSelectionChipGroup, VegaSelectionTile, VegaSelectionTileGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaSignatureCapture, VegaSkeleton, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableFoot, VegaTableFootCell, VegaTableFootRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll, TextValueAccessor, ValueAccessor] });
|
|
3209
|
+
VegaComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, declarations: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, VegaBanner, VegaBarChart, VegaBox, VegaBrandLogo, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonGroup, VegaButtonGroupItem, VegaButtonLink, VegaCalendar, VegaCalendarEvent, VegaCalendarEventPreview, VegaCalendarEventSlot, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaCodeBlock, VegaColorPicker, VegaColorSwatch, VegaComboBox, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDivider, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFileUploader, VegaFlagIcon, VegaFlex, VegaFont, VegaForm, VegaGrid, VegaHint, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputNumeric, VegaInputPasscode, VegaInputPhoneNumber, VegaInputRange, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPaginationPageSelectorMobile, VegaPaginationPageSizeSelectorMobile, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaProgressTrackerStep, VegaRadio, VegaRadioGroup, VegaRichTextContent, VegaRichTextEditor, VegaRichTextEditorToolbarButton, VegaRichTextImageEditor, VegaRichTextLinkEditor, VegaRichTextTableProperties, VegaRichTextTableSelectionWidget, VegaRichTextTableSetting, VegaSectionTitle, VegaSegmentControl, VegaSelectionChip, VegaSelectionChipGroup, VegaSelectionTile, VegaSelectionTileGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaSignatureCapture, VegaSkeleton, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableFoot, VegaTableFootCell, VegaTableFootRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll, TextValueAccessor, ValueAccessor], exports: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, VegaBanner, VegaBarChart, VegaBox, VegaBrandLogo, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonGroup, VegaButtonGroupItem, VegaButtonLink, VegaCalendar, VegaCalendarEvent, VegaCalendarEventPreview, VegaCalendarEventSlot, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaCodeBlock, VegaColorPicker, VegaColorSwatch, VegaComboBox, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDivider, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFileUploader, VegaFlagIcon, VegaFlex, VegaFont, VegaForm, VegaGrid, VegaHint, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputNumeric, VegaInputPasscode, VegaInputPhoneNumber, VegaInputRange, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPaginationPageSelectorMobile, VegaPaginationPageSizeSelectorMobile, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaProgressTrackerStep, VegaRadio, VegaRadioGroup, VegaRichTextContent, VegaRichTextEditor, VegaRichTextEditorToolbarButton, VegaRichTextImageEditor, VegaRichTextLinkEditor, VegaRichTextTableProperties, VegaRichTextTableSelectionWidget, VegaRichTextTableSetting, VegaSectionTitle, VegaSegmentControl, VegaSelectionChip, VegaSelectionChipGroup, VegaSelectionTile, VegaSelectionTileGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaSignatureCapture, VegaSkeleton, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableFoot, VegaTableFootCell, VegaTableFootRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll, TextValueAccessor, ValueAccessor] });
|
|
3183
3210
|
VegaComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, imports: [[]] });
|
|
3184
3211
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, decorators: [{
|
|
3185
3212
|
type: NgModule,
|
|
@@ -3198,5 +3225,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
3198
3225
|
* Generated bundle index. Do not edit.
|
|
3199
3226
|
*/
|
|
3200
3227
|
|
|
3201
|
-
export { TextValueAccessor, ValueAccessor, VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, VegaBanner, VegaBarChart, VegaBox, VegaBrandLogo, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonGroup, VegaButtonGroupItem, VegaButtonLink, VegaCalendar, VegaCalendarEvent, VegaCalendarEventPreview, VegaCalendarEventSlot, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaCodeBlock, VegaColorPicker, VegaComboBox, VegaComponentModule, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDivider, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFileUploader, VegaFlagIcon, VegaFlex, VegaFont, VegaForm, VegaGrid, VegaHint, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputNumeric, VegaInputPasscode, VegaInputPhoneNumber, VegaInputRange, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPaginationPageSelectorMobile, VegaPaginationPageSizeSelectorMobile, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaProgressTrackerStep, VegaRadio, VegaRadioGroup, VegaRichTextContent, VegaRichTextEditor, VegaRichTextEditorToolbarButton, VegaRichTextImageEditor, VegaRichTextLinkEditor, VegaRichTextTableProperties, VegaRichTextTableSelectionWidget, VegaRichTextTableSetting, VegaSectionTitle, VegaSegmentControl, VegaSelectionChip, VegaSelectionChipGroup, VegaSelectionTile, VegaSelectionTileGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaSignatureCapture, VegaSkeleton, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableFoot, VegaTableFootCell, VegaTableFootRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll };
|
|
3228
|
+
export { TextValueAccessor, ValueAccessor, VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, VegaBanner, VegaBarChart, VegaBox, VegaBrandLogo, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonGroup, VegaButtonGroupItem, VegaButtonLink, VegaCalendar, VegaCalendarEvent, VegaCalendarEventPreview, VegaCalendarEventSlot, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaCodeBlock, VegaColorPicker, VegaColorSwatch, VegaComboBox, VegaComponentModule, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDivider, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFileUploader, VegaFlagIcon, VegaFlex, VegaFont, VegaForm, VegaGrid, VegaHint, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputNumeric, VegaInputPasscode, VegaInputPhoneNumber, VegaInputRange, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPaginationPageSelectorMobile, VegaPaginationPageSizeSelectorMobile, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaProgressTrackerStep, VegaRadio, VegaRadioGroup, VegaRichTextContent, VegaRichTextEditor, VegaRichTextEditorToolbarButton, VegaRichTextImageEditor, VegaRichTextLinkEditor, VegaRichTextTableProperties, VegaRichTextTableSelectionWidget, VegaRichTextTableSetting, VegaSectionTitle, VegaSegmentControl, VegaSelectionChip, VegaSelectionChipGroup, VegaSelectionTile, VegaSelectionTileGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaSignatureCapture, VegaSkeleton, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableFoot, VegaTableFootCell, VegaTableFootRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll };
|
|
3202
3229
|
//# sourceMappingURL=heartlandone-vega-angular.mjs.map
|