@domql/element 2.5.128 → 2.5.129

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/node.js CHANGED
@@ -42,7 +42,6 @@ var import_mixins = require("./mixins");
42
42
  var import_applyParam = require("./utils/applyParam");
43
43
  var import_utils2 = require("./utils");
44
44
  var import_propEvents = require("./utils/propEvents");
45
- var import_on = require("../event/on");
46
45
  const ENV = "development";
47
46
  const createNode = (element, options) => {
48
47
  let { node, tag, __ref: ref } = element;
@@ -66,7 +65,7 @@ const createNode = (element, options) => {
66
65
  (0, import_iterate.throughInitialExec)(element);
67
66
  if (element.tag !== "string" && element.tag !== "fragment") {
68
67
  (0, import_propEvents.propagateEventsFromProps)(element);
69
- (0, import_on.applyAnimationFrame)(element, options);
68
+ (0, import_event.applyAnimationFrame)(element, options);
70
69
  if (isNewNode && (0, import_utils.isObject)(element.on)) {
71
70
  (0, import_event.applyEventsOnNode)(element, options);
72
71
  }
package/node.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict'
2
2
 
3
3
  import { exec, isFunction, isObject, isUndefined } from '@domql/utils'
4
- import { applyEventsOnNode, triggerEventOn } from '@domql/event'
4
+ import { applyEventsOnNode, triggerEventOn, applyAnimationFrame } from '@domql/event'
5
5
  import { cacheNode } from '@domql/render'
6
6
  import { isMethod } from './methods'
7
7
 
@@ -15,7 +15,6 @@ import { registry } from './mixins'
15
15
  import { applyParam } from './utils/applyParam'
16
16
  import { isVariant } from './utils'
17
17
  import { propagateEventsFromProps } from './utils/propEvents'
18
- import { applyAnimationFrame } from '../event/on'
19
18
  // import { defineSetter } from './methods'
20
19
 
21
20
  const ENV = process.env.NODE_ENV
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domql/element",
3
- "version": "2.5.128",
3
+ "version": "2.5.129",
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": "136e385a8b68117d1f80e7becb38dd1236d2130f",
34
+ "gitHead": "a1a3e4b7cc65070a97310196950bb88481741356",
35
35
  "devDependencies": {
36
36
  "@babel/core": "^7.12.0"
37
37
  }