@codingame/monaco-vscode-0c06bfba-d24d-5c4d-90cd-b40cefb7f811-common
Advanced tools
Comparing version 12.0.1 to 13.0.0
{ | ||
"name": "@codingame/monaco-vscode-0c06bfba-d24d-5c4d-90cd-b40cefb7f811-common", | ||
"version": "12.0.1", | ||
"version": "13.0.0", | ||
"private": false, | ||
@@ -18,8 +18,9 @@ "description": "VSCode public API plugged on the monaco editor - common package (files, model, view-common)", | ||
"dependencies": { | ||
"@codingame/monaco-vscode-2e67e044-0db9-5fa6-8bd1-3737a7d586d4-common": "12.0.1", | ||
"@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common": "12.0.1", | ||
"@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common": "12.0.1", | ||
"vscode": "npm:@codingame/monaco-vscode-api@12.0.1" | ||
"@codingame/monaco-vscode-2e67e044-0db9-5fa6-8bd1-3737a7d586d4-common": "13.0.0", | ||
"@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common": "13.0.0", | ||
"@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common": "13.0.0" | ||
}, | ||
"peerDependencies": {}, | ||
"peerDependencies": { | ||
"@codingame/monaco-vscode-api": "13.0.0" | ||
}, | ||
"peerDependenciesMeta": {}, | ||
@@ -26,0 +27,0 @@ "exports": { |
@@ -1,24 +0,24 @@ | ||
import { URI } from "vscode/vscode/vs/base/common/uri"; | ||
import { EncodingMode, TextFileEditorModelState, ITextFileEditorModel, ITextFileResolveOptions, IResolvedTextFileEditorModel, TextFileResolveReason, ITextFileEditorModelSaveEvent, ITextFileSaveAsOptions } from "vscode/vscode/vs/workbench/services/textfile/common/textfiles"; | ||
import { ITextFileService } from "vscode/vscode/vs/workbench/services/textfile/common/textfiles.service"; | ||
import { IRevertOptions } from "vscode/vscode/vs/workbench/common/editor"; | ||
import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri"; | ||
import { EncodingMode, TextFileEditorModelState, ITextFileEditorModel, ITextFileResolveOptions, IResolvedTextFileEditorModel, TextFileResolveReason, ITextFileEditorModelSaveEvent, ITextFileSaveAsOptions } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/textfile/common/textfiles"; | ||
import { ITextFileService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/textfile/common/textfiles.service"; | ||
import { IRevertOptions } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor"; | ||
import { BaseTextEditorModel } from "@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common/vscode/vs/workbench/common/editor/textEditorModel"; | ||
import { IWorkingCopyBackupService } from "vscode/vscode/vs/workbench/services/workingCopy/common/workingCopyBackup.service"; | ||
import { IFileStatWithMetadata } from "vscode/vscode/vs/platform/files/common/files"; | ||
import { IFileService } from "vscode/vscode/vs/platform/files/common/files.service"; | ||
import { ILanguageService } from "vscode/vscode/vs/editor/common/languages/language"; | ||
import { IModelService } from "vscode/vscode/vs/editor/common/services/model"; | ||
import { ITextModel } from "vscode/vscode/vs/editor/common/model"; | ||
import { ILogService } from "vscode/vscode/vs/platform/log/common/log.service"; | ||
import { IWorkingCopyService } from "vscode/vscode/vs/workbench/services/workingCopy/common/workingCopyService.service"; | ||
import { IWorkingCopyBackupService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/workingCopy/common/workingCopyBackup.service"; | ||
import { IFileStatWithMetadata } from "@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files"; | ||
import { IFileService } from "@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service"; | ||
import { ILanguageService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language"; | ||
import { IModelService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/services/model"; | ||
import { ITextModel } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/model"; | ||
import { ILogService } from "@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service"; | ||
import { IWorkingCopyService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/workingCopy/common/workingCopyService.service"; | ||
import { IWorkingCopyBackup, WorkingCopyCapabilities } from "@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common/vscode/vs/workbench/services/workingCopy/common/workingCopy"; | ||
import { IFilesConfigurationService } from "vscode/vscode/vs/workbench/services/filesConfiguration/common/filesConfigurationService.service"; | ||
import { ILabelService } from "vscode/vscode/vs/platform/label/common/label.service"; | ||
import { CancellationToken } from "vscode/vscode/vs/base/common/cancellation"; | ||
import { ILanguageDetectionService } from "vscode/vscode/vs/workbench/services/languageDetection/common/languageDetectionWorkerService.service"; | ||
import { IPathService } from "vscode/vscode/vs/workbench/services/path/common/pathService.service"; | ||
import { IAccessibilityService } from "vscode/vscode/vs/platform/accessibility/common/accessibility.service"; | ||
import { IExtensionService } from "vscode/vscode/vs/workbench/services/extensions/common/extensions.service"; | ||
import { IMarkdownString } from "vscode/vscode/vs/base/common/htmlContent"; | ||
import { IProgressService } from "vscode/vscode/vs/platform/progress/common/progress.service"; | ||
import { IFilesConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/filesConfiguration/common/filesConfigurationService.service"; | ||
import { ILabelService } from "@codingame/monaco-vscode-api/vscode/vs/platform/label/common/label.service"; | ||
import { CancellationToken } from "@codingame/monaco-vscode-api/vscode/vs/base/common/cancellation"; | ||
import { ILanguageDetectionService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/languageDetection/common/languageDetectionWorkerService.service"; | ||
import { IPathService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/path/common/pathService.service"; | ||
import { IAccessibilityService } from "@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/common/accessibility.service"; | ||
import { IExtensionService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service"; | ||
import { IMarkdownString } from "@codingame/monaco-vscode-api/vscode/vs/base/common/htmlContent"; | ||
import { IProgressService } from "@codingame/monaco-vscode-api/vscode/vs/platform/progress/common/progress.service"; | ||
export declare class TextFileEditorModel extends BaseTextEditorModel implements ITextFileEditorModel { | ||
@@ -40,19 +40,19 @@ readonly resource: URI; | ||
private readonly _onDidChangeContent; | ||
readonly onDidChangeContent: import("vscode/vscode/vs/base/common/event").Event<void>; | ||
readonly onDidChangeContent: import("@codingame/monaco-vscode-api/vscode/vs/base/common/event").Event<void>; | ||
private readonly _onDidResolve; | ||
readonly onDidResolve: import("vscode/vscode/vs/base/common/event").Event<TextFileResolveReason>; | ||
readonly onDidResolve: import("@codingame/monaco-vscode-api/vscode/vs/base/common/event").Event<TextFileResolveReason>; | ||
private readonly _onDidChangeDirty; | ||
readonly onDidChangeDirty: import("vscode/vscode/vs/base/common/event").Event<void>; | ||
readonly onDidChangeDirty: import("@codingame/monaco-vscode-api/vscode/vs/base/common/event").Event<void>; | ||
private readonly _onDidSaveError; | ||
readonly onDidSaveError: import("vscode/vscode/vs/base/common/event").Event<void>; | ||
readonly onDidSaveError: import("@codingame/monaco-vscode-api/vscode/vs/base/common/event").Event<void>; | ||
private readonly _onDidSave; | ||
readonly onDidSave: import("vscode/vscode/vs/base/common/event").Event<ITextFileEditorModelSaveEvent>; | ||
readonly onDidSave: import("@codingame/monaco-vscode-api/vscode/vs/base/common/event").Event<ITextFileEditorModelSaveEvent>; | ||
private readonly _onDidRevert; | ||
readonly onDidRevert: import("vscode/vscode/vs/base/common/event").Event<void>; | ||
readonly onDidRevert: import("@codingame/monaco-vscode-api/vscode/vs/base/common/event").Event<void>; | ||
private readonly _onDidChangeEncoding; | ||
readonly onDidChangeEncoding: import("vscode/vscode/vs/base/common/event").Event<void>; | ||
readonly onDidChangeEncoding: import("@codingame/monaco-vscode-api/vscode/vs/base/common/event").Event<void>; | ||
private readonly _onDidChangeOrphaned; | ||
readonly onDidChangeOrphaned: import("vscode/vscode/vs/base/common/event").Event<void>; | ||
readonly onDidChangeOrphaned: import("@codingame/monaco-vscode-api/vscode/vs/base/common/event").Event<void>; | ||
private readonly _onDidChangeReadonly; | ||
readonly onDidChangeReadonly: import("vscode/vscode/vs/base/common/event").Event<void>; | ||
readonly onDidChangeReadonly: import("@codingame/monaco-vscode-api/vscode/vs/base/common/event").Event<void>; | ||
readonly typeId = ""; | ||
@@ -59,0 +59,0 @@ readonly capabilities = WorkingCopyCapabilities.None; |
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6'; | ||
import { localize } from 'vscode/vscode/vs/nls'; | ||
import { Emitter } from 'vscode/vscode/vs/base/common/event'; | ||
import { mark } from 'vscode/vscode/vs/base/common/performance'; | ||
import { assertIsDefined } from 'vscode/vscode/vs/base/common/types'; | ||
import { TextFileResolveReason, TextFileEditorModelState, EncodingMode } from 'vscode/vscode/vs/workbench/services/textfile/common/textfiles'; | ||
import { ITextFileService } from 'vscode/vscode/vs/workbench/services/textfile/common/textfiles.service'; | ||
import { SaveSourceRegistry, SaveReason } from 'vscode/vscode/vs/workbench/common/editor'; | ||
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6'; | ||
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls'; | ||
import { Emitter } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event'; | ||
import { mark } from '@codingame/monaco-vscode-api/vscode/vs/base/common/performance'; | ||
import { assertIsDefined } from '@codingame/monaco-vscode-api/vscode/vs/base/common/types'; | ||
import { TextFileResolveReason, TextFileEditorModelState, EncodingMode } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/textfile/common/textfiles'; | ||
import { ITextFileService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/textfile/common/textfiles.service'; | ||
import { SaveSourceRegistry, SaveReason } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor'; | ||
import { BaseTextEditorModel } from '@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common/vscode/vs/workbench/common/editor/textEditorModel'; | ||
import { IWorkingCopyBackupService } from 'vscode/vscode/vs/workbench/services/workingCopy/common/workingCopyBackup.service'; | ||
import { FileChangeType, FileOperationResult, ETAG_DISABLED, NotModifiedSinceFileOperationError } from 'vscode/vscode/vs/platform/files/common/files'; | ||
import { IFileService } from 'vscode/vscode/vs/platform/files/common/files.service'; | ||
import { ILanguageService } from 'vscode/vscode/vs/editor/common/languages/language'; | ||
import { IModelService } from 'vscode/vscode/vs/editor/common/services/model'; | ||
import { TaskSequentializer, timeout } from 'vscode/vscode/vs/base/common/async'; | ||
import { ILogService } from 'vscode/vscode/vs/platform/log/common/log.service'; | ||
import { basename } from 'vscode/vscode/vs/base/common/path'; | ||
import { IWorkingCopyService } from 'vscode/vscode/vs/workbench/services/workingCopy/common/workingCopyService.service'; | ||
import { IWorkingCopyBackupService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/workingCopy/common/workingCopyBackup.service'; | ||
import { FileChangeType, FileOperationResult, ETAG_DISABLED, NotModifiedSinceFileOperationError } from '@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files'; | ||
import { IFileService } from '@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service'; | ||
import { ILanguageService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language'; | ||
import { IModelService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/model'; | ||
import { TaskSequentializer, timeout } from '@codingame/monaco-vscode-api/vscode/vs/base/common/async'; | ||
import { ILogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service'; | ||
import { basename } from '@codingame/monaco-vscode-api/vscode/vs/base/common/path'; | ||
import { IWorkingCopyService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/workingCopy/common/workingCopyService.service'; | ||
import { NO_TYPE_ID, WorkingCopyCapabilities } from '@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common/vscode/vs/workbench/services/workingCopy/common/workingCopy'; | ||
import { IFilesConfigurationService } from 'vscode/vscode/vs/workbench/services/filesConfiguration/common/filesConfigurationService.service'; | ||
import { ILabelService } from 'vscode/vscode/vs/platform/label/common/label.service'; | ||
import { CancellationToken, CancellationTokenSource } from 'vscode/vscode/vs/base/common/cancellation'; | ||
import { IFilesConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/filesConfiguration/common/filesConfigurationService.service'; | ||
import { ILabelService } from '@codingame/monaco-vscode-api/vscode/vs/platform/label/common/label.service'; | ||
import { CancellationToken, CancellationTokenSource } from '@codingame/monaco-vscode-api/vscode/vs/base/common/cancellation'; | ||
import { UTF8, UTF8_with_bom, UTF16be, UTF16le } from '@codingame/monaco-vscode-2e67e044-0db9-5fa6-8bd1-3737a7d586d4-common/vscode/vs/workbench/services/textfile/common/encoding'; | ||
import { createTextBufferFactoryFromStream } from 'vscode/vscode/vs/editor/common/model/textModel'; | ||
import { ILanguageDetectionService } from 'vscode/vscode/vs/workbench/services/languageDetection/common/languageDetectionWorkerService.service'; | ||
import { IPathService } from 'vscode/vscode/vs/workbench/services/path/common/pathService.service'; | ||
import { extUri } from 'vscode/vscode/vs/base/common/resources'; | ||
import { IAccessibilityService } from 'vscode/vscode/vs/platform/accessibility/common/accessibility.service'; | ||
import { PLAINTEXT_LANGUAGE_ID } from 'vscode/vscode/vs/editor/common/languages/modesRegistry'; | ||
import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions.service'; | ||
import { ProgressLocation } from 'vscode/vscode/vs/platform/progress/common/progress'; | ||
import { IProgressService } from 'vscode/vscode/vs/platform/progress/common/progress.service'; | ||
import { isCancellationError } from 'vscode/vscode/vs/base/common/errors'; | ||
import { createTextBufferFactoryFromStream } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/model/textModel'; | ||
import { ILanguageDetectionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/languageDetection/common/languageDetectionWorkerService.service'; | ||
import { IPathService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/path/common/pathService.service'; | ||
import { extUri } from '@codingame/monaco-vscode-api/vscode/vs/base/common/resources'; | ||
import { IAccessibilityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/common/accessibility.service'; | ||
import { PLAINTEXT_LANGUAGE_ID } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/modesRegistry'; | ||
import { IExtensionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service'; | ||
import { ProgressLocation } from '@codingame/monaco-vscode-api/vscode/vs/platform/progress/common/progress'; | ||
import { IProgressService } from '@codingame/monaco-vscode-api/vscode/vs/platform/progress/common/progress.service'; | ||
import { isCancellationError } from '@codingame/monaco-vscode-api/vscode/vs/base/common/errors'; | ||
@@ -36,0 +36,0 @@ var TextFileEditorModel_1; |
@@ -1,20 +0,20 @@ | ||
import { ISaveOptions } from "vscode/vscode/vs/workbench/common/editor"; | ||
import { ISaveOptions } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor"; | ||
import { BaseTextEditorModel } from "@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common/vscode/vs/workbench/common/editor/textEditorModel"; | ||
import { URI } from "vscode/vscode/vs/base/common/uri"; | ||
import { ILanguageService } from "vscode/vscode/vs/editor/common/languages/language"; | ||
import { IModelService } from "vscode/vscode/vs/editor/common/services/model"; | ||
import { Event } from "vscode/vscode/vs/base/common/event"; | ||
import { IWorkingCopyBackupService } from "vscode/vscode/vs/workbench/services/workingCopy/common/workingCopyBackup.service"; | ||
import { ITextResourceConfigurationService } from "vscode/vscode/vs/editor/common/services/textResourceConfiguration"; | ||
import { ITextModel } from "vscode/vscode/vs/editor/common/model"; | ||
import { ITextEditorModel } from "vscode/vscode/vs/editor/common/services/resolverService"; | ||
import { IWorkingCopyService } from "vscode/vscode/vs/workbench/services/workingCopy/common/workingCopyService.service"; | ||
import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri"; | ||
import { ILanguageService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language"; | ||
import { IModelService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/services/model"; | ||
import { Event } from "@codingame/monaco-vscode-api/vscode/vs/base/common/event"; | ||
import { IWorkingCopyBackupService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/workingCopy/common/workingCopyBackup.service"; | ||
import { ITextResourceConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/services/textResourceConfiguration"; | ||
import { ITextModel } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/model"; | ||
import { ITextEditorModel } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/services/resolverService"; | ||
import { IWorkingCopyService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/workingCopy/common/workingCopyService.service"; | ||
import { IWorkingCopy, WorkingCopyCapabilities, IWorkingCopyBackup, IWorkingCopySaveEvent } from "@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common/vscode/vs/workbench/services/workingCopy/common/workingCopy"; | ||
import { IEncodingSupport, ILanguageSupport } from "vscode/vscode/vs/workbench/services/textfile/common/textfiles"; | ||
import { ITextFileService } from "vscode/vscode/vs/workbench/services/textfile/common/textfiles.service"; | ||
import { ILabelService } from "vscode/vscode/vs/platform/label/common/label.service"; | ||
import { IEditorService } from "vscode/vscode/vs/workbench/services/editor/common/editorService.service"; | ||
import { CancellationToken } from "vscode/vscode/vs/base/common/cancellation"; | ||
import { ILanguageDetectionService } from "vscode/vscode/vs/workbench/services/languageDetection/common/languageDetectionWorkerService.service"; | ||
import { IAccessibilityService } from "vscode/vscode/vs/platform/accessibility/common/accessibility.service"; | ||
import { IEncodingSupport, ILanguageSupport } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/textfile/common/textfiles"; | ||
import { ITextFileService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/textfile/common/textfiles.service"; | ||
import { ILabelService } from "@codingame/monaco-vscode-api/vscode/vs/platform/label/common/label.service"; | ||
import { IEditorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service"; | ||
import { CancellationToken } from "@codingame/monaco-vscode-api/vscode/vs/base/common/cancellation"; | ||
import { ILanguageDetectionService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/languageDetection/common/languageDetectionWorkerService.service"; | ||
import { IAccessibilityService } from "@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/common/accessibility.service"; | ||
export interface IUntitledTextEditorModel extends ITextEditorModel, ILanguageSupport, IEncodingSupport, IWorkingCopy { | ||
@@ -21,0 +21,0 @@ readonly onDidChangeEncoding: Event<void>; |
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6'; | ||
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6'; | ||
import { BaseTextEditorModel } from '@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common/vscode/vs/workbench/common/editor/textEditorModel'; | ||
import { ILanguageService } from 'vscode/vscode/vs/editor/common/languages/language'; | ||
import { IModelService } from 'vscode/vscode/vs/editor/common/services/model'; | ||
import { Emitter } from 'vscode/vscode/vs/base/common/event'; | ||
import { IWorkingCopyBackupService } from 'vscode/vscode/vs/workbench/services/workingCopy/common/workingCopyBackup.service'; | ||
import { ITextResourceConfigurationService } from 'vscode/vscode/vs/editor/common/services/textResourceConfiguration'; | ||
import { createTextBufferFactory, createTextBufferFactoryFromStream } from 'vscode/vscode/vs/editor/common/model/textModel'; | ||
import { IWorkingCopyService } from 'vscode/vscode/vs/workbench/services/workingCopy/common/workingCopyService.service'; | ||
import { ILanguageService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language'; | ||
import { IModelService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/model'; | ||
import { Emitter } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event'; | ||
import { IWorkingCopyBackupService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/workingCopy/common/workingCopyBackup.service'; | ||
import { ITextResourceConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/textResourceConfiguration'; | ||
import { createTextBufferFactory, createTextBufferFactoryFromStream } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/model/textModel'; | ||
import { IWorkingCopyService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/workingCopy/common/workingCopyService.service'; | ||
import { NO_TYPE_ID, WorkingCopyCapabilities } from '@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common/vscode/vs/workbench/services/workingCopy/common/workingCopy'; | ||
import { ITextFileService } from 'vscode/vscode/vs/workbench/services/textfile/common/textfiles.service'; | ||
import { assertIsDefined } from 'vscode/vscode/vs/base/common/types'; | ||
import { ILabelService } from 'vscode/vscode/vs/platform/label/common/label.service'; | ||
import { ensureValidWordDefinition } from 'vscode/vscode/vs/editor/common/core/wordHelper'; | ||
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service'; | ||
import { getCharContainingOffset } from 'vscode/vscode/vs/base/common/strings'; | ||
import { ITextFileService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/textfile/common/textfiles.service'; | ||
import { assertIsDefined } from '@codingame/monaco-vscode-api/vscode/vs/base/common/types'; | ||
import { ILabelService } from '@codingame/monaco-vscode-api/vscode/vs/platform/label/common/label.service'; | ||
import { ensureValidWordDefinition } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/wordHelper'; | ||
import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service'; | ||
import { getCharContainingOffset } from '@codingame/monaco-vscode-api/vscode/vs/base/common/strings'; | ||
import { UTF8 } from '@codingame/monaco-vscode-2e67e044-0db9-5fa6-8bd1-3737a7d586d4-common/vscode/vs/workbench/services/textfile/common/encoding'; | ||
import { bufferToReadable, VSBuffer, bufferToStream } from 'vscode/vscode/vs/base/common/buffer'; | ||
import { ILanguageDetectionService } from 'vscode/vscode/vs/workbench/services/languageDetection/common/languageDetectionWorkerService.service'; | ||
import { IAccessibilityService } from 'vscode/vscode/vs/platform/accessibility/common/accessibility.service'; | ||
import { bufferToReadable, VSBuffer, bufferToStream } from '@codingame/monaco-vscode-api/vscode/vs/base/common/buffer'; | ||
import { ILanguageDetectionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/languageDetection/common/languageDetectionWorkerService.service'; | ||
import { IAccessibilityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/common/accessibility.service'; | ||
@@ -23,0 +23,0 @@ var UntitledTextEditorModel_1; |
62431
+ Added@codingame/monaco-vscode-0139c6af-2375-559c-af57-b738f2fd6d8e-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-039b5553-0838-562a-97c2-30d6e54a7b42-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-0b087f42-a5a3-5eb9-9bfd-1eebc1bba163-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-0cc5da60-f921-59b9-bd8c-a018e93c0a6f-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-15626ec7-b165-51e1-8caf-7bcc2ae9b95a-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-1cc4ea0a-c5b6-54ed-bb60-078a99119b55-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-1d9dbcb3-6f53-58ad-b0a4-92b1ef1fd6a8-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-219d9a5f-b446-507b-a188-1178a0867c75-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-22790577-4553-50b6-978d-0acc75c394cc-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-256d5b78-0649-50e9-8354-2807f95f68f4-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-271a23cd-c7d7-5761-ae35-a923a42987b8-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-2e67e044-0db9-5fa6-8bd1-3737a7d586d4-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-2f06fe84-148e-5e6b-a7ca-c7989c5f128a-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-3607c442-ae7a-594b-b840-038378c24fef-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-3cf6a388-482f-5484-a806-0525ad9ad8af-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-3dd5b442-bfbc-5b1d-8f4a-7567530c75f5-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-40cada32-7e9c-528a-81fc-766e4da54147-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-42931eb9-e564-530c-bafc-fa23ab43a070-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-464d4abe-0937-5367-af84-1b9279e14ea3-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-47923ab1-c4c8-58b5-89ac-fa1b998eb5dd-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-4a36e358-d94d-55e0-86ee-3bcd543d9d3f-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-4ead9d5f-54da-5c5a-b093-32be4a84d711-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-5108c2c9-4ada-52d8-8c4b-fe03b3160e71-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-5945a5e2-a66c-5a82-bd2c-1965724b29eb-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-6845754f-e617-5ed9-8aaa-6ca3653a9532-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-7bbc9e7d-eeae-55fc-8bf9-dc2f66e0dc73-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-7f39b6f1-3542-5430-8760-0f404d7a7cee-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-82e231ca-6ed7-5920-b2b8-1874ccc0be07-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-897bebad-39df-57cb-8a57-36a271d038be-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-8ccb7637-50ea-5359-97bf-00015d7fe567-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-99f24462-c56d-5407-83fb-2ea9dd33cc8c-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-9a1a5840-af83-5d07-a156-ba32a36c5c4b-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-9d05a43d-c330-5ff1-937e-fde4a3852931-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-9ee79c1a-3f03-568b-8eac-b02513a98b68-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-a2719803-af40-5ae9-a29f-8a2231c33056-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-a7c9ae3c-16d2-5d17-86b2-981be7094566-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-abed5a84-8a82-5f84-9412-88a736235bae-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-api@13.0.0(transitive)
+ Added@codingame/monaco-vscode-b4efa70b-52b9-5670-ab5c-f10b10b6834e-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-base-service-override@13.0.0(transitive)
+ Added@codingame/monaco-vscode-bd6ad8b7-9db3-51a8-9895-0046508c029d-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-be8ddbb5-094a-5657-b1cc-fe106c94c632-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-bf94ddb5-e436-506a-9763-5ab86b642508-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-c3c61c00-c254-5856-9dc9-d7929c1f9062-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-c465110a-57c0-59d7-a6b2-be0a4db7e517-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-cc9ccbec-e2a1-599d-84ae-46f5efc666e3-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-cea4d01f-6526-5c2f-8b09-b168fead499f-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-d609a7d3-bf87-551a-884f-550a8b327ec5-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-d6e33d82-c101-549d-a885-0807ab3e0cfb-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-d7f659f5-da33-5ea8-a3b8-9b94f2cf5f33-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-d8236b3b-b91a-522d-89f4-94d70a546f6a-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-d987325e-3e05-53aa-b9ff-6f97476f64db-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-ea14e352-8f1c-5569-b79a-8a96a53e8abe-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-eba0b9b3-174c-5dae-9867-a37810ca1808-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-environment-service-override@13.0.0(transitive)
+ Added@codingame/monaco-vscode-extensions-service-override@13.0.0(transitive)
+ Added@codingame/monaco-vscode-f48982c4-9e82-55e2-b800-20e6d1e6096f-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-fab30422-b487-5f4e-8d30-8b4d266e3fcd-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-fc42f049-7883-579d-bb0b-2aa1010a19a8-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-fc985c90-0334-5b62-88bc-73e2efa0b80b-common@13.0.0(transitive)
+ Added@codingame/monaco-vscode-files-service-override@13.0.0(transitive)
+ Added@codingame/monaco-vscode-host-service-override@13.0.0(transitive)
+ Added@codingame/monaco-vscode-layout-service-override@13.0.0(transitive)
+ Added@codingame/monaco-vscode-quickaccess-service-override@13.0.0(transitive)
- Removed@codingame/monaco-vscode-0139c6af-2375-559c-af57-b738f2fd6d8e-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-039b5553-0838-562a-97c2-30d6e54a7b42-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-0b087f42-a5a3-5eb9-9bfd-1eebc1bba163-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-0cc5da60-f921-59b9-bd8c-a018e93c0a6f-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-15626ec7-b165-51e1-8caf-7bcc2ae9b95a-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-1cc4ea0a-c5b6-54ed-bb60-078a99119b55-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-219d9a5f-b446-507b-a188-1178a0867c75-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-22790577-4553-50b6-978d-0acc75c394cc-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-256d5b78-0649-50e9-8354-2807f95f68f4-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-271a23cd-c7d7-5761-ae35-a923a42987b8-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-2a94c04a-b85b-5669-b06b-89c1bfa11cb9-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-2e67e044-0db9-5fa6-8bd1-3737a7d586d4-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-2f06fe84-148e-5e6b-a7ca-c7989c5f128a-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-3607c442-ae7a-594b-b840-038378c24fef-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-3cf6a388-482f-5484-a806-0525ad9ad8af-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-3dd5b442-bfbc-5b1d-8f4a-7567530c75f5-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-40cada32-7e9c-528a-81fc-766e4da54147-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-42931eb9-e564-530c-bafc-fa23ab43a070-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-464d4abe-0937-5367-af84-1b9279e14ea3-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-47923ab1-c4c8-58b5-89ac-fa1b998eb5dd-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-4a36e358-d94d-55e0-86ee-3bcd543d9d3f-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-4ead9d5f-54da-5c5a-b093-32be4a84d711-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-5108c2c9-4ada-52d8-8c4b-fe03b3160e71-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-5945a5e2-a66c-5a82-bd2c-1965724b29eb-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-6845754f-e617-5ed9-8aaa-6ca3653a9532-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-7bbc9e7d-eeae-55fc-8bf9-dc2f66e0dc73-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-7f39b6f1-3542-5430-8760-0f404d7a7cee-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-82e231ca-6ed7-5920-b2b8-1874ccc0be07-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-897bebad-39df-57cb-8a57-36a271d038be-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-8ccb7637-50ea-5359-97bf-00015d7fe567-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-99f24462-c56d-5407-83fb-2ea9dd33cc8c-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-9a1a5840-af83-5d07-a156-ba32a36c5c4b-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-9d05a43d-c330-5ff1-937e-fde4a3852931-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-9ee79c1a-3f03-568b-8eac-b02513a98b68-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-a2719803-af40-5ae9-a29f-8a2231c33056-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-a7c9ae3c-16d2-5d17-86b2-981be7094566-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-abed5a84-8a82-5f84-9412-88a736235bae-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-api@12.0.1(transitive)
- Removed@codingame/monaco-vscode-b4efa70b-52b9-5670-ab5c-f10b10b6834e-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-b8988f79-16c1-5bff-b0e7-699bab3431da-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-base-service-override@12.0.1(transitive)
- Removed@codingame/monaco-vscode-be8ddbb5-094a-5657-b1cc-fe106c94c632-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-bf94ddb5-e436-506a-9763-5ab86b642508-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-c3c61c00-c254-5856-9dc9-d7929c1f9062-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-c465110a-57c0-59d7-a6b2-be0a4db7e517-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-cc9ccbec-e2a1-599d-84ae-46f5efc666e3-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-cea4d01f-6526-5c2f-8b09-b168fead499f-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-d609a7d3-bf87-551a-884f-550a8b327ec5-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-d6e33d82-c101-549d-a885-0807ab3e0cfb-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-d7f659f5-da33-5ea8-a3b8-9b94f2cf5f33-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-d8236b3b-b91a-522d-89f4-94d70a546f6a-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-d987325e-3e05-53aa-b9ff-6f97476f64db-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-ea14e352-8f1c-5569-b79a-8a96a53e8abe-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-eba0b9b3-174c-5dae-9867-a37810ca1808-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-environment-service-override@12.0.1(transitive)
- Removed@codingame/monaco-vscode-extensions-service-override@12.0.1(transitive)
- Removed@codingame/monaco-vscode-f48982c4-9e82-55e2-b800-20e6d1e6096f-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-fab30422-b487-5f4e-8d30-8b4d266e3fcd-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-fc42f049-7883-579d-bb0b-2aa1010a19a8-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-fc985c90-0334-5b62-88bc-73e2efa0b80b-common@12.0.1(transitive)
- Removed@codingame/monaco-vscode-files-service-override@12.0.1(transitive)
- Removed@codingame/monaco-vscode-host-service-override@12.0.1(transitive)
- Removed@codingame/monaco-vscode-layout-service-override@12.0.1(transitive)
- Removed@codingame/monaco-vscode-quickaccess-service-override@12.0.1(transitive)
Updated@codingame/monaco-vscode-2e67e044-0db9-5fa6-8bd1-3737a7d586d4-common@13.0.0
Updated@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common@13.0.0
Updated@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common@13.0.0