@unovis/angular 1.7.0-Phoenix.0 → 1.7.0-pre.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/bundles/unovis-angular.umd.js +106 -7
- package/dist/lib/bundles/unovis-angular.umd.js.map +1 -1
- package/dist/lib/components/area/area.component.d.ts +3 -1
- package/dist/lib/components/sankey/sankey.component.d.ts +26 -3
- package/dist/lib/components.d.ts +2 -0
- package/dist/lib/esm2015/components/area/area.component.js +6 -4
- package/dist/lib/esm2015/components/sankey/sankey.component.js +26 -4
- package/dist/lib/esm2015/components.js +3 -1
- package/dist/lib/esm2015/html-components/bullet-legend/bullet-legend.component.js +2 -2
- package/dist/lib/esm2015/html-components/flow-legend/flow-legend.component.js +54 -0
- package/dist/lib/esm2015/html-components/flow-legend/flow-legend.module.js +18 -0
- package/dist/lib/fesm2015/unovis-angular.js +98 -9
- package/dist/lib/fesm2015/unovis-angular.js.map +1 -1
- package/dist/lib/html-components/flow-legend/flow-legend.component.d.ts +28 -0
- package/dist/lib/html-components/flow-legend/flow-legend.module.d.ts +7 -0
- package/dist/lib/package.json +2 -2
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { Component, Input, ViewChild, ContentChildren, ContentChild, NgModule } from '@angular/core';
|
|
3
|
-
import { Tooltip, Annotations, Direction, XYContainer, Crosshair, Axis, SingleContainer, Area, Brush, ChordDiagram, Donut, FreeBrush, Graph, GroupedBar, Line, NestedDonut, Plotline, Sankey, Scatter, StackedBar, Timeline, XYLabels, TopoJSONMap, Plotband, LeafletMap, LeafletFlowMap, BulletLegend, RollingPinLegend } from '@unovis/ts';
|
|
3
|
+
import { Tooltip, Annotations, Direction, XYContainer, Crosshair, Axis, SingleContainer, Area, Brush, ChordDiagram, Donut, FreeBrush, Graph, GroupedBar, Line, NestedDonut, Plotline, Sankey, Scatter, StackedBar, Timeline, XYLabels, TopoJSONMap, Plotband, LeafletMap, LeafletFlowMap, BulletLegend, FlowLegend, RollingPinLegend } from '@unovis/ts';
|
|
4
4
|
|
|
5
5
|
class VisGenericComponent {
|
|
6
6
|
}
|
|
@@ -399,8 +399,8 @@ class VisAreaComponent {
|
|
|
399
399
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
400
400
|
}
|
|
401
401
|
getConfig() {
|
|
402
|
-
const { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, curveType, baseline, opacity, cursor, minHeight1Px, minHeight } = this;
|
|
403
|
-
const config = { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, curveType, baseline, opacity, cursor, minHeight1Px, minHeight };
|
|
402
|
+
const { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, curveType, baseline, opacity, cursor, minHeight1Px, minHeight, stackMinHeight } = this;
|
|
403
|
+
const config = { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, curveType, baseline, opacity, cursor, minHeight1Px, minHeight, stackMinHeight };
|
|
404
404
|
const keys = Object.keys(config);
|
|
405
405
|
keys.forEach(key => { if (config[key] === undefined)
|
|
406
406
|
delete config[key]; });
|
|
@@ -408,7 +408,7 @@ class VisAreaComponent {
|
|
|
408
408
|
}
|
|
409
409
|
}
|
|
410
410
|
VisAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisAreaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
411
|
-
VisAreaComponent.ɵcmp = i0.ɵɵ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, template: '', isInline: true });
|
|
411
|
+
VisAreaComponent.ɵcmp = i0.ɵɵ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", stackMinHeight: "stackMinHeight", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisAreaComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
412
412
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisAreaComponent, decorators: [{
|
|
413
413
|
type: Component,
|
|
414
414
|
args: [{
|
|
@@ -449,6 +449,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
449
449
|
type: Input
|
|
450
450
|
}], minHeight: [{
|
|
451
451
|
type: Input
|
|
452
|
+
}], stackMinHeight: [{
|
|
453
|
+
type: Input
|
|
452
454
|
}], data: [{
|
|
453
455
|
type: Input
|
|
454
456
|
}] } });
|
|
@@ -1672,8 +1674,8 @@ class VisSankeyComponent {
|
|
|
1672
1674
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1673
1675
|
}
|
|
1674
1676
|
getConfig() {
|
|
1675
|
-
const { duration, events, attributes, id, heightNormalizationCoeff, exitTransitionType, enterTransitionType, highlightSubtreeOnHover, highlightDuration, highlightDelay, iterations, nodeSort, linkSort, nodeWidth, nodeAlign, nodeHorizontalSpacing, nodeMinHeight, nodeMaxHeight, nodePadding, showSingleNode, nodeCursor, nodeIcon, nodeColor, nodeFixedValue, nodeIconColor, linkColor, linkValue, linkCursor, label, subLabel, labelPosition, labelVerticalAlign, labelBackground, labelFit, labelMaxWidth, labelExpandTrimmedOnHover, labelTrimMode, labelFontSize, labelTextSeparator, labelForceWordBreak, labelColor, labelCursor, labelVisibility, subLabelFontSize, subLabelColor, subLabelPlacement, subLabelToLabelInlineWidthRatio } = this;
|
|
1676
|
-
const config = { duration, events, attributes, id, heightNormalizationCoeff, exitTransitionType, enterTransitionType, highlightSubtreeOnHover, highlightDuration, highlightDelay, iterations, nodeSort, linkSort, nodeWidth, nodeAlign, nodeHorizontalSpacing, nodeMinHeight, nodeMaxHeight, nodePadding, showSingleNode, nodeCursor, nodeIcon, nodeColor, nodeFixedValue, nodeIconColor, linkColor, linkValue, linkCursor, label, subLabel, labelPosition, labelVerticalAlign, labelBackground, labelFit, labelMaxWidth, labelExpandTrimmedOnHover, labelTrimMode, labelFontSize, labelTextSeparator, labelForceWordBreak, labelColor, labelCursor, labelVisibility, subLabelFontSize, subLabelColor, subLabelPlacement, subLabelToLabelInlineWidthRatio };
|
|
1677
|
+
const { duration, events, attributes, id, heightNormalizationCoeff, zoomScale, zoomPan, enableZoom, zoomExtent, zoomMode, exitTransitionType, enterTransitionType, highlightSubtreeOnHover, highlightDuration, highlightDelay, iterations, nodeSort, linkSort, nodeWidth, nodeAlign, nodeHorizontalSpacing, nodeMinHeight, nodeMaxHeight, nodePadding, showSingleNode, nodeCursor, nodeIcon, nodeColor, nodeFixedValue, nodeIconColor, linkColor, linkValue, linkCursor, label, subLabel, labelPosition, labelVerticalAlign, labelBackground, labelFit, labelMaxWidth, labelMaxWidthTakeAvailableSpace, labelMaxWidthTakeAvailableSpaceTolerance, labelExpandTrimmedOnHover, labelTrimMode, labelFontSize, labelTextSeparator, labelTextDecoration, labelForceWordBreak, labelColor, labelCursor, labelVisibility, subLabelFontSize, subLabelColor, subLabelPlacement, subLabelTextDecoration, subLabelToLabelInlineWidthRatio, onZoom, selectedNodeIds } = this;
|
|
1678
|
+
const config = { duration, events, attributes, id, heightNormalizationCoeff, zoomScale, zoomPan, enableZoom, zoomExtent, zoomMode, exitTransitionType, enterTransitionType, highlightSubtreeOnHover, highlightDuration, highlightDelay, iterations, nodeSort, linkSort, nodeWidth, nodeAlign, nodeHorizontalSpacing, nodeMinHeight, nodeMaxHeight, nodePadding, showSingleNode, nodeCursor, nodeIcon, nodeColor, nodeFixedValue, nodeIconColor, linkColor, linkValue, linkCursor, label, subLabel, labelPosition, labelVerticalAlign, labelBackground, labelFit, labelMaxWidth, labelMaxWidthTakeAvailableSpace, labelMaxWidthTakeAvailableSpaceTolerance, labelExpandTrimmedOnHover, labelTrimMode, labelFontSize, labelTextSeparator, labelTextDecoration, labelForceWordBreak, labelColor, labelCursor, labelVisibility, subLabelFontSize, subLabelColor, subLabelPlacement, subLabelTextDecoration, subLabelToLabelInlineWidthRatio, onZoom, selectedNodeIds };
|
|
1677
1679
|
const keys = Object.keys(config);
|
|
1678
1680
|
keys.forEach(key => { if (config[key] === undefined)
|
|
1679
1681
|
delete config[key]; });
|
|
@@ -1681,7 +1683,7 @@ class VisSankeyComponent {
|
|
|
1681
1683
|
}
|
|
1682
1684
|
}
|
|
1683
1685
|
VisSankeyComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisSankeyComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1684
|
-
VisSankeyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisSankeyComponent, selector: "vis-sankey", inputs: { duration: "duration", events: "events", attributes: "attributes", id: "id", heightNormalizationCoeff: "heightNormalizationCoeff", exitTransitionType: "exitTransitionType", enterTransitionType: "enterTransitionType", highlightSubtreeOnHover: "highlightSubtreeOnHover", highlightDuration: "highlightDuration", highlightDelay: "highlightDelay", iterations: "iterations", nodeSort: "nodeSort", linkSort: "linkSort", nodeWidth: "nodeWidth", nodeAlign: "nodeAlign", nodeHorizontalSpacing: "nodeHorizontalSpacing", nodeMinHeight: "nodeMinHeight", nodeMaxHeight: "nodeMaxHeight", nodePadding: "nodePadding", showSingleNode: "showSingleNode", nodeCursor: "nodeCursor", nodeIcon: "nodeIcon", nodeColor: "nodeColor", nodeFixedValue: "nodeFixedValue", nodeIconColor: "nodeIconColor", linkColor: "linkColor", linkValue: "linkValue", linkCursor: "linkCursor", label: "label", subLabel: "subLabel", labelPosition: "labelPosition", labelVerticalAlign: "labelVerticalAlign", labelBackground: "labelBackground", labelFit: "labelFit", labelMaxWidth: "labelMaxWidth", labelExpandTrimmedOnHover: "labelExpandTrimmedOnHover", labelTrimMode: "labelTrimMode", labelFontSize: "labelFontSize", labelTextSeparator: "labelTextSeparator", labelForceWordBreak: "labelForceWordBreak", labelColor: "labelColor", labelCursor: "labelCursor", labelVisibility: "labelVisibility", subLabelFontSize: "subLabelFontSize", subLabelColor: "subLabelColor", subLabelPlacement: "subLabelPlacement", subLabelToLabelInlineWidthRatio: "subLabelToLabelInlineWidthRatio", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisSankeyComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
1686
|
+
VisSankeyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisSankeyComponent, selector: "vis-sankey", inputs: { duration: "duration", events: "events", attributes: "attributes", id: "id", heightNormalizationCoeff: "heightNormalizationCoeff", zoomScale: "zoomScale", zoomPan: "zoomPan", enableZoom: "enableZoom", zoomExtent: "zoomExtent", zoomMode: "zoomMode", exitTransitionType: "exitTransitionType", enterTransitionType: "enterTransitionType", highlightSubtreeOnHover: "highlightSubtreeOnHover", highlightDuration: "highlightDuration", highlightDelay: "highlightDelay", iterations: "iterations", nodeSort: "nodeSort", linkSort: "linkSort", nodeWidth: "nodeWidth", nodeAlign: "nodeAlign", nodeHorizontalSpacing: "nodeHorizontalSpacing", nodeMinHeight: "nodeMinHeight", nodeMaxHeight: "nodeMaxHeight", nodePadding: "nodePadding", showSingleNode: "showSingleNode", nodeCursor: "nodeCursor", nodeIcon: "nodeIcon", nodeColor: "nodeColor", nodeFixedValue: "nodeFixedValue", nodeIconColor: "nodeIconColor", linkColor: "linkColor", linkValue: "linkValue", linkCursor: "linkCursor", label: "label", subLabel: "subLabel", labelPosition: "labelPosition", labelVerticalAlign: "labelVerticalAlign", labelBackground: "labelBackground", labelFit: "labelFit", labelMaxWidth: "labelMaxWidth", labelMaxWidthTakeAvailableSpace: "labelMaxWidthTakeAvailableSpace", labelMaxWidthTakeAvailableSpaceTolerance: "labelMaxWidthTakeAvailableSpaceTolerance", labelExpandTrimmedOnHover: "labelExpandTrimmedOnHover", labelTrimMode: "labelTrimMode", labelFontSize: "labelFontSize", labelTextSeparator: "labelTextSeparator", labelTextDecoration: "labelTextDecoration", labelForceWordBreak: "labelForceWordBreak", labelColor: "labelColor", labelCursor: "labelCursor", labelVisibility: "labelVisibility", subLabelFontSize: "subLabelFontSize", subLabelColor: "subLabelColor", subLabelPlacement: "subLabelPlacement", subLabelTextDecoration: "subLabelTextDecoration", subLabelToLabelInlineWidthRatio: "subLabelToLabelInlineWidthRatio", onZoom: "onZoom", selectedNodeIds: "selectedNodeIds", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisSankeyComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
1685
1687
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisSankeyComponent, decorators: [{
|
|
1686
1688
|
type: Component,
|
|
1687
1689
|
args: [{
|
|
@@ -1700,6 +1702,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
1700
1702
|
type: Input
|
|
1701
1703
|
}], heightNormalizationCoeff: [{
|
|
1702
1704
|
type: Input
|
|
1705
|
+
}], zoomScale: [{
|
|
1706
|
+
type: Input
|
|
1707
|
+
}], zoomPan: [{
|
|
1708
|
+
type: Input
|
|
1709
|
+
}], enableZoom: [{
|
|
1710
|
+
type: Input
|
|
1711
|
+
}], zoomExtent: [{
|
|
1712
|
+
type: Input
|
|
1713
|
+
}], zoomMode: [{
|
|
1714
|
+
type: Input
|
|
1703
1715
|
}], exitTransitionType: [{
|
|
1704
1716
|
type: Input
|
|
1705
1717
|
}], enterTransitionType: [{
|
|
@@ -1760,6 +1772,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
1760
1772
|
type: Input
|
|
1761
1773
|
}], labelMaxWidth: [{
|
|
1762
1774
|
type: Input
|
|
1775
|
+
}], labelMaxWidthTakeAvailableSpace: [{
|
|
1776
|
+
type: Input
|
|
1777
|
+
}], labelMaxWidthTakeAvailableSpaceTolerance: [{
|
|
1778
|
+
type: Input
|
|
1763
1779
|
}], labelExpandTrimmedOnHover: [{
|
|
1764
1780
|
type: Input
|
|
1765
1781
|
}], labelTrimMode: [{
|
|
@@ -1768,6 +1784,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
1768
1784
|
type: Input
|
|
1769
1785
|
}], labelTextSeparator: [{
|
|
1770
1786
|
type: Input
|
|
1787
|
+
}], labelTextDecoration: [{
|
|
1788
|
+
type: Input
|
|
1771
1789
|
}], labelForceWordBreak: [{
|
|
1772
1790
|
type: Input
|
|
1773
1791
|
}], labelColor: [{
|
|
@@ -1782,8 +1800,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
1782
1800
|
type: Input
|
|
1783
1801
|
}], subLabelPlacement: [{
|
|
1784
1802
|
type: Input
|
|
1803
|
+
}], subLabelTextDecoration: [{
|
|
1804
|
+
type: Input
|
|
1785
1805
|
}], subLabelToLabelInlineWidthRatio: [{
|
|
1786
1806
|
type: Input
|
|
1807
|
+
}], onZoom: [{
|
|
1808
|
+
type: Input
|
|
1809
|
+
}], selectedNodeIds: [{
|
|
1810
|
+
type: Input
|
|
1787
1811
|
}], data: [{
|
|
1788
1812
|
type: Input
|
|
1789
1813
|
}] } });
|
|
@@ -2778,7 +2802,7 @@ class VisBulletLegendComponent {
|
|
|
2778
2802
|
}
|
|
2779
2803
|
ngOnChanges(changes) {
|
|
2780
2804
|
var _a;
|
|
2781
|
-
(_a = this.component) === null || _a === void 0 ? void 0 : _a.
|
|
2805
|
+
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setConfig(this.getConfig());
|
|
2782
2806
|
}
|
|
2783
2807
|
getConfig() {
|
|
2784
2808
|
const { items, labelClassName, onLegendItemClick, labelFontSize, labelMaxWidth, bulletSize, bulletSpacing, bulletShape, orientation } = this;
|
|
@@ -2838,6 +2862,71 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
2838
2862
|
}]
|
|
2839
2863
|
}] });
|
|
2840
2864
|
|
|
2865
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
2866
|
+
class VisFlowLegendComponent {
|
|
2867
|
+
ngAfterViewInit() {
|
|
2868
|
+
this.component = new FlowLegend(this.containerRef.nativeElement, Object.assign(Object.assign({}, this.getConfig()), { renderIntoProvidedDomNode: true }));
|
|
2869
|
+
}
|
|
2870
|
+
ngOnChanges(changes) {
|
|
2871
|
+
var _a;
|
|
2872
|
+
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setConfig(this.getConfig());
|
|
2873
|
+
}
|
|
2874
|
+
getConfig() {
|
|
2875
|
+
const { customWidth, items, lineColor, labelColor, labelFontSize, arrowSymbol, arrowColor, onLegendItemClick } = this;
|
|
2876
|
+
const config = { customWidth, items, lineColor, labelColor, labelFontSize, arrowSymbol, arrowColor, onLegendItemClick };
|
|
2877
|
+
const keys = Object.keys(config);
|
|
2878
|
+
keys.forEach(key => { if (config[key] === undefined)
|
|
2879
|
+
delete config[key]; });
|
|
2880
|
+
return config;
|
|
2881
|
+
}
|
|
2882
|
+
}
|
|
2883
|
+
VisFlowLegendComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisFlowLegendComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2884
|
+
VisFlowLegendComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisFlowLegendComponent, selector: "vis-flow-legend", inputs: { customWidth: "customWidth", items: "items", lineColor: "lineColor", labelColor: "labelColor", labelFontSize: "labelFontSize", arrowSymbol: "arrowSymbol", arrowColor: "arrowColor", onLegendItemClick: "onLegendItemClick" }, providers: [{ provide: VisGenericComponent, useExisting: VisFlowLegendComponent }], viewQueries: [{ propertyName: "containerRef", first: true, predicate: ["container"], descendants: true }], usesOnChanges: true, ngImport: i0, template: '<div #container class="flow-legend-container"></div>', isInline: true, styles: [".flow-legend-container { }"] });
|
|
2885
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisFlowLegendComponent, decorators: [{
|
|
2886
|
+
type: Component,
|
|
2887
|
+
args: [{
|
|
2888
|
+
selector: 'vis-flow-legend',
|
|
2889
|
+
template: '<div #container class="flow-legend-container"></div>',
|
|
2890
|
+
styles: ['.flow-legend-container { }'],
|
|
2891
|
+
// eslint-disable-next-line no-use-before-define
|
|
2892
|
+
providers: [{ provide: VisGenericComponent, useExisting: VisFlowLegendComponent }],
|
|
2893
|
+
}]
|
|
2894
|
+
}], propDecorators: { containerRef: [{
|
|
2895
|
+
type: ViewChild,
|
|
2896
|
+
args: ['container', { static: false }]
|
|
2897
|
+
}], customWidth: [{
|
|
2898
|
+
type: Input
|
|
2899
|
+
}], items: [{
|
|
2900
|
+
type: Input
|
|
2901
|
+
}], lineColor: [{
|
|
2902
|
+
type: Input
|
|
2903
|
+
}], labelColor: [{
|
|
2904
|
+
type: Input
|
|
2905
|
+
}], labelFontSize: [{
|
|
2906
|
+
type: Input
|
|
2907
|
+
}], arrowSymbol: [{
|
|
2908
|
+
type: Input
|
|
2909
|
+
}], arrowColor: [{
|
|
2910
|
+
type: Input
|
|
2911
|
+
}], onLegendItemClick: [{
|
|
2912
|
+
type: Input
|
|
2913
|
+
}] } });
|
|
2914
|
+
|
|
2915
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
2916
|
+
class VisFlowLegendModule {
|
|
2917
|
+
}
|
|
2918
|
+
VisFlowLegendModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisFlowLegendModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2919
|
+
VisFlowLegendModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisFlowLegendModule, declarations: [VisFlowLegendComponent], exports: [VisFlowLegendComponent] });
|
|
2920
|
+
VisFlowLegendModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisFlowLegendModule, imports: [[]] });
|
|
2921
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisFlowLegendModule, decorators: [{
|
|
2922
|
+
type: NgModule,
|
|
2923
|
+
args: [{
|
|
2924
|
+
imports: [],
|
|
2925
|
+
declarations: [VisFlowLegendComponent],
|
|
2926
|
+
exports: [VisFlowLegendComponent],
|
|
2927
|
+
}]
|
|
2928
|
+
}] });
|
|
2929
|
+
|
|
2841
2930
|
// !!! This code was automatically generated. You should not change it !!!
|
|
2842
2931
|
class VisRollingPinLegendComponent {
|
|
2843
2932
|
ngAfterViewInit() {
|
|
@@ -2918,5 +3007,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
2918
3007
|
* Generated bundle index. Do not edit.
|
|
2919
3008
|
*/
|
|
2920
3009
|
|
|
2921
|
-
export { VisAnnotationsComponent, VisAnnotationsModule, VisAreaComponent, VisAreaModule, VisAxisComponent, VisAxisModule, VisBrushComponent, VisBrushModule, VisBulletLegendComponent, VisBulletLegendModule, VisChordDiagramComponent, VisChordDiagramModule, VisCoreComponent, VisCrosshairComponent, VisCrosshairModule, VisDonutComponent, VisDonutModule, VisFreeBrushComponent, VisFreeBrushModule, VisGenericComponent, VisGraphComponent, VisGraphModule, VisGroupedBarComponent, VisGroupedBarModule, VisLeafletFlowMapComponent, VisLeafletFlowMapModule, VisLeafletMapComponent, VisLeafletMapModule, VisLineComponent, VisLineModule, VisNestedDonutComponent, VisNestedDonutModule, VisPlotbandComponent, VisPlotbandModule, VisPlotlineComponent, VisPlotlineModule, VisRollingPinLegendComponent, VisRollingPinLegendModule, VisSankeyComponent, VisSankeyModule, VisScatterComponent, VisScatterModule, VisSingleContainerComponent, VisSingleContainerModule, VisStackedBarComponent, VisStackedBarModule, VisTimelineComponent, VisTimelineModule, VisTooltipComponent, VisTooltipModule, VisTopoJSONMapComponent, VisTopoJSONMapModule, VisXYComponent, VisXYContainerComponent, VisXYContainerModule, VisXYLabelsComponent, VisXYLabelsModule };
|
|
3010
|
+
export { VisAnnotationsComponent, VisAnnotationsModule, VisAreaComponent, VisAreaModule, VisAxisComponent, VisAxisModule, VisBrushComponent, VisBrushModule, VisBulletLegendComponent, VisBulletLegendModule, VisChordDiagramComponent, VisChordDiagramModule, VisCoreComponent, VisCrosshairComponent, VisCrosshairModule, VisDonutComponent, VisDonutModule, VisFlowLegendComponent, VisFlowLegendModule, VisFreeBrushComponent, VisFreeBrushModule, VisGenericComponent, VisGraphComponent, VisGraphModule, VisGroupedBarComponent, VisGroupedBarModule, VisLeafletFlowMapComponent, VisLeafletFlowMapModule, VisLeafletMapComponent, VisLeafletMapModule, VisLineComponent, VisLineModule, VisNestedDonutComponent, VisNestedDonutModule, VisPlotbandComponent, VisPlotbandModule, VisPlotlineComponent, VisPlotlineModule, VisRollingPinLegendComponent, VisRollingPinLegendModule, VisSankeyComponent, VisSankeyModule, VisScatterComponent, VisScatterModule, VisSingleContainerComponent, VisSingleContainerModule, VisStackedBarComponent, VisStackedBarModule, VisTimelineComponent, VisTimelineModule, VisTooltipComponent, VisTooltipModule, VisTopoJSONMapComponent, VisTopoJSONMapModule, VisXYComponent, VisXYContainerComponent, VisXYContainerModule, VisXYLabelsComponent, VisXYLabelsModule };
|
|
2922
3011
|
//# sourceMappingURL=unovis-angular.js.map
|