@unovis/angular 1.0.0-beta.8 → 1.0.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.
- package/dist/lib/bundles/unovis-angular.umd.js +161 -150
- package/dist/lib/bundles/unovis-angular.umd.js.map +1 -1
- package/dist/lib/components/area/area.component.d.ts +1 -1
- package/dist/lib/components/axis/axis.component.d.ts +2 -2
- package/dist/lib/components/brush/brush.component.d.ts +1 -1
- package/dist/lib/components/crosshair/crosshair.component.d.ts +1 -1
- package/dist/lib/components/free-brush/free-brush.component.d.ts +1 -1
- package/dist/lib/components/graph/graph.component.d.ts +1 -1
- package/dist/lib/components/grouped-bar/grouped-bar.component.d.ts +1 -1
- package/dist/lib/components/line/line.component.d.ts +1 -1
- package/dist/lib/components/sankey/sankey.component.d.ts +2 -2
- package/dist/lib/components/scatter/scatter.component.d.ts +3 -3
- package/dist/lib/components/stacked-bar/stacked-bar.component.d.ts +1 -1
- package/dist/lib/components/timeline/timeline.component.d.ts +1 -1
- package/dist/lib/components/topojson-map/topojson-map.component.d.ts +2 -2
- package/dist/lib/components/xy-labels/xy-labels.component.d.ts +3 -3
- package/dist/lib/esm2015/components/area/area.component.js +4 -4
- package/dist/lib/esm2015/components/area/area.module.js +4 -4
- package/dist/lib/esm2015/components/axis/axis.component.js +4 -4
- package/dist/lib/esm2015/components/axis/axis.module.js +4 -4
- package/dist/lib/esm2015/components/brush/brush.component.js +4 -4
- package/dist/lib/esm2015/components/brush/brush.module.js +4 -4
- package/dist/lib/esm2015/components/crosshair/crosshair.component.js +4 -4
- package/dist/lib/esm2015/components/crosshair/crosshair.module.js +4 -4
- package/dist/lib/esm2015/components/donut/donut.component.js +3 -3
- package/dist/lib/esm2015/components/donut/donut.module.js +4 -4
- package/dist/lib/esm2015/components/free-brush/free-brush.component.js +4 -4
- package/dist/lib/esm2015/components/free-brush/free-brush.module.js +4 -4
- package/dist/lib/esm2015/components/graph/graph.component.js +4 -4
- package/dist/lib/esm2015/components/graph/graph.module.js +4 -4
- package/dist/lib/esm2015/components/grouped-bar/grouped-bar.component.js +4 -4
- package/dist/lib/esm2015/components/grouped-bar/grouped-bar.module.js +4 -4
- package/dist/lib/esm2015/components/line/line.component.js +4 -4
- package/dist/lib/esm2015/components/line/line.module.js +4 -4
- package/dist/lib/esm2015/components/sankey/sankey.component.js +4 -4
- package/dist/lib/esm2015/components/sankey/sankey.module.js +4 -4
- package/dist/lib/esm2015/components/scatter/scatter.component.js +4 -4
- package/dist/lib/esm2015/components/scatter/scatter.module.js +4 -4
- package/dist/lib/esm2015/components/stacked-bar/stacked-bar.component.js +4 -4
- package/dist/lib/esm2015/components/stacked-bar/stacked-bar.module.js +4 -4
- package/dist/lib/esm2015/components/timeline/timeline.component.js +4 -4
- package/dist/lib/esm2015/components/timeline/timeline.module.js +4 -4
- package/dist/lib/esm2015/components/tooltip/tooltip.component.js +3 -3
- package/dist/lib/esm2015/components/tooltip/tooltip.module.js +4 -4
- package/dist/lib/esm2015/components/topojson-map/topojson-map.component.js +4 -4
- package/dist/lib/esm2015/components/topojson-map/topojson-map.module.js +4 -4
- package/dist/lib/esm2015/components/xy-labels/xy-labels.component.js +4 -4
- package/dist/lib/esm2015/components/xy-labels/xy-labels.module.js +4 -4
- package/dist/lib/esm2015/containers/single-container/single-container.component.js +3 -3
- package/dist/lib/esm2015/containers/single-container/single-container.module.js +4 -4
- package/dist/lib/esm2015/containers/xy-container/xy-container.component.js +3 -3
- package/dist/lib/esm2015/containers/xy-container/xy-container.module.js +4 -4
- package/dist/lib/esm2015/html-components/bullet-legend/bullet-legend.component.js +3 -3
- package/dist/lib/esm2015/html-components/bullet-legend/bullet-legend.module.js +4 -4
- package/dist/lib/esm2015/html-components/leaflet-flow-map/leaflet-flow-map.component.js +3 -3
- package/dist/lib/esm2015/html-components/leaflet-flow-map/leaflet-flow-map.module.js +4 -4
- package/dist/lib/esm2015/html-components/leaflet-map/leaflet-map.component.js +6 -4
- package/dist/lib/esm2015/html-components/leaflet-map/leaflet-map.module.js +4 -4
- package/dist/lib/fesm2015/unovis-angular.js +149 -147
- package/dist/lib/fesm2015/unovis-angular.js.map +1 -1
- package/dist/lib/html-components/leaflet-map/leaflet-map.component.d.ts +4 -2
- package/dist/lib/package.json +2 -2
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AfterViewInit, SimpleChanges, ElementRef } from '@angular/core';
|
|
2
|
-
import { LeafletMap, LeafletMapConfigInterface, VisEventType, VisEventCallback, Bounds, MapZoomState, NumericAccessor, StringAccessor, ColorAccessor, LeafletMapPointDatum, LeafletMapPointStyles, Tooltip, LeafletMapClusterDatum } from '@unovis/ts';
|
|
2
|
+
import { LeafletMap, LeafletMapConfigInterface, VisEventType, VisEventCallback, Bounds, MapZoomState, NumericAccessor, StringAccessor, ColorAccessor, LeafletMapPointDatum, LeafletMapPointStyles, Tooltip, LeafletMapClusterDatum, LeafletMapRenderer } from '@unovis/ts';
|
|
3
3
|
import { StyleSpecification } from 'maplibre-gl';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class VisLeafletMapComponent<Datum> implements LeafletMapConfigInterface<Datum>, AfterViewInit {
|
|
@@ -77,6 +77,8 @@ export declare class VisLeafletMapComponent<Datum> implements LeafletMapConfigIn
|
|
|
77
77
|
accessToken?: string;
|
|
78
78
|
/** Array of attribution labels. Default: `['<a href="https://www.openstreetmap.org/copyright" target="_blank">OpenStreetMap contributors</a>']` */
|
|
79
79
|
attribution?: string[];
|
|
80
|
+
/** Rendering mode for map's tile layer. For raster files, use `LeafletMapRenderer.Raster`. Default: `LeafletMapRenderer.MapLibre` */
|
|
81
|
+
renderer?: LeafletMapRenderer | string;
|
|
80
82
|
/** Function to be called after the map's async initialization is done. Default: `undefined` */
|
|
81
83
|
onMapInitialized?: (() => void);
|
|
82
84
|
/** Map Move / Zoom unified callback function. Default: `undefined` */
|
|
@@ -164,5 +166,5 @@ export declare class VisLeafletMapComponent<Datum> implements LeafletMapConfigIn
|
|
|
164
166
|
ngOnChanges(changes: SimpleChanges): void;
|
|
165
167
|
private getConfig;
|
|
166
168
|
static ɵfac: i0.ɵɵFactoryDeclaration<VisLeafletMapComponent<any>, never>;
|
|
167
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VisLeafletMapComponent<any>, "vis-leaflet-map", never, { "width": "width"; "height": "height"; "duration": "duration"; "events": "events"; "attributes": "attributes"; "flyToDuration": "flyToDuration"; "fitViewPadding": "fitViewPadding"; "zoomDuration": "zoomDuration"; "initialBounds": "initialBounds"; "fitBoundsOnUpdate": "fitBoundsOnUpdate"; "fitViewOnInit": "fitViewOnInit"; "fitViewOnUpdate": "fitViewOnUpdate"; "style": "style"; "styleDarkTheme": "styleDarkTheme"; "accessToken": "accessToken"; "attribution": "attribution"; "onMapInitialized": "onMapInitialized"; "onMapMoveZoom": "onMapMoveZoom"; "onMapMoveStart": "onMapMoveStart"; "onMapMoveEnd": "onMapMoveEnd"; "onMapZoomStart": "onMapZoomStart"; "onMapZoomEnd": "onMapZoomEnd"; "onMapClick": "onMapClick"; "pointLongitude": "pointLongitude"; "pointLatitude": "pointLatitude"; "pointId": "pointId"; "pointShape": "pointShape"; "pointColor": "pointColor"; "pointRadius": "pointRadius"; "pointLabel": "pointLabel"; "pointBottomLabel": "pointBottomLabel"; "pointCursor": "pointCursor"; "selectedPointId": "selectedPointId"; "clusterColor": "clusterColor"; "clusterRadius": "clusterRadius"; "clusterLabel": "clusterLabel"; "clusterBottomLabel": "clusterBottomLabel"; "clusterRingWidth": "clusterRingWidth"; "clusterBackground": "clusterBackground"; "clusterExpandOnClick": "clusterExpandOnClick"; "clusteringDistance": "clusteringDistance"; "colorMap": "colorMap"; "topoJSONLayer": "topoJSONLayer"; "tooltip": "tooltip"; "data": "data"; }, {}, never, never>;
|
|
169
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VisLeafletMapComponent<any>, "vis-leaflet-map", never, { "width": "width"; "height": "height"; "duration": "duration"; "events": "events"; "attributes": "attributes"; "flyToDuration": "flyToDuration"; "fitViewPadding": "fitViewPadding"; "zoomDuration": "zoomDuration"; "initialBounds": "initialBounds"; "fitBoundsOnUpdate": "fitBoundsOnUpdate"; "fitViewOnInit": "fitViewOnInit"; "fitViewOnUpdate": "fitViewOnUpdate"; "style": "style"; "styleDarkTheme": "styleDarkTheme"; "accessToken": "accessToken"; "attribution": "attribution"; "renderer": "renderer"; "onMapInitialized": "onMapInitialized"; "onMapMoveZoom": "onMapMoveZoom"; "onMapMoveStart": "onMapMoveStart"; "onMapMoveEnd": "onMapMoveEnd"; "onMapZoomStart": "onMapZoomStart"; "onMapZoomEnd": "onMapZoomEnd"; "onMapClick": "onMapClick"; "pointLongitude": "pointLongitude"; "pointLatitude": "pointLatitude"; "pointId": "pointId"; "pointShape": "pointShape"; "pointColor": "pointColor"; "pointRadius": "pointRadius"; "pointLabel": "pointLabel"; "pointBottomLabel": "pointBottomLabel"; "pointCursor": "pointCursor"; "selectedPointId": "selectedPointId"; "clusterColor": "clusterColor"; "clusterRadius": "clusterRadius"; "clusterLabel": "clusterLabel"; "clusterBottomLabel": "clusterBottomLabel"; "clusterRingWidth": "clusterRingWidth"; "clusterBackground": "clusterBackground"; "clusterExpandOnClick": "clusterExpandOnClick"; "clusteringDistance": "clusteringDistance"; "colorMap": "colorMap"; "topoJSONLayer": "topoJSONLayer"; "tooltip": "tooltip"; "data": "data"; }, {}, never, never>;
|
|
168
170
|
}
|
package/dist/lib/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unovis/angular",
|
|
3
3
|
"description": "Modular data visualization framework for React, Angular, Svelte, and vanilla TypeScript or JavaScript",
|
|
4
|
-
"version": "1.0.0
|
|
4
|
+
"version": "1.0.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/f5/unovis.git",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@angular/common": "^12.0.3",
|
|
40
40
|
"@angular/compiler": "^12.0.3",
|
|
41
41
|
"@angular/core": "^12.0.3",
|
|
42
|
-
"@unovis/ts": "1.0.0
|
|
42
|
+
"@unovis/ts": "1.0.0"
|
|
43
43
|
},
|
|
44
44
|
"es2015": "fesm2015/unovis-angular.js",
|
|
45
45
|
"esm2015": "esm2015/unovis-angular.js",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unovis/angular",
|
|
3
3
|
"description": "Modular data visualization framework for React, Angular, Svelte, and vanilla TypeScript or JavaScript",
|
|
4
|
-
"version": "1.0.0
|
|
4
|
+
"version": "1.0.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/f5/unovis.git",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@angular/common": "^12.0.3",
|
|
47
47
|
"@angular/compiler": "^12.0.3",
|
|
48
48
|
"@angular/core": "^12.0.3",
|
|
49
|
-
"@unovis/ts": "1.0.0
|
|
49
|
+
"@unovis/ts": "1.0.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@angular-devkit/build-angular": "^12.0.3",
|