@next2d/text 1.17.2 → 1.17.5

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.
@@ -258,7 +258,7 @@ export const parsePlainText = (text, text_format, options) => {
258
258
  }
259
259
  }
260
260
  for (let idx = 0; idx < lineText.length; ++idx) {
261
- if (options.wordWrap || options.multiline) {
261
+ if (idx === 0 || options.wordWrap || options.multiline) {
262
262
  _$createNewLine(textData, textFormat);
263
263
  }
264
264
  const texts = lineText[idx];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next2d/text",
3
- "version": "1.17.2",
3
+ "version": "1.17.5",
4
4
  "description": "Next2D Text Packages",
5
5
  "author": "Toshiyuki Ienaga<ienaga@tvon.jp> (https://github.com/ienaga/)",
6
6
  "license": "MIT",
@@ -32,6 +32,6 @@
32
32
  "url": "git+https://github.com/Next2D/Player.git"
33
33
  },
34
34
  "peerDependencies": {
35
- "@next2d/share": "1.17.2"
35
+ "@next2d/share": "1.17.5"
36
36
  }
37
37
  }