@unovis/angular 1.6.0-pre.1 → 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.
Files changed (30) hide show
  1. package/dist/lib/bundles/unovis-angular.umd.js +301 -16
  2. package/dist/lib/bundles/unovis-angular.umd.js.map +1 -1
  3. package/dist/lib/components/brush/brush.component.d.ts +1 -1
  4. package/dist/lib/components/crosshair/crosshair.component.d.ts +21 -8
  5. package/dist/lib/components/graph/graph.component.d.ts +9 -1
  6. package/dist/lib/components/nested-donut/nested-donut.component.d.ts +1 -1
  7. package/dist/lib/components/plotband/plotband.component.d.ts +81 -0
  8. package/dist/lib/components/plotband/plotband.module.d.ts +7 -0
  9. package/dist/lib/components/plotline/plotline.component.d.ts +87 -0
  10. package/dist/lib/components/plotline/plotline.module.d.ts +7 -0
  11. package/dist/lib/components/timeline/timeline.component.d.ts +60 -15
  12. package/dist/lib/components.d.ts +6 -0
  13. package/dist/lib/esm2015/components/brush/brush.component.js +1 -1
  14. package/dist/lib/esm2015/components/crosshair/crosshair.component.js +8 -4
  15. package/dist/lib/esm2015/components/graph/graph.component.js +8 -4
  16. package/dist/lib/esm2015/components/nested-donut/nested-donut.component.js +1 -1
  17. package/dist/lib/esm2015/components/plotband/plotband.component.js +61 -0
  18. package/dist/lib/esm2015/components/plotband/plotband.module.js +18 -0
  19. package/dist/lib/esm2015/components/plotline/plotline.component.js +63 -0
  20. package/dist/lib/esm2015/components/plotline/plotline.module.js +18 -0
  21. package/dist/lib/esm2015/components/timeline/timeline.component.js +53 -11
  22. package/dist/lib/esm2015/components.js +7 -1
  23. package/dist/lib/esm2015/html-components/rolling-pin-legend/rolling-pin-legend.component.js +48 -0
  24. package/dist/lib/esm2015/html-components/rolling-pin-legend/rolling-pin-legend.module.js +18 -0
  25. package/dist/lib/fesm2015/unovis-angular.js +273 -18
  26. package/dist/lib/fesm2015/unovis-angular.js.map +1 -1
  27. package/dist/lib/html-components/rolling-pin-legend/rolling-pin-legend.component.d.ts +24 -0
  28. package/dist/lib/html-components/rolling-pin-legend/rolling-pin-legend.module.d.ts +7 -0
  29. package/dist/lib/package.json +2 -2
  30. package/package.json +2 -2
@@ -1197,8 +1197,8 @@
1197
1197
  (_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
1198
1198
  };
1199
1199
  VisCrosshairComponent.prototype.getConfig = function () {
1200
- 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, strokeColor = _d.strokeColor, strokeWidth = _d.strokeWidth, yStacked = _d.yStacked, baseline = _d.baseline, tooltip = _d.tooltip, template = _d.template, hideWhenFarFromPointer = _d.hideWhenFarFromPointer, hideWhenFarFromPointerDistance = _d.hideWhenFarFromPointerDistance, snapToData = _d.snapToData, getCircles = _d.getCircles;
1201
- var config = { 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 };
1200
+ 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, strokeColor = _d.strokeColor, strokeWidth = _d.strokeWidth, yStacked = _d.yStacked, baseline = _d.baseline, tooltip = _d.tooltip, template = _d.template, hideWhenFarFromPointer = _d.hideWhenFarFromPointer, hideWhenFarFromPointerDistance = _d.hideWhenFarFromPointerDistance, snapToData = _d.snapToData, getCircles = _d.getCircles, onCrosshairMove = _d.onCrosshairMove, forceShowAt = _d.forceShowAt;
1201
+ var config = { 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 };
1202
1202
  var keys = Object.keys(config);
1203
1203
  keys.forEach(function (key) {
1204
1204
  if (config[key] === undefined)
@@ -1209,7 +1209,7 @@
1209
1209
  return VisCrosshairComponent;
1210
1210
  }());
1211
1211
  VisCrosshairComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisCrosshairComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1212
- VisCrosshairComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, template: '', isInline: true });
1212
+ VisCrosshairComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, template: '', isInline: true });
1213
1213
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisCrosshairComponent, decorators: [{
1214
1214
  type: i0.Component,
1215
1215
  args: [{
@@ -1258,6 +1258,10 @@
1258
1258
  type: i0.Input
1259
1259
  }], getCircles: [{
1260
1260
  type: i0.Input
1261
+ }], onCrosshairMove: [{
1262
+ type: i0.Input
1263
+ }], forceShowAt: [{
1264
+ type: i0.Input
1261
1265
  }], data: [{
1262
1266
  type: i0.Input
1263
1267
  }] } });
