@lvce-editor/editor-worker 8.3.0 → 8.4.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 +12 -2
- package/package.json +2 -2
package/dist/editorWorkerMain.js
CHANGED
|
@@ -8109,9 +8109,12 @@ const {
|
|
|
8109
8109
|
replace,
|
|
8110
8110
|
replaceAll,
|
|
8111
8111
|
toggleMatchCase,
|
|
8112
|
+
toggleMatchWholeWord,
|
|
8112
8113
|
toggleReplace,
|
|
8113
|
-
toggleUseRegularExpression
|
|
8114
|
-
|
|
8114
|
+
toggleUseRegularExpression,
|
|
8115
|
+
focusNextElement,
|
|
8116
|
+
focusPreviousElement
|
|
8117
|
+
} = 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'], 'FindWidget', Find);
|
|
8115
8118
|
|
|
8116
8119
|
const EditorFindWidget = {
|
|
8117
8120
|
__proto__: null,
|
|
@@ -8120,8 +8123,10 @@ const EditorFindWidget = {
|
|
|
8120
8123
|
focusCloseButton,
|
|
8121
8124
|
focusFind,
|
|
8122
8125
|
focusNext: focusNext$2,
|
|
8126
|
+
focusNextElement,
|
|
8123
8127
|
focusNextMatchButton,
|
|
8124
8128
|
focusPrevious: focusPrevious$1,
|
|
8129
|
+
focusPreviousElement,
|
|
8125
8130
|
focusPreviousMatchButton,
|
|
8126
8131
|
focusReplace,
|
|
8127
8132
|
focusReplaceAllButton,
|
|
@@ -8139,6 +8144,7 @@ const EditorFindWidget = {
|
|
|
8139
8144
|
replace,
|
|
8140
8145
|
replaceAll,
|
|
8141
8146
|
toggleMatchCase,
|
|
8147
|
+
toggleMatchWholeWord,
|
|
8142
8148
|
toggleReplace,
|
|
8143
8149
|
toggleUseRegularExpression
|
|
8144
8150
|
};
|
|
@@ -10652,8 +10658,12 @@ const commandMap = {
|
|
|
10652
10658
|
'FindWidget.handleReplaceInput': handleReplaceInput,
|
|
10653
10659
|
'FindWidget.handleToggleReplaceFocus': handleToggleReplaceFocus,
|
|
10654
10660
|
'FindWidget.toggleMatchCase': toggleMatchCase,
|
|
10661
|
+
'FindWidget.toggleMatchWholeWord': toggleMatchWholeWord,
|
|
10655
10662
|
'FindWidget.loadContent': loadContent$1,
|
|
10656
10663
|
'FindWidget.toggleReplace': toggleReplace,
|
|
10664
|
+
'FindWidget.toggleUseRegularExpression': toggleUseRegularExpression,
|
|
10665
|
+
'FindWidget.focusNextElement': focusNextElement,
|
|
10666
|
+
'FindWidget.focusPreviousElement': focusPreviousElement,
|
|
10657
10667
|
'Font.ensure': ensure,
|
|
10658
10668
|
'HandleMessagePort.handleMessagePort': handleMessagePort,
|
|
10659
10669
|
'Hover.getHoverInfo': getEditorHoverInfo,
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lvce-editor/editor-worker",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.4.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Lvce Editor",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/editorWorkerMain.js",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@lvce-editor/constants": "^1.
|
|
9
|
+
"@lvce-editor/constants": "^1.14.0"
|
|
10
10
|
}
|
|
11
11
|
}
|