@next2d/display 1.18.9 → 1.18.10

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 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 { NoCodeDataZlibImpl, NoCodeDataImpl, ParentImpl } from "@next2d/interface";
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 {string} json
99
+ * @param {object} json
100
100
  * @return {void}
101
101
  * @method
102
102
  * @public
103
103
  */
104
- loadJSON(json: NoCodeDataZlibImpl | NoCodeDataImpl): void;
104
+ loadJSON(json: any): void;
105
105
  /**
106
106
  * @param {ProgressEvent} event
107
107
  * @return {void}
package/dist/Loader.js CHANGED
@@ -143,7 +143,7 @@ export class Loader extends DisplayObjectContainer {
143
143
  * @description NoCodeToolのJSONを直接読み込む
144
144
  * Read JSON directly from NoCodeTool
145
145
  *
146
- * @param {string} json
146
+ * @param {object} json
147
147
  * @return {void}
148
148
  * @method
149
149
  * @public
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next2d/display",
3
- "version": "1.18.9",
3
+ "version": "1.18.10",
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.9",
36
- "@next2d/core": "1.18.9",
37
- "@next2d/ui": "1.18.9",
38
- "@next2d/text": "1.18.9",
39
- "@next2d/geom": "1.18.9",
40
- "@next2d/util": "1.18.9",
41
- "@next2d/share": "1.18.9",
42
- "@next2d/webgl": "1.18.9",
43
- "@next2d/media": "1.18.9",
44
- "@next2d/net": "1.18.9",
45
- "@next2d/events": "1.18.9"
35
+ "@next2d/interface": "1.18.10",
36
+ "@next2d/core": "1.18.10",
37
+ "@next2d/ui": "1.18.10",
38
+ "@next2d/text": "1.18.10",
39
+ "@next2d/geom": "1.18.10",
40
+ "@next2d/util": "1.18.10",
41
+ "@next2d/share": "1.18.10",
42
+ "@next2d/webgl": "1.18.10",
43
+ "@next2d/media": "1.18.10",
44
+ "@next2d/net": "1.18.10",
45
+ "@next2d/events": "1.18.10"
46
46
  }
47
47
  }