vis-core 0.29.12 → 0.30.0-beta.1
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/editor/command/SetMaterialMap.d.ts +1 -1
- package/dist/editor/hooks.d.ts +2 -1
- package/dist/editor/viewport.d.ts +3 -3
- package/dist/index.d.ts +1 -1
- package/dist/index.js +212 -98
- package/dist/index.module.js +22136 -20017
- package/dist/version.d.ts +1 -1
- package/dist/vis/all/objects/Arc/utils.d.ts +1 -1
- package/dist/vis/base/index.d.ts +4 -6
- package/dist/vis/city/index.d.ts +6 -26
- package/dist/vis/city/objects/area/index.d.ts +2 -4
- package/dist/vis/city/objects/building/index.d.ts +0 -4
- package/dist/vis/city/objects/road/index.d.ts +1 -2
- package/dist/vis/map/index.d.ts +7 -11
- package/dist/vis/map/objects/Mountain.d.ts +2 -2
- package/dist/vis/map/objects/PlaneMap.d.ts +1 -1
- package/dist/vis/map/styles/map2/cityOnMap.d.ts +1 -1
- package/package.json +6 -6
- package/dist/utils/clipGeojson.d.ts +0 -5
- package/dist/utils/fasterUnion.d.ts +0 -3
|
@@ -11,7 +11,7 @@ export class SetMaterialMap extends Command {
|
|
|
11
11
|
playVideo(map: any): void;
|
|
12
12
|
fromJSON(json: any): void;
|
|
13
13
|
}
|
|
14
|
-
export function parseTexture(json: any): THREE.Texture | null;
|
|
14
|
+
export function parseTexture(json: any): THREE.Texture<unknown> | null;
|
|
15
15
|
export function serializeMap(map: any): any;
|
|
16
16
|
import { Command } from './Command';
|
|
17
17
|
import * as THREE from 'three';
|
package/dist/editor/hooks.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import Editor from "./";
|
|
1
|
+
import type Editor from "./";
|
|
2
2
|
declare class Hooks {
|
|
3
3
|
editor: Editor;
|
|
4
4
|
events: {
|
|
5
5
|
beforeSetVisOptions: Function[];
|
|
6
|
+
afterSetVisOptions: Function[];
|
|
6
7
|
beforeExecuteUndo: Function[];
|
|
7
8
|
afterExecuteUndo: Function[];
|
|
8
9
|
beforeShow: Function[];
|
package/dist/index.d.ts
CHANGED