hoeditor-web 3.1.148 → 3.1.149
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 +2 -2
- package/package.json +1 -1
package/lib/hoeditor.umd.js
CHANGED
|
@@ -81729,10 +81729,10 @@ var DrawText = /*#__PURE__*/function (_createjs$Text) {
|
|
|
81729
81729
|
// \u2003 html实体全角空格( )转换为两个普通空格
|
|
81730
81730
|
// \u2002 html实体半角空格( )转换为普通空格
|
|
81731
81731
|
// \u00A0 html 不间断空格( )转换为普通空格
|
|
81732
|
+
// \x01 未知来源分隔符 影响保存病历和加载病历需要去掉
|
|
81732
81733
|
// const str = this.text.replace(/\ /g, ' ').replace(/\ /g, ' ').replace(/\u00A0/g, ' ');
|
|
81733
81734
|
// if(this.text.includes('\u00A0')) {console.log(this.text, '------')}
|
|
81734
|
-
var str = this.text.replace(/\u2003/g, ' ').replace(/\u2002/g, ' ');
|
|
81735
|
-
// if(this.text.includes('\u00A0')) {console.log(this.text, '++++++')}
|
|
81735
|
+
var str = this.text.replace(/\u2003/g, ' ').replace(/\u2002/g, ' ').replace(/\x01/g, '');
|
|
81736
81736
|
var left = 0;
|
|
81737
81737
|
var docWidth = 0;
|
|
81738
81738
|
this._firstCharWidth = this.getCharWidth(ctx, str[0]);
|
|
@@ -210650,7 +210650,7 @@ var TextNode = __webpack_require__(27198);
|
|
|
210650
210650
|
// EXTERNAL MODULE: ./src/editor/dom/treeNode/ParagraphNode.ts
|
|
210651
210651
|
var ParagraphNode = __webpack_require__(67945);
|
|
210652
210652
|
;// CONCATENATED MODULE: ./src/components/version.ts
|
|
210653
|
-
/* harmony default export */ var version = ('3.1.
|
|
210653
|
+
/* harmony default export */ var version = ('3.1.149');
|
|
210654
210654
|
// EXTERNAL MODULE: ./src/components/controls/poperTipText/PoperTipText.vue + 5 modules
|
|
210655
210655
|
var PoperTipText = __webpack_require__(84531);
|
|
210656
210656
|
;// CONCATENATED MODULE: ./src/components/controls/poperTipText/index.ts
|