@codingame/monaco-vscode-base-service-override
Advanced tools
Comparing version 9.0.0 to 9.0.2
@@ -31,2 +31,4 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
import { ILabelService } from 'vscode/vscode/vs/platform/label/common/label.service'; | ||
import { IEditorWorkerService } from 'vscode/vscode/vs/editor/common/services/editorWorker'; | ||
import { WorkbenchEditorWorkerService } from './vscode/src/vs/workbench/contrib/codeEditor/browser/workbenchEditorWorkerService.js'; | ||
import { getEnvironmentOverride } from 'vscode/workbench'; | ||
@@ -57,3 +59,4 @@ | ||
[( ITrustedDomainService.toString())]: new SyncDescriptor(TrustedDomainService, [], true), | ||
[( ILabelService.toString())]: new SyncDescriptor(LabelService, [], true) | ||
[( ILabelService.toString())]: new SyncDescriptor(LabelService, [], true), | ||
[( IEditorWorkerService.toString())]: new SyncDescriptor(WorkbenchEditorWorkerService, [], true) | ||
}; | ||
@@ -60,0 +63,0 @@ } |
{ | ||
"name": "@codingame/monaco-vscode-base-service-override", | ||
"version": "9.0.0", | ||
"version": "9.0.2", | ||
"keywords": [], | ||
@@ -29,4 +29,4 @@ "author": { | ||
"dependencies": { | ||
"vscode": "npm:@codingame/monaco-vscode-api@9.0.0" | ||
"vscode": "npm:@codingame/monaco-vscode-api@9.0.2" | ||
} | ||
} |
@@ -110,3 +110,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
return ( localize( | ||
1026, | ||
858, | ||
"Unable to write into the file. Please open the file to correct errors/warnings in the file and try again." | ||
@@ -113,0 +113,0 @@ )); |
@@ -162,3 +162,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
badgeClassName = rule.bubbleBadgeClassName; | ||
tooltip = ( localize(1027, "Contains emphasized items")); | ||
tooltip = ( localize(859, "Contains emphasized items")); | ||
} | ||
@@ -165,0 +165,0 @@ return { |
@@ -34,3 +34,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
jsonSchema: { | ||
description: ( localize(1028, 'Contributes resource label formatting rules.')), | ||
description: ( localize(860, 'Contributes resource label formatting rules.')), | ||
type: 'array', | ||
@@ -44,3 +44,3 @@ items: { | ||
description: ( localize( | ||
1029, | ||
861, | ||
'URI scheme on which to match the formatter on. For example "file". Simple glob patterns are supported.' | ||
@@ -52,3 +52,3 @@ )), | ||
description: ( localize( | ||
1030, | ||
862, | ||
'URI authority on which to match the formatter on. Simple glob patterns are supported.' | ||
@@ -58,3 +58,3 @@ )), | ||
formatting: { | ||
description: ( localize(1031, "Rules for formatting uri resource labels.")), | ||
description: ( localize(863, "Rules for formatting uri resource labels.")), | ||
type: 'object', | ||
@@ -65,3 +65,3 @@ properties: { | ||
description: ( localize( | ||
1032, | ||
864, | ||
"Label rules to display. For example: myLabel:/${path}. ${path}, ${scheme}, ${authority} and ${authoritySuffix} are supported as variables." | ||
@@ -73,3 +73,3 @@ )) | ||
description: ( localize( | ||
1033, | ||
865, | ||
"Separator to be used in the uri label display. '/' or '\' as an example." | ||
@@ -81,3 +81,3 @@ )) | ||
description: ( localize( | ||
1034, | ||
866, | ||
"Controls whether `${path}` substitutions should have starting separator characters stripped." | ||
@@ -89,3 +89,3 @@ )) | ||
description: ( localize( | ||
1035, | ||
867, | ||
"Controls if the start of the uri label should be tildified when possible." | ||
@@ -96,3 +96,3 @@ )) | ||
type: 'string', | ||
description: ( localize(1036, "Suffix appended to the workspace label.")) | ||
description: ( localize(868, "Suffix appended to the workspace label.")) | ||
} | ||
@@ -276,6 +276,6 @@ } | ||
if (isUntitledWorkspace(workspaceUri, this.environmentService)) { | ||
return ( localize(1037, "Untitled (Workspace)")); | ||
return ( localize(869, "Untitled (Workspace)")); | ||
} | ||
if (isTemporaryWorkspace(workspaceUri)) { | ||
return ( localize(1038, "Workspace")); | ||
return ( localize(870, "Workspace")); | ||
} | ||
@@ -293,3 +293,3 @@ let filename = basename(workspaceUri); | ||
label = ( localize( | ||
1039, | ||
871, | ||
"{0} (Workspace)", | ||
@@ -301,3 +301,3 @@ this.getUriLabel(joinPath(dirname(workspaceUri), filename)) | ||
default: | ||
label = ( localize(1040, "{0} (Workspace)", filename)); | ||
label = ( localize(872, "{0} (Workspace)", filename)); | ||
break; | ||
@@ -304,0 +304,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
80529
24
1723
+ Added@codingame/monaco-vscode-api@9.0.2(transitive)
+ Added@codingame/monaco-vscode-environment-service-override@9.0.2(transitive)
+ Added@codingame/monaco-vscode-extensions-service-override@9.0.2(transitive)
+ Added@codingame/monaco-vscode-files-service-override@9.0.2(transitive)
+ Added@codingame/monaco-vscode-host-service-override@9.0.2(transitive)
+ Added@codingame/monaco-vscode-layout-service-override@9.0.2(transitive)
+ Added@codingame/monaco-vscode-quickaccess-service-override@9.0.2(transitive)
- Removed@codingame/monaco-vscode-api@9.0.0(transitive)
- Removed@codingame/monaco-vscode-environment-service-override@9.0.0(transitive)
- Removed@codingame/monaco-vscode-extensions-service-override@9.0.0(transitive)
- Removed@codingame/monaco-vscode-files-service-override@9.0.0(transitive)
- Removed@codingame/monaco-vscode-host-service-override@9.0.0(transitive)
- Removed@codingame/monaco-vscode-layout-service-override@9.0.0(transitive)
- Removed@codingame/monaco-vscode-quickaccess-service-override@9.0.0(transitive)