@next2d/events 1.14.22 → 1.14.23

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/Event.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { EventDispatcherImpl } from "@next2d/interface";
1
+ import type { EventDispatcherImpl } from "@next2d/interface";
2
2
  /**
3
3
  * Event クラスのメソッドは、イベントリスナー関数で使用してイベントオブジェクトの動作に影響を与えることができます。
4
4
  * 一部のイベントにはデフォルトの動作が関連付けられています。
@@ -1,5 +1,5 @@
1
1
  import { Event } from "./Event";
2
- import { EventListenerImpl } from "@next2d/interface";
2
+ import type { EventListenerImpl } from "@next2d/interface";
3
3
  /**
4
4
  * EventDispatcher クラスは、イベントを送出するすべてのクラスの基本クラスです。
5
5
  *
@@ -1,5 +1,5 @@
1
1
  import { Event } from "./Event";
2
- import { URLRequestHeader } from "@next2d/net";
2
+ import type { URLRequestHeader } from "@next2d/net";
3
3
  /**
4
4
  * ネットワーク要求が HTTP ステータスコードを返すと、アプリケーションによって HTTPStatusEvent オブジェクトが送出されます。
5
5
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next2d/events",
3
- "version": "1.14.22",
3
+ "version": "1.14.23",
4
4
  "description": "Next2D Events Packages",
5
5
  "author": "Toshiyuki Ienaga<ienaga@tvon.jp> (https://github.com/ienaga/)",
6
6
  "license": "MIT",
@@ -32,11 +32,11 @@
32
32
  "url": "git+https://github.com/Next2D/Player.git"
33
33
  },
34
34
  "peerDependencies": {
35
- "@next2d/interface": "1.14.22",
36
- "@next2d/display": "1.14.22",
37
- "@next2d/core": "1.14.22",
38
- "@next2d/util": "1.14.22",
39
- "@next2d/net": "1.14.22",
40
- "@next2d/share": "1.14.22"
35
+ "@next2d/interface": "1.14.23",
36
+ "@next2d/display": "1.14.23",
37
+ "@next2d/core": "1.14.23",
38
+ "@next2d/util": "1.14.23",
39
+ "@next2d/net": "1.14.23",
40
+ "@next2d/share": "1.14.23"
41
41
  }
42
42
  }