hoeditor-web 3.0.91 → 3.0.92
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.css +2 -13026
- package/lib/hoeditor.umd.js +35 -3
- package/lib/hoeditor.umd.min.js +2 -2
- package/package.json +1 -1
package/lib/hoeditor.umd.js
CHANGED
|
@@ -41072,6 +41072,8 @@ var DocController = /*#__PURE__*/function () {
|
|
|
41072
41072
|
}
|
|
41073
41073
|
}
|
|
41074
41074
|
return "";
|
|
41075
|
+
} else {
|
|
41076
|
+
return "";
|
|
41075
41077
|
}
|
|
41076
41078
|
}
|
|
41077
41079
|
}
|
|
@@ -65399,7 +65401,7 @@ var TableNode = /*#__PURE__*/function (_RectNode) {
|
|
|
65399
65401
|
/*
|
|
65400
65402
|
* @Author: your name
|
|
65401
65403
|
* @Date: 2020-11-03 15:17:54
|
|
65402
|
-
* @LastEditTime: 2023-07-
|
|
65404
|
+
* @LastEditTime: 2023-07-21 15:20:11
|
|
65403
65405
|
* @LastEditors: liyanan 2441631434@qq.com
|
|
65404
65406
|
* @Description: In User Settings Edit
|
|
65405
65407
|
* @FilePath: \hoeditor-web\src\editor\dom\treeNode\TextInputFieldNode.ts
|
|
@@ -67182,6 +67184,12 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67182
67184
|
customProperty: this.customProperty,
|
|
67183
67185
|
alignWithBlocked: this.alignWithBlocked,
|
|
67184
67186
|
readType: this.readType,
|
|
67187
|
+
insCheckSyncUpdateList: this.insCheckSyncUpdateList,
|
|
67188
|
+
hideDuringPrint: this.hideDuringPrint,
|
|
67189
|
+
notReplaceElement: this.notReplaceElement,
|
|
67190
|
+
valueArea: this.valueArea,
|
|
67191
|
+
includesKeyword: this.includesKeyword,
|
|
67192
|
+
isElementLink: this.isElementLink,
|
|
67185
67193
|
childNodes: childNodes
|
|
67186
67194
|
};
|
|
67187
67195
|
}
|
|
@@ -67237,7 +67245,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67237
67245
|
if (this.alignWithBlocked && this.StartMarkNode && this.StartMarkNode.drawNodes.length > 0) {
|
|
67238
67246
|
var dNode = this.StartMarkNode.drawNodes[0];
|
|
67239
67247
|
var dline = hoEditorFactory.drawTree.getDrawLineByDNode(dNode);
|
|
67240
|
-
var x = this.StartMarkNode.drawNodes[0].x + hoEditorFactory.docTree.combineParagraph.leftMarginPixes;
|
|
67248
|
+
var x = this.StartMarkNode.drawNodes[0].x + hoEditorFactory.docTree.combineParagraph.leftMarginPixes + 1;
|
|
67241
67249
|
var width = dline.dWidth - x;
|
|
67242
67250
|
return [x, width, true];
|
|
67243
67251
|
}
|
|
@@ -239152,7 +239160,7 @@ var ParagraphNode = __webpack_require__(67945);
|
|
|
239152
239160
|
// EXTERNAL MODULE: ./src/editor/dom/treeNode/MarkNode.ts
|
|
239153
239161
|
var MarkNode = __webpack_require__(57727);
|
|
239154
239162
|
;// CONCATENATED MODULE: ./src/components/version.ts
|
|
239155
|
-
/* harmony default export */ var version = ('3.0.
|
|
239163
|
+
/* harmony default export */ var version = ('3.0.92');
|
|
239156
239164
|
// EXTERNAL MODULE: ./src/components/controls/poperTipText/PoperTipText.vue + 5 modules
|
|
239157
239165
|
var PoperTipText = __webpack_require__(36081);
|
|
239158
239166
|
;// CONCATENATED MODULE: ./src/components/controls/poperTipText/index.ts
|
|
@@ -248943,6 +248951,12 @@ var VueController = /*#__PURE__*/function () {
|
|
|
248943
248951
|
var hoEditorFactory = HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID);
|
|
248944
248952
|
return hoEditorFactory.gernerateCode.generateID(str);
|
|
248945
248953
|
}
|
|
248954
|
+
}, {
|
|
248955
|
+
key: "pagePaintStatus",
|
|
248956
|
+
value: function pagePaintStatus() {
|
|
248957
|
+
var hoEditorFactory = HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID);
|
|
248958
|
+
return hoEditorFactory.drawTree.paintStatus;
|
|
248959
|
+
}
|
|
248946
248960
|
/**
|
|
248947
248961
|
* 打印
|
|
248948
248962
|
*/
|
|
@@ -254190,6 +254204,24 @@ var VueController = /*#__PURE__*/function () {
|
|
|
254190
254204
|
}
|
|
254191
254205
|
}
|
|
254192
254206
|
}
|
|
254207
|
+
//获取带有关联关系的单复选
|
|
254208
|
+
}, {
|
|
254209
|
+
key: "getBoxsWithAssociate",
|
|
254210
|
+
value: function getBoxsWithAssociate(isIdlist) {
|
|
254211
|
+
var boxs = [];
|
|
254212
|
+
var idList = [];
|
|
254213
|
+
var hoEditorFactory = HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID);
|
|
254214
|
+
hoEditorFactory.docTree.radioAndCheckBoxsMap.forEach(function (value) {
|
|
254215
|
+
if (value.associatedElement) {
|
|
254216
|
+
boxs.push(value);
|
|
254217
|
+
idList.push(value.associatedElement);
|
|
254218
|
+
}
|
|
254219
|
+
});
|
|
254220
|
+
if (isIdlist) {
|
|
254221
|
+
return idList;
|
|
254222
|
+
}
|
|
254223
|
+
return boxs;
|
|
254224
|
+
}
|
|
254193
254225
|
}]);
|
|
254194
254226
|
return VueController;
|
|
254195
254227
|
}();
|