vis-core 0.12.23 → 0.12.24
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 +2 -2
- package/dist/index.module.js +6 -6
- package/dist/version.d.ts +1 -1
- package/package.json +3 -1
package/dist/index.module.js
CHANGED
|
@@ -41029,7 +41029,7 @@ function Ql(n) {
|
|
|
41029
41029
|
const t = new t0();
|
|
41030
41030
|
return t.color.setScalar(n), t;
|
|
41031
41031
|
}
|
|
41032
|
-
const GX = "0.12.
|
|
41032
|
+
const GX = "0.12.24", a1 = !1;
|
|
41033
41033
|
class pl {
|
|
41034
41034
|
constructor(t, e = {}) {
|
|
41035
41035
|
P(this, "container");
|
|
@@ -43659,11 +43659,11 @@ const nF = {
|
|
|
43659
43659
|
loaderAddJson(e) {
|
|
43660
43660
|
this.loader.add(
|
|
43661
43661
|
[
|
|
43662
|
-
`/city/Building${e}.json`,
|
|
43663
|
-
`/city/Road${e}.json`,
|
|
43664
|
-
`/city/River${e}.json`,
|
|
43665
|
-
`/city/Grassland${e}.json`
|
|
43666
|
-
],
|
|
43662
|
+
this.options.showBuilding && `/city/Building${e}.json`,
|
|
43663
|
+
this.options.showRoad && `/city/Road${e}.json`,
|
|
43664
|
+
this.options.showRiver && `/city/River${e}.json`,
|
|
43665
|
+
this.options.showGrassland && `/city/Grassland${e}.json`
|
|
43666
|
+
].filter(Boolean),
|
|
43667
43667
|
{
|
|
43668
43668
|
cacheVersion: OM
|
|
43669
43669
|
}
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "0.12.
|
|
1
|
+
declare const _default: "0.12.24";
|
|
2
2
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vis-core",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.24",
|
|
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",
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"build:type": "BUILD_LIBRARY=src/sdk/index.ts bundler-type",
|
|
9
9
|
"preview": "bundler-preview",
|
|
10
10
|
"version": "node ./scripts/generate-version",
|
|
11
|
+
"getPublic": "node ./scripts/getPublic",
|
|
11
12
|
"start:3dSite": "npm run version && VITE_SITE_3D=true bundler-dev",
|
|
12
13
|
"build:3dSite": "npm run version && VITE_SITE_3D=true bundler",
|
|
13
14
|
"pub": "npm publish"
|
|
@@ -40,6 +41,7 @@
|
|
|
40
41
|
"@types/node": "^20.6.0",
|
|
41
42
|
"@types/three": "^0.164.0",
|
|
42
43
|
"ant-design-vue": "^4.2.1",
|
|
44
|
+
"archiver": "^7.0.1",
|
|
43
45
|
"codemirror": "^6.0.1",
|
|
44
46
|
"dayjs": "^1.11.10",
|
|
45
47
|
"eslint-config-bundler": "^0.4.0",
|