@abdellatifui/react 3.1.32 → 3.1.34
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 +9 -0
- package/dist/nextgen.js +3566 -3533
- package/dist/types/components/NetworkMap/Map.d.ts.map +1 -1
- package/dist/types/components/NetworkMap/PinItem.d.ts.map +1 -1
- package/dist/types/components/NetworkMap/types.d.ts +9 -0
- package/dist/types/components/NetworkMap/types.d.ts.map +1 -1
- package/dist/types/components/Tables/NextGen/main/hooks/useCustomCallback.d.ts +3 -1
- package/dist/types/components/Tables/NextGen/main/hooks/useCustomCallback.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/nextgen.d.ts
CHANGED
|
@@ -273,6 +273,15 @@ declare type NetworkMapProps = {
|
|
|
273
273
|
type: string;
|
|
274
274
|
}) => void;
|
|
275
275
|
}[];
|
|
276
|
+
nodeMenuItems: {
|
|
277
|
+
label: string;
|
|
278
|
+
action?: (args: {
|
|
279
|
+
data: object;
|
|
280
|
+
event: default_2.MouseEvent;
|
|
281
|
+
mapApi: MapProps;
|
|
282
|
+
type: string;
|
|
283
|
+
}) => void;
|
|
284
|
+
}[];
|
|
276
285
|
nodeIconMapper?: (object: any) => default_2.ReactNode | null;
|
|
277
286
|
};
|
|
278
287
|
|