@lvce-editor/virtual-dom 8.3.0 → 8.4.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 +2 -0
- package/package.json +2 -1
package/dist/index.js
CHANGED
|
@@ -1009,6 +1009,8 @@ const getEventListenerArg = (param, event) => {
|
|
|
1009
1009
|
return event.target.checked;
|
|
1010
1010
|
case 'event.target.className':
|
|
1011
1011
|
return event.target.className;
|
|
1012
|
+
case 'event.target.dataset.groupId':
|
|
1013
|
+
return event.target.dataset.groupId;
|
|
1012
1014
|
case 'event.target.dataset.groupIndex':
|
|
1013
1015
|
return event.target.dataset.groupIndex;
|
|
1014
1016
|
case 'event.target.dataset.id':
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lvce-editor/virtual-dom",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.4.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/lvce-editor/virtual-dom.git"
|
|
@@ -8,5 +8,6 @@
|
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"main": "dist/index.js",
|
|
11
|
+
"exports": "dist/index.js",
|
|
11
12
|
"types": "dist/index.d.ts"
|
|
12
13
|
}
|