@lvce-editor/text-search-view 1.12.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.
- package/dist/textSearchViewMain.js +18 -3
- package/package.json +1 -1
|
@@ -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
|
-
|
|
5883
|
-
|
|
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
|
};
|