@types/d3-hierarchy
Advanced tools
Comparing version 3.1.6 to 3.1.7
@@ -58,2 +58,26 @@ // Last module patch version validated against: 3.1.2 | ||
/** | ||
* The x position of this node. Set after a tree has been laid out by `tree` or `cluster`. | ||
* | ||
* ``` | ||
* const root = d3.hierarchy(datum); | ||
* const treeLayout = d3.tree(); | ||
* treeLayout(root); | ||
* // x and y are now set on root and its descendants | ||
* ``` | ||
*/ | ||
x?: number | undefined; | ||
/** | ||
* The y position of this node. Set after a tree has been laid out by `tree` or `cluster`. | ||
* | ||
* ``` | ||
* const root = d3.hierarchy(datum); | ||
* const treeLayout = d3.tree(); | ||
* treeLayout(root); | ||
* // x and y are now set on root and its descendants | ||
* ``` | ||
*/ | ||
y?: number | undefined; | ||
/** | ||
* Returns the array of ancestors nodes, starting with this node, then followed by each parent up to the root. | ||
@@ -60,0 +84,0 @@ */ |
{ | ||
"name": "@types/d3-hierarchy", | ||
"version": "3.1.6", | ||
"version": "3.1.7", | ||
"description": "TypeScript definitions for d3-hierarchy", | ||
@@ -48,4 +48,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/d3-hierarchy", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "9fa5e903eb2927de522bfc06ff29984e2390d9dcb8e6fa5e2087f8066fc3577b", | ||
"typeScriptVersion": "4.5" | ||
"typesPublisherContentHash": "30b5aaa4063194f57da2717775cb8f9f5dc675a0ec72d6ed619f7b87ad0baa40", | ||
"typeScriptVersion": "4.7" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 07 Nov 2023 15:11:37 GMT | ||
* Last updated: Mon, 18 Mar 2024 18:36:06 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ |
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
39915
820