@loaders.gl/i3s 4.3.0-alpha.7 → 4.3.0-beta.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/arcgis-webscene-loader.d.ts.map +1 -1
- package/dist/arcgis-webscene-loader.js +1 -1
- package/dist/dist.dev.js +443 -177
- package/dist/dist.min.js +1 -1
- package/dist/i3s-attribute-loader.d.ts.map +1 -1
- package/dist/i3s-attribute-loader.js +1 -1
- package/dist/i3s-building-scene-layer-loader.d.ts.map +1 -1
- package/dist/i3s-building-scene-layer-loader.js +1 -1
- package/dist/i3s-content-loader.d.ts.map +1 -1
- package/dist/i3s-content-loader.js +1 -1
- package/dist/i3s-content-worker-node.js +53 -53
- package/dist/i3s-content-worker-node.js.map +4 -4
- package/dist/i3s-content-worker.js +362 -359
- package/dist/i3s-loader.d.ts.map +1 -1
- package/dist/i3s-loader.js +1 -1
- package/dist/i3s-node-page-loader.d.ts.map +1 -1
- package/dist/i3s-node-page-loader.js +1 -1
- package/dist/i3s-slpk-loader.d.ts.map +1 -1
- package/dist/i3s-slpk-loader.js +1 -1
- package/dist/index.cjs +7 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/lib/helpers/i3s-nodepages-tiles.d.ts.map +1 -1
- package/package.json +15 -15
- package/src/index.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/i3s",
|
|
3
|
-
"version": "4.3.0-
|
|
3
|
+
"version": "4.3.0-beta.1",
|
|
4
4
|
"description": "i3s .",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -42,22 +42,22 @@
|
|
|
42
42
|
"build-worker-node": "esbuild src/workers/i3s-content-worker-node.ts --outfile=dist/i3s-content-worker-node.js --platform=node --target=node16 --minify --bundle --sourcemap --define:__VERSION__=\\\"$npm_package_version\\\""
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@loaders.gl/compression": "4.3.0-
|
|
46
|
-
"@loaders.gl/crypto": "4.3.0-
|
|
47
|
-
"@loaders.gl/draco": "4.3.0-
|
|
48
|
-
"@loaders.gl/images": "4.3.0-
|
|
49
|
-
"@loaders.gl/loader-utils": "4.3.0-
|
|
50
|
-
"@loaders.gl/math": "4.3.0-
|
|
51
|
-
"@loaders.gl/schema": "4.3.0-
|
|
52
|
-
"@loaders.gl/textures": "4.3.0-
|
|
53
|
-
"@loaders.gl/tiles": "4.3.0-
|
|
54
|
-
"@loaders.gl/zip": "4.3.0-
|
|
55
|
-
"@math.gl/core": "^4.
|
|
56
|
-
"@math.gl/culling": "^4.
|
|
57
|
-
"@math.gl/geospatial": "^4.
|
|
45
|
+
"@loaders.gl/compression": "4.3.0-beta.1",
|
|
46
|
+
"@loaders.gl/crypto": "4.3.0-beta.1",
|
|
47
|
+
"@loaders.gl/draco": "4.3.0-beta.1",
|
|
48
|
+
"@loaders.gl/images": "4.3.0-beta.1",
|
|
49
|
+
"@loaders.gl/loader-utils": "4.3.0-beta.1",
|
|
50
|
+
"@loaders.gl/math": "4.3.0-beta.1",
|
|
51
|
+
"@loaders.gl/schema": "4.3.0-beta.1",
|
|
52
|
+
"@loaders.gl/textures": "4.3.0-beta.1",
|
|
53
|
+
"@loaders.gl/tiles": "4.3.0-beta.1",
|
|
54
|
+
"@loaders.gl/zip": "4.3.0-beta.1",
|
|
55
|
+
"@math.gl/core": "^4.1.0",
|
|
56
|
+
"@math.gl/culling": "^4.1.0",
|
|
57
|
+
"@math.gl/geospatial": "^4.1.0"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"@loaders.gl/core": "^4.0.0"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "992d24e7d4e3015a91fa1cbfe87ee7dc1b333322"
|
|
63
63
|
}
|
package/src/index.ts
CHANGED
|
@@ -53,3 +53,4 @@ export {SLPKArchive} from './lib/parsers/parse-slpk/slpk-archieve';
|
|
|
53
53
|
export {parseSLPKArchive} from './lib/parsers/parse-slpk/parse-slpk';
|
|
54
54
|
export {LayerError} from './lib/parsers/parse-arcgis-webscene';
|
|
55
55
|
export {customizeColors} from './lib/utils/customize-colors';
|
|
56
|
+
export {type I3STileAttributes} from './lib/parsers/parse-i3s-attribute';
|