Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
changes for version 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
steiner-anita committed Sep 18, 2018
2 parents 23e98ca + fefd69b commit e049d86
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "phovea_d3",
"description": "D3 utilitities for Phovea",
"homepage": "https://phovea.caleydo.org",
"version": "2.0.1",
"version": "2.1.0",
"author": {
"name": "The Caleydo Team",
"email": "[email protected]",
Expand Down Expand Up @@ -50,7 +50,7 @@
"dist": "mkdirp dist && cd build && tar cvzf ../dist/phovea_d3.tar.gz *"
},
"dependencies": {
"phovea_core": "2.0.0",
"phovea_core": "^2.1.0",
"@types/d3": "3.5.36",
"d3": "3.5.17"
},
Expand Down
2 changes: 1 addition & 1 deletion src/d3util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export function defineVis(name: string, defaultOptions: any, initialSize: number
export function defineVis(name: string, defaultOptions: (data: IDataType, options: any) => any, initialSize: number[], build: ($parent: d3.Selection<any>, data: IDataType, size: number[]) => d3.Selection<any>, functions?: any): any;
export function defineVis(name: string, defaultOptions: any, initialSize: (data: IDataType) => number[], build: ($parent: d3.Selection<any>, data: IDataType) => d3.Selection<any>, functions?: any): any;
export function defineVis(name: string, defaultOptions: (data: IDataType, options: any) => any, initialSize: (data: IDataType) => number[], build: ($parent: d3.Selection<any>, data: IDataType, size: number[]) => d3.Selection<any>, functions?: any): any;
export function defineVis(name: string, defaultOptions: any, initialSize: any, build: ($parent: d3.Selection<any>, data?: IDataType) => d3.Selection<any>, functions?: any): any {
export function defineVis(name: string, defaultOptions: any, initialSize: any, build: ($parent: d3.Selection<any>, data?: IDataType, size?: number[]) => d3.Selection<any>, functions?: any): any {
extendClass(VisTechnique, AVisInstance);
function VisTechnique(this: any, data: IDataType, parent: Element, options: any) {
AVisInstance.call(this, data, parent, options);
Expand Down

0 comments on commit e049d86

Please sign in to comment.