@cyber-harbour/ui 1.1.31 → 1.1.33

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