@cyber-harbour/ui 1.0.69 → 1.0.70
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.
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +143 -143
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +132 -132
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/Graph2D/Graph2D.tsx +74 -18
- package/src/Graph2D/types.ts +2 -0
package/dist/index.d.mts
CHANGED
|
@@ -1718,6 +1718,8 @@ interface Graph2DProps {
|
|
|
1718
1718
|
interface NodeButton {
|
|
1719
1719
|
img: string;
|
|
1720
1720
|
hoverImg: string;
|
|
1721
|
+
loading?: boolean;
|
|
1722
|
+
count?: (node: NodeObject) => number;
|
|
1721
1723
|
onClick: (node: NodeObject) => void;
|
|
1722
1724
|
}
|
|
1723
1725
|
type GraphData<NodeType = {}, LinkType = {}> = {
|
package/dist/index.d.ts
CHANGED
|
@@ -1718,6 +1718,8 @@ interface Graph2DProps {
|
|
|
1718
1718
|
interface NodeButton {
|
|
1719
1719
|
img: string;
|
|
1720
1720
|
hoverImg: string;
|
|
1721
|
+
loading?: boolean;
|
|
1722
|
+
count?: (node: NodeObject) => number;
|
|
1721
1723
|
onClick: (node: NodeObject) => void;
|
|
1722
1724
|
}
|
|
1723
1725
|
type GraphData<NodeType = {}, LinkType = {}> = {
|