@unovis/angular 1.0.0-beta.7 → 1.0.0-beta.9

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 (38) hide show
  1. package/README.md +2 -0
  2. package/dist/lib/README.md +2 -0
  3. package/dist/lib/bundles/unovis-angular.umd.js +15 -4
  4. package/dist/lib/bundles/unovis-angular.umd.js.map +1 -1
  5. package/dist/lib/components/area/area.component.d.ts +1 -1
  6. package/dist/lib/components/axis/axis.component.d.ts +2 -2
  7. package/dist/lib/components/brush/brush.component.d.ts +1 -1
  8. package/dist/lib/components/crosshair/crosshair.component.d.ts +1 -1
  9. package/dist/lib/components/free-brush/free-brush.component.d.ts +1 -1
  10. package/dist/lib/components/graph/graph.component.d.ts +1 -1
  11. package/dist/lib/components/grouped-bar/grouped-bar.component.d.ts +1 -1
  12. package/dist/lib/components/line/line.component.d.ts +1 -1
  13. package/dist/lib/components/sankey/sankey.component.d.ts +2 -2
  14. package/dist/lib/components/scatter/scatter.component.d.ts +3 -3
  15. package/dist/lib/components/stacked-bar/stacked-bar.component.d.ts +1 -1
  16. package/dist/lib/components/timeline/timeline.component.d.ts +1 -1
  17. package/dist/lib/components/topojson-map/topojson-map.component.d.ts +2 -2
  18. package/dist/lib/components/xy-labels/xy-labels.component.d.ts +3 -3
  19. package/dist/lib/esm2015/components/area/area.component.js +1 -1
  20. package/dist/lib/esm2015/components/axis/axis.component.js +1 -1
  21. package/dist/lib/esm2015/components/brush/brush.component.js +1 -1
  22. package/dist/lib/esm2015/components/crosshair/crosshair.component.js +1 -1
  23. package/dist/lib/esm2015/components/free-brush/free-brush.component.js +1 -1
  24. package/dist/lib/esm2015/components/graph/graph.component.js +1 -1
  25. package/dist/lib/esm2015/components/grouped-bar/grouped-bar.component.js +1 -1
  26. package/dist/lib/esm2015/components/line/line.component.js +1 -1
  27. package/dist/lib/esm2015/components/sankey/sankey.component.js +1 -1
  28. package/dist/lib/esm2015/components/scatter/scatter.component.js +1 -1
  29. package/dist/lib/esm2015/components/stacked-bar/stacked-bar.component.js +1 -1
  30. package/dist/lib/esm2015/components/timeline/timeline.component.js +1 -1
  31. package/dist/lib/esm2015/components/topojson-map/topojson-map.component.js +1 -1
  32. package/dist/lib/esm2015/components/xy-labels/xy-labels.component.js +1 -1
  33. package/dist/lib/esm2015/html-components/leaflet-map/leaflet-map.component.js +4 -2
  34. package/dist/lib/fesm2015/unovis-angular.js +3 -1
  35. package/dist/lib/fesm2015/unovis-angular.js.map +1 -1
  36. package/dist/lib/html-components/leaflet-map/leaflet-map.component.d.ts +4 -2
  37. package/dist/lib/package.json +2 -2
  38. package/package.json +2 -2
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ ![cover](https://user-images.githubusercontent.com/755708/194946760-13db0396-c429-4abb-8324-a5efae0455e2.png)
2
+
1
3
  🟨 **Unovis** is a modular data visualization framework for React, Angular, Svelte, and vanilla TypeScript or JavaScript.
2
4
 
3
5
  `@unovis/angular` provides Angular modules to `@unovis/ts`, which makes Unovis integration into an Angular
@@ -1,3 +1,5 @@
1
+ ![cover](https://user-images.githubusercontent.com/755708/194946760-13db0396-c429-4abb-8324-a5efae0455e2.png)
2
+
1
3
  🟨 **Unovis** is a modular data visualization framework for React, Angular, Svelte, and vanilla TypeScript or JavaScript.
2
4
 
3
5
  `@unovis/angular` provides Angular modules to `@unovis/ts`, which makes Unovis integration into an Angular
@@ -30,7 +30,7 @@
30
30
  return VisGenericComponent;
31
31
  }());
