@next2d/display 1.14.21 → 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/BitmapData.d.ts +2 -2
- package/dist/DisplayObject.d.ts +2 -2
- package/dist/DisplayObjectContainer.d.ts +2 -2
- package/dist/Graphics.d.ts +4 -4
- package/dist/GraphicsBitmapFill.d.ts +1 -1
- package/dist/GraphicsGradientFill.d.ts +1 -1
- package/dist/Loader.d.ts +1 -1
- package/dist/LoaderInfo.d.ts +1 -1
- package/dist/MovieClip.d.ts +1 -1
- package/dist/Shape.d.ts +3 -3
- package/dist/Sprite.d.ts +2 -2
- package/dist/Stage.d.ts +2 -2
- package/package.json +10 -10
package/dist/BitmapData.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DisplayObjectImpl } from "@next2d/interface";
|
|
2
|
-
import { Matrix, ColorTransform } from "@next2d/geom";
|
|
1
|
+
import type { DisplayObjectImpl } from "@next2d/interface";
|
|
2
|
+
import type { Matrix, ColorTransform } from "@next2d/geom";
|
|
3
3
|
/**
|
|
4
4
|
* BitmapData クラスを使用すると、Bitmap オブジェクトのデータ (ピクセル) を処理できます。
|
|
5
5
|
* BitmapData クラスのメソッドを使用して、任意のサイズの透明または不透明のビットマップイメージを作成し
|
package/dist/DisplayObject.d.ts
CHANGED
|
@@ -3,8 +3,8 @@ import type { LoaderInfo } from "./LoaderInfo";
|
|
|
3
3
|
import type { Sprite } from "./Sprite";
|
|
4
4
|
import { EventDispatcher } from "@next2d/events";
|
|
5
5
|
import { Transform, Rectangle, Point } from "@next2d/geom";
|
|
6
|
-
import { FilterArrayImpl, BlendModeImpl, ParentImpl, PlaceObjectImpl, BoundsImpl, DictionaryTagImpl, PropertyMessageMapImpl, DisplayObjectImpl } from "@next2d/interface";
|
|
7
|
-
import { CanvasToWebGLContext } from "@next2d/webgl";
|
|
6
|
+
import type { FilterArrayImpl, BlendModeImpl, ParentImpl, PlaceObjectImpl, BoundsImpl, DictionaryTagImpl, PropertyMessageMapImpl, DisplayObjectImpl } from "@next2d/interface";
|
|
7
|
+
import type { CanvasToWebGLContext } from "@next2d/webgl";
|
|
8
8
|
/**
|
|
9
9
|
* DisplayObject クラスは、表示リストに含めることのできるすべてのオブジェクトに関する基本クラスです。
|
|
10
10
|
* DisplayObject クラス自体は、画面上でのコンテンツの描画のための API を含みません。
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { InteractiveObject } from "./InteractiveObject";
|
|
2
|
-
import { DictionaryTagImpl, PlaceObjectImpl, DisplayObjectImpl, BoundsImpl, PreObjectImpl, PlayerHitObjectImpl } from "@next2d/interface";
|
|
3
|
-
import { CanvasToWebGLContext } from "@next2d/webgl";
|
|
2
|
+
import type { DictionaryTagImpl, PlaceObjectImpl, DisplayObjectImpl, BoundsImpl, PreObjectImpl, PlayerHitObjectImpl } from "@next2d/interface";
|
|
3
|
+
import type { CanvasToWebGLContext } from "@next2d/webgl";
|
|
4
4
|
/**
|
|
5
5
|
* DisplayObjectContainer クラスは、表示リストで表示オブジェクトコンテナとして機能するすべてのオブジェクトの基本クラスです。
|
|
6
6
|
* このクラス自体は、画面上でのコンテンツの描画のための API を含みません。
|
package/dist/Graphics.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BitmapData } from "./BitmapData";
|
|
2
|
-
import { Matrix } from "@next2d/geom";
|
|
3
|
-
import { GraphicsParentImpl, CapsStyleImpl, JointStyleImpl, FilterArrayImpl, BlendModeImpl, BoundsImpl, PlayerHitObjectImpl, SpreadMethodImpl, GradientTypeImpl, InterpolationMethodImpl } from "@next2d/interface";
|
|
4
|
-
import { CanvasToWebGLContext } from "@next2d/webgl";
|
|
1
|
+
import type { BitmapData } from "./BitmapData";
|
|
2
|
+
import type { Matrix } from "@next2d/geom";
|
|
3
|
+
import type { GraphicsParentImpl, CapsStyleImpl, JointStyleImpl, FilterArrayImpl, BlendModeImpl, BoundsImpl, PlayerHitObjectImpl, SpreadMethodImpl, GradientTypeImpl, InterpolationMethodImpl } from "@next2d/interface";
|
|
4
|
+
import type { CanvasToWebGLContext } from "@next2d/webgl";
|
|
5
5
|
/**
|
|
6
6
|
* Graphics クラスには、ベクターシェイプの作成に使用できる一連のメソッドがあります。
|
|
7
7
|
* 描画をサポートする表示オブジェクトには、Sprite および Shape オブジェクトがあります。
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Matrix } from "@next2d/geom";
|
|
2
|
-
import { ColorStopImpl, GradientTypeImpl, SpreadMethodImpl, InterpolationMethodImpl } from "@next2d/interface";
|
|
2
|
+
import type { ColorStopImpl, GradientTypeImpl, SpreadMethodImpl, InterpolationMethodImpl } from "@next2d/interface";
|
|
3
3
|
/**
|
|
4
4
|
* グラデーション塗りを定義します。
|
|
5
5
|
* Defines a gradient fill.
|
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 { 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() メソッドを使用します。
|
package/dist/LoaderInfo.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventDispatcher } from "@next2d/events";
|
|
2
|
-
import { URLLoaderDataFormatImpl, ParentImpl, LoaderInfoDataImpl } from "@next2d/interface";
|
|
2
|
+
import type { URLLoaderDataFormatImpl, ParentImpl, LoaderInfoDataImpl } from "@next2d/interface";
|
|
3
3
|
/**
|
|
4
4
|
* LoaderInfo クラスは、読み込まれる JSON ファイルやイメージファイル(JPEG、GIF、PNG ファイルなど)に関する情報を提供します。
|
|
5
5
|
* LoaderInfo オブジェクトは、すべての表示オブジェクトで使用できます。
|
package/dist/MovieClip.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Sprite } from "./Sprite";
|
|
2
2
|
import { FrameLabel } from "./FrameLabel";
|
|
3
3
|
import { Sound } from "@next2d/media";
|
|
4
|
-
import { LoopConfigImpl, ParentImpl, MovieClipCharacterImpl, DictionaryTagImpl, Character } from "@next2d/interface";
|
|
4
|
+
import type { LoopConfigImpl, ParentImpl, MovieClipCharacterImpl, DictionaryTagImpl, Character } from "@next2d/interface";
|
|
5
5
|
/**
|
|
6
6
|
* MovieClip クラスは、Sprite、DisplayObjectContainer、InteractiveObject、DisplayObject
|
|
7
7
|
* および EventDispatcher クラスを継承します。
|
package/dist/Shape.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { LoaderInfo } from "./LoaderInfo";
|
|
2
1
|
import { DisplayObject } from "./DisplayObject";
|
|
3
2
|
import { Graphics } from "./Graphics";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
3
|
+
import type { LoaderInfo } from "./LoaderInfo";
|
|
4
|
+
import type { CanvasToWebGLContext } from "@next2d/webgl";
|
|
5
|
+
import type { BoundsImpl, ShapeCharacterImpl, ParentImpl, DictionaryTagImpl, PlayerHitObjectImpl, Character } from "@next2d/interface";
|
|
6
6
|
/**
|
|
7
7
|
* Shape クラスには、Graphics クラスからメソッドにアクセスできる graphics プロパティがあります。
|
|
8
8
|
*
|
package/dist/Sprite.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { DisplayObjectContainer } from "./DisplayObjectContainer";
|
|
2
2
|
import { Graphics } from "./Graphics";
|
|
3
3
|
import { SoundTransform } from "@next2d/media";
|
|
4
|
-
import { Rectangle, Point } from "@next2d/geom";
|
|
5
|
-
import { SpriteImpl, DropTargetImpl, DictionaryTagImpl, ParentImpl, MovieClipCharacterImpl } from "@next2d/interface";
|
|
4
|
+
import type { Rectangle, Point } from "@next2d/geom";
|
|
5
|
+
import type { SpriteImpl, DropTargetImpl, DictionaryTagImpl, ParentImpl, MovieClipCharacterImpl } from "@next2d/interface";
|
|
6
6
|
/**
|
|
7
7
|
* Sprite クラスは、表示リストの基本的要素です。
|
|
8
8
|
* グラフィックを表示でき、子を持つこともできる表示リストノードです。
|
package/dist/Stage.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DisplayObjectContainer } from "./DisplayObjectContainer";
|
|
2
|
-
import { Player } from "@next2d/core";
|
|
3
|
-
import { DisplayObjectImpl } from "@next2d/interface";
|
|
2
|
+
import type { Player } from "@next2d/core";
|
|
3
|
+
import type { DisplayObjectImpl } from "@next2d/interface";
|
|
4
4
|
/**
|
|
5
5
|
* Stage クラスはメイン描画領域を表します。
|
|
6
6
|
* The Stage class represents the main drawing area.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@next2d/display",
|
|
3
|
-
"version": "1.14.
|
|
3
|
+
"version": "1.14.23",
|
|
4
4
|
"description": "Next2D Display Packages",
|
|
5
5
|
"author": "Toshiyuki Ienaga<ienaga@tvon.jp> (https://github.com/ienaga/)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
"url": "git+https://github.com/Next2D/Player.git"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@next2d/interface": "1.14.
|
|
36
|
-
"@next2d/core": "1.14.
|
|
37
|
-
"@next2d/geom": "1.14.
|
|
38
|
-
"@next2d/util": "1.14.
|
|
39
|
-
"@next2d/share": "1.14.
|
|
40
|
-
"@next2d/webgl": "1.14.
|
|
41
|
-
"@next2d/media": "1.14.
|
|
42
|
-
"@next2d/net": "1.14.
|
|
43
|
-
"@next2d/events": "1.14.
|
|
35
|
+
"@next2d/interface": "1.14.23",
|
|
36
|
+
"@next2d/core": "1.14.23",
|
|
37
|
+
"@next2d/geom": "1.14.23",
|
|
38
|
+
"@next2d/util": "1.14.23",
|
|
39
|
+
"@next2d/share": "1.14.23",
|
|
40
|
+
"@next2d/webgl": "1.14.23",
|
|
41
|
+
"@next2d/media": "1.14.23",
|
|
42
|
+
"@next2d/net": "1.14.23",
|
|
43
|
+
"@next2d/events": "1.14.23"
|
|
44
44
|
}
|
|
45
45
|
}
|