@domql/element 2.5.32 → 2.5.33
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/set.js +0 -1
- package/package.json +2 -2
- package/set.js +0 -1
package/dist/cjs/set.js
CHANGED
|
@@ -42,7 +42,6 @@ const set = function(params, options = {}, el) {
|
|
|
42
42
|
const __contentRef = content && content.__ref;
|
|
43
43
|
const lazyLoad = element.props && element.props.lazyLoad;
|
|
44
44
|
if (ref.__noCollectionDifference || __contentRef && __contentRef.__cached && (0, import_utils.deepContains)(params, content)) {
|
|
45
|
-
console.log("is content equal");
|
|
46
45
|
return content.update();
|
|
47
46
|
}
|
|
48
47
|
if (options.preventContentUpdate === true)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@domql/element",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.33",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "index.js",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@domql/state": "latest",
|
|
32
32
|
"@domql/utils": "latest"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "5a0e1f177d1e961064447615191e1519714e1428",
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@babel/core": "^7.12.0"
|
|
37
37
|
}
|
package/set.js
CHANGED
|
@@ -14,7 +14,6 @@ const set = function (params, options = {}, el) {
|
|
|
14
14
|
const lazyLoad = element.props && element.props.lazyLoad
|
|
15
15
|
|
|
16
16
|
if (ref.__noCollectionDifference || (__contentRef && __contentRef.__cached && deepContains(params, content))) {
|
|
17
|
-
console.log('is content equal')
|
|
18
17
|
return content.update()
|
|
19
18
|
}
|
|
20
19
|
|