@unovis/angular 1.6.0-pre.2 → 1.6.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/lib/bundles/unovis-angular.umd.js +301 -16
- package/dist/lib/bundles/unovis-angular.umd.js.map +1 -1
- package/dist/lib/components/brush/brush.component.d.ts +1 -1
- package/dist/lib/components/crosshair/crosshair.component.d.ts +21 -8
- package/dist/lib/components/graph/graph.component.d.ts +9 -1
- package/dist/lib/components/nested-donut/nested-donut.component.d.ts +1 -1
- package/dist/lib/components/plotband/plotband.component.d.ts +81 -0
- package/dist/lib/components/plotband/plotband.module.d.ts +7 -0
- package/dist/lib/components/plotline/plotline.component.d.ts +87 -0
- package/dist/lib/components/plotline/plotline.module.d.ts +7 -0
- package/dist/lib/components/timeline/timeline.component.d.ts +60 -15
- package/dist/lib/components.d.ts +6 -0
- package/dist/lib/esm2015/components/brush/brush.component.js +1 -1
- package/dist/lib/esm2015/components/crosshair/crosshair.component.js +8 -4
- package/dist/lib/esm2015/components/graph/graph.component.js +8 -4
- package/dist/lib/esm2015/components/nested-donut/nested-donut.component.js +1 -1
- package/dist/lib/esm2015/components/plotband/plotband.component.js +61 -0
- package/dist/lib/esm2015/components/plotband/plotband.module.js +18 -0
- package/dist/lib/esm2015/components/plotline/plotline.component.js +63 -0
- package/dist/lib/esm2015/components/plotline/plotline.module.js +18 -0
- package/dist/lib/esm2015/components/timeline/timeline.component.js +53 -11
- package/dist/lib/esm2015/components.js +7 -1
- package/dist/lib/esm2015/html-components/rolling-pin-legend/rolling-pin-legend.component.js +48 -0
- package/dist/lib/esm2015/html-components/rolling-pin-legend/rolling-pin-legend.module.js +18 -0
- package/dist/lib/fesm2015/unovis-angular.js +273 -18
- package/dist/lib/fesm2015/unovis-angular.js.map +1 -1
- package/dist/lib/html-components/rolling-pin-legend/rolling-pin-legend.component.d.ts +24 -0
- package/dist/lib/html-components/rolling-pin-legend/rolling-pin-legend.module.d.ts +7 -0
- package/dist/lib/package.json +2 -2
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { Component, Input, ViewChild, ContentChildren, ContentChild, NgModule } from '@angular/core';
|
|
3
|
-
import { Tooltip, Annotations, Direction, XYContainer, Crosshair, Axis, SingleContainer, Area, Brush, ChordDiagram, Donut, FreeBrush, Graph, GroupedBar, Line, NestedDonut, Sankey, Scatter, StackedBar, Timeline, XYLabels, TopoJSONMap, LeafletMap, LeafletFlowMap, BulletLegend } from '@unovis/ts';
|
|
3
|
+
import { Tooltip, Annotations, Direction, XYContainer, Crosshair, Axis, SingleContainer, Area, Brush, ChordDiagram, Donut, FreeBrush, Graph, GroupedBar, Line, NestedDonut, Plotline, Sankey, Scatter, StackedBar, Timeline, XYLabels, TopoJSONMap, Plotband, LeafletMap, LeafletFlowMap, BulletLegend, RollingPinLegend } from '@unovis/ts';
|
|
4
4
|
|
|
5
5
|
class VisGenericComponent {
|
|
6
6
|
}
|
|
@@ -786,8 +786,8 @@ class VisCrosshairComponent {
|
|
|
786
786
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
787
787
|
}
|
|
788
788
|
getConfig() {
|
|
789
|
-
const { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, strokeColor, strokeWidth, yStacked, baseline, tooltip, template, hideWhenFarFromPointer, hideWhenFarFromPointerDistance, snapToData, getCircles } = this;
|
|
790
|
-
const config = { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, strokeColor, strokeWidth, yStacked, baseline, tooltip, template, hideWhenFarFromPointer, hideWhenFarFromPointerDistance, snapToData, getCircles };
|
|
789
|
+
const { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, strokeColor, strokeWidth, yStacked, baseline, tooltip, template, hideWhenFarFromPointer, hideWhenFarFromPointerDistance, snapToData, getCircles, onCrosshairMove, forceShowAt } = this;
|
|
790
|
+
const config = { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, strokeColor, strokeWidth, yStacked, baseline, tooltip, template, hideWhenFarFromPointer, hideWhenFarFromPointerDistance, snapToData, getCircles, onCrosshairMove, forceShowAt };
|
|
791
791
|
const keys = Object.keys(config);
|
|
792
792
|
keys.forEach(key => { if (config[key] === undefined)
|
|
793
793
|
delete config[key]; });
|
|
@@ -795,7 +795,7 @@ class VisCrosshairComponent {
|
|
|
795
795
|
}
|
|
796
796
|
}
|
|
797
797
|
VisCrosshairComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisCrosshairComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
798
|
-
VisCrosshairComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisCrosshairComponent, selector: "vis-crosshair", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", strokeColor: "strokeColor", strokeWidth: "strokeWidth", yStacked: "yStacked", baseline: "baseline", tooltip: "tooltip", template: "template", hideWhenFarFromPointer: "hideWhenFarFromPointer", hideWhenFarFromPointerDistance: "hideWhenFarFromPointerDistance", snapToData: "snapToData", getCircles: "getCircles", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisCrosshairComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
798
|
+
VisCrosshairComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisCrosshairComponent, selector: "vis-crosshair", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", strokeColor: "strokeColor", strokeWidth: "strokeWidth", yStacked: "yStacked", baseline: "baseline", tooltip: "tooltip", template: "template", hideWhenFarFromPointer: "hideWhenFarFromPointer", hideWhenFarFromPointerDistance: "hideWhenFarFromPointerDistance", snapToData: "snapToData", getCircles: "getCircles", onCrosshairMove: "onCrosshairMove", forceShowAt: "forceShowAt", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisCrosshairComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
799
799
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisCrosshairComponent, decorators: [{
|
|
800
800
|
type: Component,
|
|
801
801
|
args: [{
|
|
@@ -844,6 +844,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
844
844
|
type: Input
|
|
845
845
|
}], getCircles: [{
|
|
846
846
|
type: Input
|
|
847
|
+
}], onCrosshairMove: [{
|
|
848
|
+
type: Input
|
|
849
|
+
}], forceShowAt: [{
|
|
850
|
+
type: Input
|
|
847
851
|
}], data: [{
|
|
848
852
|
type: Input
|
|
849
853
|
}] } });
|
|
@@ -1060,8 +1064,8 @@ class VisGraphComponent {
|
|
|
1060
1064
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1061
1065
|
}
|
|
1062
1066
|
getConfig() {
|
|
1063
|
-
const { duration, events, attributes, zoomScaleExtent, disableZoom, zoomEventFilter, disableDrag, disableBrush, zoomThrottledUpdateNodeThreshold, fitViewPadding, fitViewAlign, layoutType, layoutAutofit, layoutAutofitTolerance, layoutNonConnectedAside, layoutNodeGroup, layoutGroupOrder, layoutParallelNodesPerColumn, layoutParallelNodeSubGroup, layoutParallelSubGroupsPerRow, layoutParallelGroupSpacing, layoutParallelSortConnectionsByGroup, forceLayoutSettings, dagreLayoutSettings, layoutElkSettings, layoutElkNodeGroups, layoutElkGetNodeShape, linkWidth, linkStyle, linkBandWidth, linkArrow, linkStroke, linkDisabled, linkFlow, linkFlowAnimDuration, linkFlowParticleSize, linkFlowParticleSpeed, linkLabel, linkLabelShiftFromCenter, linkNeighborSpacing, linkCurvature, linkHighlightOnHover, linkSourcePointOffset, linkTargetPointOffset, selectedLinkId, nodeSize, nodeStrokeWidth, nodeShape, nodeGaugeValue, nodeGaugeFill, nodeGaugeAnimDuration, nodeIcon, nodeIconSize, nodeLabel, nodeLabelTrim, nodeLabelTrimMode, nodeLabelTrimLength, nodeSubLabel, nodeSubLabelTrim, nodeSubLabelTrimMode, nodeSubLabelTrimLength, nodeSideLabels, nodeBottomIcon, nodeDisabled, nodeFill, nodeStroke, nodeSort, nodeEnterPosition, nodeEnterScale, nodeExitPosition, nodeExitScale, nodeEnterCustomRenderFunction, nodeUpdateCustomRenderFunction, nodePartialUpdateCustomRenderFunction, nodeExitCustomRenderFunction, nodeOnZoomCustomRenderFunction, nodeSelectionHighlightMode, selectedNodeId, selectedNodeIds, panels, onNodeDragStart, onNodeDrag, onNodeDragEnd, onZoom, onZoomStart, onZoomEnd, onLayoutCalculated, onNodeSelectionBrush, onNodeSelectionDrag, onRenderComplete, shouldDataUpdate } = this;
|
|
1064
|
-
const config = { duration, events, attributes, zoomScaleExtent, disableZoom, zoomEventFilter, disableDrag, disableBrush, zoomThrottledUpdateNodeThreshold, fitViewPadding, fitViewAlign, layoutType, layoutAutofit, layoutAutofitTolerance, layoutNonConnectedAside, layoutNodeGroup, layoutGroupOrder, layoutParallelNodesPerColumn, layoutParallelNodeSubGroup, layoutParallelSubGroupsPerRow, layoutParallelGroupSpacing, layoutParallelSortConnectionsByGroup, forceLayoutSettings, dagreLayoutSettings, layoutElkSettings, layoutElkNodeGroups, layoutElkGetNodeShape, linkWidth, linkStyle, linkBandWidth, linkArrow, linkStroke, linkDisabled, linkFlow, linkFlowAnimDuration, linkFlowParticleSize, linkFlowParticleSpeed, linkLabel, linkLabelShiftFromCenter, linkNeighborSpacing, linkCurvature, linkHighlightOnHover, linkSourcePointOffset, linkTargetPointOffset, selectedLinkId, nodeSize, nodeStrokeWidth, nodeShape, nodeGaugeValue, nodeGaugeFill, nodeGaugeAnimDuration, nodeIcon, nodeIconSize, nodeLabel, nodeLabelTrim, nodeLabelTrimMode, nodeLabelTrimLength, nodeSubLabel, nodeSubLabelTrim, nodeSubLabelTrimMode, nodeSubLabelTrimLength, nodeSideLabels, nodeBottomIcon, nodeDisabled, nodeFill, nodeStroke, nodeSort, nodeEnterPosition, nodeEnterScale, nodeExitPosition, nodeExitScale, nodeEnterCustomRenderFunction, nodeUpdateCustomRenderFunction, nodePartialUpdateCustomRenderFunction, nodeExitCustomRenderFunction, nodeOnZoomCustomRenderFunction, nodeSelectionHighlightMode, selectedNodeId, selectedNodeIds, panels, onNodeDragStart, onNodeDrag, onNodeDragEnd, onZoom, onZoomStart, onZoomEnd, onLayoutCalculated, onNodeSelectionBrush, onNodeSelectionDrag, onRenderComplete, shouldDataUpdate };
|
|
1067
|
+
const { duration, events, attributes, zoomScaleExtent, disableZoom, zoomEventFilter, disableDrag, disableBrush, zoomThrottledUpdateNodeThreshold, fitViewPadding, fitViewAlign, layoutType, layoutAutofit, layoutAutofitTolerance, layoutNonConnectedAside, layoutNodeGroup, layoutGroupOrder, layoutParallelNodesPerColumn, layoutParallelNodeSubGroup, layoutParallelSubGroupsPerRow, layoutParallelNodeSpacing, layoutParallelSubGroupSpacing, layoutParallelGroupSpacing, layoutParallelSortConnectionsByGroup, forceLayoutSettings, dagreLayoutSettings, layoutElkSettings, layoutElkNodeGroups, layoutElkGetNodeShape, linkWidth, linkStyle, linkBandWidth, linkArrow, linkStroke, linkDisabled, linkFlow, linkFlowAnimDuration, linkFlowParticleSize, linkFlowParticleSpeed, linkLabel, linkLabelShiftFromCenter, linkNeighborSpacing, linkCurvature, linkHighlightOnHover, linkSourcePointOffset, linkTargetPointOffset, selectedLinkId, nodeSize, nodeStrokeWidth, nodeShape, nodeGaugeValue, nodeGaugeFill, nodeGaugeAnimDuration, nodeIcon, nodeIconSize, nodeLabel, nodeLabelTrim, nodeLabelTrimMode, nodeLabelTrimLength, nodeSubLabel, nodeSubLabelTrim, nodeSubLabelTrimMode, nodeSubLabelTrimLength, nodeSideLabels, nodeBottomIcon, nodeDisabled, nodeFill, nodeStroke, nodeSort, nodeEnterPosition, nodeEnterScale, nodeExitPosition, nodeExitScale, nodeEnterCustomRenderFunction, nodeUpdateCustomRenderFunction, nodePartialUpdateCustomRenderFunction, nodeExitCustomRenderFunction, nodeOnZoomCustomRenderFunction, nodeSelectionHighlightMode, selectedNodeId, selectedNodeIds, panels, onNodeDragStart, onNodeDrag, onNodeDragEnd, onZoom, onZoomStart, onZoomEnd, onLayoutCalculated, onNodeSelectionBrush, onNodeSelectionDrag, onRenderComplete, shouldDataUpdate } = this;
|
|
1068
|
+
const config = { duration, events, attributes, zoomScaleExtent, disableZoom, zoomEventFilter, disableDrag, disableBrush, zoomThrottledUpdateNodeThreshold, fitViewPadding, fitViewAlign, layoutType, layoutAutofit, layoutAutofitTolerance, layoutNonConnectedAside, layoutNodeGroup, layoutGroupOrder, layoutParallelNodesPerColumn, layoutParallelNodeSubGroup, layoutParallelSubGroupsPerRow, layoutParallelNodeSpacing, layoutParallelSubGroupSpacing, layoutParallelGroupSpacing, layoutParallelSortConnectionsByGroup, forceLayoutSettings, dagreLayoutSettings, layoutElkSettings, layoutElkNodeGroups, layoutElkGetNodeShape, linkWidth, linkStyle, linkBandWidth, linkArrow, linkStroke, linkDisabled, linkFlow, linkFlowAnimDuration, linkFlowParticleSize, linkFlowParticleSpeed, linkLabel, linkLabelShiftFromCenter, linkNeighborSpacing, linkCurvature, linkHighlightOnHover, linkSourcePointOffset, linkTargetPointOffset, selectedLinkId, nodeSize, nodeStrokeWidth, nodeShape, nodeGaugeValue, nodeGaugeFill, nodeGaugeAnimDuration, nodeIcon, nodeIconSize, nodeLabel, nodeLabelTrim, nodeLabelTrimMode, nodeLabelTrimLength, nodeSubLabel, nodeSubLabelTrim, nodeSubLabelTrimMode, nodeSubLabelTrimLength, nodeSideLabels, nodeBottomIcon, nodeDisabled, nodeFill, nodeStroke, nodeSort, nodeEnterPosition, nodeEnterScale, nodeExitPosition, nodeExitScale, nodeEnterCustomRenderFunction, nodeUpdateCustomRenderFunction, nodePartialUpdateCustomRenderFunction, nodeExitCustomRenderFunction, nodeOnZoomCustomRenderFunction, nodeSelectionHighlightMode, selectedNodeId, selectedNodeIds, panels, onNodeDragStart, onNodeDrag, onNodeDragEnd, onZoom, onZoomStart, onZoomEnd, onLayoutCalculated, onNodeSelectionBrush, onNodeSelectionDrag, onRenderComplete, shouldDataUpdate };
|
|
1065
1069
|
const keys = Object.keys(config);
|
|
1066
1070
|
keys.forEach(key => { if (config[key] === undefined)
|
|
1067
1071
|
delete config[key]; });
|
|
@@ -1069,7 +1073,7 @@ class VisGraphComponent {
|
|
|
1069
1073
|
}
|
|
1070
1074
|
}
|
|
1071
1075
|
VisGraphComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisGraphComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1072
|
-
VisGraphComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisGraphComponent, selector: "vis-graph", inputs: { duration: "duration", events: "events", attributes: "attributes", zoomScaleExtent: "zoomScaleExtent", disableZoom: "disableZoom", zoomEventFilter: "zoomEventFilter", disableDrag: "disableDrag", disableBrush: "disableBrush", zoomThrottledUpdateNodeThreshold: "zoomThrottledUpdateNodeThreshold", fitViewPadding: "fitViewPadding", fitViewAlign: "fitViewAlign", layoutType: "layoutType", layoutAutofit: "layoutAutofit", layoutAutofitTolerance: "layoutAutofitTolerance", layoutNonConnectedAside: "layoutNonConnectedAside", layoutNodeGroup: "layoutNodeGroup", layoutGroupOrder: "layoutGroupOrder", layoutParallelNodesPerColumn: "layoutParallelNodesPerColumn", layoutParallelNodeSubGroup: "layoutParallelNodeSubGroup", layoutParallelSubGroupsPerRow: "layoutParallelSubGroupsPerRow", layoutParallelGroupSpacing: "layoutParallelGroupSpacing", layoutParallelSortConnectionsByGroup: "layoutParallelSortConnectionsByGroup", forceLayoutSettings: "forceLayoutSettings", dagreLayoutSettings: "dagreLayoutSettings", layoutElkSettings: "layoutElkSettings", layoutElkNodeGroups: "layoutElkNodeGroups", layoutElkGetNodeShape: "layoutElkGetNodeShape", linkWidth: "linkWidth", linkStyle: "linkStyle", linkBandWidth: "linkBandWidth", linkArrow: "linkArrow", linkStroke: "linkStroke", linkDisabled: "linkDisabled", linkFlow: "linkFlow", linkFlowAnimDuration: "linkFlowAnimDuration", linkFlowParticleSize: "linkFlowParticleSize", linkFlowParticleSpeed: "linkFlowParticleSpeed", linkLabel: "linkLabel", linkLabelShiftFromCenter: "linkLabelShiftFromCenter", linkNeighborSpacing: "linkNeighborSpacing", linkCurvature: "linkCurvature", linkHighlightOnHover: "linkHighlightOnHover", linkSourcePointOffset: "linkSourcePointOffset", linkTargetPointOffset: "linkTargetPointOffset", selectedLinkId: "selectedLinkId", nodeSize: "nodeSize", nodeStrokeWidth: "nodeStrokeWidth", nodeShape: "nodeShape", nodeGaugeValue: "nodeGaugeValue", nodeGaugeFill: "nodeGaugeFill", nodeGaugeAnimDuration: "nodeGaugeAnimDuration", nodeIcon: "nodeIcon", nodeIconSize: "nodeIconSize", nodeLabel: "nodeLabel", nodeLabelTrim: "nodeLabelTrim", nodeLabelTrimMode: "nodeLabelTrimMode", nodeLabelTrimLength: "nodeLabelTrimLength", nodeSubLabel: "nodeSubLabel", nodeSubLabelTrim: "nodeSubLabelTrim", nodeSubLabelTrimMode: "nodeSubLabelTrimMode", nodeSubLabelTrimLength: "nodeSubLabelTrimLength", nodeSideLabels: "nodeSideLabels", nodeBottomIcon: "nodeBottomIcon", nodeDisabled: "nodeDisabled", nodeFill: "nodeFill", nodeStroke: "nodeStroke", nodeSort: "nodeSort", nodeEnterPosition: "nodeEnterPosition", nodeEnterScale: "nodeEnterScale", nodeExitPosition: "nodeExitPosition", nodeExitScale: "nodeExitScale", nodeEnterCustomRenderFunction: "nodeEnterCustomRenderFunction", nodeUpdateCustomRenderFunction: "nodeUpdateCustomRenderFunction", nodePartialUpdateCustomRenderFunction: "nodePartialUpdateCustomRenderFunction", nodeExitCustomRenderFunction: "nodeExitCustomRenderFunction", nodeOnZoomCustomRenderFunction: "nodeOnZoomCustomRenderFunction", nodeSelectionHighlightMode: "nodeSelectionHighlightMode", selectedNodeId: "selectedNodeId", selectedNodeIds: "selectedNodeIds", panels: "panels", onNodeDragStart: "onNodeDragStart", onNodeDrag: "onNodeDrag", onNodeDragEnd: "onNodeDragEnd", onZoom: "onZoom", onZoomStart: "onZoomStart", onZoomEnd: "onZoomEnd", onLayoutCalculated: "onLayoutCalculated", onNodeSelectionBrush: "onNodeSelectionBrush", onNodeSelectionDrag: "onNodeSelectionDrag", onRenderComplete: "onRenderComplete", shouldDataUpdate: "shouldDataUpdate", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisGraphComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
1076
|
+
VisGraphComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisGraphComponent, selector: "vis-graph", inputs: { duration: "duration", events: "events", attributes: "attributes", zoomScaleExtent: "zoomScaleExtent", disableZoom: "disableZoom", zoomEventFilter: "zoomEventFilter", disableDrag: "disableDrag", disableBrush: "disableBrush", zoomThrottledUpdateNodeThreshold: "zoomThrottledUpdateNodeThreshold", fitViewPadding: "fitViewPadding", fitViewAlign: "fitViewAlign", layoutType: "layoutType", layoutAutofit: "layoutAutofit", layoutAutofitTolerance: "layoutAutofitTolerance", layoutNonConnectedAside: "layoutNonConnectedAside", layoutNodeGroup: "layoutNodeGroup", layoutGroupOrder: "layoutGroupOrder", layoutParallelNodesPerColumn: "layoutParallelNodesPerColumn", layoutParallelNodeSubGroup: "layoutParallelNodeSubGroup", layoutParallelSubGroupsPerRow: "layoutParallelSubGroupsPerRow", layoutParallelNodeSpacing: "layoutParallelNodeSpacing", layoutParallelSubGroupSpacing: "layoutParallelSubGroupSpacing", layoutParallelGroupSpacing: "layoutParallelGroupSpacing", layoutParallelSortConnectionsByGroup: "layoutParallelSortConnectionsByGroup", forceLayoutSettings: "forceLayoutSettings", dagreLayoutSettings: "dagreLayoutSettings", layoutElkSettings: "layoutElkSettings", layoutElkNodeGroups: "layoutElkNodeGroups", layoutElkGetNodeShape: "layoutElkGetNodeShape", linkWidth: "linkWidth", linkStyle: "linkStyle", linkBandWidth: "linkBandWidth", linkArrow: "linkArrow", linkStroke: "linkStroke", linkDisabled: "linkDisabled", linkFlow: "linkFlow", linkFlowAnimDuration: "linkFlowAnimDuration", linkFlowParticleSize: "linkFlowParticleSize", linkFlowParticleSpeed: "linkFlowParticleSpeed", linkLabel: "linkLabel", linkLabelShiftFromCenter: "linkLabelShiftFromCenter", linkNeighborSpacing: "linkNeighborSpacing", linkCurvature: "linkCurvature", linkHighlightOnHover: "linkHighlightOnHover", linkSourcePointOffset: "linkSourcePointOffset", linkTargetPointOffset: "linkTargetPointOffset", selectedLinkId: "selectedLinkId", nodeSize: "nodeSize", nodeStrokeWidth: "nodeStrokeWidth", nodeShape: "nodeShape", nodeGaugeValue: "nodeGaugeValue", nodeGaugeFill: "nodeGaugeFill", nodeGaugeAnimDuration: "nodeGaugeAnimDuration", nodeIcon: "nodeIcon", nodeIconSize: "nodeIconSize", nodeLabel: "nodeLabel", nodeLabelTrim: "nodeLabelTrim", nodeLabelTrimMode: "nodeLabelTrimMode", nodeLabelTrimLength: "nodeLabelTrimLength", nodeSubLabel: "nodeSubLabel", nodeSubLabelTrim: "nodeSubLabelTrim", nodeSubLabelTrimMode: "nodeSubLabelTrimMode", nodeSubLabelTrimLength: "nodeSubLabelTrimLength", nodeSideLabels: "nodeSideLabels", nodeBottomIcon: "nodeBottomIcon", nodeDisabled: "nodeDisabled", nodeFill: "nodeFill", nodeStroke: "nodeStroke", nodeSort: "nodeSort", nodeEnterPosition: "nodeEnterPosition", nodeEnterScale: "nodeEnterScale", nodeExitPosition: "nodeExitPosition", nodeExitScale: "nodeExitScale", nodeEnterCustomRenderFunction: "nodeEnterCustomRenderFunction", nodeUpdateCustomRenderFunction: "nodeUpdateCustomRenderFunction", nodePartialUpdateCustomRenderFunction: "nodePartialUpdateCustomRenderFunction", nodeExitCustomRenderFunction: "nodeExitCustomRenderFunction", nodeOnZoomCustomRenderFunction: "nodeOnZoomCustomRenderFunction", nodeSelectionHighlightMode: "nodeSelectionHighlightMode", selectedNodeId: "selectedNodeId", selectedNodeIds: "selectedNodeIds", panels: "panels", onNodeDragStart: "onNodeDragStart", onNodeDrag: "onNodeDrag", onNodeDragEnd: "onNodeDragEnd", onZoom: "onZoom", onZoomStart: "onZoomStart", onZoomEnd: "onZoomEnd", onLayoutCalculated: "onLayoutCalculated", onNodeSelectionBrush: "onNodeSelectionBrush", onNodeSelectionDrag: "onNodeSelectionDrag", onRenderComplete: "onRenderComplete", shouldDataUpdate: "shouldDataUpdate", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisGraphComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
1073
1077
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisGraphComponent, decorators: [{
|
|
1074
1078
|
type: Component,
|
|
1075
1079
|
args: [{
|
|
@@ -1118,6 +1122,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
1118
1122
|
type: Input
|
|
1119
1123
|
}], layoutParallelSubGroupsPerRow: [{
|
|
1120
1124
|
type: Input
|
|
1125
|
+
}], layoutParallelNodeSpacing: [{
|
|
1126
|
+
type: Input
|
|
1127
|
+
}], layoutParallelSubGroupSpacing: [{
|
|
1128
|
+
type: Input
|
|
1121
1129
|
}], layoutParallelGroupSpacing: [{
|
|
1122
1130
|
type: Input
|
|
1123
1131
|
}], layoutParallelSortConnectionsByGroup: [{
|
|
@@ -1563,6 +1571,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
1563
1571
|
}]
|
|
1564
1572
|
}] });
|
|
1565
1573
|
|
|
1574
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
1575
|
+
class VisPlotlineComponent {
|
|
1576
|
+
ngAfterViewInit() {
|
|
1577
|
+
this.component = new Plotline(this.getConfig());
|
|
1578
|
+
}
|
|
1579
|
+
ngOnChanges(changes) {
|
|
1580
|
+
var _a, _b;
|
|
1581
|
+
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setConfig(this.getConfig());
|
|
1582
|
+
(_b = this.componentContainer) === null || _b === void 0 ? void 0 : _b.render();
|
|
1583
|
+
}
|
|
1584
|
+
getConfig() {
|
|
1585
|
+
const { duration, events, attributes, lineWidth, axis, value, lineStyle, labelText, labelPosition, labelOffsetX, labelOffsetY, labelOrientation, labelColor, labelSize } = this;
|
|
1586
|
+
const config = { duration, events, attributes, lineWidth, axis, value, lineStyle, labelText, labelPosition, labelOffsetX, labelOffsetY, labelOrientation, labelColor, labelSize };
|
|
1587
|
+
const keys = Object.keys(config);
|
|
1588
|
+
keys.forEach(key => { if (config[key] === undefined)
|
|
1589
|
+
delete config[key]; });
|
|
1590
|
+
return config;
|
|
1591
|
+
}
|
|
1592
|
+
}
|
|
1593
|
+
VisPlotlineComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisPlotlineComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1594
|
+
VisPlotlineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisPlotlineComponent, selector: "vis-plotline", inputs: { duration: "duration", events: "events", attributes: "attributes", lineWidth: "lineWidth", axis: "axis", value: "value", lineStyle: "lineStyle", labelText: "labelText", labelPosition: "labelPosition", labelOffsetX: "labelOffsetX", labelOffsetY: "labelOffsetY", labelOrientation: "labelOrientation", labelColor: "labelColor", labelSize: "labelSize" }, providers: [{ provide: VisXYComponent, useExisting: VisPlotlineComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
1595
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisPlotlineComponent, decorators: [{
|
|
1596
|
+
type: Component,
|
|
1597
|
+
args: [{
|
|
1598
|
+
selector: 'vis-plotline',
|
|
1599
|
+
template: '',
|
|
1600
|
+
// eslint-disable-next-line no-use-before-define
|
|
1601
|
+
providers: [{ provide: VisXYComponent, useExisting: VisPlotlineComponent }],
|
|
1602
|
+
}]
|
|
1603
|
+
}], propDecorators: { duration: [{
|
|
1604
|
+
type: Input
|
|
1605
|
+
}], events: [{
|
|
1606
|
+
type: Input
|
|
1607
|
+
}], attributes: [{
|
|
1608
|
+
type: Input
|
|
1609
|
+
}], lineWidth: [{
|
|
1610
|
+
type: Input
|
|
1611
|
+
}], axis: [{
|
|
1612
|
+
type: Input
|
|
1613
|
+
}], value: [{
|
|
1614
|
+
type: Input
|
|
1615
|
+
}], lineStyle: [{
|
|
1616
|
+
type: Input
|
|
1617
|
+
}], labelText: [{
|
|
1618
|
+
type: Input
|
|
1619
|
+
}], labelPosition: [{
|
|
1620
|
+
type: Input
|
|
1621
|
+
}], labelOffsetX: [{
|
|
1622
|
+
type: Input
|
|
1623
|
+
}], labelOffsetY: [{
|
|
1624
|
+
type: Input
|
|
1625
|
+
}], labelOrientation: [{
|
|
1626
|
+
type: Input
|
|
1627
|
+
}], labelColor: [{
|
|
1628
|
+
type: Input
|
|
1629
|
+
}], labelSize: [{
|
|
1630
|
+
type: Input
|
|
1631
|
+
}] } });
|
|
1632
|
+
|
|
1633
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
1634
|
+
class VisPlotlineModule {
|
|
1635
|
+
}
|
|
1636
|
+
VisPlotlineModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisPlotlineModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1637
|
+
VisPlotlineModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisPlotlineModule, declarations: [VisPlotlineComponent], exports: [VisPlotlineComponent] });
|
|
1638
|
+
VisPlotlineModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisPlotlineModule, imports: [[]] });
|
|
1639
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisPlotlineModule, decorators: [{
|
|
1640
|
+
type: NgModule,
|
|
1641
|
+
args: [{
|
|
1642
|
+
imports: [],
|
|
1643
|
+
declarations: [VisPlotlineComponent],
|
|
1644
|
+
exports: [VisPlotlineComponent],
|
|
1645
|
+
}]
|
|
1646
|
+
}] });
|
|
1647
|
+
|
|
1566
1648
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1567
1649
|
class VisSankeyComponent {
|
|
1568
1650
|
ngAfterViewInit() {
|
|
@@ -1926,8 +2008,8 @@ class VisTimelineComponent {
|
|
|
1926
2008
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1927
2009
|
}
|
|
1928
2010
|
getConfig() {
|
|
1929
|
-
const { duration, events, attributes, x, id, color, xScale, yScale, excludeFromDomainCalculation, lineWidth, lineCap,
|
|
1930
|
-
const config = { duration, events, attributes, x, id, color, xScale, yScale, excludeFromDomainCalculation, lineWidth, lineCap,
|
|
2011
|
+
const { duration, events, attributes, x, id, color, xScale, yScale, excludeFromDomainCalculation, type, length, cursor, lineRow, lineDuration, lineWidth, lineCap, lineStartIcon, lineStartIconColor, lineStartIconSize, lineStartIconArrangement, lineEndIcon, lineEndIconColor, lineEndIconSize, lineEndIconArrangement, lineCursor, showEmptySegments, rowHeight, alternatingRowColors, showLabels, labelWidth, maxLabelWidth, showRowLabels, rowLabelStyle, rowLabelFormatter, rowIcon, rowLabelWidth, rowMaxLabelWidth, rowLabelTextAlign, arrows, animationLineEnterPosition, animationLineExitPosition, onScroll } = this;
|
|
2012
|
+
const config = { duration, events, attributes, x, id, color, xScale, yScale, excludeFromDomainCalculation, type, length, cursor, lineRow, lineDuration, lineWidth, lineCap, lineStartIcon, lineStartIconColor, lineStartIconSize, lineStartIconArrangement, lineEndIcon, lineEndIconColor, lineEndIconSize, lineEndIconArrangement, lineCursor, showEmptySegments, rowHeight, alternatingRowColors, showLabels, labelWidth, maxLabelWidth, showRowLabels, rowLabelStyle, rowLabelFormatter, rowIcon, rowLabelWidth, rowMaxLabelWidth, rowLabelTextAlign, arrows, animationLineEnterPosition, animationLineExitPosition, onScroll };
|
|
1931
2013
|
const keys = Object.keys(config);
|
|
1932
2014
|
keys.forEach(key => { if (config[key] === undefined)
|
|
1933
2015
|
delete config[key]; });
|
|
@@ -1935,7 +2017,7 @@ class VisTimelineComponent {
|
|
|
1935
2017
|
}
|
|
1936
2018
|
}
|
|
1937
2019
|
VisTimelineComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisTimelineComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1938
|
-
VisTimelineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisTimelineComponent, selector: "vis-timeline", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", lineWidth: "lineWidth", lineCap: "lineCap",
|
|
2020
|
+
VisTimelineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisTimelineComponent, selector: "vis-timeline", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", type: "type", length: "length", cursor: "cursor", lineRow: "lineRow", lineDuration: "lineDuration", lineWidth: "lineWidth", lineCap: "lineCap", lineStartIcon: "lineStartIcon", lineStartIconColor: "lineStartIconColor", lineStartIconSize: "lineStartIconSize", lineStartIconArrangement: "lineStartIconArrangement", lineEndIcon: "lineEndIcon", lineEndIconColor: "lineEndIconColor", lineEndIconSize: "lineEndIconSize", lineEndIconArrangement: "lineEndIconArrangement", lineCursor: "lineCursor", showEmptySegments: "showEmptySegments", rowHeight: "rowHeight", alternatingRowColors: "alternatingRowColors", showLabels: "showLabels", labelWidth: "labelWidth", maxLabelWidth: "maxLabelWidth", showRowLabels: "showRowLabels", rowLabelStyle: "rowLabelStyle", rowLabelFormatter: "rowLabelFormatter", rowIcon: "rowIcon", rowLabelWidth: "rowLabelWidth", rowMaxLabelWidth: "rowMaxLabelWidth", rowLabelTextAlign: "rowLabelTextAlign", arrows: "arrows", animationLineEnterPosition: "animationLineEnterPosition", animationLineExitPosition: "animationLineExitPosition", onScroll: "onScroll", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisTimelineComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
1939
2021
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisTimelineComponent, decorators: [{
|
|
1940
2022
|
type: Component,
|
|
1941
2023
|
args: [{
|
|
@@ -1962,17 +2044,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
1962
2044
|
type: Input
|
|
1963
2045
|
}], excludeFromDomainCalculation: [{
|
|
1964
2046
|
type: Input
|
|
2047
|
+
}], type: [{
|
|
2048
|
+
type: Input
|
|
2049
|
+
}], length: [{
|
|
2050
|
+
type: Input
|
|
2051
|
+
}], cursor: [{
|
|
2052
|
+
type: Input
|
|
2053
|
+
}], lineRow: [{
|
|
2054
|
+
type: Input
|
|
2055
|
+
}], lineDuration: [{
|
|
2056
|
+
type: Input
|
|
1965
2057
|
}], lineWidth: [{
|
|
1966
2058
|
type: Input
|
|
1967
2059
|
}], lineCap: [{
|
|
1968
2060
|
type: Input
|
|
1969
|
-
}],
|
|
2061
|
+
}], lineStartIcon: [{
|
|
1970
2062
|
type: Input
|
|
1971
|
-
}],
|
|
2063
|
+
}], lineStartIconColor: [{
|
|
1972
2064
|
type: Input
|
|
1973
|
-
}],
|
|
2065
|
+
}], lineStartIconSize: [{
|
|
1974
2066
|
type: Input
|
|
1975
|
-
}],
|
|
2067
|
+
}], lineStartIconArrangement: [{
|
|
2068
|
+
type: Input
|
|
2069
|
+
}], lineEndIcon: [{
|
|
2070
|
+
type: Input
|
|
2071
|
+
}], lineEndIconColor: [{
|
|
2072
|
+
type: Input
|
|
2073
|
+
}], lineEndIconSize: [{
|
|
2074
|
+
type: Input
|
|
2075
|
+
}], lineEndIconArrangement: [{
|
|
2076
|
+
type: Input
|
|
2077
|
+
}], lineCursor: [{
|
|
2078
|
+
type: Input
|
|
2079
|
+
}], showEmptySegments: [{
|
|
2080
|
+
type: Input
|
|
2081
|
+
}], rowHeight: [{
|
|
2082
|
+
type: Input
|
|
2083
|
+
}], alternatingRowColors: [{
|
|
1976
2084
|
type: Input
|
|
1977
2085
|
}], showLabels: [{
|
|
1978
2086
|
type: Input
|
|
@@ -1980,11 +2088,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
1980
2088
|
type: Input
|
|
1981
2089
|
}], maxLabelWidth: [{
|
|
1982
2090
|
type: Input
|
|
1983
|
-
}],
|
|
2091
|
+
}], showRowLabels: [{
|
|
1984
2092
|
type: Input
|
|
1985
|
-
}],
|
|
2093
|
+
}], rowLabelStyle: [{
|
|
1986
2094
|
type: Input
|
|
1987
|
-
}],
|
|
2095
|
+
}], rowLabelFormatter: [{
|
|
2096
|
+
type: Input
|
|
2097
|
+
}], rowIcon: [{
|
|
2098
|
+
type: Input
|
|
2099
|
+
}], rowLabelWidth: [{
|
|
2100
|
+
type: Input
|
|
2101
|
+
}], rowMaxLabelWidth: [{
|
|
2102
|
+
type: Input
|
|
2103
|
+
}], rowLabelTextAlign: [{
|
|
2104
|
+
type: Input
|
|
2105
|
+
}], arrows: [{
|
|
2106
|
+
type: Input
|
|
2107
|
+
}], animationLineEnterPosition: [{
|
|
2108
|
+
type: Input
|
|
2109
|
+
}], animationLineExitPosition: [{
|
|
2110
|
+
type: Input
|
|
2111
|
+
}], onScroll: [{
|
|
1988
2112
|
type: Input
|
|
1989
2113
|
}], data: [{
|
|
1990
2114
|
type: Input
|
|
@@ -2229,6 +2353,78 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
2229
2353
|
}]
|
|
2230
2354
|
}] });
|
|
2231
2355
|
|
|
2356
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
2357
|
+
class VisPlotbandComponent {
|
|
2358
|
+
ngAfterViewInit() {
|
|
2359
|
+
this.component = new Plotband(this.getConfig());
|
|
2360
|
+
}
|
|
2361
|
+
ngOnChanges(changes) {
|
|
2362
|
+
var _a, _b;
|
|
2363
|
+
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setConfig(this.getConfig());
|
|
2364
|
+
(_b = this.componentContainer) === null || _b === void 0 ? void 0 : _b.render();
|
|
2365
|
+
}
|
|
2366
|
+
getConfig() {
|
|
2367
|
+
const { duration, events, attributes, axis, from, to, labelText, labelPosition, labelOffsetX, labelOffsetY, labelOrientation, labelColor, labelSize } = this;
|
|
2368
|
+
const config = { duration, events, attributes, axis, from, to, labelText, labelPosition, labelOffsetX, labelOffsetY, labelOrientation, labelColor, labelSize };
|
|
2369
|
+
const keys = Object.keys(config);
|
|
2370
|
+
keys.forEach(key => { if (config[key] === undefined)
|
|
2371
|
+
delete config[key]; });
|
|
2372
|
+
return config;
|
|
2373
|
+
}
|
|
2374
|
+
}
|
|
2375
|
+
VisPlotbandComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisPlotbandComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2376
|
+
VisPlotbandComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisPlotbandComponent, selector: "vis-plotband", inputs: { duration: "duration", events: "events", attributes: "attributes", axis: "axis", from: "from", to: "to", labelText: "labelText", labelPosition: "labelPosition", labelOffsetX: "labelOffsetX", labelOffsetY: "labelOffsetY", labelOrientation: "labelOrientation", labelColor: "labelColor", labelSize: "labelSize" }, providers: [{ provide: VisXYComponent, useExisting: VisPlotbandComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
2377
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisPlotbandComponent, decorators: [{
|
|
2378
|
+
type: Component,
|
|
2379
|
+
args: [{
|
|
2380
|
+
selector: 'vis-plotband',
|
|
2381
|
+
template: '',
|
|
2382
|
+
// eslint-disable-next-line no-use-before-define
|
|
2383
|
+
providers: [{ provide: VisXYComponent, useExisting: VisPlotbandComponent }],
|
|
2384
|
+
}]
|
|
2385
|
+
}], propDecorators: { duration: [{
|
|
2386
|
+
type: Input
|
|
2387
|
+
}], events: [{
|
|
2388
|
+
type: Input
|
|
2389
|
+
}], attributes: [{
|
|
2390
|
+
type: Input
|
|
2391
|
+
}], axis: [{
|
|
2392
|
+
type: Input
|
|
2393
|
+
}], from: [{
|
|
2394
|
+
type: Input
|
|
2395
|
+
}], to: [{
|
|
2396
|
+
type: Input
|
|
2397
|
+
}], labelText: [{
|
|
2398
|
+
type: Input
|
|
2399
|
+
}], labelPosition: [{
|
|
2400
|
+
type: Input
|
|
2401
|
+
}], labelOffsetX: [{
|
|
2402
|
+
type: Input
|
|
2403
|
+
}], labelOffsetY: [{
|
|
2404
|
+
type: Input
|
|
2405
|
+
}], labelOrientation: [{
|
|
2406
|
+
type: Input
|
|
2407
|
+
}], labelColor: [{
|
|
2408
|
+
type: Input
|
|
2409
|
+
}], labelSize: [{
|
|
2410
|
+
type: Input
|
|
2411
|
+
}] } });
|
|
2412
|
+
|
|
2413
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
2414
|
+
class VisPlotbandModule {
|
|
2415
|
+
}
|
|
2416
|
+
VisPlotbandModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisPlotbandModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2417
|
+
VisPlotbandModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisPlotbandModule, declarations: [VisPlotbandComponent], exports: [VisPlotbandComponent] });
|
|
2418
|
+
VisPlotbandModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisPlotbandModule, imports: [[]] });
|
|
2419
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisPlotbandModule, decorators: [{
|
|
2420
|
+
type: NgModule,
|
|
2421
|
+
args: [{
|
|
2422
|
+
imports: [],
|
|
2423
|
+
declarations: [VisPlotbandComponent],
|
|
2424
|
+
exports: [VisPlotbandComponent],
|
|
2425
|
+
}]
|
|
2426
|
+
}] });
|
|
2427
|
+
|
|
2232
2428
|
// !!! This code was automatically generated. You should not change it !!!
|
|
2233
2429
|
class VisLeafletMapComponent {
|
|
2234
2430
|
ngAfterViewInit() {
|
|
@@ -2630,6 +2826,65 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
2630
2826
|
}]
|
|
2631
2827
|
}] });
|
|
2632
2828
|
|
|
2829
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
2830
|
+
class VisRollingPinLegendComponent {
|
|
2831
|
+
ngAfterViewInit() {
|
|
2832
|
+
this.component = new RollingPinLegend(this.containerRef.nativeElement, this.getConfig());
|
|
2833
|
+
}
|
|
2834
|
+
ngOnChanges(changes) {
|
|
2835
|
+
var _a;
|
|
2836
|
+
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setConfig(this.getConfig());
|
|
2837
|
+
}
|
|
2838
|
+
getConfig() {
|
|
2839
|
+
const { rects, leftLabelText, rightLabelText, labelClassName, labelFontSize } = this;
|
|
2840
|
+
const config = { rects, leftLabelText, rightLabelText, labelClassName, labelFontSize };
|
|
2841
|
+
const keys = Object.keys(config);
|
|
2842
|
+
keys.forEach(key => { if (config[key] === undefined)
|
|
2843
|
+
delete config[key]; });
|
|
2844
|
+
return config;
|
|
2845
|
+
}
|
|
2846
|
+
}
|
|
2847
|
+
VisRollingPinLegendComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisRollingPinLegendComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2848
|
+
VisRollingPinLegendComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisRollingPinLegendComponent, selector: "vis-rolling-pin-legend", inputs: { rects: "rects", leftLabelText: "leftLabelText", rightLabelText: "rightLabelText", labelClassName: "labelClassName", labelFontSize: "labelFontSize" }, providers: [{ provide: VisGenericComponent, useExisting: VisRollingPinLegendComponent }], viewQueries: [{ propertyName: "containerRef", first: true, predicate: ["container"], descendants: true }], usesOnChanges: true, ngImport: i0, template: '<div #container class="rolling-pin-legend-container"></div>', isInline: true, styles: [".rolling-pin-legend-container { }"] });
|
|
2849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisRollingPinLegendComponent, decorators: [{
|
|
2850
|
+
type: Component,
|
|
2851
|
+
args: [{
|
|
2852
|
+
selector: 'vis-rolling-pin-legend',
|
|
2853
|
+
template: '<div #container class="rolling-pin-legend-container"></div>',
|
|
2854
|
+
styles: ['.rolling-pin-legend-container { }'],
|
|
2855
|
+
// eslint-disable-next-line no-use-before-define
|
|
2856
|
+
providers: [{ provide: VisGenericComponent, useExisting: VisRollingPinLegendComponent }],
|
|
2857
|
+
}]
|
|
2858
|
+
}], propDecorators: { containerRef: [{
|
|
2859
|
+
type: ViewChild,
|
|
2860
|
+
args: ['container', { static: false }]
|
|
2861
|
+
}], rects: [{
|
|
2862
|
+
type: Input
|
|
2863
|
+
}], leftLabelText: [{
|
|
2864
|
+
type: Input
|
|
2865
|
+
}], rightLabelText: [{
|
|
2866
|
+
type: Input
|
|
2867
|
+
}], labelClassName: [{
|
|
2868
|
+
type: Input
|
|
2869
|
+
}], labelFontSize: [{
|
|
2870
|
+
type: Input
|
|
2871
|
+
}] } });
|
|
2872
|
+
|
|
2873
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
2874
|
+
class VisRollingPinLegendModule {
|
|
2875
|
+
}
|
|
2876
|
+
VisRollingPinLegendModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisRollingPinLegendModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2877
|
+
VisRollingPinLegendModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisRollingPinLegendModule, declarations: [VisRollingPinLegendComponent], exports: [VisRollingPinLegendComponent] });
|
|
2878
|
+
VisRollingPinLegendModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisRollingPinLegendModule, imports: [[]] });
|
|
2879
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisRollingPinLegendModule, decorators: [{
|
|
2880
|
+
type: NgModule,
|
|
2881
|
+
args: [{
|
|
2882
|
+
imports: [],
|
|
2883
|
+
declarations: [VisRollingPinLegendComponent],
|
|
2884
|
+
exports: [VisRollingPinLegendComponent],
|
|
2885
|
+
}]
|
|
2886
|
+
}] });
|
|
2887
|
+
|
|
2633
2888
|
// !!! This code was automatically generated. You should not change it !!!
|
|
2634
2889
|
class VisTooltipModule {
|
|
2635
2890
|
}
|
|
@@ -2651,5 +2906,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
2651
2906
|
* Generated bundle index. Do not edit.
|
|
2652
2907
|
*/
|
|
2653
2908
|
|
|
2654
|
-
export { VisAnnotationsComponent, VisAnnotationsModule, VisAreaComponent, VisAreaModule, VisAxisComponent, VisAxisModule, VisBrushComponent, VisBrushModule, VisBulletLegendComponent, VisBulletLegendModule, VisChordDiagramComponent, VisChordDiagramModule, VisCoreComponent, VisCrosshairComponent, VisCrosshairModule, VisDonutComponent, VisDonutModule, VisFreeBrushComponent, VisFreeBrushModule, VisGenericComponent, VisGraphComponent, VisGraphModule, VisGroupedBarComponent, VisGroupedBarModule, VisLeafletFlowMapComponent, VisLeafletFlowMapModule, VisLeafletMapComponent, VisLeafletMapModule, VisLineComponent, VisLineModule, VisNestedDonutComponent, VisNestedDonutModule, VisSankeyComponent, VisSankeyModule, VisScatterComponent, VisScatterModule, VisSingleContainerComponent, VisSingleContainerModule, VisStackedBarComponent, VisStackedBarModule, VisTimelineComponent, VisTimelineModule, VisTooltipComponent, VisTooltipModule, VisTopoJSONMapComponent, VisTopoJSONMapModule, VisXYComponent, VisXYContainerComponent, VisXYContainerModule, VisXYLabelsComponent, VisXYLabelsModule };
|
|
2909
|
+
export { VisAnnotationsComponent, VisAnnotationsModule, VisAreaComponent, VisAreaModule, VisAxisComponent, VisAxisModule, VisBrushComponent, VisBrushModule, VisBulletLegendComponent, VisBulletLegendModule, VisChordDiagramComponent, VisChordDiagramModule, VisCoreComponent, VisCrosshairComponent, VisCrosshairModule, VisDonutComponent, VisDonutModule, VisFreeBrushComponent, VisFreeBrushModule, VisGenericComponent, VisGraphComponent, VisGraphModule, VisGroupedBarComponent, VisGroupedBarModule, VisLeafletFlowMapComponent, VisLeafletFlowMapModule, VisLeafletMapComponent, VisLeafletMapModule, VisLineComponent, VisLineModule, VisNestedDonutComponent, VisNestedDonutModule, VisPlotbandComponent, VisPlotbandModule, VisPlotlineComponent, VisPlotlineModule, VisRollingPinLegendComponent, VisRollingPinLegendModule, VisSankeyComponent, VisSankeyModule, VisScatterComponent, VisScatterModule, VisSingleContainerComponent, VisSingleContainerModule, VisStackedBarComponent, VisStackedBarModule, VisTimelineComponent, VisTimelineModule, VisTooltipComponent, VisTooltipModule, VisTopoJSONMapComponent, VisTopoJSONMapModule, VisXYComponent, VisXYContainerComponent, VisXYContainerModule, VisXYLabelsComponent, VisXYLabelsModule };
|
|
2655
2910
|
//# sourceMappingURL=unovis-angular.js.map
|