@unovis/angular 1.5.1 → 1.5.2
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 +21 -9
- package/dist/lib/bundles/unovis-angular.umd.js.map +1 -1
- package/dist/lib/components/area/area.component.d.ts +6 -4
- package/dist/lib/components/axis/axis.component.d.ts +1 -1
- package/dist/lib/components/graph/graph.component.d.ts +12 -5
- package/dist/lib/components/line/line.component.d.ts +1 -1
- package/dist/lib/components/tooltip/tooltip.component.d.ts +7 -5
- package/dist/lib/esm2015/components/area/area.component.js +6 -4
- package/dist/lib/esm2015/components/axis/axis.component.js +1 -1
- package/dist/lib/esm2015/components/graph/graph.component.js +10 -4
- package/dist/lib/esm2015/components/line/line.component.js +1 -1
- package/dist/lib/esm2015/components/tooltip/tooltip.component.js +8 -4
- package/dist/lib/fesm2015/unovis-angular.js +21 -9
- package/dist/lib/fesm2015/unovis-angular.js.map +1 -1
- package/dist/lib/package.json +4 -3
- package/package.json +4 -3
|
@@ -386,8 +386,8 @@
|
|
|
386
386
|
(_b = this.componentContainer) === null || _b === void 0 ? void 0 : _b.render();
|
|
387
387
|
};
|
|
388
388
|
VisTooltipComponent.prototype.getConfig = function () {
|
|
389
|
-
var _c = this, components = _c.components, container = _c.container, followCursor = _c.followCursor, allowHover = _c.allowHover, horizontalPlacement = _c.horizontalPlacement, horizontalShift = _c.horizontalShift, verticalPlacement = _c.verticalPlacement, verticalShift = _c.verticalShift, triggers = _c.triggers, attributes = _c.attributes, className = _c.className;
|
|
390
|
-
var config = { components: components, container: container, followCursor: followCursor, allowHover: allowHover, horizontalPlacement: horizontalPlacement, horizontalShift: horizontalShift, verticalPlacement: verticalPlacement, verticalShift: verticalShift, triggers: triggers, attributes: attributes, className: className };
|
|
389
|
+
var _c = this, components = _c.components, container = _c.container, followCursor = _c.followCursor, allowHover = _c.allowHover, horizontalPlacement = _c.horizontalPlacement, horizontalShift = _c.horizontalShift, verticalPlacement = _c.verticalPlacement, verticalShift = _c.verticalShift, triggers = _c.triggers, attributes = _c.attributes, className = _c.className, hideDelay = _c.hideDelay, showDelay = _c.showDelay;
|
|
390
|
+
var config = { components: components, container: container, followCursor: followCursor, allowHover: allowHover, horizontalPlacement: horizontalPlacement, horizontalShift: horizontalShift, verticalPlacement: verticalPlacement, verticalShift: verticalShift, triggers: triggers, attributes: attributes, className: className, hideDelay: hideDelay, showDelay: showDelay };
|
|
391
391
|
var keys = Object.keys(config);
|
|
392
392
|
keys.forEach(function (key) {
|
|
393
393
|
if (config[key] === undefined)
|
|
@@ -398,7 +398,7 @@
|
|
|
398
398
|
return VisTooltipComponent;
|
|
399
399
|
}());
|
|
400
400
|
VisTooltipComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTooltipComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
401
|
-
VisTooltipComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisTooltipComponent, selector: "vis-tooltip", inputs: { components: "components", container: "container", followCursor: "followCursor", allowHover: "allowHover", horizontalPlacement: "horizontalPlacement", horizontalShift: "horizontalShift", verticalPlacement: "verticalPlacement", verticalShift: "verticalShift", triggers: "triggers", attributes: "attributes", className: "className" }, providers: [{ provide: VisGenericComponent, useExisting: VisTooltipComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
401
|
+
VisTooltipComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisTooltipComponent, selector: "vis-tooltip", inputs: { components: "components", container: "container", followCursor: "followCursor", allowHover: "allowHover", horizontalPlacement: "horizontalPlacement", horizontalShift: "horizontalShift", verticalPlacement: "verticalPlacement", verticalShift: "verticalShift", triggers: "triggers", attributes: "attributes", className: "className", hideDelay: "hideDelay", showDelay: "showDelay" }, providers: [{ provide: VisGenericComponent, useExisting: VisTooltipComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
402
402
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTooltipComponent, decorators: [{
|
|
403
403
|
type: i0.Component,
|
|
404
404
|
args: [{
|
|
@@ -429,6 +429,10 @@
|
|
|
429
429
|
type: i0.Input
|
|
430
430
|
}], className: [{
|
|
431
431
|
type: i0.Input
|
|
432
|
+
}], hideDelay: [{
|
|
433
|
+
type: i0.Input
|
|
434
|
+
}], showDelay: [{
|
|
435
|
+
type: i0.Input
|
|
432
436
|
}] } });
|
|
433
437
|
|
|
434
438
|
// !!! This code was automatically generated. You should not change it !!!
|
|
@@ -771,8 +775,8 @@
|
|
|
771
775
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
772
776
|
};
|
|
773
777
|
VisAreaComponent.prototype.getConfig = function () {
|
|
774
|
-
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, x = _d.x, y = _d.y, id = _d.id, color = _d.color, xScale = _d.xScale, yScale = _d.yScale, excludeFromDomainCalculation = _d.excludeFromDomainCalculation, curveType = _d.curveType, baseline = _d.baseline, opacity = _d.opacity, cursor = _d.cursor, minHeight1Px = _d.minHeight1Px;
|
|
775
|
-
var config = { duration: duration, events: events, attributes: attributes, x: x, y: y, id: id, color: color, xScale: xScale, yScale: yScale, excludeFromDomainCalculation: excludeFromDomainCalculation, curveType: curveType, baseline: baseline, opacity: opacity, cursor: cursor, minHeight1Px: minHeight1Px };
|
|
778
|
+
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, x = _d.x, y = _d.y, id = _d.id, color = _d.color, xScale = _d.xScale, yScale = _d.yScale, excludeFromDomainCalculation = _d.excludeFromDomainCalculation, curveType = _d.curveType, baseline = _d.baseline, opacity = _d.opacity, cursor = _d.cursor, minHeight1Px = _d.minHeight1Px, minHeight = _d.minHeight;
|
|
779
|
+
var config = { duration: duration, events: events, attributes: attributes, x: x, y: y, id: id, color: color, xScale: xScale, yScale: yScale, excludeFromDomainCalculation: excludeFromDomainCalculation, curveType: curveType, baseline: baseline, opacity: opacity, cursor: cursor, minHeight1Px: minHeight1Px, minHeight: minHeight };
|
|
776
780
|
var keys = Object.keys(config);
|
|
777
781
|
keys.forEach(function (key) {
|
|
778
782
|
if (config[key] === undefined)
|
|
@@ -783,7 +787,7 @@
|
|
|
783
787
|
return VisAreaComponent;
|
|
784
788
|
}());
|
|
785
789
|
VisAreaComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisAreaComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
786
|
-
VisAreaComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisAreaComponent, selector: "vis-area", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", curveType: "curveType", baseline: "baseline", opacity: "opacity", cursor: "cursor", minHeight1Px: "minHeight1Px", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisAreaComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
790
|
+
VisAreaComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisAreaComponent, selector: "vis-area", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", curveType: "curveType", baseline: "baseline", opacity: "opacity", cursor: "cursor", minHeight1Px: "minHeight1Px", minHeight: "minHeight", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisAreaComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
787
791
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisAreaComponent, decorators: [{
|
|
788
792
|
type: i0.Component,
|
|
789
793
|
args: [{
|
|
@@ -822,6 +826,8 @@
|
|
|
822
826
|
type: i0.Input
|
|
823
827
|
}], minHeight1Px: [{
|
|
824
828
|
type: i0.Input
|
|
829
|
+
}], minHeight: [{
|
|
830
|
+
type: i0.Input
|
|
825
831
|
}], data: [{
|
|
826
832
|
type: i0.Input
|
|
827
833
|
}] } });
|
|
@@ -1489,8 +1495,8 @@
|
|
|
1489
1495
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1490
1496
|
};
|
|
1491
1497
|
VisGraphComponent.prototype.getConfig = function () {
|
|
1492
|
-
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, zoomScaleExtent = _d.zoomScaleExtent, disableZoom = _d.disableZoom, zoomEventFilter = _d.zoomEventFilter, disableDrag = _d.disableDrag, disableBrush = _d.disableBrush, zoomThrottledUpdateNodeThreshold = _d.zoomThrottledUpdateNodeThreshold, layoutType = _d.layoutType, layoutAutofit = _d.layoutAutofit, layoutAutofitTolerance = _d.layoutAutofitTolerance, layoutNonConnectedAside = _d.layoutNonConnectedAside, layoutNodeGroup = _d.layoutNodeGroup, layoutGroupOrder = _d.layoutGroupOrder, layoutParallelNodesPerColumn = _d.layoutParallelNodesPerColumn, layoutParallelNodeSubGroup = _d.layoutParallelNodeSubGroup, layoutParallelSubGroupsPerRow = _d.layoutParallelSubGroupsPerRow, layoutParallelGroupSpacing = _d.layoutParallelGroupSpacing, layoutParallelSortConnectionsByGroup = _d.layoutParallelSortConnectionsByGroup, forceLayoutSettings = _d.forceLayoutSettings, dagreLayoutSettings = _d.dagreLayoutSettings, layoutElkSettings = _d.layoutElkSettings, layoutElkNodeGroups = _d.layoutElkNodeGroups, layoutElkGetNodeShape = _d.layoutElkGetNodeShape, linkWidth = _d.linkWidth, linkStyle = _d.linkStyle, linkBandWidth = _d.linkBandWidth, linkArrow = _d.linkArrow, linkStroke = _d.linkStroke, linkDisabled = _d.linkDisabled, linkFlow = _d.linkFlow, linkFlowAnimDuration = _d.linkFlowAnimDuration, linkFlowParticleSize = _d.linkFlowParticleSize, linkLabel = _d.linkLabel, linkLabelShiftFromCenter = _d.linkLabelShiftFromCenter, linkNeighborSpacing = _d.linkNeighborSpacing, linkCurvature = _d.linkCurvature, linkHighlightOnHover = _d.linkHighlightOnHover, linkSourcePointOffset = _d.linkSourcePointOffset, linkTargetPointOffset = _d.linkTargetPointOffset, selectedLinkId = _d.selectedLinkId, nodeSize = _d.nodeSize, nodeStrokeWidth = _d.nodeStrokeWidth, nodeShape = _d.nodeShape, nodeGaugeValue = _d.nodeGaugeValue, nodeGaugeFill = _d.nodeGaugeFill, nodeGaugeAnimDuration = _d.nodeGaugeAnimDuration, nodeIcon = _d.nodeIcon, nodeIconSize = _d.nodeIconSize, nodeLabel = _d.nodeLabel, nodeLabelTrim = _d.nodeLabelTrim, nodeLabelTrimMode = _d.nodeLabelTrimMode, nodeLabelTrimLength = _d.nodeLabelTrimLength, nodeSubLabel = _d.nodeSubLabel, nodeSubLabelTrim = _d.nodeSubLabelTrim, nodeSubLabelTrimMode = _d.nodeSubLabelTrimMode, nodeSubLabelTrimLength = _d.nodeSubLabelTrimLength, nodeSideLabels = _d.nodeSideLabels, nodeBottomIcon = _d.nodeBottomIcon, nodeDisabled = _d.nodeDisabled, nodeFill = _d.nodeFill, nodeStroke = _d.nodeStroke, nodeSort = _d.nodeSort, nodeEnterPosition = _d.nodeEnterPosition, nodeEnterScale = _d.nodeEnterScale, nodeExitPosition = _d.nodeExitPosition, nodeExitScale = _d.nodeExitScale, nodeEnterCustomRenderFunction = _d.nodeEnterCustomRenderFunction, nodeUpdateCustomRenderFunction = _d.nodeUpdateCustomRenderFunction, nodePartialUpdateCustomRenderFunction = _d.nodePartialUpdateCustomRenderFunction, nodeExitCustomRenderFunction = _d.nodeExitCustomRenderFunction, nodeOnZoomCustomRenderFunction = _d.nodeOnZoomCustomRenderFunction, nodeSelectionHighlightMode = _d.nodeSelectionHighlightMode, selectedNodeId = _d.selectedNodeId, selectedNodeIds = _d.selectedNodeIds, panels = _d.panels, onNodeDragStart = _d.onNodeDragStart, onNodeDrag = _d.onNodeDrag, onNodeDragEnd = _d.onNodeDragEnd, onZoom = _d.onZoom, onZoomStart = _d.onZoomStart, onZoomEnd = _d.onZoomEnd, onLayoutCalculated = _d.onLayoutCalculated, onNodeSelectionBrush = _d.onNodeSelectionBrush, onNodeSelectionDrag = _d.onNodeSelectionDrag, onRenderComplete = _d.onRenderComplete, shouldDataUpdate = _d.shouldDataUpdate;
|
|
1493
|
-
var config = { duration: duration, events: events, attributes: attributes, zoomScaleExtent: zoomScaleExtent, disableZoom: disableZoom, zoomEventFilter: zoomEventFilter, disableDrag: disableDrag, disableBrush: disableBrush, zoomThrottledUpdateNodeThreshold: zoomThrottledUpdateNodeThreshold, 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, 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 };
|
|
1498
|
+
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, zoomScaleExtent = _d.zoomScaleExtent, disableZoom = _d.disableZoom, zoomEventFilter = _d.zoomEventFilter, disableDrag = _d.disableDrag, disableBrush = _d.disableBrush, zoomThrottledUpdateNodeThreshold = _d.zoomThrottledUpdateNodeThreshold, fitViewPadding = _d.fitViewPadding, fitViewAlign = _d.fitViewAlign, layoutType = _d.layoutType, layoutAutofit = _d.layoutAutofit, layoutAutofitTolerance = _d.layoutAutofitTolerance, layoutNonConnectedAside = _d.layoutNonConnectedAside, layoutNodeGroup = _d.layoutNodeGroup, layoutGroupOrder = _d.layoutGroupOrder, layoutParallelNodesPerColumn = _d.layoutParallelNodesPerColumn, layoutParallelNodeSubGroup = _d.layoutParallelNodeSubGroup, layoutParallelSubGroupsPerRow = _d.layoutParallelSubGroupsPerRow, layoutParallelGroupSpacing = _d.layoutParallelGroupSpacing, layoutParallelSortConnectionsByGroup = _d.layoutParallelSortConnectionsByGroup, forceLayoutSettings = _d.forceLayoutSettings, dagreLayoutSettings = _d.dagreLayoutSettings, layoutElkSettings = _d.layoutElkSettings, layoutElkNodeGroups = _d.layoutElkNodeGroups, layoutElkGetNodeShape = _d.layoutElkGetNodeShape, linkWidth = _d.linkWidth, linkStyle = _d.linkStyle, linkBandWidth = _d.linkBandWidth, linkArrow = _d.linkArrow, linkStroke = _d.linkStroke, linkDisabled = _d.linkDisabled, linkFlow = _d.linkFlow, linkFlowAnimDuration = _d.linkFlowAnimDuration, linkFlowParticleSize = _d.linkFlowParticleSize, linkFlowParticleSpeed = _d.linkFlowParticleSpeed, linkLabel = _d.linkLabel, linkLabelShiftFromCenter = _d.linkLabelShiftFromCenter, linkNeighborSpacing = _d.linkNeighborSpacing, linkCurvature = _d.linkCurvature, linkHighlightOnHover = _d.linkHighlightOnHover, linkSourcePointOffset = _d.linkSourcePointOffset, linkTargetPointOffset = _d.linkTargetPointOffset, selectedLinkId = _d.selectedLinkId, nodeSize = _d.nodeSize, nodeStrokeWidth = _d.nodeStrokeWidth, nodeShape = _d.nodeShape, nodeGaugeValue = _d.nodeGaugeValue, nodeGaugeFill = _d.nodeGaugeFill, nodeGaugeAnimDuration = _d.nodeGaugeAnimDuration, nodeIcon = _d.nodeIcon, nodeIconSize = _d.nodeIconSize, nodeLabel = _d.nodeLabel, nodeLabelTrim = _d.nodeLabelTrim, nodeLabelTrimMode = _d.nodeLabelTrimMode, nodeLabelTrimLength = _d.nodeLabelTrimLength, nodeSubLabel = _d.nodeSubLabel, nodeSubLabelTrim = _d.nodeSubLabelTrim, nodeSubLabelTrimMode = _d.nodeSubLabelTrimMode, nodeSubLabelTrimLength = _d.nodeSubLabelTrimLength, nodeSideLabels = _d.nodeSideLabels, nodeBottomIcon = _d.nodeBottomIcon, nodeDisabled = _d.nodeDisabled, nodeFill = _d.nodeFill, nodeStroke = _d.nodeStroke, nodeSort = _d.nodeSort, nodeEnterPosition = _d.nodeEnterPosition, nodeEnterScale = _d.nodeEnterScale, nodeExitPosition = _d.nodeExitPosition, nodeExitScale = _d.nodeExitScale, nodeEnterCustomRenderFunction = _d.nodeEnterCustomRenderFunction, nodeUpdateCustomRenderFunction = _d.nodeUpdateCustomRenderFunction, nodePartialUpdateCustomRenderFunction = _d.nodePartialUpdateCustomRenderFunction, nodeExitCustomRenderFunction = _d.nodeExitCustomRenderFunction, nodeOnZoomCustomRenderFunction = _d.nodeOnZoomCustomRenderFunction, nodeSelectionHighlightMode = _d.nodeSelectionHighlightMode, selectedNodeId = _d.selectedNodeId, selectedNodeIds = _d.selectedNodeIds, panels = _d.panels, onNodeDragStart = _d.onNodeDragStart, onNodeDrag = _d.onNodeDrag, onNodeDragEnd = _d.onNodeDragEnd, onZoom = _d.onZoom, onZoomStart = _d.onZoomStart, onZoomEnd = _d.onZoomEnd, onLayoutCalculated = _d.onLayoutCalculated, onNodeSelectionBrush = _d.onNodeSelectionBrush, onNodeSelectionDrag = _d.onNodeSelectionDrag, onRenderComplete = _d.onRenderComplete, shouldDataUpdate = _d.shouldDataUpdate;
|
|
1499
|
+
var config = { 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 };
|
|
1494
1500
|
var keys = Object.keys(config);
|
|
1495
1501
|
keys.forEach(function (key) {
|
|
1496
1502
|
if (config[key] === undefined)
|
|
@@ -1501,7 +1507,7 @@
|
|
|
1501
1507
|
return VisGraphComponent;
|
|
1502
1508
|
}());
|
|
1503
1509
|
VisGraphComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisGraphComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1504
|
-
VisGraphComponent.ɵcmp = i0__namespace.ɵɵ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", 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", 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__namespace, template: '', isInline: true });
|
|
1510
|
+
VisGraphComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, template: '', isInline: true });
|
|
1505
1511
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisGraphComponent, decorators: [{
|
|
1506
1512
|
type: i0.Component,
|
|
1507
1513
|
args: [{
|
|
@@ -1528,6 +1534,10 @@
|
|
|
1528
1534
|
type: i0.Input
|
|
1529
1535
|
}], zoomThrottledUpdateNodeThreshold: [{
|
|
1530
1536
|
type: i0.Input
|
|
1537
|
+
}], fitViewPadding: [{
|
|
1538
|
+
type: i0.Input
|
|
1539
|
+
}], fitViewAlign: [{
|
|
1540
|
+
type: i0.Input
|
|
1531
1541
|
}], layoutType: [{
|
|
1532
1542
|
type: i0.Input
|
|
1533
1543
|
}], layoutAutofit: [{
|
|
@@ -1578,6 +1588,8 @@
|
|
|
1578
1588
|
type: i0.Input
|
|
1579
1589
|
}], linkFlowParticleSize: [{
|
|
1580
1590
|
type: i0.Input
|
|
1591
|
+
}], linkFlowParticleSpeed: [{
|
|
1592
|
+
type: i0.Input
|
|
1581
1593
|
}], linkLabel: [{
|
|
1582
1594
|
type: i0.Input
|
|
1583
1595
|
}], linkLabelShiftFromCenter: [{
|