@lvce-editor/editor-worker 9.0.0 → 9.1.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/editorWorkerMain.js +5 -2
- package/package.json +1 -1
package/dist/editorWorkerMain.js
CHANGED
|
@@ -7953,8 +7953,9 @@ const {
|
|
|
7953
7953
|
toggleReplace,
|
|
7954
7954
|
toggleUseRegularExpression,
|
|
7955
7955
|
focusNextElement,
|
|
7956
|
-
focusPreviousElement
|
|
7957
|
-
|
|
7956
|
+
focusPreviousElement,
|
|
7957
|
+
togglePreserveCase
|
|
7958
|
+
} = createFns(['close', 'focusCloseButton', 'focusFind', 'focusNext', 'focusNextMatchButton', 'focusPrevious', 'focusPreviousMatchButton', 'focusReplace', 'focusReplaceAllButton', 'focusReplaceButton', 'focusToggleReplace', 'handleBlur', 'handleClickButton', 'handleFocus', 'handleInput', 'handleReplaceFocus', 'handleReplaceInput', 'handleToggleReplaceFocus', 'replace', 'replaceAll', 'toggleMatchCase', 'toggleMatchWholeWord', 'toggleReplace', 'toggleUseRegularExpression', 'focusNextElement', 'focusPreviousElement', 'togglePreserveCase'], 'FindWidget', Find);
|
|
7958
7959
|
|
|
7959
7960
|
const EditorFindWidget = {
|
|
7960
7961
|
__proto__: null,
|
|
@@ -7985,6 +7986,7 @@ const EditorFindWidget = {
|
|
|
7985
7986
|
replaceAll,
|
|
7986
7987
|
toggleMatchCase,
|
|
7987
7988
|
toggleMatchWholeWord,
|
|
7989
|
+
togglePreserveCase,
|
|
7988
7990
|
toggleReplace,
|
|
7989
7991
|
toggleUseRegularExpression
|
|
7990
7992
|
};
|
|
@@ -10695,6 +10697,7 @@ const commandMap = {
|
|
|
10695
10697
|
'FindWidget.toggleUseRegularExpression': toggleUseRegularExpression,
|
|
10696
10698
|
'FindWidget.focusNextElement': focusNextElement,
|
|
10697
10699
|
'FindWidget.focusPreviousElement': focusPreviousElement,
|
|
10700
|
+
'FindWidget.togglePreserveCase': togglePreserveCase,
|
|
10698
10701
|
'Font.ensure': ensure,
|
|
10699
10702
|
'HandleMessagePort.handleMessagePort': handleMessagePort,
|
|
10700
10703
|
'Hover.getHoverInfo': getEditorHoverInfo,
|