@next2d/display 3.0.0 → 3.0.2

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/README.md +2 -18
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -38,8 +38,6 @@ src/
38
38
  ├── MovieClip.ts # Timeline-based animation object / タイムラインベースのアニメーションオブジェクト
39
39
  ├── Shape.ts # Lightweight graphics display object / 軽量なグラフィックス表示オブジェクト
40
40
  ├── Stage.ts # Root display object / ルート表示オブジェクト
41
- ├── TextField.ts # Text display and input / テキスト表示と入力
42
- ├── Video.ts # Video display object / ビデオ表示オブジェクト
43
41
 
44
42
  ├── Graphics.ts # Vector drawing API / ベクター描画 API
45
43
  ├── Graphics/ # Graphics implementation details / Graphics 実装の詳細
@@ -116,8 +114,6 @@ classDiagram
116
114
  DisplayObjectContainer <|-- Stage
117
115
  Sprite <|-- MovieClip
118
116
  DisplayObject <|-- Shape
119
- DisplayObject <|-- TextField
120
- DisplayObject <|-- Video
121
117
 
122
118
  class EventDispatcher {
123
119
  +addEventListener()
@@ -201,18 +197,6 @@ classDiagram
201
197
  +frameRate: number
202
198
  +color: number
203
199
  }
204
-
205
- class TextField {
206
- +text: string
207
- +htmlText: string
208
- +textColor: number
209
- +autoSize: string
210
- }
211
-
212
- class Video {
213
- +videoWidth: number
214
- +videoHeight: number
215
- }
216
200
  ```
217
201
 
218
202
  ## Graphics API / Graphics API
@@ -378,8 +362,8 @@ This architecture ensures:
378
362
  - `@next2d/events` - Event system / イベントシステム
379
363
  - `@next2d/geom` - Geometric primitives / 幾何プリミティブ
380
364
  - `@next2d/filters` - Display filters / 表示フィルター
381
- - `@next2d/text` - Text rendering / テキストレンダリング
382
- - `@next2d/media` - Media playback / メディア再生
365
+ - `@next2d/text` - Text rendering (includes TextField) / テキストレンダリング(TextFieldを含む)
366
+ - `@next2d/media` - Media playback (includes Video) / メディア再生(Videoを含む)
383
367
  - `@next2d/net` - Network communication / ネットワーク通信
384
368
  - `@next2d/ui` - User interface components / ユーザーインターフェースコンポーネント
385
369
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next2d/display",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "description": "Next2D Display Package",
5
5
  "author": "Toshiyuki Ienaga<ienaga@next2d.app> (https://github.com/ienaga/)",
6
6
  "license": "MIT",
@@ -24,13 +24,13 @@
24
24
  "url": "git+https://github.com/Next2D/Player.git"
25
25
  },
26
26
  "dependencies": {
27
- "@next2d/ui": "3.0.0",
28
- "@next2d/text": "3.0.0",
29
- "@next2d/geom": "3.0.0",
30
- "@next2d/media": "3.0.0",
31
- "@next2d/net": "3.0.0",
32
- "@next2d/events": "3.0.0",
33
- "@next2d/filters": "3.0.0",
34
- "@next2d/render-queue": "3.0.0"
27
+ "@next2d/ui": "3.0.2",
28
+ "@next2d/text": "3.0.2",
29
+ "@next2d/geom": "3.0.2",
30
+ "@next2d/media": "3.0.2",
31
+ "@next2d/net": "3.0.2",
32
+ "@next2d/events": "3.0.2",
33
+ "@next2d/filters": "3.0.2",
34
+ "@next2d/render-queue": "3.0.2"
35
35
  }
36
36
  }