vis-core 0.21.62 → 0.21.64
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/index.d.ts +1 -1
- package/dist/index.js +34 -34
- package/dist/index.module.js +1699 -1709
- package/dist/version.d.ts +1 -1
- package/dist/vis/map/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "0.21.
|
|
1
|
+
declare const _default: "0.21.64";
|
|
2
2
|
export default _default;
|
package/dist/vis/map/index.d.ts
CHANGED
|
@@ -186,8 +186,12 @@ export default class extends Base {
|
|
|
186
186
|
depth: number;
|
|
187
187
|
adcode: number;
|
|
188
188
|
}): Promise<PlaneMap>;
|
|
189
|
-
handleBack(duration?:
|
|
189
|
+
handleBack({ duration, handleLookBack }?: {
|
|
190
|
+
duration?: number | undefined;
|
|
191
|
+
handleLookBack?: boolean | undefined;
|
|
192
|
+
}): Promise<void>;
|
|
190
193
|
handleLookBack(duration?: number): Promise<void>;
|
|
194
|
+
compareLocations(currentO: any[], destinationO: any[]): number[];
|
|
191
195
|
setAdcode({ adcodes, duration }: {
|
|
192
196
|
adcodes: number[];
|
|
193
197
|
duration?: number;
|