@next2d/display 1.18.9 → 1.18.11
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/Loader.d.ts +3 -3
- package/dist/Loader.js +1 -1
- package/package.json +12 -12
package/dist/Loader.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DisplayObjectContainer } from "./DisplayObjectContainer";
|
|
2
2
|
import { LoaderInfo } from "./LoaderInfo";
|
|
3
3
|
import { URLRequest } from "@next2d/net";
|
|
4
|
-
import type {
|
|
4
|
+
import type { NoCodeDataImpl, ParentImpl } from "@next2d/interface";
|
|
5
5
|
/**
|
|
6
6
|
* Loader クラスは、JSON ファイルまたはイメージ(JPEG、PNG、または GIF)ファイルを読み込むために使用します。
|
|
7
7
|
* 読み込みを開始するには load() メソッドを使用します。
|
|
@@ -96,12 +96,12 @@ export declare class Loader extends DisplayObjectContainer {
|
|
|
96
96
|
* @description NoCodeToolのJSONを直接読み込む
|
|
97
97
|
* Read JSON directly from NoCodeTool
|
|
98
98
|
*
|
|
99
|
-
* @param {
|
|
99
|
+
* @param {object} json
|
|
100
100
|
* @return {void}
|
|
101
101
|
* @method
|
|
102
102
|
* @public
|
|
103
103
|
*/
|
|
104
|
-
loadJSON(json:
|
|
104
|
+
loadJSON(json: any): void;
|
|
105
105
|
/**
|
|
106
106
|
* @param {ProgressEvent} event
|
|
107
107
|
* @return {void}
|
package/dist/Loader.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@next2d/display",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.11",
|
|
4
4
|
"description": "Next2D Display Packages",
|
|
5
5
|
"author": "Toshiyuki Ienaga<ienaga@tvon.jp> (https://github.com/ienaga/)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -32,16 +32,16 @@
|
|
|
32
32
|
"url": "git+https://github.com/Next2D/Player.git"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@next2d/interface": "1.18.
|
|
36
|
-
"@next2d/core": "1.18.
|
|
37
|
-
"@next2d/ui": "1.18.
|
|
38
|
-
"@next2d/text": "1.18.
|
|
39
|
-
"@next2d/geom": "1.18.
|
|
40
|
-
"@next2d/util": "1.18.
|
|
41
|
-
"@next2d/share": "1.18.
|
|
42
|
-
"@next2d/webgl": "1.18.
|
|
43
|
-
"@next2d/media": "1.18.
|
|
44
|
-
"@next2d/net": "1.18.
|
|
45
|
-
"@next2d/events": "1.18.
|
|
35
|
+
"@next2d/interface": "1.18.11",
|
|
36
|
+
"@next2d/core": "1.18.11",
|
|
37
|
+
"@next2d/ui": "1.18.11",
|
|
38
|
+
"@next2d/text": "1.18.11",
|
|
39
|
+
"@next2d/geom": "1.18.11",
|
|
40
|
+
"@next2d/util": "1.18.11",
|
|
41
|
+
"@next2d/share": "1.18.11",
|
|
42
|
+
"@next2d/webgl": "1.18.11",
|
|
43
|
+
"@next2d/media": "1.18.11",
|
|
44
|
+
"@next2d/net": "1.18.11",
|
|
45
|
+
"@next2d/events": "1.18.11"
|
|
46
46
|
}
|
|
47
47
|
}
|