monaco-editor-core 0.53.0-dev-20250905 → 0.53.0-dev-20250906

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.
@@ -519,7 +519,7 @@ let InlineCompletionsModel = class InlineCompletionsModel extends Disposable {
519
519
  this._suppressedInlineCompletionGroupIds = inlineSuggest.map(v => new Set(v.experimental.suppressInlineSuggestions.split(',')));
520
520
  this._inlineEditsEnabled = inlineSuggest.map(v => !!v.edits.enabled);
521
521
  this._inlineEditsShowCollapsedEnabled = inlineSuggest.map(s => s.edits.showCollapsed);
522
- this._triggerCommandOnProviderChange = inlineSuggest.map(s => s.experimental.triggerCommandOnProviderChange);
522
+ this._triggerCommandOnProviderChange = inlineSuggest.map(s => s.triggerCommandOnProviderChange);
523
523
  this._minShowDelay = inlineSuggest.map(s => s.minShowDelay);
524
524
  this._showOnSuggestConflict = inlineSuggest.map(s => s.experimental.showOnSuggestConflict);
525
525
  this._typing = this._register(new TypingInterval(this.textModel));