@abdellatifui/react 3.1.23 → 3.1.24
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 +4 -2
- package/dist/nextgen.js +529 -523
- package/dist/types/components/NetworkMap/Map.d.ts.map +1 -1
- package/dist/types/components/NetworkMap/useCreatePath.d.ts +2 -2
- package/dist/types/components/NetworkMap/useCreatePath.d.ts.map +1 -1
- package/dist/types/components/NetworkMap/utils.d.ts +4 -2
- package/dist/types/components/NetworkMap/utils.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
|
@@ -97,10 +97,10 @@ export declare function convertTimestampToDate(timestamp: any): string;
|
|
|
97
97
|
|
|
98
98
|
export declare const CopyButton: default_2.ForwardRefExoticComponent<default_2.RefAttributes<unknown>>;
|
|
99
99
|
|
|
100
|
-
export declare const createDefaultConnTemplate: (name: any, id: any, srcLng: any, srcLat: any, destLng: any, destLat: any, details
|
|
100
|
+
export declare const createDefaultConnTemplate: (name: any, id: any, srcLng: any, srcLat: any, destLng: any, destLat: any, details?: {}, linkColor?: any, linkAnimationColor?: any) => {
|
|
101
101
|
name: any;
|
|
102
102
|
id: any;
|
|
103
|
-
details:
|
|
103
|
+
details: {};
|
|
104
104
|
source: {
|
|
105
105
|
lng: any;
|
|
106
106
|
lat: any;
|
|
@@ -109,6 +109,8 @@ export declare const createDefaultConnTemplate: (name: any, id: any, srcLng: any
|
|
|
109
109
|
lng: any;
|
|
110
110
|
lat: any;
|
|
111
111
|
};
|
|
112
|
+
linkColor: any;
|
|
113
|
+
linkAnimationColor: any;
|
|
112
114
|
};
|
|
113
115
|
|
|
114
116
|
export declare const createDefaultNodeTempate: (name: any, id: any, color: any, lng: any, lat: any, details: any) => {
|