hoeditor-web 3.0.83 → 3.0.85
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 +1 -1
- package/lib/hoeditor.umd.js +381 -363
- package/lib/hoeditor.umd.min.js +3 -3
- package/package.json +1 -1
package/lib/hoeditor.umd.js
CHANGED
|
@@ -3625,7 +3625,7 @@ var component = (0,componentNormalizer/* default */.Z)(
|
|
|
3625
3625
|
|
|
3626
3626
|
/***/ }),
|
|
3627
3627
|
|
|
3628
|
-
/***/
|
|
3628
|
+
/***/ 75336:
|
|
3629
3629
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3630
3630
|
|
|
3631
3631
|
"use strict";
|
|
@@ -3637,7 +3637,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
3637
3637
|
"default": function() { return /* binding */ BarCodes; }
|
|
3638
3638
|
});
|
|
3639
3639
|
|
|
3640
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/barCode/BarCodes.vue?vue&type=template&id=
|
|
3640
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/barCode/BarCodes.vue?vue&type=template&id=59549e42&
|
|
3641
3641
|
var render = function render() {
|
|
3642
3642
|
var _vm = this,
|
|
3643
3643
|
_c = _vm._self._c;
|
|
@@ -3667,6 +3667,26 @@ var render = function render() {
|
|
|
3667
3667
|
staticClass: "control-item"
|
|
3668
3668
|
}, [_c('span', {
|
|
3669
3669
|
staticClass: "label"
|
|
3670
|
+
}, [_vm._v("标识符")]), _c('a-input', {
|
|
3671
|
+
attrs: {
|
|
3672
|
+
"placeholder": "条形码内容不能为空",
|
|
3673
|
+
"max-length": 20,
|
|
3674
|
+
"show-word-limit": ""
|
|
3675
|
+
},
|
|
3676
|
+
on: {
|
|
3677
|
+
"input": _vm.codeChange
|
|
3678
|
+
},
|
|
3679
|
+
model: {
|
|
3680
|
+
value: _vm.innerIdentifier,
|
|
3681
|
+
callback: function callback($$v) {
|
|
3682
|
+
_vm.innerIdentifier = $$v;
|
|
3683
|
+
},
|
|
3684
|
+
expression: "innerIdentifier"
|
|
3685
|
+
}
|
|
3686
|
+
})], 1), _c('li', {
|
|
3687
|
+
staticClass: "control-item"
|
|
3688
|
+
}, [_c('span', {
|
|
3689
|
+
staticClass: "label"
|
|
3670
3690
|
}, [_vm._v("条形码内容")]), _c('a-input', {
|
|
3671
3691
|
attrs: {
|
|
3672
3692
|
"placeholder": "条形码内容不能为空",
|
|
@@ -3740,6 +3760,8 @@ var render = function render() {
|
|
|
3740
3760
|
};
|
|
3741
3761
|
var staticRenderFns = [];
|
|
3742
3762
|
|
|
3763
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.function.name.js
|
|
3764
|
+
var es_function_name = __webpack_require__(68309);
|
|
3743
3765
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.exec.js
|
|
3744
3766
|
var es_regexp_exec = __webpack_require__(74916);
|
|
3745
3767
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.test.js
|
|
@@ -3757,6 +3779,7 @@ var HOEditorFactorys = __webpack_require__(74089);
|
|
|
3757
3779
|
|
|
3758
3780
|
|
|
3759
3781
|
|
|
3782
|
+
|
|
3760
3783
|
/* harmony default export */ var BarCodesvue_type_script_lang_js_ = ({
|
|
3761
3784
|
name: 'Barcode',
|
|
3762
3785
|
props: {
|
|
@@ -3774,6 +3797,7 @@ var HOEditorFactorys = __webpack_require__(74089);
|
|
|
3774
3797
|
return {
|
|
3775
3798
|
id: '',
|
|
3776
3799
|
textContent: '',
|
|
3800
|
+
innerIdentifier: '',
|
|
3777
3801
|
barCodeStyle: 'CODE39',
|
|
3778
3802
|
textAlign: 'center',
|
|
3779
3803
|
isDisplayText: false,
|
|
@@ -3781,7 +3805,8 @@ var HOEditorFactorys = __webpack_require__(74089);
|
|
|
3781
3805
|
textField: '',
|
|
3782
3806
|
textEslint: /^[a-zA-Z0-9_]+$/,
|
|
3783
3807
|
animationClassNames: 'control-modal-contents barcode-modal animation-in',
|
|
3784
|
-
barcode: null
|
|
3808
|
+
barcode: null,
|
|
3809
|
+
name: ''
|
|
3785
3810
|
// dataSource: null
|
|
3786
3811
|
};
|
|
3787
3812
|
},
|
|
@@ -3790,7 +3815,9 @@ var HOEditorFactorys = __webpack_require__(74089);
|
|
|
3790
3815
|
if (this.controlStatus === 'update') {
|
|
3791
3816
|
var updateNode = this.getBarCodeNode();
|
|
3792
3817
|
this.id = updateNode.id;
|
|
3818
|
+
this.name = updateNode.name;
|
|
3793
3819
|
this.textContent = updateNode.textContent;
|
|
3820
|
+
this.innerIdentifier = updateNode.innerIdentifier;
|
|
3794
3821
|
this.isDisplayText = updateNode.isDisplayText;
|
|
3795
3822
|
this.$nextTick(function () {
|
|
3796
3823
|
return _this.codeChange();
|
|
@@ -3844,9 +3871,9 @@ var HOEditorFactorys = __webpack_require__(74089);
|
|
|
3844
3871
|
// this.dataSource = this.hoEditorProvider.getDataSource();
|
|
3845
3872
|
|
|
3846
3873
|
if (this.controlStatus === 'add') {
|
|
3847
|
-
vueController.insertBarcode(this.controlStatus, this.id, this.textContent, this.isDisplayText, this.barcode.src, width, height,
|
|
3874
|
+
vueController.insertBarcode(this.controlStatus, this.id, this.textContent, this.isDisplayText, this.barcode.src, width, height, '', this.innerIdentifier);
|
|
3848
3875
|
} else if (this.controlStatus === 'update') {
|
|
3849
|
-
vueController.updateBarcode(this.id, this.textContent, this.isDisplayText, this.barcode.src, width, height,
|
|
3876
|
+
vueController.updateBarcode(this.id, this.textContent, this.isDisplayText, this.barcode.src, width, height, this.name, this.innerIdentifier);
|
|
3850
3877
|
}
|
|
3851
3878
|
this.handleClose();
|
|
3852
3879
|
},
|
|
@@ -3861,10 +3888,10 @@ var HOEditorFactorys = __webpack_require__(74089);
|
|
|
3861
3888
|
});
|
|
3862
3889
|
;// CONCATENATED MODULE: ./src/components/controls/barCode/BarCodes.vue?vue&type=script&lang=js&
|
|
3863
3890
|
/* harmony default export */ var barCode_BarCodesvue_type_script_lang_js_ = (BarCodesvue_type_script_lang_js_);
|
|
3864
|
-
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/barCode/BarCodes.vue?vue&type=style&index=0&id=
|
|
3891
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/barCode/BarCodes.vue?vue&type=style&index=0&id=59549e42&prod&lang=scss&
|
|
3865
3892
|
// extracted by mini-css-extract-plugin
|
|
3866
3893
|
|
|
3867
|
-
;// CONCATENATED MODULE: ./src/components/controls/barCode/BarCodes.vue?vue&type=style&index=0&id=
|
|
3894
|
+
;// CONCATENATED MODULE: ./src/components/controls/barCode/BarCodes.vue?vue&type=style&index=0&id=59549e42&prod&lang=scss&
|
|
3868
3895
|
|
|
3869
3896
|
// EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
|
3870
3897
|
var componentNormalizer = __webpack_require__(70713);
|
|
@@ -5148,7 +5175,7 @@ var component = (0,componentNormalizer/* default */.Z)(
|
|
|
5148
5175
|
|
|
5149
5176
|
/***/ }),
|
|
5150
5177
|
|
|
5151
|
-
/***/
|
|
5178
|
+
/***/ 49145:
|
|
5152
5179
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
5153
5180
|
|
|
5154
5181
|
"use strict";
|
|
@@ -5170,7 +5197,7 @@ var es_string_includes = __webpack_require__(32023);
|
|
|
5170
5197
|
var es_regexp_exec = __webpack_require__(74916);
|
|
5171
5198
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.replace.js
|
|
5172
5199
|
var es_string_replace = __webpack_require__(15306);
|
|
5173
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/dateDialog/DateDialog.vue?vue&type=template&id=
|
|
5200
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/dateDialog/DateDialog.vue?vue&type=template&id=0a9d2557&
|
|
5174
5201
|
|
|
5175
5202
|
|
|
5176
5203
|
|
|
@@ -5439,7 +5466,7 @@ var render = function render() {
|
|
|
5439
5466
|
};
|
|
5440
5467
|
var staticRenderFns = [];
|
|
5441
5468
|
|
|
5442
|
-
;// CONCATENATED MODULE: ./src/components/controls/dateDialog/DateDialog.vue?vue&type=template&id=
|
|
5469
|
+
;// CONCATENATED MODULE: ./src/components/controls/dateDialog/DateDialog.vue?vue&type=template&id=0a9d2557&
|
|
5443
5470
|
|
|
5444
5471
|
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js
|
|
5445
5472
|
var objectSpread2 = __webpack_require__(63442);
|
|
@@ -5641,10 +5668,10 @@ var zh_cn = __webpack_require__(83839);
|
|
|
5641
5668
|
});
|
|
5642
5669
|
;// CONCATENATED MODULE: ./src/components/controls/dateDialog/DateDialog.vue?vue&type=script&lang=js&
|
|
5643
5670
|
/* harmony default export */ var dateDialog_DateDialogvue_type_script_lang_js_ = (DateDialogvue_type_script_lang_js_);
|
|
5644
|
-
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/dateDialog/DateDialog.vue?vue&type=style&index=0&id=
|
|
5671
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/dateDialog/DateDialog.vue?vue&type=style&index=0&id=0a9d2557&prod&lang=scss&
|
|
5645
5672
|
// extracted by mini-css-extract-plugin
|
|
5646
5673
|
|
|
5647
|
-
;// CONCATENATED MODULE: ./src/components/controls/dateDialog/DateDialog.vue?vue&type=style&index=0&id=
|
|
5674
|
+
;// CONCATENATED MODULE: ./src/components/controls/dateDialog/DateDialog.vue?vue&type=style&index=0&id=0a9d2557&prod&lang=scss&
|
|
5648
5675
|
|
|
5649
5676
|
// EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
|
5650
5677
|
var componentNormalizer = __webpack_require__(70713);
|
|
@@ -8304,7 +8331,7 @@ var component = (0,componentNormalizer/* default */.Z)(
|
|
|
8304
8331
|
|
|
8305
8332
|
/***/ }),
|
|
8306
8333
|
|
|
8307
|
-
/***/
|
|
8334
|
+
/***/ 50921:
|
|
8308
8335
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8309
8336
|
|
|
8310
8337
|
"use strict";
|
|
@@ -8320,7 +8347,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
8320
8347
|
var es_array_includes = __webpack_require__(26699);
|
|
8321
8348
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.includes.js
|
|
8322
8349
|
var es_string_includes = __webpack_require__(32023);
|
|
8323
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/listsource/ListSource.vue?vue&type=template&id=
|
|
8350
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/listsource/ListSource.vue?vue&type=template&id=0d496382&scoped=true&
|
|
8324
8351
|
|
|
8325
8352
|
|
|
8326
8353
|
var render = function render() {
|
|
@@ -8353,27 +8380,6 @@ var render = function render() {
|
|
|
8353
8380
|
}, [_c('ul', {
|
|
8354
8381
|
staticClass: "control-list"
|
|
8355
8382
|
}, [_c('li', {
|
|
8356
|
-
staticClass: "control-item",
|
|
8357
|
-
staticStyle: {
|
|
8358
|
-
"width": "100%"
|
|
8359
|
-
}
|
|
8360
|
-
}, [_c('span', {
|
|
8361
|
-
staticClass: "label",
|
|
8362
|
-
staticStyle: {
|
|
8363
|
-
"width": "42px"
|
|
8364
|
-
}
|
|
8365
|
-
}, [_vm._v("来源")]), _c('a-input', {
|
|
8366
|
-
attrs: {
|
|
8367
|
-
"placeholder": "来源"
|
|
8368
|
-
},
|
|
8369
|
-
model: {
|
|
8370
|
-
value: _vm.source,
|
|
8371
|
-
callback: function callback($$v) {
|
|
8372
|
-
_vm.source = $$v;
|
|
8373
|
-
},
|
|
8374
|
-
expression: "source"
|
|
8375
|
-
}
|
|
8376
|
-
})], 1), _c('li', {
|
|
8377
8383
|
staticClass: "control-item"
|
|
8378
8384
|
}, [_c('span', {
|
|
8379
8385
|
staticClass: "label",
|
|
@@ -8582,7 +8588,7 @@ var render = function render() {
|
|
|
8582
8588
|
};
|
|
8583
8589
|
var staticRenderFns = [];
|
|
8584
8590
|
|
|
8585
|
-
;// CONCATENATED MODULE: ./src/components/controls/listsource/ListSource.vue?vue&type=template&id=
|
|
8591
|
+
;// CONCATENATED MODULE: ./src/components/controls/listsource/ListSource.vue?vue&type=template&id=0d496382&scoped=true&
|
|
8586
8592
|
|
|
8587
8593
|
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js + 3 modules
|
|
8588
8594
|
var toConsumableArray = __webpack_require__(61748);
|
|
@@ -8829,10 +8835,10 @@ var appendToBody = __webpack_require__(95677);
|
|
|
8829
8835
|
});
|
|
8830
8836
|
;// CONCATENATED MODULE: ./src/components/controls/listsource/ListSource.vue?vue&type=script&lang=js&
|
|
8831
8837
|
/* harmony default export */ var listsource_ListSourcevue_type_script_lang_js_ = (ListSourcevue_type_script_lang_js_);
|
|
8832
|
-
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/listsource/ListSource.vue?vue&type=style&index=0&id=
|
|
8838
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/listsource/ListSource.vue?vue&type=style&index=0&id=0d496382&prod&lang=scss&scoped=true&
|
|
8833
8839
|
// extracted by mini-css-extract-plugin
|
|
8834
8840
|
|
|
8835
|
-
;// CONCATENATED MODULE: ./src/components/controls/listsource/ListSource.vue?vue&type=style&index=0&id=
|
|
8841
|
+
;// CONCATENATED MODULE: ./src/components/controls/listsource/ListSource.vue?vue&type=style&index=0&id=0d496382&prod&lang=scss&scoped=true&
|
|
8836
8842
|
|
|
8837
8843
|
// EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
|
8838
8844
|
var componentNormalizer = __webpack_require__(70713);
|
|
@@ -8851,7 +8857,7 @@ var component = (0,componentNormalizer/* default */.Z)(
|
|
|
8851
8857
|
staticRenderFns,
|
|
8852
8858
|
false,
|
|
8853
8859
|
null,
|
|
8854
|
-
"
|
|
8860
|
+
"0d496382",
|
|
8855
8861
|
null
|
|
8856
8862
|
|
|
8857
8863
|
)
|
|
@@ -16591,7 +16597,7 @@ var component = (0,componentNormalizer/* default */.Z)(
|
|
|
16591
16597
|
|
|
16592
16598
|
/***/ }),
|
|
16593
16599
|
|
|
16594
|
-
/***/
|
|
16600
|
+
/***/ 47158:
|
|
16595
16601
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
16596
16602
|
|
|
16597
16603
|
"use strict";
|
|
@@ -16607,7 +16613,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
16607
16613
|
var es_array_includes = __webpack_require__(26699);
|
|
16608
16614
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.includes.js
|
|
16609
16615
|
var es_string_includes = __webpack_require__(32023);
|
|
16610
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/table/TableCellProperty.vue?vue&type=template&id=
|
|
16616
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/table/TableCellProperty.vue?vue&type=template&id=59ad6eba&
|
|
16611
16617
|
|
|
16612
16618
|
|
|
16613
16619
|
var render = function render() {
|
|
@@ -16927,7 +16933,8 @@ var render = function render() {
|
|
|
16927
16933
|
}
|
|
16928
16934
|
}), _c('span', {
|
|
16929
16935
|
staticStyle: {
|
|
16930
|
-
"padding": "0 10px"
|
|
16936
|
+
"padding": "0 10px",
|
|
16937
|
+
"margin-left": "34px"
|
|
16931
16938
|
}
|
|
16932
16939
|
}, [_vm._v("下")]), _c('a-checkbox', {
|
|
16933
16940
|
model: {
|
|
@@ -16939,7 +16946,8 @@ var render = function render() {
|
|
|
16939
16946
|
}
|
|
16940
16947
|
}), _c('span', {
|
|
16941
16948
|
staticStyle: {
|
|
16942
|
-
"padding": "0 10px"
|
|
16949
|
+
"padding": "0 10px",
|
|
16950
|
+
"margin-left": "34px"
|
|
16943
16951
|
}
|
|
16944
16952
|
}, [_vm._v("左")]), _c('a-checkbox', {
|
|
16945
16953
|
model: {
|
|
@@ -16951,7 +16959,8 @@ var render = function render() {
|
|
|
16951
16959
|
}
|
|
16952
16960
|
}), _c('span', {
|
|
16953
16961
|
staticStyle: {
|
|
16954
|
-
"padding": "0 10px"
|
|
16962
|
+
"padding": "0 10px",
|
|
16963
|
+
"margin-left": "34px"
|
|
16955
16964
|
}
|
|
16956
16965
|
}, [_vm._v("右")]), _c('a-checkbox', {
|
|
16957
16966
|
model: {
|
|
@@ -17337,7 +17346,7 @@ var render = function render() {
|
|
|
17337
17346
|
}
|
|
17338
17347
|
}, [_c('span', {
|
|
17339
17348
|
staticClass: "line no-line"
|
|
17340
|
-
})
|
|
17349
|
+
})]), _c('li', {
|
|
17341
17350
|
class: _vm.obliqueSplitLine === 1 ? 'selected' : '',
|
|
17342
17351
|
on: {
|
|
17343
17352
|
"click": function click($event) {
|
|
@@ -17346,7 +17355,7 @@ var render = function render() {
|
|
|
17346
17355
|
}
|
|
17347
17356
|
}, [_c('span', {
|
|
17348
17357
|
staticClass: "line left-line top-line top-left-one-line"
|
|
17349
|
-
})
|
|
17358
|
+
})]), _c('li', {
|
|
17350
17359
|
class: _vm.obliqueSplitLine === 2 ? 'selected' : '',
|
|
17351
17360
|
on: {
|
|
17352
17361
|
"click": function click($event) {
|
|
@@ -17355,7 +17364,7 @@ var render = function render() {
|
|
|
17355
17364
|
}
|
|
17356
17365
|
}, [_c('span', {
|
|
17357
17366
|
staticClass: "line left-line top-line top-left-two-line"
|
|
17358
|
-
})
|
|
17367
|
+
})]), _c('li', {
|
|
17359
17368
|
class: _vm.obliqueSplitLine === 3 ? 'selected' : '',
|
|
17360
17369
|
on: {
|
|
17361
17370
|
"click": function click($event) {
|
|
@@ -17364,7 +17373,7 @@ var render = function render() {
|
|
|
17364
17373
|
}
|
|
17365
17374
|
}, [_c('span', {
|
|
17366
17375
|
staticClass: "line right-line top-line top-right-one-line"
|
|
17367
|
-
})
|
|
17376
|
+
})]), _c('li', {
|
|
17368
17377
|
class: _vm.obliqueSplitLine === 4 ? 'selected' : '',
|
|
17369
17378
|
on: {
|
|
17370
17379
|
"click": function click($event) {
|
|
@@ -17373,7 +17382,7 @@ var render = function render() {
|
|
|
17373
17382
|
}
|
|
17374
17383
|
}, [_c('span', {
|
|
17375
17384
|
staticClass: "line right-line top-line top-right-two-line"
|
|
17376
|
-
})
|
|
17385
|
+
})]), _c('li', {
|
|
17377
17386
|
class: _vm.obliqueSplitLine === 5 ? 'selected' : '',
|
|
17378
17387
|
on: {
|
|
17379
17388
|
"click": function click($event) {
|
|
@@ -17382,7 +17391,7 @@ var render = function render() {
|
|
|
17382
17391
|
}
|
|
17383
17392
|
}, [_c('span', {
|
|
17384
17393
|
staticClass: "line left-line bottom-line bottom-left-one-line"
|
|
17385
|
-
})
|
|
17394
|
+
})]), _c('li', {
|
|
17386
17395
|
class: _vm.obliqueSplitLine === 6 ? 'selected' : '',
|
|
17387
17396
|
on: {
|
|
17388
17397
|
"click": function click($event) {
|
|
@@ -17391,7 +17400,7 @@ var render = function render() {
|
|
|
17391
17400
|
}
|
|
17392
17401
|
}, [_c('span', {
|
|
17393
17402
|
staticClass: "line left-line bottom-line bottom-left-two-line"
|
|
17394
|
-
})
|
|
17403
|
+
})]), _c('li', {
|
|
17395
17404
|
class: _vm.obliqueSplitLine === 7 ? 'selected' : '',
|
|
17396
17405
|
on: {
|
|
17397
17406
|
"click": function click($event) {
|
|
@@ -17400,7 +17409,7 @@ var render = function render() {
|
|
|
17400
17409
|
}
|
|
17401
17410
|
}, [_c('span', {
|
|
17402
17411
|
staticClass: "line right-line bottom-line bottom-right-one-line"
|
|
17403
|
-
})
|
|
17412
|
+
})]), _c('li', {
|
|
17404
17413
|
class: _vm.obliqueSplitLine === 8 ? 'selected' : '',
|
|
17405
17414
|
on: {
|
|
17406
17415
|
"click": function click($event) {
|
|
@@ -17409,7 +17418,16 @@ var render = function render() {
|
|
|
17409
17418
|
}
|
|
17410
17419
|
}, [_c('span', {
|
|
17411
17420
|
staticClass: "line right-line bottom-line bottom-right-two-line"
|
|
17412
|
-
})
|
|
17421
|
+
})]), _c('li', {
|
|
17422
|
+
class: _vm.obliqueSplitLine === 9 ? 'selected' : '',
|
|
17423
|
+
on: {
|
|
17424
|
+
"click": function click($event) {
|
|
17425
|
+
return _vm.setObliqueSplitLine(9);
|
|
17426
|
+
}
|
|
17427
|
+
}
|
|
17428
|
+
}, [_c('span', {
|
|
17429
|
+
staticClass: "line left-right-line left-right-one-line"
|
|
17430
|
+
})])])])], 1)], 1), _c('footer', {
|
|
17413
17431
|
staticClass: "ho-modal-footer"
|
|
17414
17432
|
}, [_c('a-button', {
|
|
17415
17433
|
attrs: {
|
|
@@ -17429,7 +17447,7 @@ var render = function render() {
|
|
|
17429
17447
|
};
|
|
17430
17448
|
var staticRenderFns = [];
|
|
17431
17449
|
|
|
17432
|
-
;// CONCATENATED MODULE: ./src/components/controls/table/TableCellProperty.vue?vue&type=template&id=
|
|
17450
|
+
;// CONCATENATED MODULE: ./src/components/controls/table/TableCellProperty.vue?vue&type=template&id=59ad6eba&
|
|
17433
17451
|
|
|
17434
17452
|
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js + 3 modules
|
|
17435
17453
|
var slicedToArray = __webpack_require__(27222);
|
|
@@ -17827,10 +17845,10 @@ var columns = [{
|
|
|
17827
17845
|
});
|
|
17828
17846
|
;// CONCATENATED MODULE: ./src/components/controls/table/TableCellProperty.vue?vue&type=script&lang=js&
|
|
17829
17847
|
/* harmony default export */ var table_TableCellPropertyvue_type_script_lang_js_ = (TableCellPropertyvue_type_script_lang_js_);
|
|
17830
|
-
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/table/TableCellProperty.vue?vue&type=style&index=0&id=
|
|
17848
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/table/TableCellProperty.vue?vue&type=style&index=0&id=59ad6eba&prod&lang=scss&
|
|
17831
17849
|
// extracted by mini-css-extract-plugin
|
|
17832
17850
|
|
|
17833
|
-
;// CONCATENATED MODULE: ./src/components/controls/table/TableCellProperty.vue?vue&type=style&index=0&id=
|
|
17851
|
+
;// CONCATENATED MODULE: ./src/components/controls/table/TableCellProperty.vue?vue&type=style&index=0&id=59ad6eba&prod&lang=scss&
|
|
17834
17852
|
|
|
17835
17853
|
// EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
|
17836
17854
|
var componentNormalizer = __webpack_require__(70713);
|
|
@@ -20847,7 +20865,7 @@ var component = (0,componentNormalizer/* default */.Z)(
|
|
|
20847
20865
|
|
|
20848
20866
|
/***/ }),
|
|
20849
20867
|
|
|
20850
|
-
/***/
|
|
20868
|
+
/***/ 26401:
|
|
20851
20869
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
20852
20870
|
|
|
20853
20871
|
"use strict";
|
|
@@ -20861,7 +20879,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
20861
20879
|
|
|
20862
20880
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.function.name.js
|
|
20863
20881
|
var es_function_name = __webpack_require__(68309);
|
|
20864
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/textDialog/TextDialog.vue?vue&type=template&id=
|
|
20882
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/textDialog/TextDialog.vue?vue&type=template&id=1b766b2e&
|
|
20865
20883
|
|
|
20866
20884
|
var render = function render() {
|
|
20867
20885
|
var _vm = this,
|
|
@@ -21155,40 +21173,6 @@ var render = function render() {
|
|
|
21155
21173
|
staticClass: "control-item"
|
|
21156
21174
|
}, [_c('span', {
|
|
21157
21175
|
staticClass: "label"
|
|
21158
|
-
}, [_vm._v("内容只读状态")]), _c('a-select', {
|
|
21159
|
-
staticStyle: {
|
|
21160
|
-
"text-align": "left"
|
|
21161
|
-
},
|
|
21162
|
-
attrs: {
|
|
21163
|
-
"getPopupContainer": function getPopupContainer(triggerNode) {
|
|
21164
|
-
return triggerNode.parentNode;
|
|
21165
|
-
},
|
|
21166
|
-
"placeholder": "请选择",
|
|
21167
|
-
"size": "small"
|
|
21168
|
-
},
|
|
21169
|
-
model: {
|
|
21170
|
-
value: _vm.textParam.readOnlyStatus,
|
|
21171
|
-
callback: function callback($$v) {
|
|
21172
|
-
_vm.$set(_vm.textParam, "readOnlyStatus", $$v);
|
|
21173
|
-
},
|
|
21174
|
-
expression: "textParam.readOnlyStatus"
|
|
21175
|
-
}
|
|
21176
|
-
}, [_c('a-select-option', {
|
|
21177
|
-
attrs: {
|
|
21178
|
-
"value": 2
|
|
21179
|
-
}
|
|
21180
|
-
}, [_vm._v("继承父元素")]), _c('a-select-option', {
|
|
21181
|
-
attrs: {
|
|
21182
|
-
"value": 0
|
|
21183
|
-
}
|
|
21184
|
-
}, [_vm._v("是")]), _c('a-select-option', {
|
|
21185
|
-
attrs: {
|
|
21186
|
-
"value": 1
|
|
21187
|
-
}
|
|
21188
|
-
}, [_vm._v("否")])], 1)], 1), _c('li', {
|
|
21189
|
-
staticClass: "control-item"
|
|
21190
|
-
}, [_c('span', {
|
|
21191
|
-
staticClass: "label"
|
|
21192
21176
|
}, [_vm._v("固定宽度")]), _c('a-input-number', {
|
|
21193
21177
|
staticStyle: {
|
|
21194
21178
|
"width": "120px",
|
|
@@ -21375,7 +21359,7 @@ var render = function render() {
|
|
|
21375
21359
|
};
|
|
21376
21360
|
var staticRenderFns = [];
|
|
21377
21361
|
|
|
21378
|
-
;// CONCATENATED MODULE: ./src/components/controls/textDialog/TextDialog.vue?vue&type=template&id=
|
|
21362
|
+
;// CONCATENATED MODULE: ./src/components/controls/textDialog/TextDialog.vue?vue&type=template&id=1b766b2e&
|
|
21379
21363
|
|
|
21380
21364
|
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js + 3 modules
|
|
21381
21365
|
var toConsumableArray = __webpack_require__(61748);
|
|
@@ -21397,6 +21381,8 @@ var es_regexp_exec = __webpack_require__(74916);
|
|
|
21397
21381
|
var es_string_replace = __webpack_require__(15306);
|
|
21398
21382
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.number.constructor.js
|
|
21399
21383
|
var es_number_constructor = __webpack_require__(9653);
|
|
21384
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.map.js
|
|
21385
|
+
var es_array_map = __webpack_require__(21249);
|
|
21400
21386
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.json.stringify.js
|
|
21401
21387
|
var es_json_stringify = __webpack_require__(38862);
|
|
21402
21388
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
|
|
@@ -21443,6 +21429,7 @@ var VerifyTip = __webpack_require__(63210);
|
|
|
21443
21429
|
|
|
21444
21430
|
|
|
21445
21431
|
|
|
21432
|
+
|
|
21446
21433
|
|
|
21447
21434
|
|
|
21448
21435
|
/* harmony default export */ var TextDialogvue_type_script_lang_js_ = ({
|
|
@@ -21613,7 +21600,12 @@ var VerifyTip = __webpack_require__(63210);
|
|
|
21613
21600
|
var _this2 = this;
|
|
21614
21601
|
if (this.textParam.inputFieldType === 1) {
|
|
21615
21602
|
this.textParam.downListProperty.source = this.listArrSource;
|
|
21616
|
-
|
|
21603
|
+
var arr = this.hoEditorProvider.getListStyle();
|
|
21604
|
+
arr = arr.map(function (v) {
|
|
21605
|
+
v.text = v.text.replace('\r', '').replace('\n', '');
|
|
21606
|
+
return v;
|
|
21607
|
+
});
|
|
21608
|
+
this.textParam.downListProperty.listItems = JSON.stringify(arr);
|
|
21617
21609
|
var textArr = [];
|
|
21618
21610
|
this.hoEditorProvider.getListStyle().forEach(function (v) {
|
|
21619
21611
|
if (v.default) textArr.push(v.text);
|
|
@@ -21629,6 +21621,7 @@ var VerifyTip = __webpack_require__(63210);
|
|
|
21629
21621
|
} else {
|
|
21630
21622
|
this.textParam.downListProperty = new TextInputFieldNode/* DownListProperty */.OL();
|
|
21631
21623
|
}
|
|
21624
|
+
|
|
21632
21625
|
// this.textParam.bandDataSource = this.dataSource;
|
|
21633
21626
|
if (this.textParam.inputFieldType === 0) {
|
|
21634
21627
|
this.textParam.name = this.textParam.name ? this.textParam.name : '请输入';
|
|
@@ -21669,10 +21662,10 @@ var VerifyTip = __webpack_require__(63210);
|
|
|
21669
21662
|
});
|
|
21670
21663
|
;// CONCATENATED MODULE: ./src/components/controls/textDialog/TextDialog.vue?vue&type=script&lang=js&
|
|
21671
21664
|
/* harmony default export */ var textDialog_TextDialogvue_type_script_lang_js_ = (TextDialogvue_type_script_lang_js_);
|
|
21672
|
-
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/textDialog/TextDialog.vue?vue&type=style&index=0&id=
|
|
21665
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/textDialog/TextDialog.vue?vue&type=style&index=0&id=1b766b2e&prod&lang=scss&
|
|
21673
21666
|
// extracted by mini-css-extract-plugin
|
|
21674
21667
|
|
|
21675
|
-
;// CONCATENATED MODULE: ./src/components/controls/textDialog/TextDialog.vue?vue&type=style&index=0&id=
|
|
21668
|
+
;// CONCATENATED MODULE: ./src/components/controls/textDialog/TextDialog.vue?vue&type=style&index=0&id=1b766b2e&prod&lang=scss&
|
|
21676
21669
|
|
|
21677
21670
|
// EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
|
21678
21671
|
var componentNormalizer = __webpack_require__(70713);
|
|
@@ -41006,7 +40999,9 @@ var DocController = /*#__PURE__*/function () {
|
|
|
41006
40999
|
*/
|
|
41007
41000
|
}, {
|
|
41008
41001
|
key: "insertBarcode",
|
|
41009
|
-
value: function insertBarcode(operType, curDomRange, id, textContent, isDisplayText, imagePath, width, height,
|
|
41002
|
+
value: function insertBarcode(operType, curDomRange, id, textContent, isDisplayText, imagePath, width, height,
|
|
41003
|
+
//bandDataSource: string,
|
|
41004
|
+
name, innerIdentifier) {
|
|
41010
41005
|
var domRange = curDomRange.normalize();
|
|
41011
41006
|
var startPath = domRange.endPath;
|
|
41012
41007
|
var hoEditorFactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_76__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this._hoEditorFactoryID);
|
|
@@ -47172,7 +47167,7 @@ var PageProperty = /*#__PURE__*/function () {
|
|
|
47172
47167
|
/*
|
|
47173
47168
|
* @Author: your name
|
|
47174
47169
|
* @Date: 2020-12-24 16:01:16
|
|
47175
|
-
* @LastEditTime: 2023-07-
|
|
47170
|
+
* @LastEditTime: 2023-07-13 10:31:51
|
|
47176
47171
|
* @LastEditors: liyanan 2441631434@qq.com
|
|
47177
47172
|
* @Description: In User Settings Edit
|
|
47178
47173
|
* @FilePath: \hoeditor-web\src\editor\dom\TableProperty.ts
|
|
@@ -47922,6 +47917,7 @@ var ObliqueSplitLine;
|
|
|
47922
47917
|
ObliqueSplitLine[ObliqueSplitLine["BottomLeftTwoLine"] = 6] = "BottomLeftTwoLine";
|
|
47923
47918
|
ObliqueSplitLine[ObliqueSplitLine["BottomRightOneLine"] = 7] = "BottomRightOneLine";
|
|
47924
47919
|
ObliqueSplitLine[ObliqueSplitLine["BottomRightTwoLine"] = 8] = "BottomRightTwoLine";
|
|
47920
|
+
ObliqueSplitLine[ObliqueSplitLine["TwoDiagonal"] = 9] = "TwoDiagonal";
|
|
47925
47921
|
})(ObliqueSplitLine || (ObliqueSplitLine = {}));
|
|
47926
47922
|
var DiagonalType;
|
|
47927
47923
|
(function (DiagonalType) {
|
|
@@ -65129,7 +65125,7 @@ var TableNode = /*#__PURE__*/function (_RectNode) {
|
|
|
65129
65125
|
/* harmony export */ });
|
|
65130
65126
|
/* unused harmony exports SpecialFormat, BandDataSource */
|
|
65131
65127
|
/* harmony import */ var ant_design_vue_es_message_style__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(94310);
|
|
65132
|
-
/* harmony import */ var
|
|
65128
|
+
/* harmony import */ var ant_design_vue_es_message__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(40735);
|
|
65133
65129
|
/* harmony import */ var D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_toConsumableArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(61748);
|
|
65134
65130
|
/* harmony import */ var D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(80543);
|
|
65135
65131
|
/* harmony import */ var D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(81448);
|
|
@@ -65140,8 +65136,8 @@ var TableNode = /*#__PURE__*/function (_RectNode) {
|
|
|
65140
65136
|
/* harmony import */ var D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_inherits_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(11651);
|
|
65141
65137
|
/* harmony import */ var D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_createSuper_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(19593);
|
|
65142
65138
|
/* harmony import */ var D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_classCallCheck_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(70280);
|
|
65143
|
-
/* harmony import */ var
|
|
65144
|
-
/* harmony import */ var
|
|
65139
|
+
/* harmony import */ var D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_createClass_js__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(66298);
|
|
65140
|
+
/* harmony import */ var D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(78255);
|
|
65145
65141
|
/* harmony import */ var core_js_modules_es_function_name_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(68309);
|
|
65146
65142
|
/* harmony import */ var core_js_modules_es_function_name_js__WEBPACK_IMPORTED_MODULE_11___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_function_name_js__WEBPACK_IMPORTED_MODULE_11__);
|
|
65147
65143
|
/* harmony import */ var core_js_modules_es_object_to_string_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(41539);
|
|
@@ -65162,49 +65158,55 @@ var TableNode = /*#__PURE__*/function (_RectNode) {
|
|
|
65162
65158
|
/* harmony import */ var core_js_modules_es_regexp_to_string_js__WEBPACK_IMPORTED_MODULE_19___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_to_string_js__WEBPACK_IMPORTED_MODULE_19__);
|
|
65163
65159
|
/* harmony import */ var core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(57658);
|
|
65164
65160
|
/* harmony import */ var core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_20___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_20__);
|
|
65165
|
-
/* harmony import */ var
|
|
65166
|
-
/* harmony import */ var
|
|
65167
|
-
/* harmony import */ var
|
|
65168
|
-
/* harmony import */ var
|
|
65169
|
-
/* harmony import */ var
|
|
65170
|
-
/* harmony import */ var
|
|
65171
|
-
/* harmony import */ var
|
|
65172
|
-
/* harmony import */ var
|
|
65173
|
-
/* harmony import */ var
|
|
65174
|
-
/* harmony import */ var
|
|
65175
|
-
/* harmony import */ var
|
|
65176
|
-
/* harmony import */ var
|
|
65177
|
-
/* harmony import */ var
|
|
65178
|
-
/* harmony import */ var
|
|
65179
|
-
/* harmony import */ var
|
|
65180
|
-
/* harmony import */ var
|
|
65181
|
-
/* harmony import */ var
|
|
65182
|
-
/* harmony import */ var
|
|
65183
|
-
/* harmony import */ var
|
|
65184
|
-
/* harmony import */ var
|
|
65185
|
-
/* harmony import */ var
|
|
65186
|
-
/* harmony import */ var
|
|
65187
|
-
/* harmony import */ var
|
|
65188
|
-
/* harmony import */ var
|
|
65189
|
-
/* harmony import */ var
|
|
65190
|
-
/* harmony import */ var
|
|
65191
|
-
/* harmony import */ var
|
|
65192
|
-
/* harmony import */ var
|
|
65193
|
-
/* harmony import */ var
|
|
65194
|
-
/* harmony import */ var
|
|
65195
|
-
/* harmony import */ var
|
|
65196
|
-
/* harmony import */ var
|
|
65197
|
-
/* harmony import */ var
|
|
65198
|
-
/* harmony import */ var
|
|
65199
|
-
/* harmony import */ var
|
|
65200
|
-
/* harmony import */ var
|
|
65201
|
-
/* harmony import */ var
|
|
65202
|
-
/* harmony import */ var
|
|
65203
|
-
/* harmony import */ var
|
|
65204
|
-
/* harmony import */ var
|
|
65205
|
-
/* harmony import */ var
|
|
65206
|
-
/* harmony import */ var
|
|
65207
|
-
/* harmony import */ var
|
|
65161
|
+
/* harmony import */ var core_js_modules_es_regexp_exec_js__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(74916);
|
|
65162
|
+
/* harmony import */ var core_js_modules_es_regexp_exec_js__WEBPACK_IMPORTED_MODULE_21___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_exec_js__WEBPACK_IMPORTED_MODULE_21__);
|
|
65163
|
+
/* harmony import */ var core_js_modules_es_string_replace_js__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(15306);
|
|
65164
|
+
/* harmony import */ var core_js_modules_es_string_replace_js__WEBPACK_IMPORTED_MODULE_22___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_replace_js__WEBPACK_IMPORTED_MODULE_22__);
|
|
65165
|
+
/* harmony import */ var core_js_modules_es_array_join_js__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(69600);
|
|
65166
|
+
/* harmony import */ var core_js_modules_es_array_join_js__WEBPACK_IMPORTED_MODULE_23___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_join_js__WEBPACK_IMPORTED_MODULE_23__);
|
|
65167
|
+
/* harmony import */ var core_js_modules_es_array_splice_js__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(40561);
|
|
65168
|
+
/* harmony import */ var core_js_modules_es_array_splice_js__WEBPACK_IMPORTED_MODULE_24___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_splice_js__WEBPACK_IMPORTED_MODULE_24__);
|
|
65169
|
+
/* harmony import */ var core_js_modules_es_object_assign_js__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(19601);
|
|
65170
|
+
/* harmony import */ var core_js_modules_es_object_assign_js__WEBPACK_IMPORTED_MODULE_25___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_assign_js__WEBPACK_IMPORTED_MODULE_25__);
|
|
65171
|
+
/* harmony import */ var core_js_modules_es_array_concat_js__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(92222);
|
|
65172
|
+
/* harmony import */ var core_js_modules_es_array_concat_js__WEBPACK_IMPORTED_MODULE_26___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_concat_js__WEBPACK_IMPORTED_MODULE_26__);
|
|
65173
|
+
/* harmony import */ var core_js_modules_es_number_constructor_js__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(9653);
|
|
65174
|
+
/* harmony import */ var core_js_modules_es_number_constructor_js__WEBPACK_IMPORTED_MODULE_27___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_number_constructor_js__WEBPACK_IMPORTED_MODULE_27__);
|
|
65175
|
+
/* harmony import */ var core_js_modules_es_error_cause_js__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(21703);
|
|
65176
|
+
/* harmony import */ var core_js_modules_es_error_cause_js__WEBPACK_IMPORTED_MODULE_28___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_error_cause_js__WEBPACK_IMPORTED_MODULE_28__);
|
|
65177
|
+
/* harmony import */ var _editor_draw_DrawLine__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(96635);
|
|
65178
|
+
/* harmony import */ var _editor_draw_drawTree_DrawTree__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(51760);
|
|
65179
|
+
/* harmony import */ var _editor_draw_SelectRange__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(53901);
|
|
65180
|
+
/* harmony import */ var _editor_events_DmouseEvent__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(48541);
|
|
65181
|
+
/* harmony import */ var _editor_events_Exception__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(8277);
|
|
65182
|
+
/* harmony import */ var _editor_events_NodeChangeEvent__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(2613);
|
|
65183
|
+
/* harmony import */ var _editor_undoRedo_NodeInsertUndoUnit__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(64465);
|
|
65184
|
+
/* harmony import */ var _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(74089);
|
|
65185
|
+
/* harmony import */ var _DocTree__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(32629);
|
|
65186
|
+
/* harmony import */ var _domNode_TextStyle__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(29899);
|
|
65187
|
+
/* harmony import */ var _DomRange__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(94639);
|
|
65188
|
+
/* harmony import */ var _NodePosition__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(42921);
|
|
65189
|
+
/* harmony import */ var _BaseCombineNode__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(4938);
|
|
65190
|
+
/* harmony import */ var _BaseNode__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(62358);
|
|
65191
|
+
/* harmony import */ var _ControlNode__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(91105);
|
|
65192
|
+
/* harmony import */ var _DateTimeNode__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(92501);
|
|
65193
|
+
/* harmony import */ var _FetalHeartMapNode__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(47088);
|
|
65194
|
+
/* harmony import */ var _LightLocationMapNode__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(59621);
|
|
65195
|
+
/* harmony import */ var _MarkNode__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(57727);
|
|
65196
|
+
/* harmony import */ var _MedicalExpressionNode__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(80177);
|
|
65197
|
+
/* harmony import */ var _MenstrualHistoryNode__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(45836);
|
|
65198
|
+
/* harmony import */ var _ParagraphNode__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(67945);
|
|
65199
|
+
/* harmony import */ var _PermanentTeethMapNode__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(13307);
|
|
65200
|
+
/* harmony import */ var _PrimaryTeethMapNode__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(11429);
|
|
65201
|
+
/* harmony import */ var _PupilMapNode__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(19995);
|
|
65202
|
+
/* harmony import */ var _SignNode__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(24701);
|
|
65203
|
+
/* harmony import */ var _TableFormula__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(90832);
|
|
65204
|
+
/* harmony import */ var _TableNode__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(5010);
|
|
65205
|
+
/* harmony import */ var _TextNode__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(27198);
|
|
65206
|
+
/* harmony import */ var _QrcodeNode__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(12659);
|
|
65207
|
+
/* harmony import */ var _RareCharNode__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(34910);
|
|
65208
|
+
|
|
65209
|
+
|
|
65208
65210
|
|
|
65209
65211
|
|
|
65210
65212
|
|
|
@@ -65238,7 +65240,7 @@ var TableNode = /*#__PURE__*/function (_RectNode) {
|
|
|
65238
65240
|
/*
|
|
65239
65241
|
* @Author: your name
|
|
65240
65242
|
* @Date: 2020-11-03 15:17:54
|
|
65241
|
-
* @LastEditTime: 2023-07-
|
|
65243
|
+
* @LastEditTime: 2023-07-14 09:49:07
|
|
65242
65244
|
* @LastEditors: liyanan 2441631434@qq.com
|
|
65243
65245
|
* @Description: In User Settings Edit
|
|
65244
65246
|
* @FilePath: \hoeditor-web\src\editor\dom\treeNode\TextInputFieldNode.ts
|
|
@@ -65316,20 +65318,19 @@ var DownListProperty = /*#__PURE__*/function () {
|
|
|
65316
65318
|
// 列表选项互斥
|
|
65317
65319
|
//private _dynamicLoadList!: boolean;//动态加载列表
|
|
65318
65320
|
// private _listContent!: string;//列表内容
|
|
65319
|
-
//来源
|
|
65321
|
+
//private _source!: string; //来源
|
|
65320
65322
|
//列表项目
|
|
65321
65323
|
//private _specialFormat!: SpecialFormat;//特殊格式
|
|
65322
65324
|
function DownListProperty() {
|
|
65323
65325
|
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_classCallCheck_js__WEBPACK_IMPORTED_MODULE_10__/* ["default"] */ .Z)(this, DownListProperty);
|
|
65324
|
-
(0,
|
|
65325
|
-
(0,
|
|
65326
|
-
(0,
|
|
65327
|
-
(0,
|
|
65328
|
-
(0,
|
|
65329
|
-
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_58__/* ["default"] */ .Z)(this, "_listItems", void 0);
|
|
65326
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)(this, "_allowMultiSelected", void 0);
|
|
65327
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)(this, "_isMultiLinesDisplay", void 0);
|
|
65328
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)(this, "_splitCharacter", void 0);
|
|
65329
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)(this, "_mutexSelect", void 0);
|
|
65330
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)(this, "_listItems", void 0);
|
|
65330
65331
|
DownListProperty.setDefaultImportStyle(this);
|
|
65331
65332
|
}
|
|
65332
|
-
(0,
|
|
65333
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_createClass_js__WEBPACK_IMPORTED_MODULE_61__/* ["default"] */ .Z)(DownListProperty, [{
|
|
65333
65334
|
key: "allowMultiSelected",
|
|
65334
65335
|
get: function get() {
|
|
65335
65336
|
return this._allowMultiSelected;
|
|
@@ -65385,16 +65386,14 @@ var DownListProperty = /*#__PURE__*/function () {
|
|
|
65385
65386
|
// this._listContent = value;
|
|
65386
65387
|
// }
|
|
65387
65388
|
// }
|
|
65388
|
-
|
|
65389
|
-
|
|
65390
|
-
|
|
65391
|
-
|
|
65392
|
-
|
|
65393
|
-
|
|
65394
|
-
|
|
65395
|
-
|
|
65396
|
-
}
|
|
65397
|
-
}
|
|
65389
|
+
// get source(): string {
|
|
65390
|
+
// return this._source;
|
|
65391
|
+
// }
|
|
65392
|
+
// set source(value: string) {
|
|
65393
|
+
// if (this._source !== value) {
|
|
65394
|
+
// this._source = value;
|
|
65395
|
+
// }
|
|
65396
|
+
// }
|
|
65398
65397
|
}, {
|
|
65399
65398
|
key: "listItems",
|
|
65400
65399
|
get: function get() {
|
|
@@ -65414,7 +65413,7 @@ var DownListProperty = /*#__PURE__*/function () {
|
|
|
65414
65413
|
ret._splitCharacter = '';
|
|
65415
65414
|
//ret._dynamicLoadList = false;
|
|
65416
65415
|
//ret._listContent = "";
|
|
65417
|
-
ret._source = '';
|
|
65416
|
+
//ret._source = '';
|
|
65418
65417
|
ret._listItems = '';
|
|
65419
65418
|
ret._mutexSelect = false;
|
|
65420
65419
|
//ret._specialFormat = SpecialFormat.none;
|
|
@@ -65439,17 +65438,17 @@ var DataVerifyFormat = /*#__PURE__*/function () {
|
|
|
65439
65438
|
// private _noLaterTheTime!: string;//时间格式 不得晚于该时间
|
|
65440
65439
|
function DataVerifyFormat() {
|
|
65441
65440
|
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_classCallCheck_js__WEBPACK_IMPORTED_MODULE_10__/* ["default"] */ .Z)(this, DataVerifyFormat);
|
|
65442
|
-
(0,
|
|
65443
|
-
(0,
|
|
65444
|
-
(0,
|
|
65445
|
-
(0,
|
|
65446
|
-
(0,
|
|
65447
|
-
(0,
|
|
65448
|
-
(0,
|
|
65449
|
-
(0,
|
|
65441
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)(this, "_mustInputValue", void 0);
|
|
65442
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)(this, "_dataFormat", void 0);
|
|
65443
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)(this, "_minLength", void 0);
|
|
65444
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)(this, "_maxLength", void 0);
|
|
65445
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)(this, "_onlyInputInt", void 0);
|
|
65446
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)(this, "_minValue", void 0);
|
|
65447
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)(this, "_maxValue", void 0);
|
|
65448
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)(this, "_maxSmallBits", void 0);
|
|
65450
65449
|
DataVerifyFormat.setDefaultDataVerifyFormat(this);
|
|
65451
65450
|
}
|
|
65452
|
-
(0,
|
|
65451
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_createClass_js__WEBPACK_IMPORTED_MODULE_61__/* ["default"] */ .Z)(DataVerifyFormat, [{
|
|
65453
65452
|
key: "mustInputValue",
|
|
65454
65453
|
get: function get() {
|
|
65455
65454
|
return this._mustInputValue;
|
|
@@ -65661,40 +65660,40 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
65661
65660
|
var _this;
|
|
65662
65661
|
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_classCallCheck_js__WEBPACK_IMPORTED_MODULE_10__/* ["default"] */ .Z)(this, TextInputFieldNode);
|
|
65663
65662
|
_this = _super.call(this, hoEditorFactoryID, rootNodes, pNode, nodeType);
|
|
65664
|
-
(0,
|
|
65665
|
-
(0,
|
|
65666
|
-
(0,
|
|
65667
|
-
(0,
|
|
65668
|
-
(0,
|
|
65669
|
-
(0,
|
|
65670
|
-
(0,
|
|
65671
|
-
(0,
|
|
65672
|
-
(0,
|
|
65673
|
-
(0,
|
|
65674
|
-
(0,
|
|
65675
|
-
(0,
|
|
65676
|
-
(0,
|
|
65677
|
-
(0,
|
|
65678
|
-
(0,
|
|
65679
|
-
(0,
|
|
65680
|
-
(0,
|
|
65681
|
-
(0,
|
|
65682
|
-
(0,
|
|
65683
|
-
(0,
|
|
65684
|
-
(0,
|
|
65685
|
-
(0,
|
|
65686
|
-
(0,
|
|
65687
|
-
(0,
|
|
65688
|
-
(0,
|
|
65689
|
-
(0,
|
|
65690
|
-
(0,
|
|
65691
|
-
(0,
|
|
65692
|
-
(0,
|
|
65693
|
-
(0,
|
|
65694
|
-
(0,
|
|
65695
|
-
(0,
|
|
65696
|
-
(0,
|
|
65697
|
-
(0,
|
|
65663
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_inputFieldType", void 0);
|
|
65664
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_id", void 0);
|
|
65665
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_dataId", void 0);
|
|
65666
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_innerIdentifier", void 0);
|
|
65667
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_dataMetaIdentifier", void 0);
|
|
65668
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_identifierFormat", void 0);
|
|
65669
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_isSynchro", false);
|
|
65670
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_labelText", '请输入');
|
|
65671
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_text", '');
|
|
65672
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_name", '');
|
|
65673
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_tipText", '');
|
|
65674
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_fixedWidth", 0);
|
|
65675
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_isCentered", false);
|
|
65676
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_canModifyContent", true);
|
|
65677
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_isAllowDelete", true);
|
|
65678
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_enableGlobalColor", true);
|
|
65679
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_defaultValue", '');
|
|
65680
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_downListProperty", void 0);
|
|
65681
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_dataVerifyFormat", void 0);
|
|
65682
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_customProperty", void 0);
|
|
65683
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_alignWithBlocked", false);
|
|
65684
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_readType", -1);
|
|
65685
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_keyValue", '');
|
|
65686
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_value", '');
|
|
65687
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_insCheckSyncUpdateList", false);
|
|
65688
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_hideDuringPrint", false);
|
|
65689
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_notReplaceElement", false);
|
|
65690
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_isElementLink", false);
|
|
65691
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_includesKeyword", '');
|
|
65692
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_valueArea", '');
|
|
65693
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_childNodes2", void 0);
|
|
65694
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "StartMarkNode", void 0);
|
|
65695
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "EndMarkNode", void 0);
|
|
65696
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_60__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(_this), "_backShape", void 0);
|
|
65698
65697
|
_this._childNodes2 = [];
|
|
65699
65698
|
//this._importStyle = new ImportStyle();
|
|
65700
65699
|
_this._downListProperty = new DownListProperty();
|
|
@@ -65716,7 +65715,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
65716
65715
|
}
|
|
65717
65716
|
}
|
|
65718
65717
|
if (!_this._dataId) {
|
|
65719
|
-
_this._dataId =
|
|
65718
|
+
_this._dataId = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_36__/* .HOEditorFactorys.instance */ .b.instance().getFactory(hoEditorFactoryID).gernerateCode.generateID('Field');
|
|
65720
65719
|
}
|
|
65721
65720
|
_this.node2DrawNodeRange(0, _this.text.length - 1);
|
|
65722
65721
|
//FIXME:正式使用时下面事件触发要注释掉,这里会在节点被删除后被卡死
|
|
@@ -65732,7 +65731,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
65732
65731
|
// })
|
|
65733
65732
|
return _this;
|
|
65734
65733
|
}
|
|
65735
|
-
(0,
|
|
65734
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_createClass_js__WEBPACK_IMPORTED_MODULE_61__/* ["default"] */ .Z)(TextInputFieldNode, [{
|
|
65736
65735
|
key: "alignWithBlocked",
|
|
65737
65736
|
get:
|
|
65738
65737
|
//输入域类型
|
|
@@ -65823,8 +65822,8 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
65823
65822
|
}, {
|
|
65824
65823
|
key: "mouseEvent",
|
|
65825
65824
|
value: function mouseEvent(event) {
|
|
65826
|
-
if (event.type ==
|
|
65827
|
-
if (event.type ==
|
|
65825
|
+
if (event.type == _editor_events_DmouseEvent__WEBPACK_IMPORTED_MODULE_32__/* .DmouseEventType.detOver */ .p.detOver) this.activity(true);
|
|
65826
|
+
if (event.type == _editor_events_DmouseEvent__WEBPACK_IMPORTED_MODULE_32__/* .DmouseEventType.detOut */ .p.detOut) this.activity(false);
|
|
65828
65827
|
}
|
|
65829
65828
|
// public activity(active: boolean) {
|
|
65830
65829
|
// if (active) {
|
|
@@ -66183,7 +66182,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66183
66182
|
} else {
|
|
66184
66183
|
for (var i = 0; i < this.childNodes.length; i++) {
|
|
66185
66184
|
var child = this.childNodes[i];
|
|
66186
|
-
if (child instanceof
|
|
66185
|
+
if (child instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j && child.MarkNodeType == 1) {
|
|
66187
66186
|
return child;
|
|
66188
66187
|
}
|
|
66189
66188
|
}
|
|
@@ -66198,7 +66197,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66198
66197
|
key: "update",
|
|
66199
66198
|
value: function update(mode) {
|
|
66200
66199
|
var _this2 = this;
|
|
66201
|
-
var hoEditorFactory =
|
|
66200
|
+
var hoEditorFactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_36__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this._hoEditorFactoryID);
|
|
66202
66201
|
/**
|
|
66203
66202
|
* 内容为空,显示一个点位符
|
|
66204
66203
|
*/
|
|
@@ -66221,9 +66220,9 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66221
66220
|
case 0:
|
|
66222
66221
|
//由于在表格在放置输入域后会在绘制时触发输入域重绘,此时表格还未放置于舞台,造成报错,故暂时禁用此函数
|
|
66223
66222
|
//熊跃龙 2021-03-19
|
|
66224
|
-
changeEvent = new
|
|
66223
|
+
changeEvent = new _editor_events_NodeChangeEvent__WEBPACK_IMPORTED_MODULE_34__/* .NodeChangeEvent */ .G(_this2.hoEditorFactoryID, _DocTree__WEBPACK_IMPORTED_MODULE_37__/* .DocAction.daModifyStyle */ .gk.daModifyStyle, path1 || startPath, path2 || endPath);
|
|
66225
66224
|
changeEvent.oldEndPath = path2 || endPath;
|
|
66226
|
-
changeEvent.oldDrawLines = new
|
|
66225
|
+
changeEvent.oldDrawLines = new _editor_draw_SelectRange__WEBPACK_IMPORTED_MODULE_31__/* .SelectRange */ .E(_this2.hoEditorFactoryID).getRangeDrawLines(path1 || startPath, path2 || endPath, true);
|
|
66227
66226
|
_context.next = 5;
|
|
66228
66227
|
return hoEditorFactory.docTree.change(changeEvent);
|
|
66229
66228
|
case 5:
|
|
@@ -66243,11 +66242,11 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66243
66242
|
}();
|
|
66244
66243
|
if (mode == 0) {
|
|
66245
66244
|
var prev = first.previousLeaf();
|
|
66246
|
-
if (!prev) throw
|
|
66245
|
+
if (!prev) throw _editor_events_Exception__WEBPACK_IMPORTED_MODULE_33__/* .Exception.NodeNotFound */ .P.NodeNotFound();
|
|
66247
66246
|
refresh(hoEditorFactory.docTree.getNodeLastPath(prev), hoEditorFactory.docTree.getNodeLastPath(last));
|
|
66248
66247
|
setTimeout(function () {
|
|
66249
66248
|
prev = first.previousLeaf();
|
|
66250
|
-
if (!prev) throw
|
|
66249
|
+
if (!prev) throw _editor_events_Exception__WEBPACK_IMPORTED_MODULE_33__/* .Exception.NodeNotFound */ .P.NodeNotFound();
|
|
66251
66250
|
refresh(hoEditorFactory.docTree.getNodeLastPath(prev), hoEditorFactory.docTree.getNodeLastPath(last));
|
|
66252
66251
|
}, 200);
|
|
66253
66252
|
return;
|
|
@@ -66293,7 +66292,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66293
66292
|
// } else
|
|
66294
66293
|
if (this.StartMarkNode.drawNodes.length > 0 && this.EndMarkNode.drawNodes.length > 0) {
|
|
66295
66294
|
//不空,还原
|
|
66296
|
-
var bInSameLine =
|
|
66295
|
+
var bInSameLine = _editor_draw_DrawLine__WEBPACK_IMPORTED_MODULE_29__/* .DrawLine.inSameLine */ .a.inSameLine(this.StartMarkNode.drawNodes[0], this.EndMarkNode.drawNodes[0]);
|
|
66297
66296
|
if (fixWidthPix == 0 || !bInSameLine || usedWidth >= maxEmptWidth) {
|
|
66298
66297
|
firthWidth = 0;
|
|
66299
66298
|
lastWidth = 0;
|
|
@@ -66313,7 +66312,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66313
66312
|
last.width = lastWidth;
|
|
66314
66313
|
var _prev = last.previousLeaf();
|
|
66315
66314
|
if (!_prev) {
|
|
66316
|
-
throw
|
|
66315
|
+
throw _editor_events_Exception__WEBPACK_IMPORTED_MODULE_33__/* .Exception.NodeNotFound */ .P.NodeNotFound();
|
|
66317
66316
|
}
|
|
66318
66317
|
startPath = hoEditorFactory.docTree.getNodeLastPath(_prev);
|
|
66319
66318
|
endPath = last.getNodePath();
|
|
@@ -66325,7 +66324,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66325
66324
|
last.width = lastWidth;
|
|
66326
66325
|
var _prev2 = first.previousLeaf();
|
|
66327
66326
|
if (!_prev2) {
|
|
66328
|
-
throw
|
|
66327
|
+
throw _editor_events_Exception__WEBPACK_IMPORTED_MODULE_33__/* .Exception.NodeNotFound */ .P.NodeNotFound();
|
|
66329
66328
|
}
|
|
66330
66329
|
startPath = hoEditorFactory.docTree.getNodeLastPath(_prev2);
|
|
66331
66330
|
endPath = last.getNodePath();
|
|
@@ -66350,8 +66349,8 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66350
66349
|
var loopChildNodes = function loopChildNodes(node) {
|
|
66351
66350
|
var nodes = node.childNodes.slice(1);
|
|
66352
66351
|
nodes.forEach(function (childNode) {
|
|
66353
|
-
if (childNode instanceof
|
|
66354
|
-
var hoEditorFactory =
|
|
66352
|
+
if (childNode instanceof _TextNode__WEBPACK_IMPORTED_MODULE_57__/* .TextNode */ .R) {
|
|
66353
|
+
var hoEditorFactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_36__/* .HOEditorFactorys.instance */ .b.instance().getFactory(_this3.hoEditorFactoryID);
|
|
66355
66354
|
var textStyle = hoEditorFactory.docTree.styles[childNode.styleIndex];
|
|
66356
66355
|
if (!textStyle) {
|
|
66357
66356
|
textStyle = hoEditorFactory.docTree.styles[0];
|
|
@@ -66366,36 +66365,36 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66366
66365
|
text += childNode.text;
|
|
66367
66366
|
}
|
|
66368
66367
|
}
|
|
66369
|
-
} else if (childNode instanceof
|
|
66370
|
-
if (childNode instanceof
|
|
66368
|
+
} else if (childNode instanceof _ControlNode__WEBPACK_IMPORTED_MODULE_43__/* .ControlNode */ .w) {
|
|
66369
|
+
if (childNode instanceof _DateTimeNode__WEBPACK_IMPORTED_MODULE_44__/* .DateTimeNode */ .Z && (isClearValue || childNode.text == childNode.name)) {
|
|
66371
66370
|
text += '';
|
|
66372
66371
|
} else {
|
|
66373
66372
|
text += childNode.text;
|
|
66374
66373
|
}
|
|
66375
|
-
} else if (childNode instanceof
|
|
66374
|
+
} else if (childNode instanceof _BaseCombineNode__WEBPACK_IMPORTED_MODULE_41__/* .BaseCombineNode */ .V) {
|
|
66376
66375
|
loopChildNodes(childNode);
|
|
66377
|
-
} else if (childNode instanceof
|
|
66376
|
+
} else if (childNode instanceof _ParagraphNode__WEBPACK_IMPORTED_MODULE_50__/* .ParagraphNode */ .C) {
|
|
66378
66377
|
text += '\n';
|
|
66379
|
-
} else if (childNode instanceof
|
|
66378
|
+
} else if (childNode instanceof _MedicalExpressionNode__WEBPACK_IMPORTED_MODULE_48__/* .MedicalExpressionNode */ .H) {
|
|
66380
66379
|
var expressJson = JSON.parse('{}');
|
|
66381
66380
|
text += '<MedicalExpress>';
|
|
66382
|
-
if (childNode instanceof
|
|
66381
|
+
if (childNode instanceof _MenstrualHistoryNode__WEBPACK_IMPORTED_MODULE_49__/* .MenstrualHistoryNode */ .n) {
|
|
66383
66382
|
expressJson.expressStyle = childNode.expressStyle;
|
|
66384
66383
|
expressJson.menseDays = childNode.menseDays;
|
|
66385
66384
|
expressJson.cycleDays = childNode.cycleDays;
|
|
66386
66385
|
expressJson.menarcheAge = childNode.menarcheAge;
|
|
66387
66386
|
expressJson.menoPauseAge = childNode.menoPauseAge;
|
|
66388
|
-
} else if (childNode instanceof
|
|
66387
|
+
} else if (childNode instanceof _PupilMapNode__WEBPACK_IMPORTED_MODULE_53__/* .PupilMapNode */ .v || childNode instanceof _LightLocationMapNode__WEBPACK_IMPORTED_MODULE_46__/* .LightLocationMapNode */ .D || childNode instanceof _FetalHeartMapNode__WEBPACK_IMPORTED_MODULE_45__/* .FetalHeartMapNode */ .t) {
|
|
66389
66388
|
expressJson.value1 = childNode.value1;
|
|
66390
66389
|
expressJson.value2 = childNode.value2;
|
|
66391
66390
|
expressJson.value3 = childNode.value3;
|
|
66392
66391
|
expressJson.value4 = childNode.value4;
|
|
66393
66392
|
expressJson.value5 = childNode.value5;
|
|
66394
66393
|
expressJson.value6 = childNode.value6;
|
|
66395
|
-
if (childNode instanceof
|
|
66394
|
+
if (childNode instanceof _PupilMapNode__WEBPACK_IMPORTED_MODULE_53__/* .PupilMapNode */ .v) {
|
|
66396
66395
|
expressJson.expressStyle = 'PupilMapNode';
|
|
66397
66396
|
expressJson.value7 = childNode.value7;
|
|
66398
|
-
} else if (childNode instanceof
|
|
66397
|
+
} else if (childNode instanceof _LightLocationMapNode__WEBPACK_IMPORTED_MODULE_46__/* .LightLocationMapNode */ .D) {
|
|
66399
66398
|
expressJson.expressStyle = 'LightLocationMapNode';
|
|
66400
66399
|
expressJson.value7 = childNode.value7;
|
|
66401
66400
|
expressJson.value8 = childNode.value8;
|
|
@@ -66403,11 +66402,12 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66403
66402
|
} else {
|
|
66404
66403
|
expressJson.expressStyle = 'FetalHeartMapNode';
|
|
66405
66404
|
}
|
|
66406
|
-
} else if (childNode instanceof
|
|
66407
|
-
if (childNode instanceof
|
|
66405
|
+
} else if (childNode instanceof _PermanentTeethMapNode__WEBPACK_IMPORTED_MODULE_51__/* .PermanentTeethMapNode */ .f || childNode instanceof _PrimaryTeethMapNode__WEBPACK_IMPORTED_MODULE_52__/* .PrimaryTeethMapNode */ .x) {
|
|
66406
|
+
if (childNode instanceof _PermanentTeethMapNode__WEBPACK_IMPORTED_MODULE_51__/* .PermanentTeethMapNode */ .f) {
|
|
66408
66407
|
expressJson.expressStyle = 'PermanentTeethMapNode';
|
|
66408
|
+
expressJson.remark = childNode.remark;
|
|
66409
66409
|
}
|
|
66410
|
-
if (childNode instanceof
|
|
66410
|
+
if (childNode instanceof _PrimaryTeethMapNode__WEBPACK_IMPORTED_MODULE_52__/* .PrimaryTeethMapNode */ .x) {
|
|
66411
66411
|
expressJson.expressStyle = 'PrimaryTeethMapNode';
|
|
66412
66412
|
}
|
|
66413
66413
|
expressJson.topLeftSelected = childNode.topLeftSelected;
|
|
@@ -66448,7 +66448,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66448
66448
|
String(listItem.value) && value.push(listItem.value);
|
|
66449
66449
|
}
|
|
66450
66450
|
}
|
|
66451
|
-
text = text.substring(0, text.length - 1);
|
|
66451
|
+
text = text.substring(0, text.length - 1).replace('\r', '');
|
|
66452
66452
|
this.value = value.join(',');
|
|
66453
66453
|
}
|
|
66454
66454
|
}
|
|
@@ -66467,7 +66467,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66467
66467
|
while (1) {
|
|
66468
66468
|
switch (_context2.prev = _context2.next) {
|
|
66469
66469
|
case 0:
|
|
66470
|
-
if (!(text === '' && this.childNodes[1] instanceof
|
|
66470
|
+
if (!(text === '' && this.childNodes[1] instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j)) {
|
|
66471
66471
|
_context2.next = 2;
|
|
66472
66472
|
break;
|
|
66473
66473
|
}
|
|
@@ -66484,12 +66484,12 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66484
66484
|
}
|
|
66485
66485
|
oldValue = this._canModifyContent.valueOf();
|
|
66486
66486
|
this._canModifyContent = true;
|
|
66487
|
-
hoEditorFactory =
|
|
66487
|
+
hoEditorFactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_36__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this._hoEditorFactoryID);
|
|
66488
66488
|
startPath = this.StartMarkNode.getNodePath();
|
|
66489
66489
|
endPath = hoEditorFactory.docTree.getNodeLastPath(this.childNodes[this.childNodes.length - 2]);
|
|
66490
|
-
aRange = new
|
|
66491
|
-
if (!(this.childNodes[1] instanceof
|
|
66492
|
-
anodes =
|
|
66490
|
+
aRange = new _DomRange__WEBPACK_IMPORTED_MODULE_39__/* .DomRange */ .a(this._hoEditorFactoryID, startPath, endPath);
|
|
66491
|
+
if (!(this.childNodes[1] instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j) && this.inputFieldType === 0) {
|
|
66492
|
+
anodes = _DomRange__WEBPACK_IMPORTED_MODULE_39__/* .DomRange.getSelectDomNodesForDelete */ .a.getSelectDomNodesForDelete(this.hoEditorFactoryID, startPath, endPath);
|
|
66493
66493
|
for (i = 0; i < anodes.length; i++) {
|
|
66494
66494
|
anode = anodes[i];
|
|
66495
66495
|
if (anode instanceof TextInputFieldNode && anode.parentNode === this && anode.isAllowDelete === false) {
|
|
@@ -66502,9 +66502,9 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66502
66502
|
_context2.next = 22;
|
|
66503
66503
|
break;
|
|
66504
66504
|
}
|
|
66505
|
-
markNode = new
|
|
66505
|
+
markNode = new _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j(this._hoEditorFactoryID, this.rootNodes, this, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntText */ .Jq.ntText, this.labelText, hoEditorFactory.docTree.curStyleIndex, _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNodeType.mtContent */ .q.mtContent);
|
|
66506
66506
|
hoEditorFactory.undoService.begin();
|
|
66507
|
-
hoEditorFactory.undoService.add(new
|
|
66507
|
+
hoEditorFactory.undoService.add(new _editor_undoRedo_NodeInsertUndoUnit__WEBPACK_IMPORTED_MODULE_35__/* .NodeInsertUndoUnit */ .R(this._hoEditorFactoryID, startPath, markNode));
|
|
66508
66508
|
hoEditorFactory.undoService.commit();
|
|
66509
66509
|
if (this._childNodes2.length === 3) {
|
|
66510
66510
|
this._childNodes2.splice(1, 1);
|
|
@@ -66562,7 +66562,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66562
66562
|
value: function node2DrawNodeRange(startIndex, endIndex) {
|
|
66563
66563
|
this.childNodes.length = 0;
|
|
66564
66564
|
this._childNodes2.length = 0;
|
|
66565
|
-
var hoEditorFactory =
|
|
66565
|
+
var hoEditorFactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_36__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this._hoEditorFactoryID);
|
|
66566
66566
|
var curStyleIndex = hoEditorFactory.docTree.curStyleIndex;
|
|
66567
66567
|
var cbStyle = hoEditorFactory.docTree.styles[curStyleIndex].combineStyle;
|
|
66568
66568
|
var dHeight = hoEditorFactory.getFontHeightByFontSize(cbStyle.size);
|
|
@@ -66573,17 +66573,17 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66573
66573
|
// if (this.enableGlobalColor) {
|
|
66574
66574
|
// index = astyle.changeStyleString("fontBackColor", "transparent");
|
|
66575
66575
|
// }
|
|
66576
|
-
this.StartMarkNode = new
|
|
66576
|
+
this.StartMarkNode = new _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j(this._hoEditorFactoryID, this.rootNodes, this, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntMark */ .Jq.ntMark, '|', index, _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNodeType.mtStart */ .q.mtStart);
|
|
66577
66577
|
this.StartMarkNode.isReadOnly = true;
|
|
66578
|
-
this.StartMarkNode.MarkNodeType =
|
|
66579
|
-
this.EndMarkNode = new
|
|
66578
|
+
this.StartMarkNode.MarkNodeType = _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNodeType.mtStart */ .q.mtStart;
|
|
66579
|
+
this.EndMarkNode = new _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j(this._hoEditorFactoryID, this.rootNodes, this, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntMark */ .Jq.ntMark, ']', index, _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNodeType.mtEnd */ .q.mtEnd);
|
|
66580
66580
|
this.EndMarkNode.isReadOnly = true;
|
|
66581
|
-
this.EndMarkNode.MarkNodeType =
|
|
66581
|
+
this.EndMarkNode.MarkNodeType = _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNodeType.mtEnd */ .q.mtEnd;
|
|
66582
66582
|
this.StartMarkNode.pair = this.EndMarkNode;
|
|
66583
66583
|
this.EndMarkNode.pair = this.StartMarkNode;
|
|
66584
66584
|
this._childNodes2.push(this.StartMarkNode);
|
|
66585
66585
|
if (this.labelText.length != 0) {
|
|
66586
|
-
this._childNodes2.push(new
|
|
66586
|
+
this._childNodes2.push(new _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j(this._hoEditorFactoryID, this.rootNodes, this, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntText */ .Jq.ntText, this.labelText, index, _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNodeType.mtContent */ .q.mtContent));
|
|
66587
66587
|
// this._labelNode = new MarkNode(this._rootNodes, this, NodeType.ntText, this.labelText, 0);
|
|
66588
66588
|
// this._childNodes2.push(this._labelNode);
|
|
66589
66589
|
}
|
|
@@ -66594,7 +66594,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66594
66594
|
if (this._childNodes2.length == 3) {
|
|
66595
66595
|
this.childNodes.splice(1, 1);
|
|
66596
66596
|
}
|
|
66597
|
-
this._childNodes.splice(1, 0, new
|
|
66597
|
+
this._childNodes.splice(1, 0, new _TextNode__WEBPACK_IMPORTED_MODULE_57__/* .TextNode */ .R(this._hoEditorFactoryID, this.rootNodes, this, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntText */ .Jq.ntText, this.text, index));
|
|
66598
66598
|
}
|
|
66599
66599
|
}
|
|
66600
66600
|
}, {
|
|
@@ -66627,14 +66627,14 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66627
66627
|
if (startIndex >= this.getLength()) {
|
|
66628
66628
|
return dline;
|
|
66629
66629
|
}
|
|
66630
|
-
var hoEditorFactory =
|
|
66630
|
+
var hoEditorFactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_36__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this._hoEditorFactoryID);
|
|
66631
66631
|
var endnode = hoEditorFactory.docTree.findNodePositionByPath(endPath).node;
|
|
66632
66632
|
var isEnd = false;
|
|
66633
66633
|
for (var index = 0; index < this.childNodes.length; index++) {
|
|
66634
66634
|
var value = this.childNodes[index];
|
|
66635
|
-
if (value instanceof
|
|
66635
|
+
if (value instanceof _ParagraphNode__WEBPACK_IMPORTED_MODULE_50__/* .ParagraphNode */ .C) {
|
|
66636
66636
|
if (aline.paragraphNode !== value) {
|
|
66637
|
-
if (aline instanceof
|
|
66637
|
+
if (aline instanceof _editor_draw_DrawLine__WEBPACK_IMPORTED_MODULE_29__/* .DrawLine */ .a) {
|
|
66638
66638
|
aline.fitLines();
|
|
66639
66639
|
aline.updateLineStyle();
|
|
66640
66640
|
}
|
|
@@ -66647,7 +66647,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66647
66647
|
}
|
|
66648
66648
|
paraNode = value;
|
|
66649
66649
|
aline = paraNode.drawlines[0];
|
|
66650
|
-
} else if (value instanceof
|
|
66650
|
+
} else if (value instanceof _TableNode__WEBPACK_IMPORTED_MODULE_56__/* .TableNode */ .Fh) {
|
|
66651
66651
|
value.placeDNodeAfterDrawLine(paraNode, aline, endPath);
|
|
66652
66652
|
aline = value.drawTable;
|
|
66653
66653
|
} else {
|
|
@@ -66658,14 +66658,14 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66658
66658
|
aline = value.placeDNode2DrawLine(droots, paraNode, aline, start, start + value.getLength() - 1, endPath);
|
|
66659
66659
|
}
|
|
66660
66660
|
var nodePath = hoEditorFactory.docTree.getNodeLastPath(value);
|
|
66661
|
-
var cresult =
|
|
66661
|
+
var cresult = _NodePosition__WEBPACK_IMPORTED_MODULE_40__/* .NodePosition.treePathCompare */ .F.treePathCompare(endPath, nodePath);
|
|
66662
66662
|
if (cresult <= 0) {
|
|
66663
66663
|
break;
|
|
66664
66664
|
}
|
|
66665
66665
|
}
|
|
66666
66666
|
aline.fitLines();
|
|
66667
66667
|
aline.updateLineStyle();
|
|
66668
|
-
if (dline === aline && aline instanceof
|
|
66668
|
+
if (dline === aline && aline instanceof _editor_draw_DrawLine__WEBPACK_IMPORTED_MODULE_29__/* .DrawLine */ .a) {
|
|
66669
66669
|
this._text = this.getFieldText();
|
|
66670
66670
|
var fixWidthPix = hoEditorFactory.unitConvert.mmConversionPx(this.fixedWidth * 10, true);
|
|
66671
66671
|
var restWidth = aline.dWidth - aline.paragraphNode.combineParagraph.leftMarginPixes - aline.paragraphNode.combineParagraph.rightMarginPixes - this.StartMarkNode.drawNodes[0].x;
|
|
@@ -66710,7 +66710,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66710
66710
|
//this.EndMarkNode.node2DrawNode();
|
|
66711
66711
|
aline = this.EndMarkNode.placeDNode2DrawLine(droots, paraNode, aline, start, start + this.EndMarkNode.getLength() - 1, endPath);
|
|
66712
66712
|
}
|
|
66713
|
-
if (this.hideDuringPrint && !this.isEmpty() && (hoEditorFactory.drawTree.paintStatus ==
|
|
66713
|
+
if (this.hideDuringPrint && !this.isEmpty() && (hoEditorFactory.drawTree.paintStatus == _editor_draw_drawTree_DrawTree__WEBPACK_IMPORTED_MODULE_30__/* .PaintState.psPreview */ .Dh.psPreview || hoEditorFactory.drawTree.paintStatus == _editor_draw_drawTree_DrawTree__WEBPACK_IMPORTED_MODULE_30__/* .PaintState.psPrint */ .Dh.psPrint)) {
|
|
66714
66714
|
var hidden = function hidden(childNodes) {
|
|
66715
66715
|
for (var h = 1; h < childNodes.length - 1; h++) {
|
|
66716
66716
|
var child = childNodes[h];
|
|
@@ -66743,15 +66743,15 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66743
66743
|
}, {
|
|
66744
66744
|
key: "getReadyToEdit",
|
|
66745
66745
|
value: function getReadyToEdit(callback) {
|
|
66746
|
-
var hoEditorFactory =
|
|
66747
|
-
if (!this.canModifyContent && hoEditorFactory.drawTree.paintStatus !==
|
|
66746
|
+
var hoEditorFactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_36__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this.hoEditorFactoryID);
|
|
66747
|
+
if (!this.canModifyContent && hoEditorFactory.drawTree.paintStatus !== _editor_draw_drawTree_DrawTree__WEBPACK_IMPORTED_MODULE_30__/* .PaintState.psDesign */ .Dh.psDesign) {
|
|
66748
66748
|
return [false, ''];
|
|
66749
66749
|
}
|
|
66750
66750
|
var label = this.getLabel();
|
|
66751
66751
|
if (label) {
|
|
66752
66752
|
var prev = label.previousLeaf();
|
|
66753
|
-
if (!prev) throw
|
|
66754
|
-
var path =
|
|
66753
|
+
if (!prev) throw _editor_events_Exception__WEBPACK_IMPORTED_MODULE_33__/* .Exception.NodeNotFound */ .P.NodeNotFound();
|
|
66754
|
+
var path = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_36__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this._hoEditorFactoryID).docTree.getNodeLastPath(prev);
|
|
66755
66755
|
if (callback) callback(label);
|
|
66756
66756
|
return [true, path];
|
|
66757
66757
|
}
|
|
@@ -66774,19 +66774,19 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66774
66774
|
value: function getActualWidth() {
|
|
66775
66775
|
var w = 0;
|
|
66776
66776
|
this.childNodes.forEach(function (value) {
|
|
66777
|
-
if (!(value instanceof
|
|
66777
|
+
if (!(value instanceof _ParagraphNode__WEBPACK_IMPORTED_MODULE_50__/* .ParagraphNode */ .C)) w += value.getActualWidth();
|
|
66778
66778
|
});
|
|
66779
66779
|
return w;
|
|
66780
66780
|
}
|
|
66781
66781
|
}, {
|
|
66782
66782
|
key: "delete",
|
|
66783
66783
|
value: function _delete(operType) {
|
|
66784
|
-
var hoEditorFactory =
|
|
66785
|
-
if (hoEditorFactory.drawTree.paintStatus ===
|
|
66784
|
+
var hoEditorFactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_36__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this.hoEditorFactoryID);
|
|
66785
|
+
if (hoEditorFactory.drawTree.paintStatus === _editor_draw_drawTree_DrawTree__WEBPACK_IMPORTED_MODULE_30__/* .PaintState.psDesign */ .Dh.psDesign || this.isAllowDelete) {
|
|
66786
66786
|
return (0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_get_js__WEBPACK_IMPORTED_MODULE_6__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_getPrototypeOf_js__WEBPACK_IMPORTED_MODULE_7__/* ["default"] */ .Z)(TextInputFieldNode.prototype), "delete", this).call(this);
|
|
66787
66787
|
} else {
|
|
66788
66788
|
if (operType !== 'update') {
|
|
66789
|
-
|
|
66789
|
+
ant_design_vue_es_message__WEBPACK_IMPORTED_MODULE_62__/* ["default"].warn */ .Z.warn('文本域已设置为不允许删除。请先右键元素属性设置成允许删除,再进行删除操作。');
|
|
66790
66790
|
} else {
|
|
66791
66791
|
return (0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_get_js__WEBPACK_IMPORTED_MODULE_6__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_getPrototypeOf_js__WEBPACK_IMPORTED_MODULE_7__/* ["default"] */ .Z)(TextInputFieldNode.prototype), "delete", this).call(this);
|
|
66792
66792
|
}
|
|
@@ -66811,7 +66811,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66811
66811
|
return false;
|
|
66812
66812
|
} else {
|
|
66813
66813
|
for (var i = 0; i++; i < this.childNodes.length) {
|
|
66814
|
-
if (this.childNodes[i] instanceof
|
|
66814
|
+
if (this.childNodes[i] instanceof _BaseCombineNode__WEBPACK_IMPORTED_MODULE_41__/* .BaseCombineNode */ .V) {
|
|
66815
66815
|
if (this.childNodes[i].removeChild(node)) return true;
|
|
66816
66816
|
}
|
|
66817
66817
|
}
|
|
@@ -66829,9 +66829,9 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66829
66829
|
if (this.childNodes.length == 2) {
|
|
66830
66830
|
return true;
|
|
66831
66831
|
}
|
|
66832
|
-
if (this.childNodes.length == 3 && this.childNodes[1] instanceof
|
|
66832
|
+
if (this.childNodes.length == 3 && this.childNodes[1] instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j) {
|
|
66833
66833
|
var markNode = this.childNodes[1];
|
|
66834
|
-
if (markNode.MarkNodeType ===
|
|
66834
|
+
if (markNode.MarkNodeType === _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNodeType.mtContent */ .q.mtContent) {
|
|
66835
66835
|
return true;
|
|
66836
66836
|
} else return false;
|
|
66837
66837
|
}
|
|
@@ -66862,7 +66862,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66862
66862
|
var ilen = arr.length;
|
|
66863
66863
|
for (var i = 1; i < ilen; i++) {
|
|
66864
66864
|
textInputFieldNode.insertText(arr[i].text, textInputFieldNode.text.length);
|
|
66865
|
-
|
|
66865
|
+
_HOEditorFactorys__WEBPACK_IMPORTED_MODULE_36__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this._hoEditorFactoryID).docTree.deleteNode(arr[i]);
|
|
66866
66866
|
}
|
|
66867
66867
|
return textInputFieldNode;
|
|
66868
66868
|
}
|
|
@@ -66880,10 +66880,10 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66880
66880
|
if (!range) {
|
|
66881
66881
|
for (var i = 0; i < this.childNodes.length; i++) {
|
|
66882
66882
|
var node = this.childNodes[i];
|
|
66883
|
-
if (!(node instanceof
|
|
66884
|
-
if (node instanceof
|
|
66883
|
+
if (!(node instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j && node.text.substr(0, 1) !== 'C')) {
|
|
66884
|
+
if (node instanceof _TableNode__WEBPACK_IMPORTED_MODULE_56__/* .TableNode */ .Fh || node instanceof TextInputFieldNode) {
|
|
66885
66885
|
childArray.push(node.node2Json(undefined, isCopy, type, clearSign));
|
|
66886
|
-
} else if (node instanceof
|
|
66886
|
+
} else if (node instanceof _SignNode__WEBPACK_IMPORTED_MODULE_54__/* .SignNode */ .N) {
|
|
66887
66887
|
if (clearSign) {
|
|
66888
66888
|
if (node.isTemplate) {
|
|
66889
66889
|
childArray.push(node.node2Json(undefined, isCopy, undefined, clearSign));
|
|
@@ -66892,11 +66892,11 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66892
66892
|
childArray.push(node.node2Json(undefined, isCopy));
|
|
66893
66893
|
}
|
|
66894
66894
|
} else {
|
|
66895
|
-
if (node instanceof
|
|
66895
|
+
if (node instanceof _TextNode__WEBPACK_IMPORTED_MODULE_57__/* .TextNode */ .R) {
|
|
66896
66896
|
if (node.text !== '') {
|
|
66897
66897
|
childArray.push(node.node2Json(undefined, isCopy));
|
|
66898
66898
|
}
|
|
66899
|
-
} else if (node instanceof
|
|
66899
|
+
} else if (node instanceof _DateTimeNode__WEBPACK_IMPORTED_MODULE_44__/* .DateTimeNode */ .Z || node instanceof _QrcodeNode__WEBPACK_IMPORTED_MODULE_58__/* .QrcodeNode */ .d) {
|
|
66900
66900
|
childArray.push(node.node2Json(undefined, isCopy, undefined, clearSign));
|
|
66901
66901
|
} else {
|
|
66902
66902
|
childArray.push(node.node2Json(undefined, isCopy));
|
|
@@ -66949,7 +66949,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
66949
66949
|
canCopy = _node.checkPath(rec.from);
|
|
66950
66950
|
}
|
|
66951
66951
|
if (canCopy) {
|
|
66952
|
-
if (!(_node instanceof
|
|
66952
|
+
if (!(_node instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j && _node.text.substr(0, 1) === 'C')) {
|
|
66953
66953
|
childArray.push(_node.node2Json(rec, isCopy));
|
|
66954
66954
|
}
|
|
66955
66955
|
}
|
|
@@ -67073,7 +67073,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67073
67073
|
}, {
|
|
67074
67074
|
key: "getLeftWidth",
|
|
67075
67075
|
value: function getLeftWidth() {
|
|
67076
|
-
var hoEditorFactory =
|
|
67076
|
+
var hoEditorFactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_36__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this._hoEditorFactoryID);
|
|
67077
67077
|
if (this.alignWithBlocked && this.StartMarkNode && this.StartMarkNode.drawNodes.length > 0) {
|
|
67078
67078
|
var dNode = this.StartMarkNode.drawNodes[0];
|
|
67079
67079
|
var dline = hoEditorFactory.drawTree.getDrawLineByDNode(dNode);
|
|
@@ -67129,7 +67129,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67129
67129
|
}], [{
|
|
67130
67130
|
key: "json2Node",
|
|
67131
67131
|
value: function json2Node(hoEditorFactoryID, json, rootNodes, pNode, isPaste, isClearSign) {
|
|
67132
|
-
var hoEditorFactory =
|
|
67132
|
+
var hoEditorFactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_36__/* .HOEditorFactorys.instance */ .b.instance().getFactory(hoEditorFactoryID);
|
|
67133
67133
|
var eachCount = 0;
|
|
67134
67134
|
var isErrorValid = false;
|
|
67135
67135
|
delete json.nodeType;
|
|
@@ -67158,7 +67158,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67158
67158
|
json.includesKeyword = !json.includesKeyword ? false : json.includesKeyword;
|
|
67159
67159
|
json.valueArea = !json.valueArea ? false : json.valueArea;
|
|
67160
67160
|
json.isElementLink = !json.isElementLink ? false : json.isElementLink;
|
|
67161
|
-
var temp = new TextInputFieldNode(hoEditorFactoryID, rootNodes, pNode ? pNode : null,
|
|
67161
|
+
var temp = new TextInputFieldNode(hoEditorFactoryID, rootNodes, pNode ? pNode : null, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntField */ .Jq.ntField, json);
|
|
67162
67162
|
// this.insertChild
|
|
67163
67163
|
if (json.childNodes) {
|
|
67164
67164
|
var nodes = new Array();
|
|
@@ -67178,10 +67178,10 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67178
67178
|
// console.timeEnd(`----${i}----1-1----${item[i].name}`);
|
|
67179
67179
|
// };
|
|
67180
67180
|
if (node) {
|
|
67181
|
-
if (node instanceof
|
|
67181
|
+
if (node instanceof _TextNode__WEBPACK_IMPORTED_MODULE_57__/* .TextNode */ .R) {
|
|
67182
67182
|
if (temp.innerIdentifier == "name" && node.text.length > (0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_toConsumableArray_js__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z)(node.text).length) {
|
|
67183
67183
|
//特殊处理生僻字
|
|
67184
|
-
var rareCharNode = new
|
|
67184
|
+
var rareCharNode = new _RareCharNode__WEBPACK_IMPORTED_MODULE_59__/* .RareCharNode */ .Q(temp.hoEditorFactoryID, node.rootNodes, node.parentNode, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntRareChar */ .Jq.ntRareChar, node.text, node.styleIndex);
|
|
67185
67185
|
nodes.push(rareCharNode);
|
|
67186
67186
|
} else {
|
|
67187
67187
|
if (node.text !== '' && node.text !== '' && node.text !== '' && node.text !== '' && node.text !== '' && node.text !== '') {
|
|
@@ -67194,7 +67194,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67194
67194
|
}
|
|
67195
67195
|
} else {
|
|
67196
67196
|
if (isClearSign) {
|
|
67197
|
-
if (node instanceof
|
|
67197
|
+
if (node instanceof _SignNode__WEBPACK_IMPORTED_MODULE_54__/* .SignNode */ .N) {
|
|
67198
67198
|
if (node.isTemplate && !(node.number == 0 && node.type == 0 && node.name == '')) {
|
|
67199
67199
|
nodes.push(node);
|
|
67200
67200
|
}
|
|
@@ -67202,7 +67202,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67202
67202
|
nodes.push(node);
|
|
67203
67203
|
}
|
|
67204
67204
|
} else {
|
|
67205
|
-
if (node instanceof
|
|
67205
|
+
if (node instanceof _SignNode__WEBPACK_IMPORTED_MODULE_54__/* .SignNode */ .N) {
|
|
67206
67206
|
if (!(node.number == 0 && node.type == 0 && node.name == '')) {
|
|
67207
67207
|
nodes.push(node);
|
|
67208
67208
|
}
|
|
@@ -67212,10 +67212,10 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67212
67212
|
}
|
|
67213
67213
|
}
|
|
67214
67214
|
}
|
|
67215
|
-
if (node instanceof
|
|
67215
|
+
if (node instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j && node.MarkNodeType === _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNodeType.mtEnd */ .q.mtEnd && node.text.substring(0, 1) === 'C') {
|
|
67216
67216
|
hoEditorFactory.structureConvert._markNodes.push(node);
|
|
67217
67217
|
}
|
|
67218
|
-
if (node instanceof
|
|
67218
|
+
if (node instanceof _SignNode__WEBPACK_IMPORTED_MODULE_54__/* .SignNode */ .N && hoEditorFactory.superiorSigns.length > 0 && hoEditorFactory.superiorSigns.includes(node.customProperty.bce01)) {
|
|
67219
67219
|
hoEditorFactory.structureConvert._superiorSign[0] = node;
|
|
67220
67220
|
}
|
|
67221
67221
|
}
|
|
@@ -67223,10 +67223,10 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67223
67223
|
//单个对象
|
|
67224
67224
|
var _node2 = hoEditorFactory.structureConvert.convertNode(item, rootNodes, temp, undefined, undefined, isClearSign);
|
|
67225
67225
|
if (_node2) {
|
|
67226
|
-
if (_node2 instanceof
|
|
67226
|
+
if (_node2 instanceof _TextNode__WEBPACK_IMPORTED_MODULE_57__/* .TextNode */ .R) {
|
|
67227
67227
|
if (temp.innerIdentifier == "name" && _node2.text.length > (0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_toConsumableArray_js__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z)(_node2.text).length) {
|
|
67228
67228
|
//特殊处理生僻字
|
|
67229
|
-
var _rareCharNode = new
|
|
67229
|
+
var _rareCharNode = new _RareCharNode__WEBPACK_IMPORTED_MODULE_59__/* .RareCharNode */ .Q(temp.hoEditorFactoryID, _node2.rootNodes, _node2.parentNode, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntRareChar */ .Jq.ntRareChar, _node2.text, _node2.styleIndex);
|
|
67230
67230
|
nodes.push(_rareCharNode);
|
|
67231
67231
|
} else {
|
|
67232
67232
|
if (_node2.text !== '' && _node2.text !== '' && _node2.text !== '' && _node2.text !== '' && _node2.text !== '' && _node2.text !== '') {
|
|
@@ -67240,7 +67240,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67240
67240
|
} else {
|
|
67241
67241
|
//nodes.push(node);
|
|
67242
67242
|
if (isClearSign) {
|
|
67243
|
-
if (_node2 instanceof
|
|
67243
|
+
if (_node2 instanceof _SignNode__WEBPACK_IMPORTED_MODULE_54__/* .SignNode */ .N) {
|
|
67244
67244
|
if (_node2.isTemplate && !(_node2.number == 0 && _node2.type == 0 && _node2.name == '')) {
|
|
67245
67245
|
nodes.push(_node2);
|
|
67246
67246
|
}
|
|
@@ -67248,7 +67248,7 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67248
67248
|
nodes.push(_node2);
|
|
67249
67249
|
}
|
|
67250
67250
|
} else {
|
|
67251
|
-
if (_node2 instanceof
|
|
67251
|
+
if (_node2 instanceof _SignNode__WEBPACK_IMPORTED_MODULE_54__/* .SignNode */ .N) {
|
|
67252
67252
|
if (!(_node2.number == 0 && _node2.type == 0 && _node2.name == '')) {
|
|
67253
67253
|
nodes.push(_node2);
|
|
67254
67254
|
}
|
|
@@ -67258,10 +67258,10 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67258
67258
|
}
|
|
67259
67259
|
}
|
|
67260
67260
|
}
|
|
67261
|
-
if (_node2 instanceof
|
|
67261
|
+
if (_node2 instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j && _node2.MarkNodeType === _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNodeType.mtEnd */ .q.mtEnd && _node2.text.substring(0, 1) === 'C') {
|
|
67262
67262
|
hoEditorFactory.structureConvert._markNodes.push(_node2);
|
|
67263
67263
|
}
|
|
67264
|
-
if (_node2 instanceof
|
|
67264
|
+
if (_node2 instanceof _SignNode__WEBPACK_IMPORTED_MODULE_54__/* .SignNode */ .N && hoEditorFactory.superiorSigns.length > 0 && hoEditorFactory.superiorSigns.includes(_node2.customProperty.bce01)) {
|
|
67265
67265
|
hoEditorFactory.structureConvert._superiorSign[0] = _node2;
|
|
67266
67266
|
}
|
|
67267
67267
|
}
|
|
@@ -67279,11 +67279,11 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67279
67279
|
}
|
|
67280
67280
|
// if(json.name === '1-1') console.timeEnd("1-1--0");
|
|
67281
67281
|
if (nodes.length > 0) {
|
|
67282
|
-
if (nodes[0] instanceof
|
|
67282
|
+
if (nodes[0] instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j) {
|
|
67283
67283
|
var _temp$childNodes;
|
|
67284
67284
|
temp.childNodes.length = 0;
|
|
67285
67285
|
(_temp$childNodes = temp.childNodes).splice.apply(_temp$childNodes, [0, 0].concat(nodes));
|
|
67286
|
-
if (temp.childNodes.length === 3 && temp.childNodes[1] instanceof
|
|
67286
|
+
if (temp.childNodes.length === 3 && temp.childNodes[1] instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j) {
|
|
67287
67287
|
temp._childNodes2.splice(1, 1);
|
|
67288
67288
|
temp._childNodes2.splice(1, 0, temp.childNodes[1]);
|
|
67289
67289
|
}
|
|
@@ -67295,20 +67295,20 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67295
67295
|
}
|
|
67296
67296
|
}
|
|
67297
67297
|
}
|
|
67298
|
-
if (hoEditorFactory.drawTree.paintStatus ===
|
|
67299
|
-
|
|
67300
|
-
|
|
67301
|
-
|
|
67302
|
-
|
|
67303
|
-
|
|
67304
|
-
|
|
67305
|
-
|
|
67306
|
-
|
|
67307
|
-
|
|
67308
|
-
|
|
67309
|
-
}
|
|
67298
|
+
//if (hoEditorFactory.drawTree.paintStatus === PaintState.psDesign) {
|
|
67299
|
+
var sChildNode = temp.childNodes[0];
|
|
67300
|
+
var eChildNode = temp.childNodes[temp.childNodes.length - 1];
|
|
67301
|
+
if (!(sChildNode instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j) || sChildNode instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j && sChildNode.MarkNodeType !== _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNodeType.mtStart */ .q.mtStart) {
|
|
67302
|
+
throw new Error('经检测,病历元素“' + temp.name + '”的模板格式有问题,无法正常加载,请联系工程师进行处理。');
|
|
67303
|
+
}
|
|
67304
|
+
if (!(eChildNode instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j) || eChildNode instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j && eChildNode.MarkNodeType !== _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNodeType.mtEnd */ .q.mtEnd) {
|
|
67305
|
+
throw new Error('经检测,病历元素“' + temp.name + '”的模板格式有问题,无法正常加载,请联系工程师进行处理。');
|
|
67306
|
+
}
|
|
67307
|
+
if (temp.childNodes.length > 3 && temp.childNodes[1] instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j) {
|
|
67308
|
+
temp.childNodes.splice(1, 1);
|
|
67310
67309
|
}
|
|
67311
|
-
|
|
67310
|
+
//}
|
|
67311
|
+
if (temp.childNodes[1] instanceof _TableFormula__WEBPACK_IMPORTED_MODULE_55__/* .TableFormula */ .N) {
|
|
67312
67312
|
return temp;
|
|
67313
67313
|
}
|
|
67314
67314
|
if (!isPaste) {
|
|
@@ -67335,10 +67335,10 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67335
67335
|
}
|
|
67336
67336
|
for (var i = 0; i < lineArr.length; i++) {
|
|
67337
67337
|
var lineText = lineArr[i];
|
|
67338
|
-
var textNode = new
|
|
67338
|
+
var textNode = new _TextNode__WEBPACK_IMPORTED_MODULE_57__/* .TextNode */ .R(hoEditorFactoryID, rootNodes, temp, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntText */ .Jq.ntText, lineText, styleIndex);
|
|
67339
67339
|
temp.childNodes.splice(temp.childNodes.length - 1, 0, textNode);
|
|
67340
67340
|
if (i < lineArr.length - 1) {
|
|
67341
|
-
var paraNode = new
|
|
67341
|
+
var paraNode = new _ParagraphNode__WEBPACK_IMPORTED_MODULE_50__/* .ParagraphNode */ .C(hoEditorFactoryID, rootNodes, temp, 0);
|
|
67342
67342
|
paraNode.styleIndex = styleIndex;
|
|
67343
67343
|
temp.childNodes.splice(temp.childNodes.length - 1, 0, paraNode);
|
|
67344
67344
|
}
|
|
@@ -67424,35 +67424,35 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67424
67424
|
if (resultArr[k].text != '') {
|
|
67425
67425
|
var newStyleIndex = styleIndex;
|
|
67426
67426
|
if (resultArr[k].mark == 1) {
|
|
67427
|
-
var textStyle = new
|
|
67427
|
+
var textStyle = new _domNode_TextStyle__WEBPACK_IMPORTED_MODULE_38__/* .TextStyle */ .pn(hoEditorFactoryID);
|
|
67428
67428
|
textStyle.copyProperty(hoEditorFactory.docTree.styles[styleIndex], textStyle);
|
|
67429
67429
|
textStyle.script = 2;
|
|
67430
67430
|
newStyleIndex = hoEditorFactory.docTree.styleCompare(textStyle);
|
|
67431
67431
|
}
|
|
67432
67432
|
if (resultArr[k].mark == 2) {
|
|
67433
|
-
var _textStyle = new
|
|
67433
|
+
var _textStyle = new _domNode_TextStyle__WEBPACK_IMPORTED_MODULE_38__/* .TextStyle */ .pn(hoEditorFactoryID);
|
|
67434
67434
|
_textStyle.copyProperty(hoEditorFactory.docTree.styles[styleIndex], _textStyle);
|
|
67435
67435
|
_textStyle.script = 1;
|
|
67436
67436
|
newStyleIndex = hoEditorFactory.docTree.styleCompare(_textStyle);
|
|
67437
67437
|
}
|
|
67438
|
-
var textNode0 = new
|
|
67438
|
+
var textNode0 = new _TextNode__WEBPACK_IMPORTED_MODULE_57__/* .TextNode */ .R(hoEditorFactoryID, rootNodes, temp, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntText */ .Jq.ntText, resultArr[k].text, newStyleIndex);
|
|
67439
67439
|
temp.childNodes.splice(temp.childNodes.length - 1, 0, textNode0);
|
|
67440
67440
|
}
|
|
67441
67441
|
}
|
|
67442
67442
|
} else {
|
|
67443
67443
|
if (textArr[0] != "") {
|
|
67444
67444
|
if (temp.innerIdentifier == "name" && temp.text.length > (0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_toConsumableArray_js__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z)(temp.text).length) {
|
|
67445
|
-
var rareCharNode = new
|
|
67445
|
+
var rareCharNode = new _RareCharNode__WEBPACK_IMPORTED_MODULE_59__/* .RareCharNode */ .Q(temp.hoEditorFactoryID, rootNodes, temp, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntRareChar */ .Jq.ntRareChar, textArr[0], styleIndex);
|
|
67446
67446
|
temp.childNodes.splice(temp.childNodes.length - 1, 0, rareCharNode);
|
|
67447
67447
|
} else {
|
|
67448
|
-
var textNode1 = new
|
|
67448
|
+
var textNode1 = new _TextNode__WEBPACK_IMPORTED_MODULE_57__/* .TextNode */ .R(hoEditorFactoryID, rootNodes, temp, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntText */ .Jq.ntText, textArr[0], styleIndex);
|
|
67449
67449
|
temp.childNodes.splice(temp.childNodes.length - 1, 0, textNode1);
|
|
67450
67450
|
}
|
|
67451
67451
|
}
|
|
67452
67452
|
}
|
|
67453
67453
|
if (textArr.length > 1) {
|
|
67454
67454
|
for (var _i2 = 1; _i2 < textArr.length; _i2++) {
|
|
67455
|
-
var paragraNode = new
|
|
67455
|
+
var paragraNode = new _ParagraphNode__WEBPACK_IMPORTED_MODULE_50__/* .ParagraphNode */ .C(hoEditorFactoryID, rootNodes, temp, 0);
|
|
67456
67456
|
paragraNode.styleIndex = styleIndex;
|
|
67457
67457
|
temp.childNodes.splice(temp.childNodes.length - 1, 0, paragraNode);
|
|
67458
67458
|
if (textArr[_i2] !== '') {
|
|
@@ -67463,17 +67463,17 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67463
67463
|
if (resultArr1[_k].text != '') {
|
|
67464
67464
|
var _newStyleIndex = styleIndex;
|
|
67465
67465
|
if (resultArr1[_k].mark == 1) {
|
|
67466
|
-
var _textStyle2 = new
|
|
67466
|
+
var _textStyle2 = new _domNode_TextStyle__WEBPACK_IMPORTED_MODULE_38__/* .TextStyle */ .pn(hoEditorFactoryID);
|
|
67467
67467
|
_textStyle2.copyProperty(hoEditorFactory.docTree.styles[styleIndex], _textStyle2);
|
|
67468
67468
|
_textStyle2.script = 2;
|
|
67469
67469
|
_newStyleIndex = hoEditorFactory.docTree.styleCompare(_textStyle2);
|
|
67470
67470
|
}
|
|
67471
|
-
var _textNode = new
|
|
67471
|
+
var _textNode = new _TextNode__WEBPACK_IMPORTED_MODULE_57__/* .TextNode */ .R(hoEditorFactoryID, rootNodes, temp, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntText */ .Jq.ntText, resultArr1[_k].text, _newStyleIndex);
|
|
67472
67472
|
temp.childNodes.splice(temp.childNodes.length - 1, 0, _textNode);
|
|
67473
67473
|
}
|
|
67474
67474
|
}
|
|
67475
67475
|
} else {
|
|
67476
|
-
var _textNode2 = new
|
|
67476
|
+
var _textNode2 = new _TextNode__WEBPACK_IMPORTED_MODULE_57__/* .TextNode */ .R(hoEditorFactoryID, rootNodes, temp, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntText */ .Jq.ntText, textArr[_i2], styleIndex);
|
|
67477
67477
|
temp.childNodes.splice(temp.childNodes.length - 1, 0, _textNode2);
|
|
67478
67478
|
}
|
|
67479
67479
|
}
|
|
@@ -67490,25 +67490,25 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67490
67490
|
var eIndex = expressArr[_i3].eIndex;
|
|
67491
67491
|
var expressJson = temp.text.substring(sIndex + 16, eIndex);
|
|
67492
67492
|
var expressObj = JSON.parse(expressJson);
|
|
67493
|
-
var expressStyle =
|
|
67493
|
+
var expressStyle = _MenstrualHistoryNode__WEBPACK_IMPORTED_MODULE_49__/* .ExpressStyle */ .e[expressObj.expressStyle];
|
|
67494
67494
|
if (!expressStyle) {
|
|
67495
67495
|
expressStyle = expressObj.expressStyle;
|
|
67496
67496
|
}
|
|
67497
67497
|
var medicalExpressNode = void 0;
|
|
67498
67498
|
if (expressStyle.includes('style')) {
|
|
67499
67499
|
//经期史
|
|
67500
|
-
medicalExpressNode = new
|
|
67500
|
+
medicalExpressNode = new _MenstrualHistoryNode__WEBPACK_IMPORTED_MODULE_49__/* .MenstrualHistoryNode */ .n(hoEditorFactoryID, rootNodes, temp, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntMedicalExpression */ .Jq.ntMedicalExpression, expressStyle, expressObj.menseDays, expressObj.cycleDays, expressObj.menarcheAge, expressObj.menoPauseAge);
|
|
67501
67501
|
} else {
|
|
67502
67502
|
if (expressStyle === 'PupilMapNode') {
|
|
67503
|
-
medicalExpressNode = new
|
|
67503
|
+
medicalExpressNode = new _PupilMapNode__WEBPACK_IMPORTED_MODULE_53__/* .PupilMapNode */ .v(hoEditorFactoryID, rootNodes, temp, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntMedicalExpression */ .Jq.ntMedicalExpression, expressObj.value1, expressObj.value2, expressObj.value3, expressObj.value4, expressObj.value5, expressObj.value6, expressObj.value7);
|
|
67504
67504
|
} else if (expressStyle === 'LightLocationMapNode') {
|
|
67505
|
-
medicalExpressNode = new
|
|
67505
|
+
medicalExpressNode = new _LightLocationMapNode__WEBPACK_IMPORTED_MODULE_46__/* .LightLocationMapNode */ .D(hoEditorFactoryID, rootNodes, temp, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntMedicalExpression */ .Jq.ntMedicalExpression, expressObj.value1, expressObj.value2, expressObj.value3, expressObj.value4, expressObj.value5, expressObj.value6, expressObj.value7, expressObj.value8, expressObj.value9);
|
|
67506
67506
|
} else if (expressStyle === 'FetalHeartMapNode') {
|
|
67507
|
-
medicalExpressNode = new
|
|
67507
|
+
medicalExpressNode = new _FetalHeartMapNode__WEBPACK_IMPORTED_MODULE_45__/* .FetalHeartMapNode */ .t(hoEditorFactoryID, rootNodes, temp, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntMedicalExpression */ .Jq.ntMedicalExpression, expressObj.value1, expressObj.value2, expressObj.value3, expressObj.value4, expressObj.value5, expressObj.value6);
|
|
67508
67508
|
} else if (expressStyle === 'PermanentTeethMapNode') {
|
|
67509
|
-
medicalExpressNode = new
|
|
67509
|
+
medicalExpressNode = new _PermanentTeethMapNode__WEBPACK_IMPORTED_MODULE_51__/* .PermanentTeethMapNode */ .f(hoEditorFactoryID, rootNodes, temp, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntMedicalExpression */ .Jq.ntMedicalExpression, expressObj.topLeftSelected, expressObj.topRightSelected, expressObj.bottomLeftSelected, expressObj.bottomRightSelected, expressObj.remark);
|
|
67510
67510
|
} else {
|
|
67511
|
-
medicalExpressNode = new
|
|
67511
|
+
medicalExpressNode = new _PrimaryTeethMapNode__WEBPACK_IMPORTED_MODULE_52__/* .PrimaryTeethMapNode */ .x(hoEditorFactoryID, rootNodes, temp, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntMedicalExpression */ .Jq.ntMedicalExpression, expressObj.topLeftSelected, expressObj.topRightSelected, expressObj.bottomLeftSelected, expressObj.bottomRightSelected);
|
|
67512
67512
|
}
|
|
67513
67513
|
}
|
|
67514
67514
|
temp.childNodes.splice(temp.childNodes.length - 1, 0, medicalExpressNode);
|
|
@@ -67533,9 +67533,9 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67533
67533
|
}
|
|
67534
67534
|
} else {
|
|
67535
67535
|
temp._childNodes2.splice(1, temp._childNodes2.length - 2);
|
|
67536
|
-
var markNode = new
|
|
67536
|
+
var markNode = new _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNode */ .j(hoEditorFactoryID, rootNodes, temp, _BaseNode__WEBPACK_IMPORTED_MODULE_42__/* .NodeType.ntText */ .Jq.ntText, temp.labelText,
|
|
67537
67537
|
//hoEditorFactory.docTree.curStyleIndex,
|
|
67538
|
-
styleIndex,
|
|
67538
|
+
styleIndex, _MarkNode__WEBPACK_IMPORTED_MODULE_47__/* .MarkNodeType.mtContent */ .q.mtContent);
|
|
67539
67539
|
temp._childNodes.splice(1, 0, markNode);
|
|
67540
67540
|
temp._childNodes2.splice(1, 0, markNode);
|
|
67541
67541
|
}
|
|
@@ -67558,18 +67558,18 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67558
67558
|
}, {
|
|
67559
67559
|
key: "textInpubNodeRedraw",
|
|
67560
67560
|
value: function textInpubNodeRedraw(hoEditorFactoryID, node) {
|
|
67561
|
-
var hoEditorFactory =
|
|
67561
|
+
var hoEditorFactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_36__/* .HOEditorFactorys.instance */ .b.instance().getFactory(hoEditorFactoryID);
|
|
67562
67562
|
var startPath = node.StartMarkNode.getNodePath();
|
|
67563
67563
|
var paragraphNode = hoEditorFactory.docTree.getNodeParaNode(node.EndMarkNode);
|
|
67564
67564
|
var endPath = hoEditorFactory.docTree.getNodeLastPath(paragraphNode);
|
|
67565
|
-
var changeEvent = new
|
|
67565
|
+
var changeEvent = new _editor_events_NodeChangeEvent__WEBPACK_IMPORTED_MODULE_34__/* .NodeChangeEvent */ .G(hoEditorFactoryID, _DocTree__WEBPACK_IMPORTED_MODULE_37__/* .DocAction.daModifyStyle */ .gk.daModifyStyle, startPath, endPath);
|
|
67566
67566
|
changeEvent.oldEndPath = endPath;
|
|
67567
|
-
changeEvent.oldDrawLines = new
|
|
67567
|
+
changeEvent.oldDrawLines = new _editor_draw_SelectRange__WEBPACK_IMPORTED_MODULE_31__/* .SelectRange */ .E(hoEditorFactoryID).getRangeDrawLines(startPath, endPath, true);
|
|
67568
67568
|
hoEditorFactory.docTree.change(changeEvent);
|
|
67569
67569
|
}
|
|
67570
67570
|
}]);
|
|
67571
67571
|
return TextInputFieldNode;
|
|
67572
|
-
}(
|
|
67572
|
+
}(_BaseCombineNode__WEBPACK_IMPORTED_MODULE_41__/* .BaseCombineNode */ .V);
|
|
67573
67573
|
|
|
67574
67574
|
/***/ }),
|
|
67575
67575
|
|
|
@@ -74853,7 +74853,7 @@ var DrawPageCell = /*#__PURE__*/function (_DrawArea) {
|
|
|
74853
74853
|
// this._crossShape.graphics.clear();
|
|
74854
74854
|
// this._crossShape.x = 0;
|
|
74855
74855
|
// this._crossShape.y = 0;
|
|
74856
|
-
this._backImg.graphics.setStrokeStyle(1);
|
|
74856
|
+
this._backImg.graphics.clear().setStrokeStyle(1);
|
|
74857
74857
|
this._backImg.graphics.beginStroke("#000000");
|
|
74858
74858
|
/*表格边框与边编码,角的编码是0、1、2、3 边的编码是ABCD
|
|
74859
74859
|
* _____A______*
|
|
@@ -74913,7 +74913,12 @@ var DrawPageCell = /*#__PURE__*/function (_DrawArea) {
|
|
|
74913
74913
|
this._backImg.graphics.moveTo(0, this._dHeight);
|
|
74914
74914
|
this._backImg.graphics.lineTo(this._dWidth, this._dHeight / 2);
|
|
74915
74915
|
break;
|
|
74916
|
+
case TableProperty/* ObliqueSplitLine.TwoDiagonal */.lH.TwoDiagonal:
|
|
74917
|
+
this._backImg.graphics.moveTo(0, 0).lineTo(this.dWidth, this.dHeight);
|
|
74918
|
+
this._backImg.graphics.moveTo(0, this.dHeight).lineTo(this.dWidth, 0);
|
|
74919
|
+
break;
|
|
74916
74920
|
}
|
|
74921
|
+
this._backImg.graphics.endStroke();
|
|
74917
74922
|
}
|
|
74918
74923
|
// if (this._crossShape && !this.contains(this._crossShape)) {
|
|
74919
74924
|
// this.addChildAt(this._crossShape, 1);
|
|
@@ -77901,7 +77906,11 @@ var DrawSignNode = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
77901
77906
|
_this._drawTitle = new createjs.Text(_this.title + _this._connectChar, _this._textStyle, '#000000');
|
|
77902
77907
|
}
|
|
77903
77908
|
if (_this._signTime != "") {
|
|
77904
|
-
|
|
77909
|
+
if (_this.attribute === 4) {
|
|
77910
|
+
_this._drawDate = new createjs.Text(_this.signTime, _this._textStyle, '#000000');
|
|
77911
|
+
} else {
|
|
77912
|
+
_this._drawDate = new createjs.Text(_this.signTime.substring(0, 16), _this._textStyle, '#000000');
|
|
77913
|
+
}
|
|
77905
77914
|
}
|
|
77906
77915
|
//this._textStyle = cbStyle.;
|
|
77907
77916
|
var hoeditfactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_10__/* .HOEditorFactorys.instance */ .b.instance().getFactory(hoeditfactoryID);
|
|
@@ -78494,22 +78503,20 @@ var DrawSignNode = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
78494
78503
|
}
|
|
78495
78504
|
hoEditorFactory.loadImageCount--;
|
|
78496
78505
|
};
|
|
78497
|
-
|
|
78498
|
-
|
|
78499
|
-
|
|
78500
|
-
|
|
78501
|
-
|
|
78502
|
-
|
|
78503
|
-
|
|
78504
|
-
|
|
78505
|
-
|
|
78506
|
-
|
|
78507
|
-
|
|
78508
|
-
}
|
|
78506
|
+
if (_this3.imgSrc.includes("data:image/") || _this3.imgSrc.includes(".png")) {
|
|
78507
|
+
handleOrientation();
|
|
78508
|
+
} else {
|
|
78509
|
+
if (!_this3._exif) {
|
|
78510
|
+
_this3._exif = __webpack_require__(29794);
|
|
78511
|
+
}
|
|
78512
|
+
if (_this3._exif) {
|
|
78513
|
+
_this3._exif.getData(image, function (exifdata) {
|
|
78514
|
+
image.exifdata = exifdata;
|
|
78515
|
+
handleOrientation();
|
|
78516
|
+
});
|
|
78517
|
+
}
|
|
78509
78518
|
}
|
|
78510
|
-
// }
|
|
78511
78519
|
};
|
|
78512
|
-
|
|
78513
78520
|
image.onerror = function () {
|
|
78514
78521
|
return hoEditorFactory.loadImageCount--;
|
|
78515
78522
|
};
|
|
@@ -90979,20 +90986,26 @@ var TableInsertUndoUnit = /*#__PURE__*/function (_NodeInsertUndoUnit) {
|
|
|
90979
90986
|
key: "undo",
|
|
90980
90987
|
value: function undo() {
|
|
90981
90988
|
var hoEditorFactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_10__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this._hoEditorFactoryID);
|
|
90989
|
+
if (this.prevPara !== null) {
|
|
90990
|
+
var ppParaNode = this.prevPara.previousLeaf();
|
|
90991
|
+
if (ppParaNode) {
|
|
90992
|
+
this.strBeforePath = hoEditorFactory.docTree.getNodeLastPath(ppParaNode);
|
|
90993
|
+
}
|
|
90994
|
+
}
|
|
90982
90995
|
var changeEvent = new _editor_events_NodeChangeEvent__WEBPACK_IMPORTED_MODULE_8__/* .NodeChangeEvent */ .G(this._hoEditorFactoryID, _editor_dom_DocTree__WEBPACK_IMPORTED_MODULE_4__/* .DocAction.daUndoInsert */ .gk.daUndoInsert, this.strBeforePath, "");
|
|
90983
90996
|
changeEvent.oldEndPath = this.strAfterPath;
|
|
90984
90997
|
changeEvent.oldDrawTreeLines = new _editor_draw_SelectRange__WEBPACK_IMPORTED_MODULE_7__/* .SelectRange */ .E(this._hoEditorFactoryID).getRangeDrawTreeLines(this.strBeforePath, this.strAfterPath);
|
|
90985
90998
|
changeEvent.afterChangePath = this.strBeforePath;
|
|
90986
90999
|
hoEditorFactory.docTree.deleteNode(this.afterPara);
|
|
90987
91000
|
hoEditorFactory.docTree.deleteNode(this.node);
|
|
90988
|
-
//hoEditorFactory.docTree.curDomRange.setSamePath(
|
|
90989
|
-
// changeEvent.afterChangePath
|
|
90990
|
-
// );
|
|
90991
91001
|
if (this.prevPara) {
|
|
90992
91002
|
hoEditorFactory.docTree.deleteNode(this.prevPara);
|
|
90993
91003
|
}
|
|
91004
|
+
changeEvent.repaintImmediate = true;
|
|
90994
91005
|
hoEditorFactory.docTree.change(changeEvent);
|
|
90995
|
-
|
|
91006
|
+
while (!this._undo.atBottom()) {
|
|
91007
|
+
this._undo.undo();
|
|
91008
|
+
}
|
|
90996
91009
|
var cgEvent = new _editor_events_SelectionChangeEvent__WEBPACK_IMPORTED_MODULE_9__/* .SelectionChangeEvent */ .r(hoEditorFactory.docTree.curDomRange, new _editor_dom_DomRange__WEBPACK_IMPORTED_MODULE_5__/* .DomRange */ .a(this._hoEditorFactoryID, this.strBeforePath, this.strBeforePath));
|
|
90997
91010
|
hoEditorFactory.docTree.selectChange(cgEvent);
|
|
90998
91011
|
hoEditorFactory.docTree.curDomRange.setSamePath(this.strBeforePath);
|
|
@@ -91012,6 +91025,9 @@ var TableInsertUndoUnit = /*#__PURE__*/function (_NodeInsertUndoUnit) {
|
|
|
91012
91025
|
var paraNode;
|
|
91013
91026
|
if (np.node instanceof _editor_dom_treeNode_ParagraphNode__WEBPACK_IMPORTED_MODULE_6__/* .ParagraphNode */ .C) {
|
|
91014
91027
|
paraNode = np.node;
|
|
91028
|
+
if (path !== paraNode.rootPath + "/0") {
|
|
91029
|
+
this.prevPara = paraNode;
|
|
91030
|
+
}
|
|
91015
91031
|
} else {
|
|
91016
91032
|
paraNode = new _editor_dom_treeNode_ParagraphNode__WEBPACK_IMPORTED_MODULE_6__/* .ParagraphNode */ .C(this._hoEditorFactoryID, np.roots, this._pnode, _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_10__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this._hoEditorFactoryID).docTree.curParaNo);
|
|
91017
91033
|
// this._undo.begin();
|
|
@@ -199551,19 +199567,19 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
|
199551
199567
|
|
|
199552
199568
|
var map = {
|
|
199553
199569
|
"./ControlModal.vue": 77004,
|
|
199554
|
-
"./barCode/BarCodes.vue":
|
|
199570
|
+
"./barCode/BarCodes.vue": 75336,
|
|
199555
199571
|
"./colorPicker/HoColorPicker.vue": 91351,
|
|
199556
199572
|
"./colorPicker/HoColorPickers.vue": 84214,
|
|
199557
199573
|
"./commentDialog/CommentDialog.vue": 95513,
|
|
199558
199574
|
"./customAttributes/CustomAttributes.vue": 78869,
|
|
199559
199575
|
"./dataSource/DataSource.vue": 9238,
|
|
199560
|
-
"./dateDialog/DateDialog.vue":
|
|
199576
|
+
"./dateDialog/DateDialog.vue": 49145,
|
|
199561
199577
|
"./delimiter/Delimiter.vue": 31861,
|
|
199562
199578
|
"./expressionForm/ExpressionForm.vue": 44603,
|
|
199563
199579
|
"./findReplace/FindReplace.vue": 25918,
|
|
199564
199580
|
"./gestation/Gestation.vue": 6251,
|
|
199565
199581
|
"./hoprint/HoPrint.vue": 62321,
|
|
199566
|
-
"./listsource/ListSource.vue":
|
|
199582
|
+
"./listsource/ListSource.vue": 50921,
|
|
199567
199583
|
"./localHistory/LocalHistory.vue": 89206,
|
|
199568
199584
|
"./pageInfoes/PageInfoes.vue": 17481,
|
|
199569
199585
|
"./paragraph/ParagraphDialog.vue": 54949,
|
|
@@ -199578,14 +199594,14 @@ var map = {
|
|
|
199578
199594
|
"./selectDialog/SelectDialog.vue": 59075,
|
|
199579
199595
|
"./sign/Sign.vue": 28715,
|
|
199580
199596
|
"./table/TableCellPoper.vue": 61917,
|
|
199581
|
-
"./table/TableCellProperty.vue":
|
|
199597
|
+
"./table/TableCellProperty.vue": 47158,
|
|
199582
199598
|
"./table/TableColProperty.vue": 2116,
|
|
199583
199599
|
"./table/TableForm.vue": 19064,
|
|
199584
199600
|
"./table/TableFormTree.vue": 39703,
|
|
199585
199601
|
"./table/TableFormula.vue": 66591,
|
|
199586
199602
|
"./table/TableProperty.vue": 47130,
|
|
199587
199603
|
"./table/TableRowProperty.vue": 56819,
|
|
199588
|
-
"./textDialog/TextDialog.vue":
|
|
199604
|
+
"./textDialog/TextDialog.vue": 26401,
|
|
199589
199605
|
"./textDialog/TextToLabelDialog.vue": 35791,
|
|
199590
199606
|
"./textDialog/VerifyTip.vue": 63210,
|
|
199591
199607
|
"./upload/CanvasImageDialog.vue": 94116,
|
|
@@ -238940,7 +238956,7 @@ var ParagraphNode = __webpack_require__(67945);
|
|
|
238940
238956
|
// EXTERNAL MODULE: ./src/editor/dom/treeNode/MarkNode.ts
|
|
238941
238957
|
var MarkNode = __webpack_require__(57727);
|
|
238942
238958
|
;// CONCATENATED MODULE: ./src/components/version.ts
|
|
238943
|
-
/* harmony default export */ var version = ('3.0.
|
|
238959
|
+
/* harmony default export */ var version = ('3.0.85');
|
|
238944
238960
|
// EXTERNAL MODULE: ./src/components/controls/poperTipText/PoperTipText.vue + 5 modules
|
|
238945
238961
|
var PoperTipText = __webpack_require__(36081);
|
|
238946
238962
|
;// CONCATENATED MODULE: ./src/components/controls/poperTipText/index.ts
|
|
@@ -247733,14 +247749,16 @@ var VueController = /*#__PURE__*/function () {
|
|
|
247733
247749
|
*/
|
|
247734
247750
|
}, {
|
|
247735
247751
|
key: "insertBarcode",
|
|
247736
|
-
value: function insertBarcode(operType, id, textContent, isDisplayText, imagePath, width, height,
|
|
247752
|
+
value: function insertBarcode(operType, id, textContent, isDisplayText, imagePath, width, height,
|
|
247753
|
+
//bandDataSource: string,
|
|
247754
|
+
name, innerIdentifier) {
|
|
247737
247755
|
var hoEditorFactory = HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID);
|
|
247738
247756
|
var _curDomRange = hoEditorFactory.docTree.curDomRange; //获取当前选中区域
|
|
247739
247757
|
var startPath = _curDomRange.normalize().startPath;
|
|
247740
247758
|
var endPath = _curDomRange.normalize().endPath;
|
|
247741
247759
|
var changingEvent = new NodeChangingEvent/* NodeChangingEvent */.Q(DocTree/* DocAction.daInsert */.gk.daInsert, startPath, endPath, NodeChangingEvent/* OperType.insertBarcode */.y.insertBarcode);
|
|
247742
247760
|
if (hoEditorFactory.docTree.changing(changingEvent)) {
|
|
247743
|
-
hoEditorFactory.docController.insertBarcode('add', _curDomRange, id, textContent, isDisplayText, imagePath, width, height,
|
|
247761
|
+
hoEditorFactory.docController.insertBarcode('add', _curDomRange, id, textContent, isDisplayText, imagePath, width, height, name, innerIdentifier);
|
|
247744
247762
|
}
|
|
247745
247763
|
}
|
|
247746
247764
|
/**
|
|
@@ -247754,14 +247772,14 @@ var VueController = /*#__PURE__*/function () {
|
|
|
247754
247772
|
*/
|
|
247755
247773
|
}, {
|
|
247756
247774
|
key: "updateBarcode",
|
|
247757
|
-
value: function updateBarcode(id, textContent, isDisplayText, imagePath, width, height,
|
|
247775
|
+
value: function updateBarcode(id, textContent, isDisplayText, imagePath, width, height, name, innerIdentifier) {
|
|
247758
247776
|
var hoEditorFactory = HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID);
|
|
247759
247777
|
var _curDomRange = hoEditorFactory.docTree.curDomRange; //获取当前选中区域
|
|
247760
247778
|
var startPath = _curDomRange.normalize().startPath;
|
|
247761
247779
|
var endPath = _curDomRange.normalize().endPath;
|
|
247762
247780
|
var changingEvent = new NodeChangingEvent/* NodeChangingEvent */.Q(DocTree/* DocAction.daInsert */.gk.daInsert, startPath, endPath, NodeChangingEvent/* OperType.updateBarcode */.y.updateBarcode);
|
|
247763
247781
|
if (hoEditorFactory.docTree.changing(changingEvent)) {
|
|
247764
|
-
HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID).docController.insertBarcode('update', _curDomRange, id, textContent, isDisplayText, imagePath, width, height,
|
|
247782
|
+
HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID).docController.insertBarcode('update', _curDomRange, id, textContent, isDisplayText, imagePath, width, height, name, innerIdentifier);
|
|
247765
247783
|
}
|
|
247766
247784
|
}
|
|
247767
247785
|
/**
|
|
@@ -255324,7 +255342,7 @@ var ElementController = /*#__PURE__*/function () {
|
|
|
255324
255342
|
/*
|
|
255325
255343
|
* @Author: your name
|
|
255326
255344
|
* @Date: 2021-07-31 10:10:30
|
|
255327
|
-
* @LastEditTime: 2023-
|
|
255345
|
+
* @LastEditTime: 2023-07-13 10:04:37
|
|
255328
255346
|
* @LastEditors: liyanan 2441631434@qq.com
|
|
255329
255347
|
* @Description: In User Settings Edit
|
|
255330
255348
|
* @FilePath: \hoeditor-web\src\editor\externalCall\NodeController.ts
|
|
@@ -255637,9 +255655,9 @@ var NodeController = /*#__PURE__*/function () {
|
|
|
255637
255655
|
*/
|
|
255638
255656
|
}, {
|
|
255639
255657
|
key: "insertBarcode",
|
|
255640
|
-
value: function insertBarcode(id, textContent, isDisplayText, imagePath, width, height,
|
|
255658
|
+
value: function insertBarcode(id, textContent, isDisplayText, imagePath, width, height, name, innerIdentifier) {
|
|
255641
255659
|
var hoEditorFactory = HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID);
|
|
255642
|
-
hoEditorFactory.vueController.insertBarcode('add', id, textContent, isDisplayText, imagePath, width, height,
|
|
255660
|
+
hoEditorFactory.vueController.insertBarcode('add', id, textContent, isDisplayText, imagePath, width, height, name, innerIdentifier);
|
|
255643
255661
|
}
|
|
255644
255662
|
/**
|
|
255645
255663
|
* 修改条形码
|
|
@@ -255652,9 +255670,9 @@ var NodeController = /*#__PURE__*/function () {
|
|
|
255652
255670
|
*/
|
|
255653
255671
|
}, {
|
|
255654
255672
|
key: "updateBarcode",
|
|
255655
|
-
value: function updateBarcode(id, textContent, isDisplayText, imagePath, width, height,
|
|
255673
|
+
value: function updateBarcode(id, textContent, isDisplayText, imagePath, width, height, name, innerIdentifier) {
|
|
255656
255674
|
var hoEditorFactory = HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID);
|
|
255657
|
-
hoEditorFactory.vueController.updateBarcode(id, textContent, isDisplayText, imagePath, width, height,
|
|
255675
|
+
hoEditorFactory.vueController.updateBarcode(id, textContent, isDisplayText, imagePath, width, height, name, innerIdentifier);
|
|
255658
255676
|
}
|
|
255659
255677
|
/**
|
|
255660
255678
|
* 插入二维码
|