@unovis/angular 1.0.0-beta.8 → 1.0.0-beta.8.patch.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 +3 -1
- package/dist/lib/bundles/unovis-angular.umd.js.map +1 -1
- package/dist/lib/components/topojson-map/topojson-map.component.d.ts +1 -1
- package/dist/lib/esm2015/components/topojson-map/topojson-map.component.js +1 -1
- package/dist/lib/esm2015/html-components/leaflet-map/leaflet-map.component.js +4 -2
- package/dist/lib/fesm2015/unovis-angular.js +3 -1
- 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-beta.8",
|
|
4
|
+
"version": "1.0.0-beta.8.patch.1",
|
|
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-beta.8"
|
|
42
|
+
"@unovis/ts": "1.0.0-beta.8.patch.1"
|
|
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-beta.8",
|
|
4
|
+
"version": "1.0.0-beta.8.patch.1",
|
|
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-beta.8"
|
|
49
|
+
"@unovis/ts": "1.0.0-beta.8.patch.1"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@angular-devkit/build-angular": "^12.0.3",
|