@lvce-editor/renderer-process 15.4.0 → 15.5.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.
@@ -933,7 +933,7 @@ const getActiveElementInside = $Viewlet => {
933
933
  return $ActiveElement;
934
934
  };
935
935
  const queryInputs = $Viewlet => {
936
- return [...$Viewlet.querySelectorAll('input, textarea')];
936
+ return [...$Viewlet.querySelectorAll('input, textarea, select')];
937
937
  };
938
938
  const clearNode = $Node => {
939
939
  $Node.textContent = '';
@@ -7690,10 +7690,8 @@ const setActionsDom$1 = (state, actions, childUid) => {
7690
7690
  }
7691
7691
  const eventMap = instance.factory.EventMap;
7692
7692
  setComponentUid($PanelActions, childUid);
7693
- const $New = document.createElement('div');
7694
- const $NewActions = rememberFocus($New, actions, eventMap, childUid);
7695
- $PanelActions.replaceChildren();
7696
- $PanelActions.append($NewActions);
7693
+ const $NewActions = rememberFocus($PanelActions, actions, eventMap, childUid);
7694
+ state.$PanelActions = $NewActions;
7697
7695
  };
7698
7696
 
7699
7697
  const ViewletPanel = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/renderer-process",
3
- "version": "15.4.0",
3
+ "version": "15.5.0",
4
4
  "keywords": [
5
5
  "lvce-editor",
6
6
  "renderer-process"