32
32
 
33
- /*! *****************************************************************************
33
+ /******************************************************************************
34
34
  Copyright (c) Microsoft Corporation.
35
35
 
36
36
  Permission to use, copy, modify, and/or distribute this software for any
@@ -128,7 +128,7 @@
128
128
  function step(op) {
129
129
  if (f)
130
130
  throw new TypeError("Generator is already executing.");
131
- while (_)
131
+ while (g && (g = 0, op[0] && (_ = 0)), _)
132
132
  try {
133
133
  if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done)
134
134
  return t;
@@ -192,7 +192,11 @@
192
192
  var __createBinding = Object.create ? (function (o, m, k, k2) {
193
193
  if (k2 === undefined)
194
194
  k2 = k;
195
- Object.defineProperty(o, k2, { enumerable: true, get: function () { return m[k]; } });
195
+ var desc = Object.getOwnPropertyDescriptor(m, k);
196
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
197
+ desc = { enumerable: true, get: function () { return m[k]; } };
198
+ }
199
+ Object.defineProperty(o, k2, desc);
196
200
  }) : (function (o, m, k, k2) {
197
201
  if (k2 === undefined)
198
202
  k2 = k;
@@ -347,6 +351,11 @@
347
351
  throw new TypeError("Cannot write private member to an object whose class did not declare it");
348
352
  return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
349
353
  }
354
+ function __classPrivateFieldIn(state, receiver) {
355
+ if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function"))
356
+ throw new TypeError("Cannot use 'in' operator on non-object");
357
+ return typeof state === "function" ? receiver === state : state.has(receiver);
358
+ }
350
359
 
351
360
  var VisCoreComponent = /** @class */ (function (_super) {
352
361
  __extends(VisCoreComponent, _super);
@@ -2401,7 +2410,7 @@
2401
2410
  return VisLeafletMapComponent;
2402
2411
  }());
2403
2412
  VisLeafletMapComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: VisLeafletMapComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
2404
- VisLeafletMapComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: VisLeafletMapComponent, selector: "vis-leaflet-map", inputs: { 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" }, providers: [{ provide: VisCoreComponent, useExisting: VisLeafletMapComponent }], viewQueries: [{ propertyName: "containerRef", first: true, predicate: ["container"], descendants: true }], usesOnChanges: true, ngImport: i0__namespace, template: '<div #container class="unovis-leaflet-map-container"></div>', isInline: true, styles: [".unovis-leaflet-map-container { width: 100%; height: 100%; position: relative; }"] });
2413
+ VisLeafletMapComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: VisLeafletMapComponent, selector: "vis-leaflet-map", inputs: { 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" }, providers: [{ provide: VisCoreComponent, useExisting: VisLeafletMapComponent }], viewQueries: [{ propertyName: "containerRef", first: true, predicate: ["container"], descendants: true }], usesOnChanges: true, ngImport: i0__namespace, template: '<div #container class="unovis-leaflet-map-container"></div>', isInline: true, styles: [".unovis-leaflet-map-container { width: 100%; height: 100%; position: relative; }"] });
2405
2414
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: VisLeafletMapComponent, decorators: [{
2406
2415
  type: i0.Component,
2407
2416
  args: [{
@@ -2446,6 +2455,8 @@
2446
2455
  type: i0.Input
2447
2456
  }], attribution: [{
2448
2457
  type: i0.Input
2458
+ }], renderer: [{
2459
+ type: i0.Input
2449
2460
  }], onMapInitialized: [{
2450
2461
  type: i0.Input
2451
2462
  }], onMapMoveZoom: [{