chili3d 0.6.2 → 0.6.5
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/chili/package.json +2 -1
- package/chili-builder/package.json +2 -1
- package/chili-controls/package.json +2 -1
- package/chili-core/package.json +2 -1
- package/chili-geo/package.json +2 -1
- package/chili-i18n/package.json +2 -1
- package/chili-storage/package.json +2 -1
- package/chili-three/package.json +2 -1
- package/chili-ui/package.json +2 -1
- package/chili-ui/src/cursor/index.ts +5 -1
- package/chili-vis/package.json +2 -1
- package/chili-wasm/lib/chili-wasm.d.ts +827 -0
- package/chili-wasm/lib/chili-wasm.js +5275 -0
- package/chili-wasm/lib/chili-wasm.wasm +0 -0
- package/chili-wasm/package.json +2 -1
- package/chili-web/package.json +2 -1
- package/package.json +1 -1
package/chili/package.json
CHANGED
package/chili-core/package.json
CHANGED
package/chili-geo/package.json
CHANGED
package/chili-i18n/package.json
CHANGED
package/chili-three/package.json
CHANGED
package/chili-ui/package.json
CHANGED
|
@@ -2,7 +2,11 @@
|
|
|
2
2
|
// See LICENSE file in the project root for full license information.
|
|
3
3
|
|
|
4
4
|
import type { CursorType } from "chili-core";
|
|
5
|
-
import
|
|
5
|
+
// 替换之前的import语句
|
|
6
|
+
// import draw from "./draw.cur";
|
|
7
|
+
|
|
8
|
+
// 使用URL方式
|
|
9
|
+
const draw = new URL('./draw.cur', import.meta.url).href;
|
|
6
10
|
|
|
7
11
|
const cursors: Map<CursorType, string> = new Map([
|
|
8
12
|
["default", "default"],
|