vis-core 0.17.4 → 0.18.0

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.
Files changed (73) hide show
  1. package/dist/{command → editor/command}/AddObject.d.ts +1 -1
  2. package/dist/{command → editor/command}/AddVis.d.ts +1 -1
  3. package/dist/{command → editor/command}/Command.d.ts +1 -1
  4. package/dist/{command → editor/command}/CopyObject.d.ts +1 -1
  5. package/dist/{command → editor/command}/RemoveObject.d.ts +1 -1
  6. package/dist/{command → editor/command}/SetSetting.d.ts +1 -1
  7. package/dist/{history.d.ts → editor/history.d.ts} +1 -1
  8. package/dist/editor/index.d.ts +71 -0
  9. package/dist/{viewport.d.ts → editor/viewport.d.ts} +8 -8
  10. package/dist/index.d.ts +5 -80
  11. package/dist/index.js +212 -212
  12. package/dist/index.module.js +21499 -21500
  13. package/dist/version.d.ts +1 -1
  14. package/dist/vis/all/objects/Model.d.ts +11 -0
  15. package/dist/vis/all/objects/index.d.ts +2 -0
  16. package/dist/vis/base/event.d.ts +11 -0
  17. package/dist/vis/{Base.d.ts → base/index.d.ts} +48 -34
  18. package/dist/vis/city/config.d.ts +0 -1
  19. package/dist/vis/city/index.d.ts +5 -5
  20. package/dist/vis/city/objects/index.d.ts +1 -0
  21. package/dist/vis/earth/index.d.ts +6 -8
  22. package/dist/vis/earth/objects/index.d.ts +3 -0
  23. package/dist/vis/earth/styles/chinaPlate.d.ts +2 -0
  24. package/dist/vis/earth/styles/countryPlate.d.ts +2 -0
  25. package/dist/vis/earth/styles/index.d.ts +2 -0
  26. package/dist/vis/earth2/index.d.ts +5 -6
  27. package/dist/vis/earth2/objects/index.d.ts +1 -0
  28. package/dist/vis/index.d.ts +2 -2
  29. package/dist/vis/map/index.d.ts +8 -7
  30. package/dist/vis/map/objects/index.d.ts +1 -0
  31. package/dist/vis/map/styles/base.d.ts +2 -0
  32. package/dist/vis/map/styles/china.d.ts +2 -0
  33. package/dist/vis/map/styles/index.d.ts +4 -0
  34. package/dist/vis/map/styles/world.d.ts +2 -0
  35. package/dist/vis/map/styles/worldPacificCentre.d.ts +2 -0
  36. package/dist/vis/map2/city.d.ts +1 -0
  37. package/dist/vis/map2/index.d.ts +1 -2
  38. package/dist/vis/map2/map.d.ts +6 -4
  39. package/dist/vis/map2/objects/index.d.ts +1 -0
  40. package/dist/vis/map2/styles/base.d.ts +2 -0
  41. package/dist/vis/map2/styles/city350000.d.ts +2 -0
  42. package/dist/vis/map2/styles/cityOnMap.d.ts +2 -0
  43. package/dist/vis/map2/styles/index.d.ts +4 -0
  44. package/dist/vis/map2/styles/map350000.d.ts +2 -0
  45. package/package.json +2 -2
  46. package/dist/vis/earth/utils/animation.d.ts +0 -1
  47. package/dist/vis/earth/utils/index.d.ts +0 -2
  48. package/dist/vis/earth3/config.d.ts +0 -7
  49. package/dist/vis/earth3/index.d.ts +0 -41
  50. package/dist/vis/earth3/objects/index.d.ts +0 -38
  51. package/dist/vis/earth3/utils/animation.d.ts +0 -1
  52. package/dist/vis/earth3/utils/index.d.ts +0 -2
  53. package/dist/vis/map/mapWorld.d.ts +0 -2
  54. package/dist/vis/map2/city350000.d.ts +0 -2
  55. package/dist/vis/map2/map350000.d.ts +0 -2
  56. package/dist/vis/map2/mapOnCity.d.ts +0 -2
  57. /package/dist/{command → editor/command}/Commands.d.ts +0 -0
  58. /package/dist/{command → editor/command}/SetColor.d.ts +0 -0
  59. /package/dist/{command → editor/command}/SetMaterial.d.ts +0 -0
  60. /package/dist/{command → editor/command}/SetMaterialColor.d.ts +0 -0
  61. /package/dist/{command → editor/command}/SetMaterialMap.d.ts +0 -0
  62. /package/dist/{command → editor/command}/SetMaterialMapVector.d.ts +0 -0
  63. /package/dist/{command → editor/command}/SetMaterialRange.d.ts +0 -0
  64. /package/dist/{command → editor/command}/SetMaterialValue.d.ts +0 -0
  65. /package/dist/{command → editor/command}/SetMaterialVector.d.ts +0 -0
  66. /package/dist/{command → editor/command}/SetPosition.d.ts +0 -0
  67. /package/dist/{command → editor/command}/SetRotation.d.ts +0 -0
  68. /package/dist/{command → editor/command}/SetScale.d.ts +0 -0
  69. /package/dist/{command → editor/command}/SetSceenMap.d.ts +0 -0
  70. /package/dist/{command → editor/command}/SetTarget.d.ts +0 -0
  71. /package/dist/{command → editor/command}/SetValue.d.ts +0 -0
  72. /package/dist/{helper.d.ts → editor/helper.d.ts} +0 -0
  73. /package/dist/vis/{earth3 → earth}/objects/SphereShadow.d.ts +0 -0