@@ -1495,8 +1499,8 @@
1495
1499
  (_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
1496
1500
  };
1497
1501
  VisGraphComponent.prototype.getConfig = function () {
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 };
1502
+ 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, layoutParallelNodeSpacing = _d.layoutParallelNodeSpacing, layoutParallelSubGroupSpacing = _d.layoutParallelSubGroupSpacing, 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;
1503
+ 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, 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 };
1500
1504
  var keys = Object.keys(config);
1501
1505
  keys.forEach(function (key) {
1502
1506
  if (config[key] === undefined)
@@ -1507,7 +1511,7 @@
1507
1511
  return VisGraphComponent;
1508
1512
  }());
1509
1513
  VisGraphComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisGraphComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
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 });
1514
+ 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", 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__namespace, template: '', isInline: true });
1511
1515
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisGraphComponent, decorators: [{
1512
1516
  type: i0.Component,
1513
1517
  args: [{
@@ -1556,6 +1560,10 @@
1556
1560
  type: i0.Input
1557
1561
  }], layoutParallelSubGroupsPerRow: [{
1558
1562
  type: i0.Input
1563
+ }], layoutParallelNodeSpacing: [{
1564
+ type: i0.Input
1565
+ }], layoutParallelSubGroupSpacing: [{
1566
+ type: i0.Input
1559
1567
  }], layoutParallelGroupSpacing: [{
1560
1568
  type: i0.Input
1561
1569
  }], layoutParallelSortConnectionsByGroup: [{
@@ -2028,6 +2036,88 @@
2028
2036
  }]
2029
2037
  }] });
2030
2038
 
2039
+ // !!! This code was automatically generated. You should not change it !!!
2040
+ var VisPlotlineComponent = /** @class */ (function () {
2041
+ function VisPlotlineComponent() {
2042
+ }
2043
+ VisPlotlineComponent.prototype.ngAfterViewInit = function () {
2044
+ this.component = new ts.Plotline(this.getConfig());
2045
+ };
2046
+ VisPlotlineComponent.prototype.ngOnChanges = function (changes) {
2047
+ var _a, _b;
2048
+ (_a = this.component) === null || _a === void 0 ? void 0 : _a.setConfig(this.getConfig());
2049
+ (_b = this.componentContainer) === null || _b === void 0 ? void 0 : _b.render();
2050
+ };
2051
+ VisPlotlineComponent.prototype.getConfig = function () {
2052
+ var _c = this, duration = _c.duration, events = _c.events, attributes = _c.attributes, lineWidth = _c.lineWidth, axis = _c.axis, value = _c.value, lineStyle = _c.lineStyle, labelText = _c.labelText, labelPosition = _c.labelPosition, labelOffsetX = _c.labelOffsetX, labelOffsetY = _c.labelOffsetY, labelOrientation = _c.labelOrientation, labelColor = _c.labelColor, labelSize = _c.labelSize;
2053
+ var config = { 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 };
2054
+ var keys = Object.keys(config);
2055
+ keys.forEach(function (key) {
2056
+ if (config[key] === undefined)
2057
+ delete config[key];
2058
+ });
2059
+ return config;
2060
+ };
2061
+ return VisPlotlineComponent;
2062
+ }());
2063
+ VisPlotlineComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisPlotlineComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
2064
+ VisPlotlineComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, template: '', isInline: true });
2065
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisPlotlineComponent, decorators: [{
2066
+ type: i0.Component,
2067
+ args: [{
2068
+ selector: 'vis-plotline',
2069
+ template: '',
2070
+ // eslint-disable-next-line no-use-before-define
2071
+ providers: [{ provide: VisXYComponent, useExisting: VisPlotlineComponent }],
2072
+ }]
2073
+ }], propDecorators: { duration: [{
2074
+ type: i0.Input
2075
+ }], events: [{
2076
+ type: i0.Input
2077
+ }], attributes: [{
2078
+ type: i0.Input
2079
+ }], lineWidth: [{
2080
+ type: i0.Input
2081
+ }], axis: [{
2082
+ type: i0.Input
2083
+ }], value: [{
2084
+ type: i0.Input
2085
+ }], lineStyle: [{
2086
+ type: i0.Input
2087
+ }], labelText: [{
2088
+ type: i0.Input
2089
+ }], labelPosition: [{
2090
+ type: i0.Input
2091
+ }], labelOffsetX: [{
2092
+ type: i0.Input
2093
+ }], labelOffsetY: [{
2094
+ type: i0.Input
2095
+ }], labelOrientation: [{
2096
+ type: i0.Input
2097
+ }], labelColor: [{
2098
+ type: i0.Input
2099
+ }], labelSize: [{
2100
+ type: i0.Input
2101
+ }] } });
2102
+
2103
+ // !!! This code was automatically generated. You should not change it !!!
2104
+ var VisPlotlineModule = /** @class */ (function () {
2105
+ function VisPlotlineModule() {
2106
+ }
2107
+ return VisPlotlineModule;
2108
+ }());
2109
+ VisPlotlineModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisPlotlineModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
2110
+ VisPlotlineModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisPlotlineModule, declarations: [VisPlotlineComponent], exports: [VisPlotlineComponent] });
2111
+ VisPlotlineModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisPlotlineModule, imports: [[]] });
2112
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisPlotlineModule, decorators: [{
2113
+ type: i0.NgModule,
2114
+ args: [{
2115
+ imports: [],
2116
+ declarations: [VisPlotlineComponent],
2117
+ exports: [VisPlotlineComponent],
2118
+ }]
2119
+ }] });
2120
+
2031
2121
  // !!! This code was automatically generated. You should not change it !!!
