hoeditor-web 3.1.233 → 3.1.234
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/lib/hoeditor.umd.js +3 -3
- package/lib/hoeditor.umd.min.js +1 -1
- package/package.json +1 -1
package/lib/hoeditor.umd.js
CHANGED
|
@@ -108291,7 +108291,7 @@ const textParams = {
|
|
|
108291
108291
|
/***/ (function(__unused_webpack_module, __webpack_exports__) {
|
|
108292
108292
|
|
|
108293
108293
|
"use strict";
|
|
108294
|
-
/* harmony default export */ __webpack_exports__.A = ('3.1.
|
|
108294
|
+
/* harmony default export */ __webpack_exports__.A = ('3.1.234');
|
|
108295
108295
|
|
|
108296
108296
|
/***/ }),
|
|
108297
108297
|
|
|
@@ -140288,9 +140288,9 @@ class DrawLine extends DrawContainer/* DrawContainer */.g {
|
|
|
140288
140288
|
//处理段落的缩进2024-02-19
|
|
140289
140289
|
const leftWidthInfos = this.paragraphNode.getParagraphLeftWidth();
|
|
140290
140290
|
const ileft = leftWidthInfos[0];
|
|
140291
|
-
|
|
140291
|
+
const maxLeft = Math.max(ileft, this.dLeft);
|
|
140292
140292
|
if (leftWidthInfos[2]) {
|
|
140293
|
-
this.x = this.paragraphNode.combineParagraph.leftMarginPixes +
|
|
140293
|
+
this.x = this.paragraphNode.combineParagraph.leftMarginPixes + maxLeft;
|
|
140294
140294
|
} else {
|
|
140295
140295
|
this.x = this.paragraphNode.combineParagraph.leftMarginPixes + this.dLeft;
|
|
140296
140296
|
}
|