@@ -1,38 +0,0 @@
1
- import { Draw as DrawController } from 'gl-draw/dist/plugins';
2
- import Earth from "../../earth/objects/earth";
3
- import Countries from "../../earth/objects/countries";
4
- import SphereShadow from './SphereShadow';
5
- declare const objs: {
6
- Earth: typeof Earth;
7
- Countries: typeof Countries;
8
- SphereShadow: typeof SphereShadow;
9
- Plane: typeof import("../../all/objects/Plane").default;
10
- CrossPlane: typeof import("../../all/objects/CrossPlane").default;
11
- PlaneShadow: typeof import("../../all/objects/PlaneShadow").default;
12
- Ring: typeof import("../../all/objects/Ring").default;
13
- Sphere: typeof import("../../all/objects/Sphere").default;
14
- Sprite: typeof import("../../all/objects/Sprite").default;
15
- Tetrahedron: typeof import("../../all/objects/Tetrahedron").default;
16
- Torus: typeof import("../../all/objects/Torus").default;
17
- TorusKnot: typeof import("../../all/objects/TorusKnot").default;
18
- Tube: typeof import("../../all/objects/Tube").default;
19
- Box: typeof import("../../all/objects/Box").default;
20
- Capsule: typeof import("../../all/objects/Capsule").default;
21
- Circle: typeof import("../../all/objects/Circle").default;
22
- Cylinder: typeof import("../../all/objects/Cylinder").default;
23
- Dodecahedron: typeof import("../../all/objects/Dodecahedron").default;
24
- Icosahedron: typeof import("../../all/objects/Icosahedron").default;
25
- Lathe: typeof import("../../all/objects/Lathe").default;
26
- Octahedron: typeof import("../../all/objects/Octahedron").default;
27
- Node: typeof import("gl-draw/dist/objects").Node;
28
- Image: typeof import("gl-draw/dist/objects").Image;
29
- Line: typeof import("gl-draw/dist/objects").Line;
30
- ExtrudePolygon: typeof import("gl-draw/dist/objects").ExtrudePolygon;
31
- ConicPolygon: typeof import("gl-draw/dist/objects").ConicPolygon;
32
- Group: typeof import("gl-draw/dist/objects").Group;
33
- Light: typeof import("../../all/objects/Light").default;
34
- Point: typeof import("../../all/objects/Point").default;
35
- Arc: typeof import("../../all/objects/Arc").default;
36
- };
37
- export default objs;
38
- export type d = DrawController<typeof objs>;
@@ -1 +0,0 @@
1
- export declare const animation: (source: Record<string, any>, target: Record<string, any>, duration?: number, easing?: (amount: number) => number) => Promise<unknown>;
@@ -1,2 +0,0 @@
1
- export declare const fileLoader: (url: string) => Promise<any>;
2
- export declare const animation: (source: any, target: any, duration?: number, onUpdate?: (...args: any[]) => void, onComplete?: () => void, ease?: (amount: number) => number) => Promise<void>;
@@ -1,2 +0,0 @@
1
- import Map from './index';
2
- export declare const changeMapWorldMaterial: (map: Map) => void;
@@ -1,2 +0,0 @@
1
- import City from './city';
2
- export declare const change350000Material: (city: City) => void;
@@ -1,2 +0,0 @@
1
- import Map from './map';
2
- export declare const change350000Material: (map: Map) => void;
@@ -1,2 +0,0 @@
1
- import Map from './map';
2
- export declare const changeMapOnCityMaterial: (map: Map) => void;
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes