hoeditor-web 3.1.38 → 3.1.39
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 +17886 -1
- package/lib/hoeditor.umd.js +19 -1
- package/lib/hoeditor.umd.min.js +2 -2
- package/package.json +1 -1
package/lib/hoeditor.umd.js
CHANGED
|
@@ -55780,6 +55780,8 @@ var ImageNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
55780
55780
|
_this = _super.call(this, hoEditorFactoryID, rootNodes, pNode, nodeType);
|
|
55781
55781
|
(0,defineProperty/* default */.Z)((0,assertThisInitialized/* default */.Z)(_this), "_id", void 0);
|
|
55782
55782
|
//编号ID
|
|
55783
|
+
(0,defineProperty/* default */.Z)((0,assertThisInitialized/* default */.Z)(_this), "_dataId", void 0);
|
|
55784
|
+
// dataId
|
|
55783
55785
|
(0,defineProperty/* default */.Z)((0,assertThisInitialized/* default */.Z)(_this), "_width", void 0);
|
|
55784
55786
|
//节点宽
|
|
55785
55787
|
(0,defineProperty/* default */.Z)((0,assertThisInitialized/* default */.Z)(_this), "_height", void 0);
|
|
@@ -55802,6 +55804,7 @@ var ImageNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
55802
55804
|
//是否是回填的
|
|
55803
55805
|
(0,defineProperty/* default */.Z)((0,assertThisInitialized/* default */.Z)(_this), "_innerIdentifier", void 0);
|
|
55804
55806
|
_this._id = id;
|
|
55807
|
+
_this._dataId = id;
|
|
55805
55808
|
_this._width = width;
|
|
55806
55809
|
_this._height = height;
|
|
55807
55810
|
_this._imageDataBase64String = imageDataBase64String;
|
|
@@ -55826,6 +55829,11 @@ var ImageNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
55826
55829
|
get: function get() {
|
|
55827
55830
|
return this._id;
|
|
55828
55831
|
}
|
|
55832
|
+
}, {
|
|
55833
|
+
key: "dataId",
|
|
55834
|
+
get: function get() {
|
|
55835
|
+
return this._dataId;
|
|
55836
|
+
}
|
|
55829
55837
|
}, {
|
|
55830
55838
|
key: "width",
|
|
55831
55839
|
get: function get() {
|
|
@@ -56008,6 +56016,7 @@ var ImageNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
56008
56016
|
nodeType: BaseNode/* NodeType */.Jq[this.nodeType],
|
|
56009
56017
|
imageType: "Image",
|
|
56010
56018
|
id: this.id,
|
|
56019
|
+
dataId: this.dataId,
|
|
56011
56020
|
width: width,
|
|
56012
56021
|
height: height,
|
|
56013
56022
|
//scaleX: scaleX,
|
|
@@ -59678,6 +59687,8 @@ var QrcodeNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
59678
59687
|
_this = _super.call(this, hoEditorFactoryID, rootNodes, pNode, nodeType);
|
|
59679
59688
|
(0,defineProperty/* default */.Z)((0,assertThisInitialized/* default */.Z)(_this), "_id", void 0);
|
|
59680
59689
|
//编号
|
|
59690
|
+
(0,defineProperty/* default */.Z)((0,assertThisInitialized/* default */.Z)(_this), "_dataId", void 0);
|
|
59691
|
+
// dataId
|
|
59681
59692
|
(0,defineProperty/* default */.Z)((0,assertThisInitialized/* default */.Z)(_this), "_name", void 0);
|
|
59682
59693
|
//名称
|
|
59683
59694
|
(0,defineProperty/* default */.Z)((0,assertThisInitialized/* default */.Z)(_this), "_innerIdentifier", void 0);
|
|
@@ -59695,6 +59706,7 @@ var QrcodeNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
59695
59706
|
(0,defineProperty/* default */.Z)((0,assertThisInitialized/* default */.Z)(_this), "_imageDataBase64String", "");
|
|
59696
59707
|
(0,defineProperty/* default */.Z)((0,assertThisInitialized/* default */.Z)(_this), "_isFillBack", false);
|
|
59697
59708
|
_this._id = id;
|
|
59709
|
+
_this._dataId = id;
|
|
59698
59710
|
_this._textContent = textContent;
|
|
59699
59711
|
_this._type = type;
|
|
59700
59712
|
_this._correctLevel = correctLevel;
|
|
@@ -59716,6 +59728,11 @@ var QrcodeNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
59716
59728
|
get: function get() {
|
|
59717
59729
|
return this._id;
|
|
59718
59730
|
}
|
|
59731
|
+
}, {
|
|
59732
|
+
key: "dataId",
|
|
59733
|
+
get: function get() {
|
|
59734
|
+
return this._dataId;
|
|
59735
|
+
}
|
|
59719
59736
|
}, {
|
|
59720
59737
|
key: "textContent",
|
|
59721
59738
|
get: function get() {
|
|
@@ -59872,6 +59889,7 @@ var QrcodeNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
59872
59889
|
nodeType: BaseNode/* NodeType */.Jq[this.nodeType],
|
|
59873
59890
|
imageType: "Qrcode",
|
|
59874
59891
|
id: this.id,
|
|
59892
|
+
dataId: this.dataId,
|
|
59875
59893
|
//name: this.name,
|
|
59876
59894
|
innerIdentifier: this.innerIdentifier,
|
|
59877
59895
|
textContent: isClearValue && this.isFillBack ? "" : this.textContent,
|
|
@@ -218594,7 +218612,7 @@ var TextNode = __webpack_require__(27198);
|
|
|
218594
218612
|
// EXTERNAL MODULE: ./src/editor/dom/treeNode/ParagraphNode.ts
|
|
218595
218613
|
var ParagraphNode = __webpack_require__(67945);
|
|
218596
218614
|
;// CONCATENATED MODULE: ./src/components/version.ts
|
|
218597
|
-
/* harmony default export */ var version = ('3.1.
|
|
218615
|
+
/* harmony default export */ var version = ('3.1.39');
|
|
218598
218616
|
// EXTERNAL MODULE: ./src/components/controls/poperTipText/PoperTipText.vue + 5 modules
|
|
218599
218617
|
var PoperTipText = __webpack_require__(50987);
|
|
218600
218618
|
;// CONCATENATED MODULE: ./src/components/controls/poperTipText/index.ts
|