@next2d/events 2.1.2 → 2.1.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next2d/events",
3
- "version": "2.1.2",
3
+ "version": "2.1.3",
4
4
  "description": "Next2D Events Package",
5
5
  "author": "Toshiyuki Ienaga<ienaga@next2d.app> (https://github.com/ienaga/)",
6
6
  "license": "MIT",
package/src/Event.d.ts CHANGED
@@ -111,6 +111,15 @@ export declare class Event {
111
111
  * @static
112
112
  */
113
113
  static get ADDED_TO_STAGE(): string;
114
+ /**
115
+ * @description 要素の値を変更したときに発行されます。
116
+ * Occurs when the value of an element changes.
117
+ *
118
+ * @return {string}
119
+ * @const
120
+ * @static
121
+ */
122
+ static get CHANGE(): string;
114
123
  /**
115
124
  * @description 読み込みや、処理完了時に発生します。
116
125
  * Occurs when loading or processing is complete.
package/src/Event.js CHANGED
@@ -202,6 +202,17 @@ export class Event {
202
202
  static get ADDED_TO_STAGE() {
203
203
  return "addedToStage";
204
204
  }
205
+ /**
206
+ * @description 要素の値を変更したときに発行されます。
207
+ * Occurs when the value of an element changes.
208
+ *
209
+ * @return {string}
210
+ * @const
211
+ * @static
212
+ */
213
+ static get CHANGE() {
214
+ return "change";
215
+ }
205
216
  /**
206
217
  * @description 読み込みや、処理完了時に発生します。
207
218
  * Occurs when loading or processing is complete.