@lvce-editor/renderer-process 10.26.0 → 10.27.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.
@@ -10249,6 +10249,24 @@ const handleReplaceInput = event => {
10249
10249
  } = target;
10250
10250
  return ['handleReplaceInput', value];
10251
10251
  };
10252
+ const handleIncludeInput = event => {
10253
+ const {
10254
+ target
10255
+ } = event;
10256
+ const {
10257
+ value
10258
+ } = target;
10259
+ return ['handleIncludeInput', value];
10260
+ };
10261
+ const handleExcludeInput = event => {
10262
+ const {
10263
+ target
10264
+ } = event;
10265
+ const {
10266
+ value
10267
+ } = target;
10268
+ return ['handleExcludeInput', value];
10269
+ };
10252
10270
  const handleListFocus = event => {
10253
10271
  return ['handleListFocus'];
10254
10272
  };
@@ -10287,9 +10305,11 @@ const ViewletSearchEvents = {
10287
10305
  __proto__: null,
10288
10306
  handleClick: handleClick$4,
10289
10307
  handleContextMenu: handleContextMenu$5,
10308
+ handleExcludeInput,
10290
10309
  handleFocus: handleFocus$2,
10291
10310
  handleHeaderClick: handleHeaderClick$1,
10292
10311
  handleHeaderFocusIn,
10312
+ handleIncludeInput,
10293
10313
  handleInput: handleInput$3,
10294
10314
  handleListBlur,
10295
10315
  handleListFocus,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/renderer-process",
3
- "version": "10.26.0",
3
+ "version": "10.27.0",
4
4
  "description": "",
5
5
  "main": "dist/rendererProcessMain.js",
6
6
  "type": "module",