@abdellatifui/react 3.1.74 → 3.1.76
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 +3 -0
- package/dist/nextgen.js +4465 -4383
- package/dist/style.css +1 -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 +3 -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;
|
|
@@ -613,12 +614,14 @@ declare type NetworkMapProps_2 = {
|
|
|
613
614
|
nodeSizeScaler: number;
|
|
614
615
|
defaultAnimationLinkColor: string;
|
|
615
616
|
linkAnimation: boolean;
|
|
617
|
+
debug: boolean;
|
|
616
618
|
staticMapColor: string;
|
|
617
619
|
isolateNonSelectedLinksOnNodeClick: boolean;
|
|
618
620
|
showLinkCount: boolean;
|
|
619
621
|
tid: string | number;
|
|
620
622
|
onConnClick: (conn: object) => void;
|
|
621
623
|
onNodeClick: (node: object) => void;
|
|
624
|
+
getCenterBox: (conn: object) => void;
|
|
622
625
|
onNodeMouseOver: (node: object) => void;
|
|
623
626
|
getMenuTitle: (connection: object) => void;
|
|
624
627
|
onLinkContextMenu: (info: {
|