vis-core 0.28.40 → 0.29.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/AddObject.d.ts +1 -1
- package/dist/editor/command/CopyObject.d.ts +1 -1
- package/dist/editor/config.d.ts +1 -0
- package/dist/editor/history.d.ts +1 -1
- package/dist/getVisConfig.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +69 -69
- package/dist/index.module.js +16009 -15863
- package/dist/version.d.ts +1 -1
- package/dist/vis/all/objects/Arc/index.d.ts +1 -1
- package/dist/vis/all/objects/Light.d.ts +1 -0
- package/dist/vis/all/objects/Point.d.ts +2 -2
- package/dist/vis/city/objects/area/index.d.ts +1 -1
- package/dist/vis/city/objects/building/index.d.ts +1 -1
- package/dist/vis/map/objects/ContinentsBg.d.ts +1 -1
- package/dist/vis/map/objects/PlaneMap.d.ts +1 -1
- package/package.json +4 -4
|
@@ -5,7 +5,7 @@ declare class CopyObject extends Command {
|
|
|
5
5
|
object: BaseObject;
|
|
6
6
|
copyObject: BaseObject | null;
|
|
7
7
|
copyObjectUuid: string | undefined;
|
|
8
|
-
|
|
8
|
+
cloneMaterial: boolean;
|
|
9
9
|
constructor(editor: Editor, object: BaseObject);
|
|
10
10
|
execute(): Promise<void>;
|
|
11
11
|
undo(): Promise<void>;
|
package/dist/editor/config.d.ts
CHANGED
package/dist/editor/history.d.ts
CHANGED
package/dist/getVisConfig.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* @param prevConfig 之前的配置
|
|
6
6
|
* @param imgArr 图像数组
|
|
7
7
|
*/
|
|
8
|
-
export declare const getMapConfig: (adcode: number, base?: string, prevConfig?: any, imgArr?: string[]) => Promise<any>;
|
|
8
|
+
export declare const getMapConfig: (adcode: number, base?: string, prevConfig?: any, imgArr?: string[] | Record<string, string>) => Promise<any>;
|
|
9
9
|
/**
|
|
10
10
|
* 获取城市配置
|
|
11
11
|
* @param adcode 区域代码
|
package/dist/index.d.ts
CHANGED