@unovis/angular 1.5.1-ql.2 → 1.5.1-ql.3
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/README.md +1 -1
- package/dist/lib/README.md +1 -1
- package/dist/lib/bundles/unovis-angular.umd.js +37 -15
- 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/donut/donut.component.d.ts +5 -1
- package/dist/lib/components/graph/graph.component.d.ts +20 -2
- package/dist/lib/components/line/line.component.d.ts +6 -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/donut/donut.component.js +8 -4
- package/dist/lib/esm2015/components/graph/graph.component.js +14 -4
- package/dist/lib/esm2015/components/line/line.component.js +6 -4
- package/dist/lib/esm2015/components/tooltip/tooltip.component.js +8 -4
- package/dist/lib/fesm2015/unovis-angular.js +37 -15
- package/dist/lib/fesm2015/unovis-angular.js.map +1 -1
- package/dist/lib/package.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
package/dist/lib/README.md
CHANGED
|
@@ -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
|
}] } });
|
|
@@ -1295,8 +1301,8 @@
|
|
|
1295
1301
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1296
1302
|
};
|
|
1297
1303
|
VisDonutComponent.prototype.getConfig = function () {
|
|
1298
|
-
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, id = _d.id, value = _d.value, angleRange = _d.angleRange, padAngle = _d.padAngle, sortFunction = _d.sortFunction, cornerRadius = _d.cornerRadius, color = _d.color, radius = _d.radius, arcWidth = _d.arcWidth, centralLabel = _d.centralLabel, centralSubLabel = _d.centralSubLabel, centralSubLabelWrap = _d.centralSubLabelWrap, showEmptySegments = _d.showEmptySegments, emptySegmentAngle = _d.emptySegmentAngle, showBackground = _d.showBackground, backgroundAngleRange = _d.backgroundAngleRange;
|
|
1299
|
-
var config = { duration: duration, events: events, attributes: attributes, id: id, value: value, angleRange: angleRange, padAngle: padAngle, sortFunction: sortFunction, cornerRadius: cornerRadius, color: color, radius: radius, arcWidth: arcWidth, centralLabel: centralLabel, centralSubLabel: centralSubLabel, centralSubLabelWrap: centralSubLabelWrap, showEmptySegments: showEmptySegments, emptySegmentAngle: emptySegmentAngle, showBackground: showBackground, backgroundAngleRange: backgroundAngleRange };
|
|
1304
|
+
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, id = _d.id, value = _d.value, angleRange = _d.angleRange, padAngle = _d.padAngle, sortFunction = _d.sortFunction, cornerRadius = _d.cornerRadius, color = _d.color, radius = _d.radius, arcWidth = _d.arcWidth, centralLabel = _d.centralLabel, centralSubLabel = _d.centralSubLabel, centralSubLabelWrap = _d.centralSubLabelWrap, showEmptySegments = _d.showEmptySegments, emptySegmentAngle = _d.emptySegmentAngle, showBackground = _d.showBackground, backgroundAngleRange = _d.backgroundAngleRange, centralLabelOffsetX = _d.centralLabelOffsetX, centralLabelOffsetY = _d.centralLabelOffsetY;
|
|
1305
|
+
var config = { duration: duration, events: events, attributes: attributes, id: id, value: value, angleRange: angleRange, padAngle: padAngle, sortFunction: sortFunction, cornerRadius: cornerRadius, color: color, radius: radius, arcWidth: arcWidth, centralLabel: centralLabel, centralSubLabel: centralSubLabel, centralSubLabelWrap: centralSubLabelWrap, showEmptySegments: showEmptySegments, emptySegmentAngle: emptySegmentAngle, showBackground: showBackground, backgroundAngleRange: backgroundAngleRange, centralLabelOffsetX: centralLabelOffsetX, centralLabelOffsetY: centralLabelOffsetY };
|
|
1300
1306
|
var keys = Object.keys(config);
|
|
1301
1307
|
keys.forEach(function (key) {
|
|
1302
1308
|
if (config[key] === undefined)
|
|
@@ -1307,7 +1313,7 @@
|
|
|
1307
1313
|
return VisDonutComponent;
|
|
1308
1314
|
}());
|
|
1309
1315
|
VisDonutComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisDonutComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1310
|
-
VisDonutComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisDonutComponent, selector: "vis-donut", inputs: { duration: "duration", events: "events", attributes: "attributes", id: "id", value: "value", angleRange: "angleRange", padAngle: "padAngle", sortFunction: "sortFunction", cornerRadius: "cornerRadius", color: "color", radius: "radius", arcWidth: "arcWidth", centralLabel: "centralLabel", centralSubLabel: "centralSubLabel", centralSubLabelWrap: "centralSubLabelWrap", showEmptySegments: "showEmptySegments", emptySegmentAngle: "emptySegmentAngle", showBackground: "showBackground", backgroundAngleRange: "backgroundAngleRange", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisDonutComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
1316
|
+
VisDonutComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisDonutComponent, selector: "vis-donut", inputs: { duration: "duration", events: "events", attributes: "attributes", id: "id", value: "value", angleRange: "angleRange", padAngle: "padAngle", sortFunction: "sortFunction", cornerRadius: "cornerRadius", color: "color", radius: "radius", arcWidth: "arcWidth", centralLabel: "centralLabel", centralSubLabel: "centralSubLabel", centralSubLabelWrap: "centralSubLabelWrap", showEmptySegments: "showEmptySegments", emptySegmentAngle: "emptySegmentAngle", showBackground: "showBackground", backgroundAngleRange: "backgroundAngleRange", centralLabelOffsetX: "centralLabelOffsetX", centralLabelOffsetY: "centralLabelOffsetY", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisDonutComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
1311
1317
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisDonutComponent, decorators: [{
|
|
1312
1318
|
type: i0.Component,
|
|
1313
1319
|
args: [{
|
|
@@ -1354,6 +1360,10 @@
|
|
|
1354
1360
|
type: i0.Input
|
|
1355
1361
|
}], backgroundAngleRange: [{
|
|
1356
1362
|
type: i0.Input
|
|
1363
|
+
}], centralLabelOffsetX: [{
|
|
1364
|
+
type: i0.Input
|
|
1365
|
+
}], centralLabelOffsetY: [{
|
|
1366
|
+
type: i0.Input
|
|
1357
1367
|
}], data: [{
|
|
1358
1368
|
type: i0.Input
|
|
1359
1369
|
}] } });
|
|
@@ -1485,8 +1495,8 @@
|
|
|
1485
1495
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1486
1496
|
};
|
|
1487
1497
|
VisGraphComponent.prototype.getConfig = function () {
|
|
1488
|
-
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, 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, 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;
|
|
1489
|
-
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, 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, 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 };
|
|
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, 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;
|
|
1499
|
+
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 };
|
|
1490
1500
|
var keys = Object.keys(config);
|
|
1491
1501
|
keys.forEach(function (key) {
|
|
1492
1502
|
if (config[key] === undefined)
|
|
@@ -1497,7 +1507,7 @@
|
|
|
1497
1507
|
return VisGraphComponent;
|
|
1498
1508
|
}());
|
|
1499
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 });
|
|
1500
|
-
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", 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", 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", 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", 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 });
|
|
1501
1511
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisGraphComponent, decorators: [{
|
|
1502
1512
|
type: i0.Component,
|
|
1503
1513
|
args: [{
|
|
@@ -1554,6 +1564,8 @@
|
|
|
1554
1564
|
type: i0.Input
|
|
1555
1565
|
}], layoutElkNodeGroups: [{
|
|
1556
1566
|
type: i0.Input
|
|
1567
|
+
}], layoutElkGetNodeShape: [{
|
|
1568
|
+
type: i0.Input
|
|
1557
1569
|
}], linkWidth: [{
|
|
1558
1570
|
type: i0.Input
|
|
1559
1571
|
}], linkStyle: [{
|
|
@@ -1580,6 +1592,12 @@
|
|
|
1580
1592
|
type: i0.Input
|
|
1581
1593
|
}], linkCurvature: [{
|
|
1582
1594
|
type: i0.Input
|
|
1595
|
+
}], linkHighlightOnHover: [{
|
|
1596
|
+
type: i0.Input
|
|
1597
|
+
}], linkSourcePointOffset: [{
|
|
1598
|
+
type: i0.Input
|
|
1599
|
+
}], linkTargetPointOffset: [{
|
|
1600
|
+
type: i0.Input
|
|
1583
1601
|
}], selectedLinkId: [{
|
|
1584
1602
|
type: i0.Input
|
|
1585
1603
|
}], nodeSize: [{
|
|
@@ -1672,6 +1690,8 @@
|
|
|
1672
1690
|
type: i0.Input
|
|
1673
1691
|
}], onRenderComplete: [{
|
|
1674
1692
|
type: i0.Input
|
|
1693
|
+
}], shouldDataUpdate: [{
|
|
1694
|
+
type: i0.Input
|
|
1675
1695
|
}], data: [{
|
|
1676
1696
|
type: i0.Input
|
|
1677
1697
|
}] } });
|
|
@@ -1817,8 +1837,8 @@
|
|
|
1817
1837
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1818
1838
|
};
|
|
1819
1839
|
VisLineComponent.prototype.getConfig = function () {
|
|
1820
|
-
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, lineWidth = _d.lineWidth, lineDashArray = _d.lineDashArray, fallbackValue = _d.fallbackValue, highlightOnHover = _d.highlightOnHover, cursor = _d.cursor;
|
|
1821
|
-
var config = { duration: duration, events: events, attributes: attributes, x: x, y: y, id: id, color: color, xScale: xScale, yScale: yScale, excludeFromDomainCalculation: excludeFromDomainCalculation, curveType: curveType, lineWidth: lineWidth, lineDashArray: lineDashArray, fallbackValue: fallbackValue, highlightOnHover: highlightOnHover, cursor: cursor };
|
|
1840
|
+
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, lineWidth = _d.lineWidth, lineDashArray = _d.lineDashArray, fallbackValue = _d.fallbackValue, highlightOnHover = _d.highlightOnHover, cursor = _d.cursor, interpolateMissingData = _d.interpolateMissingData;
|
|
1841
|
+
var config = { duration: duration, events: events, attributes: attributes, x: x, y: y, id: id, color: color, xScale: xScale, yScale: yScale, excludeFromDomainCalculation: excludeFromDomainCalculation, curveType: curveType, lineWidth: lineWidth, lineDashArray: lineDashArray, fallbackValue: fallbackValue, highlightOnHover: highlightOnHover, cursor: cursor, interpolateMissingData: interpolateMissingData };
|
|
1822
1842
|
var keys = Object.keys(config);
|
|
1823
1843
|
keys.forEach(function (key) {
|
|
1824
1844
|
if (config[key] === undefined)
|
|
@@ -1829,7 +1849,7 @@
|
|
|
1829
1849
|
return VisLineComponent;
|
|
1830
1850
|
}());
|
|
1831
1851
|
VisLineComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisLineComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1832
|
-
VisLineComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisLineComponent, selector: "vis-line", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", curveType: "curveType", lineWidth: "lineWidth", lineDashArray: "lineDashArray", fallbackValue: "fallbackValue", highlightOnHover: "highlightOnHover", cursor: "cursor", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisLineComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
1852
|
+
VisLineComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisLineComponent, selector: "vis-line", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", curveType: "curveType", lineWidth: "lineWidth", lineDashArray: "lineDashArray", fallbackValue: "fallbackValue", highlightOnHover: "highlightOnHover", cursor: "cursor", interpolateMissingData: "interpolateMissingData", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisLineComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
1833
1853
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisLineComponent, decorators: [{
|
|
1834
1854
|
type: i0.Component,
|
|
1835
1855
|
args: [{
|
|
@@ -1870,6 +1890,8 @@
|
|
|
1870
1890
|
type: i0.Input
|
|
1871
1891
|
}], cursor: [{
|
|
1872
1892
|
type: i0.Input
|
|
1893
|
+
}], interpolateMissingData: [{
|
|
1894
|
+
type: i0.Input
|
|
1873
1895
|
}], data: [{
|
|
1874
1896
|
type: i0.Input
|
|
1875
1897
|
}] } });
|