@lvce-editor/text-search-view 1.11.0 → 1.12.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.
@@ -0,0 +1,10 @@
1
+ [
2
+ {
3
+ "category": "search",
4
+ "description": "Configures glob patterns for excluding files and folders from text search results.",
5
+ "heading": "Exclude",
6
+ "id": "search.exclude",
7
+ "type": 4,
8
+ "value": {}
9
+ }
10
+ ]
@@ -2563,7 +2563,7 @@ const create = (uid, x, y, width, height, workspacePath, assetDir, itemHeight, v
2563
2563
  };
2564
2564
 
2565
2565
  const isEqual$7 = (oldState, newState) => {
2566
- return oldState.deltaY === newState.deltaY && oldState.finalDeltaY === newState.finalDeltaY && oldState.height === newState.height && oldState.headerHeight === newState.headerHeight && oldState.itemHeight === newState.itemHeight && oldState.items === newState.items;
2566
+ return oldState.deltaY === newState.deltaY && oldState.finalDeltaY === newState.finalDeltaY && oldState.height === newState.height && oldState.headerHeight === newState.headerHeight && oldState.itemHeight === newState.itemHeight && oldState.items === newState.items && oldState.loaded === newState.loaded;
2567
2567
  };
2568
2568
 
2569
2569
  const isEqual$6 = (oldState, newState) => {
@@ -5879,14 +5879,29 @@ const getCss = (top, uniqueIndents, uniqueIndentRights, scrollBarHeight, scrollB
5879
5879
  }
5880
5880
 
5881
5881
  .SearchWorkspaceMessageAction {
5882
- background: none;
5883
- border: none;
5882
+ appearance: none;
5883
+ background-color: transparent;
5884
+ border: 0;
5884
5885
  color: var(--LinkForeground, #3794ff);
5885
5886
  cursor: pointer;
5887
+ display: inline;
5886
5888
  font: inherit;
5889
+ line-height: inherit;
5890
+ margin: 0;
5887
5891
  padding: 0;
5892
+ text-decoration: none;
5893
+ vertical-align: baseline;
5894
+ }
5895
+
5896
+ .SearchWorkspaceMessageAction:hover {
5888
5897
  text-decoration: underline;
5889
5898
  }
5899
+
5900
+ .SearchWorkspaceMessageAction:focus-visible {
5901
+ border-radius: 1px;
5902
+ outline: 1px solid var(--FocusBorder, currentColor);
5903
+ outline-offset: 1px;
5904
+ }
5890
5905
  `, ...uniqueIndents.map(getIndentRule), ...uniqueIndentRights.map(getIndentRightRule), getTreeItemsTopRule(treeItemsTop), getScrollBarThumbTopRule(scrollBarY)];
5891
5906
  return rules.join('\n');
5892
5907
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/text-search-view",
3
- "version": "1.11.0",
3
+ "version": "1.12.1",
4
4
  "description": "Text Search View",
5
5
  "keywords": [
6
6
  "text-search"