hoeditor-web 3.1.198 → 3.1.200

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.
@@ -222784,7 +222784,7 @@ var entry_lib_TextNode = __webpack_require__(32083);
222784
222784
  // EXTERNAL MODULE: ./src/editor/dom/treeNode/ParagraphNode.ts
222785
222785
  var entry_lib_ParagraphNode = __webpack_require__(40504);
222786
222786
  ;// ./src/components/version.ts
222787
- /* harmony default export */ var entry_lib_version = ('3.1.199');
222787
+ /* harmony default export */ var entry_lib_version = ('3.1.200');
222788
222788
  // EXTERNAL MODULE: ./src/components/controls/poperTipText/PoperTipText.vue + 5 modules
222789
222789
  var entry_lib_PoperTipText = __webpack_require__(89316);
222790
222790
  ;// ./src/components/controls/poperTipText/index.ts
@@ -227581,7 +227581,8 @@ class entry_lib_StructureConvert {
227581
227581
  if (node.nodeType == "ntField") {
227582
227582
  // 文本域
227583
227583
  const childNode = node.childNodes.node;
227584
- if (childNode[1] && childNode[1].nodeType == "ntParagraph" && childNode[1].printAsSinglePage == "true") {
227584
+ const index = childNode.findIndex(item => item.nodeType == "ntTable");
227585
+ if (childNode[1] && childNode[1].nodeType == "ntParagraph" && index > 0) {
227585
227586
  arr = childNode.slice(1, childNode.length - 1);
227586
227587
  let empty = {
227587
227588
  "nodeType": "ntMark",