@next2d/ui 1.17.5 → 1.18.0

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.
Files changed (2) hide show
  1. package/dist/Job.js +1 -1
  2. package/package.json +3 -3
package/dist/Job.js CHANGED
@@ -324,7 +324,7 @@ export class Job extends EventDispatcher {
324
324
  this._$updateProperty(target[name], from[name], to[name], value);
325
325
  continue;
326
326
  }
327
- if (!target.hasOwnProperty(name)) {
327
+ if (!(name in target)) {
328
328
  continue;
329
329
  }
330
330
  // update
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next2d/ui",
3
- "version": "1.17.5",
3
+ "version": "1.18.0",
4
4
  "description": "Next2D UI Packages",
5
5
  "author": "Toshiyuki Ienaga<ienaga@tvon.jp> (https://github.com/ienaga/)",
6
6
  "license": "MIT",
@@ -32,7 +32,7 @@
32
32
  "url": "git+https://github.com/Next2D/Player.git"
33
33
  },
34
34
  "peerDependencies": {
35
- "@next2d/events": "1.17.5",
36
- "@next2d/share": "1.17.5"
35
+ "@next2d/events": "1.18.0",
36
+ "@next2d/share": "1.18.0"
37
37
  }
38
38
  }