hoeditor-web 3.1.90 → 3.1.91
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 +28 -7
- package/lib/hoeditor.umd.min.js +1 -1
- package/package.json +1 -1
package/lib/hoeditor.umd.js
CHANGED
|
@@ -207322,7 +207322,7 @@ var TextNode = __webpack_require__(27198);
|
|
|
207322
207322
|
// EXTERNAL MODULE: ./src/editor/dom/treeNode/ParagraphNode.ts
|
|
207323
207323
|
var ParagraphNode = __webpack_require__(67945);
|
|
207324
207324
|
;// CONCATENATED MODULE: ./src/components/version.ts
|
|
207325
|
-
/* harmony default export */ var version = ('3.1.
|
|
207325
|
+
/* harmony default export */ var version = ('3.1.91');
|
|
207326
207326
|
// EXTERNAL MODULE: ./src/components/controls/poperTipText/PoperTipText.vue + 5 modules
|
|
207327
207327
|
var PoperTipText = __webpack_require__(50987);
|
|
207328
207328
|
;// CONCATENATED MODULE: ./src/components/controls/poperTipText/index.ts
|
|
@@ -222010,21 +222010,42 @@ var VueController = /*#__PURE__*/function () {
|
|
|
222010
222010
|
previousText: '',
|
|
222011
222011
|
dataId: _node9.dataId,
|
|
222012
222012
|
name: _node9.name,
|
|
222013
|
-
node: _node9
|
|
222013
|
+
node: _node9,
|
|
222014
|
+
attribute: _node9.attribute,
|
|
222015
|
+
connectMode: _node9.connectMode
|
|
222014
222016
|
};
|
|
222015
222017
|
sign.previousText = _this9.getPreviousText(_node9);
|
|
222016
222018
|
if (_node9.imgSrc || _node9.fingerPrintSrc) {
|
|
222017
222019
|
sign.signed = true;
|
|
222018
222020
|
}
|
|
222019
|
-
|
|
222021
|
+
var reset = false;
|
|
222022
|
+
if (_node9.attribute == 1) {
|
|
222020
222023
|
if (arr.length > 0) {
|
|
222021
222024
|
signList.push(arr);
|
|
222022
|
-
count++;
|
|
222023
222025
|
}
|
|
222024
222026
|
arr = [];
|
|
222025
|
-
|
|
222027
|
+
signList.push([sign]);
|
|
222026
222028
|
} else {
|
|
222027
|
-
|
|
222029
|
+
if (sign.number == 0 || sign.number == 1) {
|
|
222030
|
+
if (sign.connectMode == '换行') {
|
|
222031
|
+
if (arr.length) {
|
|
222032
|
+
signList.push(arr);
|
|
222033
|
+
}
|
|
222034
|
+
arr = [];
|
|
222035
|
+
arr.push(sign);
|
|
222036
|
+
} else {
|
|
222037
|
+
arr.push(sign);
|
|
222038
|
+
signList.push(arr);
|
|
222039
|
+
arr = [];
|
|
222040
|
+
}
|
|
222041
|
+
} else {
|
|
222042
|
+
if (arr.length && arr[arr.length - 1].connectMode == '换行' && sign.connectMode != '换行') {
|
|
222043
|
+
signList.push(arr);
|
|
222044
|
+
arr = [];
|
|
222045
|
+
}
|
|
222046
|
+
reset = false;
|
|
222047
|
+
arr.push(sign);
|
|
222048
|
+
}
|
|
222028
222049
|
}
|
|
222029
222050
|
}
|
|
222030
222051
|
if (_node9 instanceof BaseCombineNode/* BaseCombineNode */.V) {
|
|
@@ -222035,7 +222056,7 @@ var VueController = /*#__PURE__*/function () {
|
|
|
222035
222056
|
};
|
|
222036
222057
|
var mainNodes = hoEditorFactory.docTree.mainNodes;
|
|
222037
222058
|
getAllNodes(mainNodes);
|
|
222038
|
-
signList.push(arr);
|
|
222059
|
+
if (arr.length) signList.push(arr);
|
|
222039
222060
|
if (nodeDataId) {
|
|
222040
222061
|
var signCount = 0;
|
|
222041
222062
|
var isSigned = false;
|