2032
2122
  var VisSankeyComponent = /** @class */ (function () {
2033
2123
  function VisSankeyComponent() {
@@ -2417,8 +2507,8 @@
2417
2507
  (_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
2418
2508
  };
2419
2509
  VisTimelineComponent.prototype.getConfig = function () {
2420
- var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, x = _d.x, id = _d.id, color = _d.color, xScale = _d.xScale, yScale = _d.yScale, excludeFromDomainCalculation = _d.excludeFromDomainCalculation, lineWidth = _d.lineWidth, lineCap = _d.lineCap, rowHeight = _d.rowHeight, length = _d.length, type = _d.type, cursor = _d.cursor, showLabels = _d.showLabels, labelWidth = _d.labelWidth, maxLabelWidth = _d.maxLabelWidth, alternatingRowColors = _d.alternatingRowColors, onScroll = _d.onScroll, showEmptySegments = _d.showEmptySegments;
2421
- var config = { duration: duration, events: events, attributes: attributes, x: x, id: id, color: color, xScale: xScale, yScale: yScale, excludeFromDomainCalculation: excludeFromDomainCalculation, lineWidth: lineWidth, lineCap: lineCap, rowHeight: rowHeight, length: length, type: type, cursor: cursor, showLabels: showLabels, labelWidth: labelWidth, maxLabelWidth: maxLabelWidth, alternatingRowColors: alternatingRowColors, onScroll: onScroll, showEmptySegments: showEmptySegments };
2510
+ var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, x = _d.x, id = _d.id, color = _d.color, xScale = _d.xScale, yScale = _d.yScale, excludeFromDomainCalculation = _d.excludeFromDomainCalculation, type = _d.type, length = _d.length, cursor = _d.cursor, lineRow = _d.lineRow, lineDuration = _d.lineDuration, lineWidth = _d.lineWidth, lineCap = _d.lineCap, lineStartIcon = _d.lineStartIcon, lineStartIconColor = _d.lineStartIconColor, lineStartIconSize = _d.lineStartIconSize, lineStartIconArrangement = _d.lineStartIconArrangement, lineEndIcon = _d.lineEndIcon, lineEndIconColor = _d.lineEndIconColor, lineEndIconSize = _d.lineEndIconSize, lineEndIconArrangement = _d.lineEndIconArrangement, lineCursor = _d.lineCursor, showEmptySegments = _d.showEmptySegments, rowHeight = _d.rowHeight, alternatingRowColors = _d.alternatingRowColors, showLabels = _d.showLabels, labelWidth = _d.labelWidth, maxLabelWidth = _d.maxLabelWidth, showRowLabels = _d.showRowLabels, rowLabelStyle = _d.rowLabelStyle, rowLabelFormatter = _d.rowLabelFormatter, rowIcon = _d.rowIcon, rowLabelWidth = _d.rowLabelWidth, rowMaxLabelWidth = _d.rowMaxLabelWidth, rowLabelTextAlign = _d.rowLabelTextAlign, arrows = _d.arrows, animationLineEnterPosition = _d.animationLineEnterPosition, animationLineExitPosition = _d.animationLineExitPosition, onScroll = _d.onScroll;
2511
+ var config = { 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 };
2422
2512
  var keys = Object.keys(config);
2423
2513
  keys.forEach(function (key) {
2424
2514
  if (config[key] === undefined)
@@ -2429,7 +2519,7 @@
2429
2519
  return VisTimelineComponent;
2430
2520
  }());
2431
2521
  VisTimelineComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTimelineComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
2432
- VisTimelineComponent.ɵcmp = i0__namespace.ɵɵ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", rowHeight: "rowHeight", length: "length", type: "type", cursor: "cursor", showLabels: "showLabels", labelWidth: "labelWidth", maxLabelWidth: "maxLabelWidth", alternatingRowColors: "alternatingRowColors", onScroll: "onScroll", showEmptySegments: "showEmptySegments", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisTimelineComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
2522
+ VisTimelineComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, template: '', isInline: true });
2433
2523
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTimelineComponent, decorators: [{
2434
2524
  type: i0.Component,
2435
2525
  args: [{
@@ -2456,17 +2546,43 @@
2456
2546
  type: i0.Input
2457
2547
  }], excludeFromDomainCalculation: [{
2458
2548
  type: i0.Input
2549
+ }], type: [{
2550
+ type: i0.Input
2551
+ }], length: [{
2552
+ type: i0.Input
2553
+ }], cursor: [{
2554
+ type: i0.Input
2555
+ }], lineRow: [{
2556
+ type: i0.Input
2557
+ }], lineDuration: [{
2558
+ type: i0.Input
2459
2559
  }], lineWidth: [{
2460
2560
  type: i0.Input
2461
2561
  }], lineCap: [{
2462
2562
  type: i0.Input
2463
- }], rowHeight: [{
2563
+ }], lineStartIcon: [{
2464
2564
  type: i0.Input
2465
- }], length: [{
2565
+ }], lineStartIconColor: [{
2466
2566
  type: i0.Input
2467
- }], type: [{
2567
+ }], lineStartIconSize: [{
2468
2568
  type: i0.Input
2469
- }], cursor: [{
2569
+ }], lineStartIconArrangement: [{
2570
+ type: i0.Input
2571
+ }], lineEndIcon: [{
2572
+ type: i0.Input
2573
+ }], lineEndIconColor: [{
2574
+ type: i0.Input
2575
+ }], lineEndIconSize: [{
2576
+ type: i0.Input
2577
+ }], lineEndIconArrangement: [{
2578
+ type: i0.Input
2579
+ }], lineCursor: [{
2580
+ type: i0.Input
2581
+ }], showEmptySegments: [{
2582
+ type: i0.Input
2583
+ }], rowHeight: [{
2584
+ type: i0.Input
2585
+ }], alternatingRowColors: [{
2470
2586
  type: i0.Input
2471
2587
  }], showLabels: [{
2472
2588
  type: i0.Input
@@ -2474,11 +2590,27 @@
2474
2590
  type: i0.Input
2475
2591
  }], maxLabelWidth: [{
2476
2592
  type: i0.Input
2477
- }], alternatingRowColors: [{
2593
+ }], showRowLabels: [{
2478
2594
  type: i0.Input
2479
- }], onScroll: [{
2595
+ }], rowLabelStyle: [{
2480
2596
  type: i0.Input
2481
- }], showEmptySegments: [{
2597
+ }], rowLabelFormatter: [{
2598
+ type: i0.Input
2599
+ }], rowIcon: [{
2600
+ type: i0.Input
2601
+ }], rowLabelWidth: [{
2602
+ type: i0.Input
2603
+ }], rowMaxLabelWidth: [{
2604
+ type: i0.Input
2605
+ }], rowLabelTextAlign: [{
2606
+ type: i0.Input
2607
+ }], arrows: [{
2608
+ type: i0.Input
2609
+ }], animationLineEnterPosition: [{
2610
+ type: i0.Input
2611
+ }], animationLineExitPosition: [{
2612
+ type: i0.Input
2613
+ }], onScroll: [{
2482
2614
  type: i0.Input
2483
2615
  }], data: [{
2484
2616
  type: i0.Input
@@ -2742,6 +2874,86 @@
2742
2874
  }]
2743
2875
  }] });
