@lvce-editor/virtual-dom 2.16.0 → 2.18.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
@@ -790,7 +790,7 @@ const getActiveElementInside = $Viewlet => {
790
790
  };
791
791
 
792
792
  const queryInputs = $Viewlet => {
793
- return [...$Viewlet.querySelectorAll('input, textarea')];
793
+ return [...$Viewlet.querySelectorAll('input, textarea, select')];
794
794
  };
795
795
 
796
796
  const clearNode = $Node => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/virtual-dom",
3
- "version": "2.16.0",
3
+ "version": "2.18.0",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "keywords": [],
@@ -1,3 +1,3 @@
1
1
  export const queryInputs = ($Viewlet: HTMLElement): readonly any[] => {
2
- return [...$Viewlet.querySelectorAll('input, textarea')]
2
+ return [...$Viewlet.querySelectorAll('input, textarea, select')]
3
3
  }