Skip to content

Commit

Permalink
Merge pull request #36 from unipept/update_sunburst
Browse files Browse the repository at this point in the history
Update sunburst
  • Loading branch information
pverscha authored Jan 26, 2021
2 parents b33ae9a + 6633670 commit a67afd8
Show file tree
Hide file tree
Showing 49 changed files with 56,241 additions and 5,135 deletions.
14 changes: 12 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
{
"presets": ["es2015"],
"plugins": ["transform-object-assign"]
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"last 2 versions"
]
}
}
]
]
}
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"quotes": ["error", "double"],
"new-cap": "off",
"no-invalid-this": "off",
"no-console": "off",
"no-console": "off"
},
"env": {
"browser": true
Expand Down
54 changes: 0 additions & 54 deletions Gruntfile.js

This file was deleted.

7 changes: 7 additions & 0 deletions dist/DataNode.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default class DataNode {
id: number;
name: string;
children: DataNode[];
data: any;
constructor(id: number, name: string, children?: DataNode[], data?: any);
}
14 changes: 14 additions & 0 deletions dist/Settings.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
export default abstract class Settings {
/**
* Total width of the visualization (in pixels).
*/
width: number;
/**
* Total height of the visualization (in pixels)
*/
height: number;
/**
* Are tooltips enabled when hovering the visualization?
*/
enableTooltips: boolean;
}
Loading

0 comments on commit a67afd8

Please sign in to comment.