2744
2876
 
2877
+ // !!! This code was automatically generated. You should not change it !!!
2878
+ var VisPlotbandComponent = /** @class */ (function () {
2879
+ function VisPlotbandComponent() {
2880
+ }
2881
+ VisPlotbandComponent.prototype.ngAfterViewInit = function () {
2882
+ this.component = new ts.Plotband(this.getConfig());
2883
+ };
2884
+ VisPlotbandComponent.prototype.ngOnChanges = function (changes) {
2885
+ var _a, _b;
2886
+ (_a = this.component) === null || _a === void 0 ? void 0 : _a.setConfig(this.getConfig());
2887
+ (_b = this.componentContainer) === null || _b === void 0 ? void 0 : _b.render();
2888
+ };
2889
+ VisPlotbandComponent.prototype.getConfig = function () {
2890
+ var _c = this, duration = _c.duration, events = _c.events, attributes = _c.attributes, axis = _c.axis, from = _c.from, to = _c.to, labelText = _c.labelText, labelPosition = _c.labelPosition, labelOffsetX = _c.labelOffsetX, labelOffsetY = _c.labelOffsetY, labelOrientation = _c.labelOrientation, labelColor = _c.labelColor, labelSize = _c.labelSize;
2891
+ var config = { 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 };
2892
+ var keys = Object.keys(config);
2893
+ keys.forEach(function (key) {
2894
+ if (config[key] === undefined)
2895
+ delete config[key];
2896
+ });
2897
+ return config;
2898
+ };
2899
+ return VisPlotbandComponent;
2900
+ }());
2901
+ VisPlotbandComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisPlotbandComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
2902
+ VisPlotbandComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, template: '', isInline: true });
2903
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisPlotbandComponent, decorators: [{
2904
+ type: i0.Component,
2905
+ args: [{
2906
+ selector: 'vis-plotband',
2907
+ template: '',
2908
+ // eslint-disable-next-line no-use-before-define
2909
+ providers: [{ provide: VisXYComponent, useExisting: VisPlotbandComponent }],
2910
+ }]
2911
+ }], propDecorators: { duration: [{
2912
+ type: i0.Input
2913
+ }], events: [{
2914
+ type: i0.Input
2915
+ }], attributes: [{
2916
+ type: i0.Input
2917
+ }], axis: [{
2918
+ type: i0.Input
2919
+ }], from: [{
2920
+ type: i0.Input
2921
+ }], to: [{
2922
+ type: i0.Input
2923
+ }], labelText: [{
2924
+ type: i0.Input
2925
+ }], labelPosition: [{
2926
+ type: i0.Input
2927
+ }], labelOffsetX: [{
2928
+ type: i0.Input
2929
+ }], labelOffsetY: [{
2930
+ type: i0.Input
2931
+ }], labelOrientation: [{
2932
+ type: i0.Input
2933
+ }], labelColor: [{
2934
+ type: i0.Input
2935
+ }], labelSize: [{
2936
+ type: i0.Input
2937
+ }] } });
2938
+
2939
+ // !!! This code was automatically generated. You should not change it !!!
2940
+ var VisPlotbandModule = /** @class */ (function () {
2941
+ function VisPlotbandModule() {
2942
+ }
2943
+ return VisPlotbandModule;
2944
+ }());
2945
+ VisPlotbandModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisPlotbandModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
2946
+ VisPlotbandModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisPlotbandModule, declarations: [VisPlotbandComponent], exports: [VisPlotbandComponent] });
2947
+ VisPlotbandModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisPlotbandModule, imports: [[]] });
2948
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisPlotbandModule, decorators: [{
2949
+ type: i0.NgModule,
2950
+ args: [{
2951
+ imports: [],
2952
+ declarations: [VisPlotbandComponent],
2953
+ exports: [VisPlotbandComponent],
2954
+ }]
2955
+ }] });
2956
+
2745
2957
  // !!! This code was automatically generated. You should not change it !!!
