domql 1.6.58 → 1.6.59
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/dist/cjs/element/iterate.js +2 -1
- package/dist/esm/index.js +2 -1
- package/dist/iife/index.js +2 -1
- package/package.json +1 -1
- package/src/element/iterate.js +0 -1
|
@@ -54,8 +54,9 @@ const throughUpdatedExec = (element, options = { excludes: import_utils2.METHODS
|
|
|
54
54
|
(0, import_utils2.overwrite)(prop, { text: newExec }, options);
|
|
55
55
|
} else if ((0, import_utils2.checkIfKeyIsComponent)(param)) {
|
|
56
56
|
const { extend, ...newElem } = (0, import_utils2.extendizeByKey)(newExec, element, param);
|
|
57
|
-
console.log(newElem);
|
|
58
57
|
(0, import_utils2.overwrite)(prop, newElem, options);
|
|
58
|
+
} else {
|
|
59
|
+
(0, import_utils2.overwrite)(prop, newExec, options);
|
|
59
60
|
}
|
|
60
61
|
} else if (!execReturnsString && newExec !== prop) {
|
|
61
62
|
ref.__cached[param] = changes[param] = prop;
|
package/dist/esm/index.js
CHANGED
|
@@ -5329,8 +5329,9 @@ var throughUpdatedExec = (element, options = { excludes: METHODS_EXL }) => {
|
|
|
5329
5329
|
overwrite(prop, { text: newExec }, options);
|
|
5330
5330
|
} else if (checkIfKeyIsComponent(param)) {
|
|
5331
5331
|
const { extend, ...newElem } = extendizeByKey(newExec, element, param);
|
|
5332
|
-
console.log(newElem);
|
|
5333
5332
|
overwrite(prop, newElem, options);
|
|
5333
|
+
} else {
|
|
5334
|
+
overwrite(prop, newExec, options);
|
|
5334
5335
|
}
|
|
5335
5336
|
} else if (!execReturnsString && newExec !== prop) {
|
|
5336
5337
|
ref.__cached[param] = changes[param] = prop;
|
package/dist/iife/index.js
CHANGED
|
@@ -5331,8 +5331,9 @@ ${element}` : ""
|
|
|
5331
5331
|
overwrite(prop, { text: newExec }, options);
|
|
5332
5332
|
} else if (checkIfKeyIsComponent(param)) {
|
|
5333
5333
|
const { extend, ...newElem } = extendizeByKey(newExec, element, param);
|
|
5334
|
-
console.log(newElem);
|
|
5335
5334
|
overwrite(prop, newElem, options);
|
|
5335
|
+
} else {
|
|
5336
|
+
overwrite(prop, newExec, options);
|
|
5336
5337
|
}
|
|
5337
5338
|
} else if (!execReturnsString && newExec !== prop) {
|
|
5338
5339
|
ref.__cached[param] = changes[param] = prop;
|
package/package.json
CHANGED
package/src/element/iterate.js
CHANGED
|
@@ -34,7 +34,6 @@ export const throughUpdatedExec = (element, options = { excludes: METHODS_EXL })
|
|
|
34
34
|
overwrite(prop, { text: newExec }, options)
|
|
35
35
|
} else if (checkIfKeyIsComponent(param)) {
|
|
36
36
|
const { extend, ...newElem } = extendizeByKey(newExec, element, param)
|
|
37
|
-
console.log(newElem)
|
|
38
37
|
overwrite(prop, newElem, options)
|
|
39
38
|
} else {
|
|
40
39
|
overwrite(prop, newExec, options)
|