monaco-editor-core 0.55.0-dev-20251007 → 0.55.0-dev-20251008
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/esm/nls.messages.de.js +1 -1
- package/esm/nls.messages.es.js +1 -1
- package/esm/nls.messages.fr.js +1 -1
- package/esm/nls.messages.it.js +1 -1
- package/esm/nls.messages.ja.js +1 -1
- package/esm/nls.messages.ko.js +1 -1
- package/esm/nls.messages.ru.js +1 -1
- package/esm/nls.messages.zh-cn.js +1 -1
- package/esm/nls.messages.zh-tw.js +1 -1
- package/esm/vs/base/browser/ui/tree/abstractTree.js +2 -5
- package/esm/vs/base/browser/ui/tree/abstractTree.js.map +1 -1
- package/esm/vs/base/browser/ui/tree/asyncDataTree.js +6 -8
- package/esm/vs/base/browser/ui/tree/asyncDataTree.js.map +1 -1
- package/esm/vs/base/browser/ui/tree/dataTree.js.map +1 -1
- package/esm/vs/base/browser/ui/tree/indexTreeModel.js +1 -2
- package/esm/vs/base/browser/ui/tree/indexTreeModel.js.map +1 -1
- package/esm/vs/base/browser/ui/tree/objectTree.js.map +1 -1
- package/esm/vs/base/common/normalization.js +39 -0
- package/esm/vs/base/common/normalization.js.map +1 -0
- package/esm/vs/base/common/process.js +0 -1
- package/esm/vs/base/common/process.js.map +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +1 -0
- package/esm/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js.map +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.js +2 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.js.map +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js.map +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +27 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js.map +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewProducer.js +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewProducer.js.map +1 -1
- package/esm/vs/platform/dataChannel/browser/forwardingTelemetryService.js +1 -2
- package/esm/vs/platform/dataChannel/browser/forwardingTelemetryService.js.map +1 -1
- package/esm/vs/platform/dnd/browser/dnd.js +1 -3
- package/esm/vs/platform/dnd/browser/dnd.js.map +1 -1
- package/esm/vs/platform/product/common/product.js +1 -2
- package/esm/vs/platform/product/common/product.js.map +1 -1
- package/esm/vs/platform/quickinput/browser/commandsQuickAccess.js +26 -2
- package/esm/vs/platform/quickinput/browser/commandsQuickAccess.js.map +1 -1
- package/package.json +2 -2
|
@@ -166,7 +166,6 @@ class AsyncFindFilter extends FindFilter {
|
|
|
166
166
|
// TODO Fix types
|
|
167
167
|
class AsyncFindController extends FindController {
|
|
168
168
|
constructor(tree, findProvider, filter, contextViewProvider, options) {
|
|
169
|
-
// eslint-disable-next-line local/code-no-any-casts
|
|
170
169
|
super(tree, filter, contextViewProvider, options);
|
|
171
170
|
this.findProvider = findProvider;
|
|
172
171
|
this.filter = filter;
|
|
@@ -200,7 +199,6 @@ class AsyncFindController extends FindController {
|
|
|
200
199
|
if (element && this.activeFindMetadata.isMatch(element)) {
|
|
201
200
|
return true;
|
|
202
201
|
}
|
|
203
|
-
// eslint-disable-next-line local/code-no-any-casts
|
|
204
202
|
return !FuzzyScore.isDefault(node.filterData);
|
|
205
203
|
}
|
|
206
204
|
}
|
|
@@ -216,11 +214,9 @@ function asObjectTreeOptions(options) {
|
|
|
216
214
|
dnd: options.dnd && new AsyncDataTreeNodeListDragAndDrop(options.dnd),
|
|
217
215
|
multipleSelectionController: options.multipleSelectionController && {
|
|
218
216
|
isSelectionSingleChangeEvent(e) {
|
|
219
|
-
// eslint-disable-next-line local/code-no-any-casts
|
|
220
217
|
return options.multipleSelectionController.isSelectionSingleChangeEvent({ ...e, element: e.element });
|
|
221
218
|
},
|
|
222
219
|
isSelectionRangeChangeEvent(e) {
|
|
223
|
-
// eslint-disable-next-line local/code-no-any-casts
|
|
224
220
|
return options.multipleSelectionController.isSelectionRangeChangeEvent({ ...e, element: e.element });
|
|
225
221
|
}
|
|
226
222
|
},
|
|
@@ -260,8 +256,8 @@ function asObjectTreeOptions(options) {
|
|
|
260
256
|
}
|
|
261
257
|
},
|
|
262
258
|
sorter: undefined,
|
|
263
|
-
expandOnlyOnTwistieClick: typeof options.expandOnlyOnTwistieClick === 'undefined' ? undefined : (typeof options.expandOnlyOnTwistieClick !== 'function' ? options.expandOnlyOnTwistieClick : (e => options.expandOnlyOnTwistieClick(e.element))),
|
|
264
|
-
defaultFindVisibility: e => {
|
|
259
|
+
expandOnlyOnTwistieClick: typeof options.expandOnlyOnTwistieClick === 'undefined' ? undefined : (typeof options.expandOnlyOnTwistieClick !== 'function' ? options.expandOnlyOnTwistieClick : ((e) => options.expandOnlyOnTwistieClick(e.element))),
|
|
260
|
+
defaultFindVisibility: (e) => {
|
|
265
261
|
if (e.hasChildren && e.stale) {
|
|
266
262
|
return 1 /* TreeVisibility.Visible */;
|
|
267
263
|
}
|
|
@@ -274,7 +270,8 @@ function asObjectTreeOptions(options) {
|
|
|
274
270
|
else {
|
|
275
271
|
return options.defaultFindVisibility(e.element);
|
|
276
272
|
}
|
|
277
|
-
}
|
|
273
|
+
},
|
|
274
|
+
stickyScrollDelegate: options.stickyScrollDelegate
|
|
278
275
|
};
|
|
279
276
|
}
|
|
280
277
|
function dfs(node, fn) {
|
|
@@ -836,7 +833,8 @@ function asCompressibleObjectTreeOptions(options) {
|
|
|
836
833
|
getCompressedNodeKeyboardNavigationLabel(els) {
|
|
837
834
|
return options.keyboardNavigationLabelProvider.getCompressedNodeKeyboardNavigationLabel(els.map(e => e.element));
|
|
838
835
|
}
|
|
839
|
-
}
|
|
836
|
+
},
|
|
837
|
+
stickyScrollDelegate: objectTreeOptions.stickyScrollDelegate
|
|
840
838
|
};
|
|
841
839
|
}
|
|
842
840
|
export class CompressibleAsyncDataTree extends AsyncDataTree {
|