New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@codingame/monaco-languageclient

Package Overview
Dependencies
Maintainers
4
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codingame/monaco-languageclient - npm Package Compare versions

Comparing version 0.17.1 to 0.17.2

5

dist/amd/services.d.ts

@@ -42,2 +42,7 @@ import { DocumentSelector, MessageActionItem, MessageType, TextDocumentPositionParams, ReferenceParams, CodeActionParams, CodeLensParams, DocumentFormattingParams, DocumentRangeFormattingParams, DocumentOnTypeFormattingParams, RenameParams, DocumentLinkParams, WorkspaceClientCapabilities, Diagnostic, CompletionItem, CompletionList, Hover, SignatureHelp, Definition, Location, DocumentHighlight, SymbolInformation, Command, CodeLens, TextEdit, WorkspaceEdit, DocumentLink, TextDocumentSaveReason, DocumentSymbolParams, WorkspaceSymbolParams, TextDocumentContentChangeEvent, CompletionParams, ColorInformation, ColorPresentation, DocumentColorParams, ColorPresentationParams, FoldingRange, FoldingRangeParams, DocumentSymbol, CodeAction, Declaration, SelectionRangeParams, SelectionRange, SemanticTokensParams, SemanticTokens, SemanticTokensEdit, SemanticTokensLegend, SemanticTokensRangeParams, SemanticTokensDeltaParams } from 'vscode-languageserver-protocol';

}
export declare enum ProgressLocation {
SourceControl = 1,
Window = 10,
Notification = 15
}
export interface SignatureHelpContext {

@@ -44,0 +49,0 @@ readonly triggerKind: SignatureHelpTriggerKind;

8

dist/amd/services.js

@@ -18,3 +18,3 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {

Object.defineProperty(exports, "__esModule", { value: true });
exports.ConfigurationTarget = exports.DocumentIdentifier = exports.VsCodeDiagnosticSeverity = exports.SignatureHelpTriggerKind = exports.isDocumentSelector = exports.Services = exports.TextDocument = exports.Emitter = exports.Event = exports.CancellationToken = exports.Disposable = void 0;
exports.ConfigurationTarget = exports.DocumentIdentifier = exports.ProgressLocation = exports.VsCodeDiagnosticSeverity = exports.SignatureHelpTriggerKind = exports.isDocumentSelector = exports.Services = exports.TextDocument = exports.Emitter = exports.Event = exports.CancellationToken = exports.Disposable = void 0;
Object.defineProperty(exports, "TextDocument", { enumerable: true, get: function () { return vscode_languageserver_textdocument_1.TextDocument; } });

@@ -67,2 +67,8 @@ Object.defineProperty(exports, "Disposable", { enumerable: true, get: function () { return vscode_jsonrpc_1.Disposable; } });

})(VsCodeDiagnosticSeverity = exports.VsCodeDiagnosticSeverity || (exports.VsCodeDiagnosticSeverity = {}));
var ProgressLocation;
(function (ProgressLocation) {
ProgressLocation[ProgressLocation["SourceControl"] = 1] = "SourceControl";
ProgressLocation[ProgressLocation["Window"] = 10] = "Window";
ProgressLocation[ProgressLocation["Notification"] = 15] = "Notification";
})(ProgressLocation = exports.ProgressLocation || (exports.ProgressLocation = {}));
var DocumentIdentifier;

