hoeditor-web 3.1.122 → 3.1.123
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 -18016
- package/lib/hoeditor.umd.js +5 -6
- package/lib/hoeditor.umd.min.js +2 -2
- package/package.json +1 -1
package/lib/hoeditor.umd.js
CHANGED
|
@@ -67046,18 +67046,17 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
67046
67046
|
}, {
|
|
67047
67047
|
key: "setValuesObject",
|
|
67048
67048
|
value: function setValuesObject(valuesObject) {
|
|
67049
|
-
// const valuesObj = eval("(" + valuesObject + ")");
|
|
67050
|
-
//console.time(`${valuesObject.name}--setValuesObject`)
|
|
67051
67049
|
var valuesObj = valuesObject;
|
|
67052
67050
|
var assignvalue = function assignvalue(target, source) {
|
|
67053
67051
|
Object.keys(source).forEach(function (value) {
|
|
67054
67052
|
if (value != "childNodes" && value != "bandDataSource") {
|
|
67055
|
-
if (
|
|
67053
|
+
if (value == 'customProperty') {
|
|
67054
|
+
target[value] = source[value];
|
|
67055
|
+
} else if ((0,esm_typeof/* default */.Z)(target[value]) == 'object') {
|
|
67056
67056
|
if (Object.prototype.toString.call(source[value]) === '[object Object]') {
|
|
67057
67057
|
assignvalue(target[value], source[value]);
|
|
67058
67058
|
} else {
|
|
67059
|
-
if (source[value] !== '' && source[value] !== null
|
|
67060
|
-
// assignvalue(target[value], eval('(' + + ')'));
|
|
67059
|
+
if (source[value] !== '' && source[value] !== null) {
|
|
67061
67060
|
assignvalue(target[value], JSON.parse(source[value]));
|
|
67062
67061
|
}
|
|
67063
67062
|
}
|
|
@@ -210238,7 +210237,7 @@ var TextNode = __webpack_require__(27198);
|
|
|
210238
210237
|
// EXTERNAL MODULE: ./src/editor/dom/treeNode/ParagraphNode.ts
|
|
210239
210238
|
var ParagraphNode = __webpack_require__(67945);
|
|
210240
210239
|
;// CONCATENATED MODULE: ./src/components/version.ts
|
|
210241
|
-
/* harmony default export */ var version = ('3.1.
|
|
210240
|
+
/* harmony default export */ var version = ('3.1.123');
|
|
210242
210241
|
// EXTERNAL MODULE: ./src/components/controls/poperTipText/PoperTipText.vue + 5 modules
|
|
210243
210242
|
var PoperTipText = __webpack_require__(50987);
|
|
210244
210243
|
;// CONCATENATED MODULE: ./src/components/controls/poperTipText/index.ts
|