vis-core 0.28.19 → 0.28.21

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.
@@ -1,10 +1,11 @@
1
- import { Command } from './Command';
2
1
  import Editor from "..";
3
2
  import { BaseObject } from 'gl-draw';
3
+ import { Command } from './Command';
4
4
  declare class CopyObject extends Command {
5
5
  object: BaseObject;
6
6
  copyObject: BaseObject | null;
7
7
  copyObjectUuid: string | undefined;
8
+ mListUuid: string[];
8
9
  constructor(editor: Editor, object: BaseObject);
9
10
  execute(): Promise<void>;
10
11
  undo(): Promise<void>;
@@ -1,16 +1,17 @@
1
1
  import '@/styles/vis.css';
2
- import * as THREE from 'three';
3
2
  import { EventEmitter } from 'events';
4
- import Pencil, { BaseObject } from 'gl-draw';
3
+ import type Base from "../vis/base";
4
+ import type Pencil from 'gl-draw';
5
+ import { type BaseObject } from 'gl-draw';
6
+ import * as THREE from 'three';
7
+ import type Arc from "../vis/all/objects/Arc";
8
+ import type Sprite from "../vis/all/objects/Sprite";
9
+ import Config from './config';
5
10
  import History from './history';
6
- import Viewport from './viewport';
7
11
  import Hooks from './hooks';
8
- import Config from './config';
9
- import Arc from "../vis/all/objects/Arc";
10
- import Sprite from "../vis/all/objects/Sprite";
11
- import Base from "../vis/base";
12
- export * as THREE from 'three';
12
+ import Viewport from './viewport';
13
13
  export { MeshLineMaterial } from 'gl-draw/dist/objects';
14
+ export * as THREE from 'three';
14
15
  export interface IBaseObject extends BaseObject {
15
16
  }
16
17
  export interface SelectedMeta {
package/dist/index.d.ts CHANGED
@@ -8,4 +8,4 @@ export * from './getVisConfig';
8
8
  export declare const access: {
9
9
  token: string;
10
10
  };
11
- export declare const VERSION = "0.28.19";
11
+ export declare const VERSION = "0.28.21";