@domql/event 2.31.30 → 2.31.31

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/on.js CHANGED
@@ -76,7 +76,7 @@ const triggerEventOnUpdate = async (param, updatedObj, element, options) => {
76
76
  element,
77
77
  state,
78
78
  context,
79
- { calleeElement: element, ...options }
79
+ options
80
80
  );
81
81
  }
82
82
  };
package/dist/esm/on.js CHANGED
@@ -1,19 +1,3 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropSymbols = Object.getOwnPropertySymbols;
3
- var __hasOwnProp = Object.prototype.hasOwnProperty;
4
- var __propIsEnum = Object.prototype.propertyIsEnumerable;
5
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
6
- var __spreadValues = (a, b) => {
7
- for (var prop in b || (b = {}))
8
- if (__hasOwnProp.call(b, prop))
9
- __defNormalProp(a, prop, b[prop]);
10
- if (__getOwnPropSymbols)
11
- for (var prop of __getOwnPropSymbols(b)) {
12
- if (__propIsEnum.call(b, prop))
13
- __defNormalProp(a, prop, b[prop]);
14
- }
15
- return a;
16
- };
17
1
  import { isFunction, isString, getContextFunction } from "@domql/utils";
18
2
  const getOnOrPropsEvent = (param, element) => {
19
3
  var _a, _b;
@@ -65,7 +49,7 @@ const triggerEventOnUpdate = async (param, updatedObj, element, options) => {
65
49
  element,
66
50
  state,
67
51
  context,
68
- __spreadValues({ calleeElement: element }, options)
52
+ options
69
53
  );
70
54
  }
71
55
  };
package/on.js CHANGED
@@ -73,7 +73,7 @@ export const triggerEventOnUpdate = async (
73
73
  element,
74
74
  state,
75
75
  context,
76
- { calleeElement: element, ...options }
76
+ options
77
77
  )
78
78
  }
79
79
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domql/event",
3
- "version": "2.31.30",
3
+ "version": "2.31.31",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "module": "index.js",
@@ -28,8 +28,8 @@
28
28
  "prepublish": "npm run build; npm run copy:package:cjs"
29
29
  },
30
30
  "dependencies": {
31
- "@domql/report": "^2.31.30",
32
- "@domql/utils": "^2.31.30"
31
+ "@domql/report": "^2.31.31",
32
+ "@domql/utils": "^2.31.31"
33
33
  },
34
- "gitHead": "2cf6e94eae0ea19763d2acac8bebb9b640f4dceb"
34
+ "gitHead": "a87c7ae3e84fbab1a9ee130d6d03f384e94260ab"
35
35
  }