2746
2958
  var VisLeafletMapComponent = /** @class */ (function () {
2747
2959
  function VisLeafletMapComponent() {
@@ -3167,6 +3379,73 @@
3167
3379
  }]
3168
3380
  }] });
3169
3381
 
3382
+ // !!! This code was automatically generated. You should not change it !!!
3383
+ var VisRollingPinLegendComponent = /** @class */ (function () {
3384
+ function VisRollingPinLegendComponent() {
3385
+ }
3386
+ VisRollingPinLegendComponent.prototype.ngAfterViewInit = function () {
3387
+ this.component = new ts.RollingPinLegend(this.containerRef.nativeElement, this.getConfig());
3388
+ };
3389
+ VisRollingPinLegendComponent.prototype.ngOnChanges = function (changes) {
3390
+ var _a;
3391
+ (_a = this.component) === null || _a === void 0 ? void 0 : _a.setConfig(this.getConfig());
3392
+ };
3393
+ VisRollingPinLegendComponent.prototype.getConfig = function () {
3394
+ var _b = this, rects = _b.rects, leftLabelText = _b.leftLabelText, rightLabelText = _b.rightLabelText, labelClassName = _b.labelClassName, labelFontSize = _b.labelFontSize;
3395
+ var config = { rects: rects, leftLabelText: leftLabelText, rightLabelText: rightLabelText, labelClassName: labelClassName, labelFontSize: labelFontSize };
3396
+ var keys = Object.keys(config);
3397
+ keys.forEach(function (key) {
3398
+ if (config[key] === undefined)
3399
+ delete config[key];
3400
+ });
3401
+ return config;
3402
+ };
3403
+ return VisRollingPinLegendComponent;
3404
+ }());
3405
+ VisRollingPinLegendComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisRollingPinLegendComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
3406
+ VisRollingPinLegendComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, template: '<div #container class="rolling-pin-legend-container"></div>', isInline: true, styles: [".rolling-pin-legend-container { }"] });
3407
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisRollingPinLegendComponent, decorators: [{
3408
+ type: i0.Component,
3409
+ args: [{
3410
+ selector: 'vis-rolling-pin-legend',
3411
+ template: '<div #container class="rolling-pin-legend-container"></div>',
3412
+ styles: ['.rolling-pin-legend-container { }'],
3413
+ // eslint-disable-next-line no-use-before-define
3414
+ providers: [{ provide: VisGenericComponent, useExisting: VisRollingPinLegendComponent }],
3415
+ }]
3416
+ }], propDecorators: { containerRef: [{
3417
+ type: i0.ViewChild,
3418
+ args: ['container', { static: false }]
3419
+ }], rects: [{
3420
+ type: i0.Input
3421
+ }], leftLabelText: [{
3422
+ type: i0.Input
3423
+ }], rightLabelText: [{
3424
+ type: i0.Input
3425
+ }], labelClassName: [{
3426
+ type: i0.Input
3427
+ }], labelFontSize: [{
3428
+ type: i0.Input
3429
+ }] } });
3430
+
3431
+ // !!! This code was automatically generated. You should not change it !!!
3432
+ var VisRollingPinLegendModule = /** @class */ (function () {
3433
+ function VisRollingPinLegendModule() {
3434
+ }
3435
+ return VisRollingPinLegendModule;
3436
+ }());
3437
+ VisRollingPinLegendModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisRollingPinLegendModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
3438
+ VisRollingPinLegendModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisRollingPinLegendModule, declarations: [VisRollingPinLegendComponent], exports: [VisRollingPinLegendComponent] });
3439
+ VisRollingPinLegendModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisRollingPinLegendModule, imports: [[]] });
3440
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisRollingPinLegendModule, decorators: [{
3441
+ type: i0.NgModule,
3442
+ args: [{
3443
+ imports: [],
3444
+ declarations: [VisRollingPinLegendComponent],
3445
+ exports: [VisRollingPinLegendComponent],
3446
+ }]
3447
+ }] });
3448
+
3170
3449
  // !!! This code was automatically generated. You should not change it !!!
3171
3450
  var VisTooltipModule = /** @class */ (function () {
3172
3451
  function VisTooltipModule() {
@@ -3223,6 +3502,12 @@
3223
3502
  exports.VisLineModule = VisLineModule;
3224
3503
  exports.VisNestedDonutComponent = VisNestedDonutComponent;
3225
3504
  exports.VisNestedDonutModule = VisNestedDonutModule;
3505
+ exports.VisPlotbandComponent = VisPlotbandComponent;
3506
+ exports.VisPlotbandModule = VisPlotbandModule;
3507
+ exports.VisPlotlineComponent = VisPlotlineComponent;
3508
+ exports.VisPlotlineModule = VisPlotlineModule;
3509
+ exports.VisRollingPinLegendComponent = VisRollingPinLegendComponent;
3510
+ exports.VisRollingPinLegendModule = VisRollingPinLegendModule;
3226
3511
  exports.VisSankeyComponent = VisSankeyComponent;
3227
3512
  exports.VisSankeyModule = VisSankeyModule;
3228
3513
  exports.VisScatterComponent = VisScatterComponent;