@abdellatifui/react 3.1.75 → 3.1.77
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/nextgen.d.ts +2 -0
- package/dist/nextgen.js +17921 -12650
- package/dist/style.css +6368 -1
- package/dist/types/components/NetworkMap/CentralTextBox.d.ts +2 -0
- package/dist/types/components/NetworkMap/CentralTextBox.d.ts.map +1 -0
- package/dist/types/components/NetworkMap/CustomMarker.d.ts.map +1 -1
- package/dist/types/components/NetworkMap/LinkCountCircule.d.ts +3 -0
- package/dist/types/components/NetworkMap/LinkCountCircule.d.ts.map +1 -0
- package/dist/types/components/NetworkMap/Map.d.ts.map +1 -1
- package/dist/types/components/NetworkMap/types.d.ts +2 -0
- package/dist/types/components/NetworkMap/types.d.ts.map +1 -1
- package/dist/types/stories/Map/map.stories.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/nextgen.d.ts
CHANGED
|
@@ -606,6 +606,7 @@ declare type NetworkMapProps_2 = {
|
|
|
606
606
|
connections: object[];
|
|
607
607
|
linkHighlightedColorHex: string;
|
|
608
608
|
defaultLinkColorHex: string;
|
|
609
|
+
className: string;
|
|
609
610
|
hideLinksOnDrag: boolean;
|
|
610
611
|
showHoveredLinksOnly: boolean;
|
|
611
612
|
draggingMode: boolean;
|
|
@@ -620,6 +621,7 @@ declare type NetworkMapProps_2 = {
|
|
|
620
621
|
tid: string | number;
|
|
621
622
|
onConnClick: (conn: object) => void;
|
|
622
623
|
onNodeClick: (node: object) => void;
|
|
624
|
+
getCenterBox: (conn: object) => void;
|
|
623
625
|
onNodeMouseOver: (node: object) => void;
|
|
624
626
|
getMenuTitle: (connection: object) => void;
|
|
625
627
|
onLinkContextMenu: (info: {
|