@lvce-editor/virtual-dom 2.8.0 → 2.9.0

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/index.js CHANGED
@@ -423,6 +423,7 @@ const setProp = ($Element, key, value, eventMap, newEventMap) => {
423
423
  case 'onPointerMove':
424
424
  case 'onPointerOut':
425
425
  case 'onPointerOver':
426
+ case 'onScroll':
426
427
  case 'onWheel':
427
428
  const eventName = key.slice(2).toLowerCase();
428
429
  if (!eventMap || !value) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/virtual-dom",
3
- "version": "2.8.0",
3
+ "version": "2.9.0",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "keywords": [],
@@ -84,6 +84,7 @@ export const setProp = (
84
84
  case 'onPointerMove':
85
85
  case 'onPointerOut':
86
86
  case 'onPointerOver':
87
+ case 'onScroll':
87
88
  case 'onWheel':
88
89
  const eventName = key.slice(2).toLowerCase()
89
90
  if (!eventMap || !value) {