@@ -69,0 +75,0 @@ (function (DocumentIdentifier) {

2

dist/amd/vscode-api.js

@@ -920,3 +920,3 @@ /* --------------------------------------------------------------------------------------------

CancellationTokenSource: vscode_languageserver_protocol_1.CancellationTokenSource,
ProgressLocation: vscode.ProgressLocation
ProgressLocation: ServicesModule.ProgressLocation
};

@@ -923,0 +923,0 @@ return partialApi;

@@ -42,2 +42,7 @@ import { DocumentSelector, MessageActionItem, MessageType, TextDocumentPositionParams, ReferenceParams, CodeActionParams, CodeLensParams, DocumentFormattingParams, DocumentRangeFormattingParams, DocumentOnTypeFormattingParams, RenameParams, DocumentLinkParams, WorkspaceClientCapabilities, Diagnostic, CompletionItem, CompletionList, Hover, SignatureHelp, Definition, Location, DocumentHighlight, SymbolInformation, Command, CodeLens, TextEdit, WorkspaceEdit, DocumentLink, TextDocumentSaveReason, DocumentSymbolParams, WorkspaceSymbolParams, TextDocumentContentChangeEvent, CompletionParams, ColorInformation, ColorPresentation, DocumentColorParams, ColorPresentationParams, FoldingRange, FoldingRangeParams, DocumentSymbol, CodeAction, Declaration, SelectionRangeParams, SelectionRange, SemanticTokensParams, SemanticTokens, SemanticTokensEdit, SemanticTokensLegend, SemanticTokensRangeParams, SemanticTokensDeltaParams } from 'vscode-languageserver-protocol';

}
export declare enum ProgressLocation {
SourceControl = 1,
Window = 10,
Notification = 15
}
export interface SignatureHelpContext {

@@ -44,0 +49,0 @@ readonly triggerKind: SignatureHelpTriggerKind;

@@ -17,3 +17,3 @@ /* --------------------------------------------------------------------------------------------

Object.defineProperty(exports, "__esModule", { value: true });
exports.ConfigurationTarget = exports.DocumentIdentifier = exports.VsCodeDiagnosticSeverity = exports.SignatureHelpTriggerKind = exports.isDocumentSelector = exports.Services = exports.TextDocument = exports.Emitter = exports.Event = exports.CancellationToken = exports.Disposable = void 0;
exports.ConfigurationTarget = exports.DocumentIdentifier = exports.ProgressLocation = exports.VsCodeDiagnosticSeverity = exports.SignatureHelpTriggerKind = exports.isDocumentSelector = exports.Services = exports.TextDocument = exports.Emitter = exports.Event = exports.CancellationToken = exports.Disposable = void 0;
const vscode_languageserver_protocol_1 = require("vscode-languageserver-protocol");

@@ -69,2 +69,8 @@ const vscode_languageserver_textdocument_1 = require("vscode-languageserver-textdocument");

})(VsCodeDiagnosticSeverity = exports.VsCodeDiagnosticSeverity || (exports.VsCodeDiagnosticSeverity = {}));
var ProgressLocation;
(function (ProgressLocation) {
ProgressLocation[ProgressLocation["SourceControl"] = 1] = "SourceControl";
ProgressLocation[ProgressLocation["Window"] = 10] = "Window";
ProgressLocation[ProgressLocation["Notification"] = 15] = "Notification";
})(ProgressLocation = exports.ProgressLocation || (exports.ProgressLocation = {}));
var DocumentIdentifier;

@@ -71,0 +77,0 @@ (function (DocumentIdentifier) {

@@ -925,3 +925,3 @@ "use strict";

CancellationTokenSource: vscode_languageserver_protocol_1.CancellationTokenSource,
ProgressLocation: vscode.ProgressLocation
ProgressLocation: ServicesModule.ProgressLocation
};

@@ -928,0 +928,0 @@ return partialApi;

{
"name": "@codingame/monaco-languageclient",
"version": "0.17.1",
"version": "0.17.2",
"description": "Monaco Language client implementation",

@@ -5,0 +5,0 @@ "author": "TypeFox GmbH (http://www.typefox.io)",

@@ -103,2 +103,8 @@ /* --------------------------------------------------------------------------------------------

export enum ProgressLocation {
SourceControl = 1,
Window = 10,
Notification = 15
}
export interface SignatureHelpContext {

@@ -105,0 +111,0 @@ readonly triggerKind: SignatureHelpTriggerKind;

@@ -946,3 +946,3 @@ /* --------------------------------------------------------------------------------------------

CancellationTokenSource,
ProgressLocation: vscode.ProgressLocation
ProgressLocation: ServicesModule.ProgressLocation
};

@@ -949,0 +949,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc