@lvce-editor/text-search-view 1.9.0 → 1.9.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.
|
@@ -4945,7 +4945,7 @@ const handleSharedInput = (state, name, value, inputSource = Script) => {
|
|
|
4945
4945
|
return fn(state, value, inputSource);
|
|
4946
4946
|
};
|
|
4947
4947
|
|
|
4948
|
-
const handleWorkspaceChange = state => {
|
|
4948
|
+
const handleWorkspaceChange = (state, workspacePath) => {
|
|
4949
4949
|
return {
|
|
4950
4950
|
...state,
|
|
4951
4951
|
deltaY: 0,
|
|
@@ -4956,7 +4956,8 @@ const handleWorkspaceChange = state => {
|
|
|
4956
4956
|
message: '',
|
|
4957
4957
|
minLineY: 0,
|
|
4958
4958
|
replacement: '',
|
|
4959
|
-
value: ''
|
|
4959
|
+
value: '',
|
|
4960
|
+
workspacePath
|
|
4960
4961
|
};
|
|
4961
4962
|
};
|
|
4962
4963
|
|