@domql/element 2.5.180 → 2.5.181

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.
@@ -57,7 +57,12 @@ const IGNORE_STATE_PARAMS = [
57
57
  "__depends",
58
58
  "__ref",
59
59
  "__children",
60
- "root"
60
+ "root",
61
+ "setByPath",
62
+ "setPathCollection",
63
+ "removeByPath",
64
+ "removePathCollection",
65
+ "getByPath"
61
66
  ];
62
67
  const METHODS = [
63
68
  "set",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domql/element",
3
- "version": "2.5.180",
3
+ "version": "2.5.181",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "module": "index.js",
@@ -28,10 +28,10 @@
28
28
  "dependencies": {
29
29
  "@domql/event": "^2.5.179",
30
30
  "@domql/render": "^2.5.179",
31
- "@domql/state": "^2.5.179",
31
+ "@domql/state": "^2.5.181",
32
32
  "@domql/utils": "^2.5.179"
33
33
  },
34
- "gitHead": "65c5011c956baa7e561d7ad5f39197ef6bfdab0a",
34
+ "gitHead": "4e5c3841725d9b2ffaeacc0e32bbff5c913b80b4",
35
35
  "devDependencies": {
36
36
  "@babel/core": "^7.12.0"
37
37
  }
package/utils/object.js CHANGED
@@ -10,7 +10,8 @@ import { IGNORE_PROPS_PARAMS } from '../props'
10
10
  const IGNORE_STATE_PARAMS = [
11
11
  'update', 'parse', 'clean', 'create', 'destroy', 'add', 'toggle', 'remove', 'apply', 'set', 'reset',
12
12
  'replace', 'quietReplace', 'quietUpdate', 'applyReplace', 'applyFunction',
13
- 'rootUpdate', 'parentUpdate', 'parent', '__element', '__depends', '__ref', '__children', 'root'
13
+ 'rootUpdate', 'parentUpdate', 'parent', '__element', '__depends', '__ref', '__children', 'root',
14
+ 'setByPath', 'setPathCollection', 'removeByPath', 'removePathCollection', 'getByPath'
14
15
  ]
15
16
 
16
17
  export const METHODS = [