@abdellatifui/react 3.1.31 → 3.1.32
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 +6 -1
- package/dist/nextgen.js +4092 -4065
- package/dist/style.css +1 -1
- 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/useCreatePath.d.ts +2 -2
- package/dist/types/components/NetworkMap/useCreatePath.d.ts.map +1 -1
- package/dist/types/components/NetworkMap/utils.d.ts +5 -1
- package/dist/types/components/NetworkMap/utils.d.ts.map +1 -1
- package/dist/types/stories/Map/map.stories.d.ts +4 -0
- package/dist/types/stories/Map/map.stories.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/nextgen.d.ts
CHANGED
|
@@ -97,7 +97,7 @@ 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, sourceId: any, destinationId: any, details?: {}, linkColor?: any, linkAnimationColor?: any) => {
|
|
100
|
+
export declare const createDefaultConnTemplate: (name: any, id: any, sourceId: any, destinationId: any, details?: {}, linkColor?: any, linkAnimationColor?: any, layer?: number, group?: number, bidir?: boolean) => {
|
|
101
101
|
name: any;
|
|
102
102
|
id: any;
|
|
103
103
|
details: {};
|
|
@@ -105,6 +105,9 @@ export declare const createDefaultConnTemplate: (name: any, id: any, sourceId: a
|
|
|
105
105
|
destinationId: any;
|
|
106
106
|
linkColor: any;
|
|
107
107
|
linkAnimationColor: any;
|
|
108
|
+
layer: number;
|
|
109
|
+
group: number;
|
|
110
|
+
bidir: boolean;
|
|
108
111
|
};
|
|
109
112
|
|
|
110
113
|
export declare const createDefaultNodeTempate: (name: any, id: any, color: any, lng: any, lat: any, details: any) => {
|
|
@@ -141,6 +144,8 @@ export declare const Frame: default_2.ForwardRefExoticComponent<default_2.RefAtt
|
|
|
141
144
|
|
|
142
145
|
export declare const Frequency: ForwardRefExoticComponent<RefAttributes<unknown>>;
|
|
143
146
|
|
|
147
|
+
export declare function getRandomColor(): string;
|
|
148
|
+
|
|
144
149
|
export declare const GetRandomStr: (length?: number, str?: boolean) => string;
|
|
145
150
|
|
|
146
151
|
export declare const getWholeSpectrum: () => any[];
|