@domql/state 2.3.137 → 2.3.139

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.
@@ -37,7 +37,6 @@ const STATE_UPDATE_OPTIONS = {
37
37
  const updateState = function(obj, options = STATE_UPDATE_OPTIONS) {
38
38
  const state = this;
39
39
  const element = state.__element;
40
- console.log(options);
41
40
  if (!options.updateByState)
42
41
  (0, import_utils.merge)(options, STATE_UPDATE_OPTIONS);
43
42
  if (!state.__element)
@@ -118,7 +117,6 @@ const updateDependentState = (state, obj, options) => {
118
117
  };
119
118
  const applyElementUpdate = (state, obj, options) => {
120
119
  const element = state.__element;
121
- console.log("update", element.key);
122
120
  if (options.preventUpdate !== true) {
123
121
  element.update({}, {
124
122
  ...options,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domql/state",
3
- "version": "2.3.137",
3
+ "version": "2.3.139",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "module": "dist/esm/index.js",
@@ -26,5 +26,5 @@
26
26
  "@domql/report": "latest",
27
27
  "@domql/utils": "latest"
28
28
  },
29
- "gitHead": "07ca3db13100667ebe3915db37a18b6e694a3ce3"
29
+ "gitHead": "64df1958a7956790eb9afa8fbffa95d48f11fedb"
30
30
  }
package/updateState.js CHANGED
@@ -18,7 +18,6 @@ const STATE_UPDATE_OPTIONS = {
18
18
  export const updateState = function (obj, options = STATE_UPDATE_OPTIONS) {
19
19
  const state = this
20
20
  const element = state.__element
21
- console.log(options)
22
21
 
23
22
  if (!options.updateByState) merge(options, STATE_UPDATE_OPTIONS)
24
23
 
@@ -107,7 +106,6 @@ const updateDependentState = (state, obj, options) => {
107
106
 
108
107
  const applyElementUpdate = (state, obj, options) => {
109
108
  const element = state.__element
110
- console.log('update', element.key)
111
109
  if (options.preventUpdate !== true) {
112
110
  element.update({}, {
113
111
  ...options,