vis-core 0.14.5 → 0.14.7
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.js +40 -40
- package/dist/index.module.js +1883 -1792
- package/dist/version.d.ts +1 -1
- package/dist/vis/all/objects/Light.d.ts +1 -0
- package/dist/vis/earth3/index.d.ts +1 -0
- package/dist/vis/earth3/objects/SphereShadow.d.ts +10 -0
- package/dist/vis/earth3/objects/index.d.ts +2 -0
- package/package.json +3 -3
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "0.14.
|
|
1
|
+
declare const _default: "0.14.7";
|
|
2
2
|
export default _default;
|
|
@@ -5,6 +5,7 @@ export default class extends Earth {
|
|
|
5
5
|
drawController: DrawController<{
|
|
6
6
|
Earth: typeof import("../earth/objects/earth").default;
|
|
7
7
|
Countries: typeof import("./objects/countries").default;
|
|
8
|
+
SphereShadow: typeof import("./objects/SphereShadow").default;
|
|
8
9
|
Plane: typeof import("../all/objects/Plane").default;
|
|
9
10
|
Ring: typeof import("../all/objects/Ring").default;
|
|
10
11
|
Sphere: typeof import("../all/objects/Sphere").default;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { Draw as DrawController } from 'gl-draw/dist/plugins';
|
|
2
2
|
import Earth from "../../earth/objects/earth";
|
|
3
|
+
import SphereShadow from './SphereShadow';
|
|
3
4
|
import Countries from './countries';
|
|
4
5
|
declare const objs: {
|
|
5
6
|
Earth: typeof Earth;
|
|
6
7
|
Countries: typeof Countries;
|
|
8
|
+
SphereShadow: typeof SphereShadow;
|
|
7
9
|
Plane: typeof import("../../all/objects/Plane").default;
|
|
8
10
|
Ring: typeof import("../../all/objects/Ring").default;
|
|
9
11
|
Sphere: typeof import("../../all/objects/Sphere").default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vis-core",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.7",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "npm run version && PORT=5173 bundler-dev",
|
|
6
6
|
"build:site": "npm run version &&PUBLIC_EXCLUDE=public/city bundler",
|
|
@@ -46,14 +46,14 @@
|
|
|
46
46
|
"eslint-config-bundler": "^0.4.2",
|
|
47
47
|
"esus": "^0.4.27",
|
|
48
48
|
"fs-extra": "^11.1.1",
|
|
49
|
-
"gl-draw": "0.9.
|
|
49
|
+
"gl-draw": "0.9.5",
|
|
50
50
|
"idb-keyval": "^6.2.1",
|
|
51
51
|
"pinia": "^2.1.7",
|
|
52
52
|
"prettier-config-bundler": "^0.4.3",
|
|
53
53
|
"stylelint-config-bundler": "^0.4.5",
|
|
54
54
|
"tailwind-config-bundler": "^0.4.3",
|
|
55
55
|
"three": "0.165.0",
|
|
56
|
-
"vite-plugin-markdown": "^2.
|
|
56
|
+
"vite-plugin-markdown": "^2.2.0",
|
|
57
57
|
"vue": "^3.4.27",
|
|
58
58
|
"vue-bundler": "^0.4.4",
|
|
59
59
|
"vue-easy-dnd": "^2.1.3",
|