@unovis/angular 1.7.0-Phoenix.0 → 1.7.0-stellar.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/bundles/unovis-angular.umd.js +64 -6
- 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/topojson-map/topojson-map.component.d.ts +58 -2
- package/dist/lib/esm2015/components/area/area.component.js +6 -4
- package/dist/lib/esm2015/components/topojson-map/topojson-map.component.js +60 -4
- package/dist/lib/fesm2015/unovis-angular.js +64 -6
- package/dist/lib/fesm2015/unovis-angular.js.map +1 -1
- package/dist/lib/package.json +2 -2
- package/package.json +2 -2
|
@@ -775,8 +775,8 @@
|
|
|
775
775
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
776
776
|
};
|
|
777
777
|
VisAreaComponent.prototype.getConfig = function () {
|
|
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 };
|
|
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, stackMinHeight = _d.stackMinHeight;
|
|
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, stackMinHeight: stackMinHeight };
|
|
780
780
|
var keys = Object.keys(config);
|
|
781
781
|
keys.forEach(function (key) {
|
|
782
782
|
if (config[key] === undefined)
|
|
@@ -787,7 +787,7 @@
|
|
|
787
787
|
return VisAreaComponent;
|
|
788
788
|
}());
|
|
789
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 });
|
|
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 });
|
|
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", stackMinHeight: "stackMinHeight", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisAreaComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
791
791
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisAreaComponent, decorators: [{
|
|
792
792
|
type: i0.Component,
|
|
793
793
|
args: [{
|
|
@@ -828,6 +828,8 @@
|
|
|
828
828
|
type: i0.Input
|
|
829
829
|
}], minHeight: [{
|
|
830
830
|
type: i0.Input
|
|
831
|
+
}], stackMinHeight: [{
|
|
832
|
+
type: i0.Input
|
|
831
833
|
}], data: [{
|
|
832
834
|
type: i0.Input
|
|
833
835
|
}] } });
|
|
@@ -2775,8 +2777,8 @@
|
|
|
2775
2777
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
2776
2778
|
};
|
|
2777
2779
|
VisTopoJSONMapComponent.prototype.getConfig = function () {
|
|
2778
|
-
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, projection = _d.projection, topojson = _d.topojson, mapFeatureName = _d.mapFeatureName, mapFitToPoints = _d.mapFitToPoints, zoomFactor = _d.zoomFactor, disableZoom = _d.disableZoom, zoomExtent = _d.zoomExtent, zoomDuration = _d.zoomDuration, linkWidth = _d.linkWidth, linkColor = _d.linkColor, linkCursor = _d.linkCursor, linkId = _d.linkId, linkSource = _d.linkSource, linkTarget = _d.linkTarget, areaId = _d.areaId, areaColor = _d.areaColor, areaCursor = _d.areaCursor, pointColor = _d.pointColor, pointRadius = _d.pointRadius, pointStrokeWidth = _d.pointStrokeWidth, pointCursor = _d.pointCursor, longitude = _d.longitude, latitude = _d.latitude, pointLabel = _d.pointLabel, pointLabelPosition = _d.pointLabelPosition, pointLabelTextBrightnessRatio = _d.pointLabelTextBrightnessRatio, pointId = _d.pointId, heatmapMode = _d.heatmapMode, heatmapModeBlurStdDeviation = _d.heatmapModeBlurStdDeviation, heatmapModeZoomLevelThreshold = _d.heatmapModeZoomLevelThreshold;
|
|
2779
|
-
var config = { duration: duration, events: events, attributes: attributes, projection: projection, topojson: topojson, mapFeatureName: mapFeatureName, mapFitToPoints: mapFitToPoints, zoomFactor: zoomFactor, disableZoom: disableZoom, zoomExtent: zoomExtent, zoomDuration: zoomDuration, linkWidth: linkWidth, linkColor: linkColor, linkCursor: linkCursor, linkId: linkId, linkSource: linkSource, linkTarget: linkTarget, areaId: areaId, areaColor: areaColor, areaCursor: areaCursor, pointColor: pointColor, pointRadius: pointRadius, pointStrokeWidth: pointStrokeWidth, pointCursor: pointCursor, longitude: longitude, latitude: latitude, pointLabel: pointLabel, pointLabelPosition: pointLabelPosition, pointLabelTextBrightnessRatio: pointLabelTextBrightnessRatio, pointId: pointId, heatmapMode: heatmapMode, heatmapModeBlurStdDeviation: heatmapModeBlurStdDeviation, heatmapModeZoomLevelThreshold: heatmapModeZoomLevelThreshold };
|
|
2780
|
+
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, projection = _d.projection, topojson = _d.topojson, mapFeatureName = _d.mapFeatureName, mapFitToPoints = _d.mapFitToPoints, zoomFactor = _d.zoomFactor, disableZoom = _d.disableZoom, zoomExtent = _d.zoomExtent, zoomDuration = _d.zoomDuration, linkWidth = _d.linkWidth, linkColor = _d.linkColor, linkCursor = _d.linkCursor, linkId = _d.linkId, linkSource = _d.linkSource, linkTarget = _d.linkTarget, sourceLongitude = _d.sourceLongitude, sourceLatitude = _d.sourceLatitude, targetLongitude = _d.targetLongitude, targetLatitude = _d.targetLatitude, sourcePointRadius = _d.sourcePointRadius, sourcePointColor = _d.sourcePointColor, flowParticleColor = _d.flowParticleColor, flowParticleRadius = _d.flowParticleRadius, flowParticleSpeed = _d.flowParticleSpeed, flowParticleDensity = _d.flowParticleDensity, enableFlowAnimation = _d.enableFlowAnimation, onSourcePointClick = _d.onSourcePointClick, onSourcePointMouseEnter = _d.onSourcePointMouseEnter, onSourcePointMouseLeave = _d.onSourcePointMouseLeave, areaId = _d.areaId, areaColor = _d.areaColor, areaCursor = _d.areaCursor, areaLabel = _d.areaLabel, pointColor = _d.pointColor, pointRadius = _d.pointRadius, pointStrokeWidth = _d.pointStrokeWidth, pointShape = _d.pointShape, pointRingWidth = _d.pointRingWidth, pointCursor = _d.pointCursor, longitude = _d.longitude, latitude = _d.latitude, pointLabel = _d.pointLabel, pointLabelPosition = _d.pointLabelPosition, pointLabelTextBrightnessRatio = _d.pointLabelTextBrightnessRatio, pointId = _d.pointId, colorMap = _d.colorMap, clusterColor = _d.clusterColor, clusterRadius = _d.clusterRadius, clusterLabel = _d.clusterLabel, clusterLabelColor = _d.clusterLabelColor, clusterBottomLabel = _d.clusterBottomLabel, clusterRingWidth = _d.clusterRingWidth, clusterBackground = _d.clusterBackground, clusterExpandOnClick = _d.clusterExpandOnClick, clusteringDistance = _d.clusteringDistance, clustering = _d.clustering, heatmapMode = _d.heatmapMode, heatmapModeBlurStdDeviation = _d.heatmapModeBlurStdDeviation, heatmapModeZoomLevelThreshold = _d.heatmapModeZoomLevelThreshold;
|
|
2781
|
+
var config = { duration: duration, events: events, attributes: attributes, projection: projection, topojson: topojson, mapFeatureName: mapFeatureName, mapFitToPoints: mapFitToPoints, zoomFactor: zoomFactor, disableZoom: disableZoom, zoomExtent: zoomExtent, zoomDuration: zoomDuration, linkWidth: linkWidth, linkColor: linkColor, linkCursor: linkCursor, linkId: linkId, linkSource: linkSource, linkTarget: linkTarget, sourceLongitude: sourceLongitude, sourceLatitude: sourceLatitude, targetLongitude: targetLongitude, targetLatitude: targetLatitude, sourcePointRadius: sourcePointRadius, sourcePointColor: sourcePointColor, flowParticleColor: flowParticleColor, flowParticleRadius: flowParticleRadius, flowParticleSpeed: flowParticleSpeed, flowParticleDensity: flowParticleDensity, enableFlowAnimation: enableFlowAnimation, onSourcePointClick: onSourcePointClick, onSourcePointMouseEnter: onSourcePointMouseEnter, onSourcePointMouseLeave: onSourcePointMouseLeave, areaId: areaId, areaColor: areaColor, areaCursor: areaCursor, areaLabel: areaLabel, pointColor: pointColor, pointRadius: pointRadius, pointStrokeWidth: pointStrokeWidth, pointShape: pointShape, pointRingWidth: pointRingWidth, pointCursor: pointCursor, longitude: longitude, latitude: latitude, pointLabel: pointLabel, pointLabelPosition: pointLabelPosition, pointLabelTextBrightnessRatio: pointLabelTextBrightnessRatio, pointId: pointId, colorMap: colorMap, clusterColor: clusterColor, clusterRadius: clusterRadius, clusterLabel: clusterLabel, clusterLabelColor: clusterLabelColor, clusterBottomLabel: clusterBottomLabel, clusterRingWidth: clusterRingWidth, clusterBackground: clusterBackground, clusterExpandOnClick: clusterExpandOnClick, clusteringDistance: clusteringDistance, clustering: clustering, heatmapMode: heatmapMode, heatmapModeBlurStdDeviation: heatmapModeBlurStdDeviation, heatmapModeZoomLevelThreshold: heatmapModeZoomLevelThreshold };
|
|
2780
2782
|
var keys = Object.keys(config);
|
|
2781
2783
|
keys.forEach(function (key) {
|
|
2782
2784
|
if (config[key] === undefined)
|
|
@@ -2787,7 +2789,7 @@
|
|
|
2787
2789
|
return VisTopoJSONMapComponent;
|
|
2788
2790
|
}());
|
|
2789
2791
|
VisTopoJSONMapComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTopoJSONMapComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2790
|
-
VisTopoJSONMapComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisTopoJSONMapComponent, selector: "vis-topojson-map", inputs: { duration: "duration", events: "events", attributes: "attributes", projection: "projection", topojson: "topojson", mapFeatureName: "mapFeatureName", mapFitToPoints: "mapFitToPoints", zoomFactor: "zoomFactor", disableZoom: "disableZoom", zoomExtent: "zoomExtent", zoomDuration: "zoomDuration", linkWidth: "linkWidth", linkColor: "linkColor", linkCursor: "linkCursor", linkId: "linkId", linkSource: "linkSource", linkTarget: "linkTarget", areaId: "areaId", areaColor: "areaColor", areaCursor: "areaCursor", pointColor: "pointColor", pointRadius: "pointRadius", pointStrokeWidth: "pointStrokeWidth", pointCursor: "pointCursor", longitude: "longitude", latitude: "latitude", pointLabel: "pointLabel", pointLabelPosition: "pointLabelPosition", pointLabelTextBrightnessRatio: "pointLabelTextBrightnessRatio", pointId: "pointId", heatmapMode: "heatmapMode", heatmapModeBlurStdDeviation: "heatmapModeBlurStdDeviation", heatmapModeZoomLevelThreshold: "heatmapModeZoomLevelThreshold", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisTopoJSONMapComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
2792
|
+
VisTopoJSONMapComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisTopoJSONMapComponent, selector: "vis-topojson-map", inputs: { duration: "duration", events: "events", attributes: "attributes", projection: "projection", topojson: "topojson", mapFeatureName: "mapFeatureName", mapFitToPoints: "mapFitToPoints", zoomFactor: "zoomFactor", disableZoom: "disableZoom", zoomExtent: "zoomExtent", zoomDuration: "zoomDuration", linkWidth: "linkWidth", linkColor: "linkColor", linkCursor: "linkCursor", linkId: "linkId", linkSource: "linkSource", linkTarget: "linkTarget", sourceLongitude: "sourceLongitude", sourceLatitude: "sourceLatitude", targetLongitude: "targetLongitude", targetLatitude: "targetLatitude", sourcePointRadius: "sourcePointRadius", sourcePointColor: "sourcePointColor", flowParticleColor: "flowParticleColor", flowParticleRadius: "flowParticleRadius", flowParticleSpeed: "flowParticleSpeed", flowParticleDensity: "flowParticleDensity", enableFlowAnimation: "enableFlowAnimation", onSourcePointClick: "onSourcePointClick", onSourcePointMouseEnter: "onSourcePointMouseEnter", onSourcePointMouseLeave: "onSourcePointMouseLeave", areaId: "areaId", areaColor: "areaColor", areaCursor: "areaCursor", areaLabel: "areaLabel", pointColor: "pointColor", pointRadius: "pointRadius", pointStrokeWidth: "pointStrokeWidth", pointShape: "pointShape", pointRingWidth: "pointRingWidth", pointCursor: "pointCursor", longitude: "longitude", latitude: "latitude", pointLabel: "pointLabel", pointLabelPosition: "pointLabelPosition", pointLabelTextBrightnessRatio: "pointLabelTextBrightnessRatio", pointId: "pointId", colorMap: "colorMap", clusterColor: "clusterColor", clusterRadius: "clusterRadius", clusterLabel: "clusterLabel", clusterLabelColor: "clusterLabelColor", clusterBottomLabel: "clusterBottomLabel", clusterRingWidth: "clusterRingWidth", clusterBackground: "clusterBackground", clusterExpandOnClick: "clusterExpandOnClick", clusteringDistance: "clusteringDistance", clustering: "clustering", heatmapMode: "heatmapMode", heatmapModeBlurStdDeviation: "heatmapModeBlurStdDeviation", heatmapModeZoomLevelThreshold: "heatmapModeZoomLevelThreshold", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisTopoJSONMapComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
2791
2793
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTopoJSONMapComponent, decorators: [{
|
|
2792
2794
|
type: i0.Component,
|
|
2793
2795
|
args: [{
|
|
@@ -2830,18 +2832,52 @@
|
|
|
2830
2832
|
type: i0.Input
|
|
2831
2833
|
}], linkTarget: [{
|
|
2832
2834
|
type: i0.Input
|
|
2835
|
+
}], sourceLongitude: [{
|
|
2836
|
+
type: i0.Input
|
|
2837
|
+
}], sourceLatitude: [{
|
|
2838
|
+
type: i0.Input
|
|
2839
|
+
}], targetLongitude: [{
|
|
2840
|
+
type: i0.Input
|
|
2841
|
+
}], targetLatitude: [{
|
|
2842
|
+
type: i0.Input
|
|
2843
|
+
}], sourcePointRadius: [{
|
|
2844
|
+
type: i0.Input
|
|
2845
|
+
}], sourcePointColor: [{
|
|
2846
|
+
type: i0.Input
|
|
2847
|
+
}], flowParticleColor: [{
|
|
2848
|
+
type: i0.Input
|
|
2849
|
+
}], flowParticleRadius: [{
|
|
2850
|
+
type: i0.Input
|
|
2851
|
+
}], flowParticleSpeed: [{
|
|
2852
|
+
type: i0.Input
|
|
2853
|
+
}], flowParticleDensity: [{
|
|
2854
|
+
type: i0.Input
|
|
2855
|
+
}], enableFlowAnimation: [{
|
|
2856
|
+
type: i0.Input
|
|
2857
|
+
}], onSourcePointClick: [{
|
|
2858
|
+
type: i0.Input
|
|
2859
|
+
}], onSourcePointMouseEnter: [{
|
|
2860
|
+
type: i0.Input
|
|
2861
|
+
}], onSourcePointMouseLeave: [{
|
|
2862
|
+
type: i0.Input
|
|
2833
2863
|
}], areaId: [{
|
|
2834
2864
|
type: i0.Input
|
|
2835
2865
|
}], areaColor: [{
|
|
2836
2866
|
type: i0.Input
|
|
2837
2867
|
}], areaCursor: [{
|
|
2838
2868
|
type: i0.Input
|
|
2869
|
+
}], areaLabel: [{
|
|
2870
|
+
type: i0.Input
|
|
2839
2871
|
}], pointColor: [{
|
|
2840
2872
|
type: i0.Input
|
|
2841
2873
|
}], pointRadius: [{
|
|
2842
2874
|
type: i0.Input
|
|
2843
2875
|
}], pointStrokeWidth: [{
|
|
2844
2876
|
type: i0.Input
|
|
2877
|
+
}], pointShape: [{
|
|
2878
|
+
type: i0.Input
|
|
2879
|
+
}], pointRingWidth: [{
|
|
2880
|
+
type: i0.Input
|
|
2845
2881
|
}], pointCursor: [{
|
|
2846
2882
|
type: i0.Input
|
|
2847
2883
|
}], longitude: [{
|
|
@@ -2856,6 +2892,28 @@
|
|
|
2856
2892
|
type: i0.Input
|
|
2857
2893
|
}], pointId: [{
|
|
2858
2894
|
type: i0.Input
|
|
2895
|
+
}], colorMap: [{
|
|
2896
|
+
type: i0.Input
|
|
2897
|
+
}], clusterColor: [{
|
|
2898
|
+
type: i0.Input
|
|
2899
|
+
}], clusterRadius: [{
|
|
2900
|
+
type: i0.Input
|
|
2901
|
+
}], clusterLabel: [{
|
|
2902
|
+
type: i0.Input
|
|
2903
|
+
}], clusterLabelColor: [{
|
|
2904
|
+
type: i0.Input
|
|
2905
|
+
}], clusterBottomLabel: [{
|
|
2906
|
+
type: i0.Input
|
|
2907
|
+
}], clusterRingWidth: [{
|
|
2908
|
+
type: i0.Input
|
|
2909
|
+
}], clusterBackground: [{
|
|
2910
|
+
type: i0.Input
|
|
2911
|
+
}], clusterExpandOnClick: [{
|
|
2912
|
+
type: i0.Input
|
|
2913
|
+
}], clusteringDistance: [{
|
|
2914
|
+
type: i0.Input
|
|
2915
|
+
}], clustering: [{
|
|
2916
|
+
type: i0.Input
|
|
2859
2917
|
}], heatmapMode: [{
|
|
2860
2918
|
type: i0.Input
|
|
2861
2919
|
}], heatmapModeBlurStdDeviation: [{
|