@cyber-harbour/ui 1.1.31 → 1.1.32

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 CHANGED
@@ -1883,6 +1883,9 @@ interface NodeButton {
1883
1883
  loading?: boolean | ((node: NodeObject) => boolean);
1884
1884
  getCount?: (node: NodeObject) => number;
1885
1885
  onClick: (node: NodeObject) => void;
1886
+ tooltip?: {
1887
+ content?: any;
1888
+ };
1886
1889
  }
1887
1890
  type GraphData<NodeType = {}, LinkType = {}> = {
1888
1891
  nodes: NodeObject<NodeType>[];
package/dist/index.d.ts CHANGED
@@ -1883,6 +1883,9 @@ interface NodeButton {
1883
1883
  loading?: boolean | ((node: NodeObject) => boolean);
1884
1884
  getCount?: (node: NodeObject) => number;
1885
1885
  onClick: (node: NodeObject) => void;
1886
+ tooltip?: {
1887
+ content?: any;
1888
+ };
1886
1889
  }
1887
1890
  type GraphData<NodeType = {}, LinkType = {}> = {
1888
1891
  nodes: NodeObject<NodeType>[];