chili3d 0.6.3 → 0.6.6
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.
|
@@ -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"],
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
// Part of the Chili3d Project, under the AGPL-3.0 License.
|
|
2
2
|
// See LICENSE file in the project root for full license information.
|
|
3
3
|
|
|
4
|
-
import { button,
|
|
5
|
-
import { UrlStringConverter } from "chili-controls/src/converters/urlConverter";
|
|
4
|
+
import { button, collection, ColorConverter, div, span, svg, UrlStringConverter } from "chili-controls";
|
|
6
5
|
import {
|
|
7
6
|
Binding,
|
|
8
7
|
type IConverter,
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
// Part of the Chili3d Project, under the AGPL-3.0 License.
|
|
2
2
|
// See LICENSE file in the project root for full license information.
|
|
3
3
|
|
|
4
|
-
import { div, Expander, img, svg } from "chili-controls";
|
|
5
|
-
import { UrlStringConverter } from "chili-controls/src/converters/urlConverter";
|
|
4
|
+
import { div, Expander, img, svg, UrlStringConverter } from "chili-controls";
|
|
6
5
|
import {
|
|
7
6
|
type I18nKeys,
|
|
8
7
|
type IDocument,
|