@lvce-editor/quick-pick-worker 4.14.0 → 4.14.1

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.
@@ -3838,8 +3838,8 @@ const renderCursorOffset = (_oldState, newState) => {
3838
3838
 
3839
3839
  const QuickPickInput = 'QuickPickInput';
3840
3840
 
3841
- const renderFocus = (_oldState, _newState) => {
3842
- return ['Viewlet.focusElementByName', QuickPickInput];
3841
+ const renderFocus = (_oldState, newState) => {
3842
+ return ['Viewlet.focusElementByName', newState.uid, QuickPickInput];
3843
3843
  };
3844
3844
 
3845
3845
  const renderFocusedIndex = (oldState, newState) => {
@@ -4541,7 +4541,7 @@ const renderIncremental = (oldState, newState) => {
4541
4541
  };
4542
4542
 
4543
4543
  const renderValue = (_oldState, newState) => {
4544
- return ['Viewlet.setValueByName', QuickPickInput, /* value */newState.value];
4544
+ return ['Viewlet.setValueByName', newState.uid, QuickPickInput, /* value */newState.value];
4545
4545
  };
4546
4546
 
4547
4547
  const getRenderer = diffType => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/quick-pick-worker",
3
- "version": "4.14.0",
3
+ "version": "4.14.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/lvce-editor/quick-pick-worker.git"