@hpcc-js/common
Advanced tools
Comparing version 0.8.10 to 0.9.0
@@ -6,2 +6,21 @@ # Change Log | ||
<a name="0.9.0"></a> | ||
# [0.9.0](https://github.com/hpcc-systems/Visualization/compare/@hpcc-js/common@0.8.10...@hpcc-js/common@0.9.0) (2018-08-02) | ||
### Bug Fixes | ||
* **d3-event:** d3-event is a global instance. ([92760ad](https://github.com/hpcc-systems/Visualization/commit/92760ad)) | ||
* **eclwatch:** Hide canvas text Calculator ([4ed9631](https://github.com/hpcc-systems/Visualization/commit/4ed9631)) | ||
### Features | ||
* **SVGZoomWidget:** Additional zoomTo methods ([09feedc](https://github.com/hpcc-systems/Visualization/commit/09feedc)) | ||
* **timeline:** Improved icon handling ([25819ba](https://github.com/hpcc-systems/Visualization/commit/25819ba)) | ||
* **timeline:** Various improvements to MiniGantt ([3a7375d](https://github.com/hpcc-systems/Visualization/commit/3a7375d)), closes [#2585](https://github.com/hpcc-systems/Visualization/issues/2585) [#2584](https://github.com/hpcc-systems/Visualization/issues/2584) [#2583](https://github.com/hpcc-systems/Visualization/issues/2583) | ||
<a name="0.8.10"></a> | ||
@@ -8,0 +27,0 @@ ## [0.8.10](https://github.com/hpcc-systems/Visualization/compare/@hpcc-js/common@0.8.9...@hpcc-js/common@0.8.10) (2018-07-30) |
{ | ||
"name": "@hpcc-js/common", | ||
"version": "0.8.10", | ||
"version": "0.9.0", | ||
"description": "hpcc-js - Viz Common", | ||
@@ -25,3 +25,3 @@ "main": "dist/index.js", | ||
"build": "npm run compile-es6 && npm run copy-resources && npm run bundle", | ||
"watch": "concurrently --kill-others \"npm run compile-es6-watch\" \"npm run bundle-watch\"", | ||
"watch": "run-p compile-es6-watch bundle-watch", | ||
"lint": "tslint --project . src/**/*.ts", | ||
@@ -31,3 +31,3 @@ "docs": "typedoc --options tdoptions.json ." | ||
"dependencies": { | ||
"@hpcc-js/util": "^0.1.9", | ||
"@hpcc-js/util": "^0.1.10", | ||
"@types/d3-drag": "1.2.1", | ||
@@ -58,4 +58,4 @@ "@types/d3-selection": "1.3.1", | ||
"@types/d3-transition": "1", | ||
"concurrently": "3.5.1", | ||
"cpx": "1.5.0", | ||
"npm-run-all": "4.1.3", | ||
"rimraf": "2.6.2", | ||
@@ -62,0 +62,0 @@ "rollup": "0.58.2", |
@@ -9,1 +9,7 @@ import { Entity } from "./Entity"; | ||
} | ||
export interface EntityCard { | ||
fixedWidth(): number; | ||
fixedWidth(_: number): this; | ||
fixedHeight(): number; | ||
fixedHeight(_: number): this; | ||
} |
import { Entity } from "./Entity"; | ||
import { HTMLWidget } from "./HTMLWidget"; | ||
import { publish } from "./PropertyExt"; | ||
import { d3SelectionType, InputField, Widget } from "./Widget"; | ||
import { d3SelectionType, InputField } from "./Widget"; | ||
import "../src/EntityRect.css"; | ||
@@ -11,3 +11,3 @@ export declare class EntityRect extends Entity { | ||
update(domNode: any, element: any): void; | ||
render(callback?: (w: Widget) => void): this; | ||
render(callback?: (w: EntityRect) => void): any; | ||
} | ||
@@ -14,0 +14,0 @@ export interface EntityRect { |
@@ -36,1 +36,2 @@ export * from "./CanvasWidget"; | ||
export * from "./WidgetArray"; | ||
export * from "d3-selection"; |
@@ -32,4 +32,8 @@ import { SVGWidget } from "./SVGWidget"; | ||
zoomTo(translate?: any, scale?: any, transitionDuration?: number): void; | ||
zoomPlus(): void; | ||
zoomMinus(): void; | ||
centerOnBBox(bbox: any, transitionDuration?: any): void; | ||
zoomToBBox(bbox: any, transitionDuration?: any): void; | ||
zoomToBBox(bbox: any, transitionDuration?: any, widthOnly?: boolean, scale?: number): void; | ||
zoomToScale(scale: any, transitionDuration?: any): void; | ||
zoomToWidth(transitionDuration?: any): void; | ||
zoomToFit(transitionDuration?: any): void; | ||
@@ -36,0 +40,0 @@ onZoomed(): void; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4778837
27378
Updated@hpcc-js/util@^0.1.10