@domql/element 2.5.66 → 2.5.67

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 CHANGED
@@ -45,7 +45,7 @@ const set = function(params, options = {}, el) {
45
45
  if (options.preventContentUpdate === true && !hasCollection)
46
46
  return;
47
47
  if (ref.__noCollectionDifference || __contentRef && __contentRef.__cached && (0, import_utils.deepContains)(params, content)) {
48
- return content.update();
48
+ return;
49
49
  }
50
50
  const setAsync = () => {
51
51
  (0, import_content.removeContent)(element);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domql/element",
3
- "version": "2.5.66",
3
+ "version": "2.5.67",
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": "5cb5b9bd779042cc3cfe3d912bdc48fb8293ea0b",
34
+ "gitHead": "ac764ed810a9148f3feef73f4fd3af80b51ac072",
35
35
  "devDependencies": {
36
36
  "@babel/core": "^7.12.0"
37
37
  }
package/set.js CHANGED
@@ -17,7 +17,8 @@ const set = function (params, options = {}, el) {
17
17
  if (options.preventContentUpdate === true && !hasCollection) return
18
18
 
19
19
  if (ref.__noCollectionDifference || (__contentRef && __contentRef.__cached && deepContains(params, content))) {
20
- return content.update()
20
+ return
21
+ // return content.update()
21
22
  }
22
23
 
23
24
  const setAsync = () => {