Socket
Socket
Sign inDemoInstall

@workbench-stack/core

Package Overview
Dependencies
Maintainers
4
Versions
318
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@workbench-stack/core - npm Package Compare versions

Comparing version 0.0.27-alpha.257 to 0.0.27-alpha.259

lib/interfaces/contextmenu/contextmenu-service.d.ts

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [0.0.27-alpha.259](https://github.com/cdmbase/workbench-stack/compare/v0.0.27-alpha.258...v0.0.27-alpha.259) (2020-07-15)
**Note:** Version bump only for package @workbench-stack/core
## [0.0.27-alpha.257](https://github.com/cdmbase/workbench-stack/compare/v0.0.27-alpha.256...v0.0.27-alpha.257) (2020-07-08)

@@ -8,0 +16,0 @@

export declare const DEFAULT_SETTINGS_EDITOR_SETTING = "workbench.settings.openDefaultSettings";
export declare const USE_SPLIT_JSON_SETTING = "workbench.settings.useSplitJSON";
export declare const KEYBINDINGS_EDITOR_COMMAND_REMOVE = "keybindings.editor.removeKeybinding";
export declare const KEYBINDINGS_EDITOR_COMMAND_RESET = "keybindings.editor.resetKeybinding";
export declare const KEYBINDINGS_EDITOR_COMMAND_COPY = "keybindings.editor.copyKeybindingEntry";
export declare const KEYBINDINGS_EDITOR_COMMAND_COPY_COMMAND = "keybindings.editor.copyCommandKeybindingEntry";
export declare const KEYBINDINGS_EDITOR_COMMAND_SHOW_SIMILAR = "keybindings.editor.showConflicts";
export declare const KEYBINDINGS_EDITOR_COMMAND_DEFINE_WHEN = "keybindings.editor.defineWhenExpression";
export declare const KEYBINDINGS_EDITOR_COMMAND_DEFINE = "keybindings.editor.defineKeybinding";

6

lib/constants/types.d.ts

@@ -88,2 +88,3 @@ export declare const CommonTypes: {

ICommandService: symbol;
IContextMenuService: symbol;
};

@@ -122,3 +123,6 @@ export declare const enum CacheTypenames {

KeybindingItem = "KeybindingItem",
KeyboardEvent = "KeyboardEvent"
KeyboardEvent = "KeyboardEvent",
ContextMenu = "ContextMenu",
Anchor = "Anchor",
MenuItem = "MenuItem"
}

@@ -30,1 +30,2 @@ export * from './workbench-settings';

export * from './keybinding';
export * from './contextmenu';

4

lib/interfaces/services.d.ts

@@ -13,6 +13,7 @@ import { ICodeEditorService, IEditorService, IModelService, IModeService } from './editor';

import { IDialogService } from './dialog';
import { IStatusbarService } from "./statusbar";
import { IStatusbarService } from './statusbar';
import { IKeybindingService, IKeymapService, IKeybindingEditingService } from './keybinding';
import { IStorageService } from './storage';
import { ICommandService } from './commands';
import { IContextMenuService } from './contextmenu';
/**

@@ -46,2 +47,3 @@ * Services that are available for the workbench. It does contains some external services included from

readonly commandService: ICommandService;
readonly contextMenuService: IContextMenuService;
}

@@ -48,0 +50,0 @@ export interface IApolloUtilityClass {

{
"name": "@workbench-stack/core",
"version": "0.0.27-alpha.257",
"version": "0.0.27-alpha.259",
"description": "Workbench core for higher packages to depend on",

@@ -47,3 +47,3 @@ "main": "lib/index.js",

},
"gitHead": "c411db1563f36c2f19d2824d9a5401622adff8dd"
"gitHead": "6b72f61e4f0a45e3e44724cb5ebf66088b814177"
}

@@ -6,1 +6,8 @@

export const USE_SPLIT_JSON_SETTING = 'workbench.settings.useSplitJSON';
export const KEYBINDINGS_EDITOR_COMMAND_REMOVE = 'keybindings.editor.removeKeybinding';
export const KEYBINDINGS_EDITOR_COMMAND_RESET = 'keybindings.editor.resetKeybinding';
export const KEYBINDINGS_EDITOR_COMMAND_COPY = 'keybindings.editor.copyKeybindingEntry';
export const KEYBINDINGS_EDITOR_COMMAND_COPY_COMMAND = 'keybindings.editor.copyCommandKeybindingEntry';
export const KEYBINDINGS_EDITOR_COMMAND_SHOW_SIMILAR = 'keybindings.editor.showConflicts';
export const KEYBINDINGS_EDITOR_COMMAND_DEFINE_WHEN = 'keybindings.editor.defineWhenExpression';
export const KEYBINDINGS_EDITOR_COMMAND_DEFINE = 'keybindings.editor.defineKeybinding';

@@ -124,2 +124,3 @@ import { SymbolKind } from 'cdecode';

ICommandService: Symbol.for('ICommandService'),
IContextMenuService: Symbol.for('IContextMenuService'),
};

@@ -174,2 +175,3 @@

StatusbarItem = 'StatusbarItem',
//Keybindings

@@ -179,2 +181,7 @@ Keybindings = 'Keybindings',

KeyboardEvent = 'KeyboardEvent',
//ContextMenu
ContextMenu = 'ContextMenu',
Anchor = 'Anchor',
MenuItem = 'MenuItem',
}

@@ -31,1 +31,2 @@ export * from './workbench-settings';

export * from './keybinding';
export * from './contextmenu';

@@ -14,6 +14,7 @@

import { IDialogService } from './dialog';
import { IStatusbarService } from "./statusbar";
import { IStatusbarService } from './statusbar';
import { IKeybindingService, IKeymapService, IKeybindingEditingService } from './keybinding';
import { IStorageService } from './storage';
import { ICommandService } from './commands';
import { IContextMenuService } from './contextmenu';

@@ -49,2 +50,3 @@ /**

readonly commandService: ICommandService;
readonly contextMenuService: IContextMenuService;
}

@@ -51,0 +53,0 @@

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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