Socket
Socket
Sign inDemoInstall

@phosphor/commands

Package Overview
Dependencies
Maintainers
3
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@phosphor/commands - npm Package Compare versions

Comparing version 1.6.1 to 1.6.2

12

lib/index.d.ts

@@ -261,11 +261,11 @@ import { ReadonlyJSONObject } from '@phosphor/coreutils';

*/
private _startTimer();
private _startTimer;
/**
* Clear the pending timeout.
*/
private _clearTimer();
private _clearTimer;
/**
* Replay the keydown events which were suppressed.
*/
private _replayKeydownEvents();
private _replayKeydownEvents;
/**

@@ -276,11 +276,11 @@ * Execute the command for the given key binding.

*/
private _executeKeyBinding(binding);
private _executeKeyBinding;
/**
* Clear the internal pending state.
*/
private _clearPendingState();
private _clearPendingState;
/**
* Handle the partial match timeout.
*/
private _onPendingTimeout();
private _onPendingTimeout;
private _timerID;

@@ -287,0 +287,0 @@ private _replaying;

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

*/
var CommandRegistry = (function () {
var CommandRegistry = /** @class */ (function () {
/**

@@ -469,3 +469,3 @@ * Construct a new command registry.

this._clearTimer();
this._timerID = setTimeout(function () {
this._timerID = window.setTimeout(function () {
_this._onPendingTimeout();

@@ -472,0 +472,0 @@ }, Private.CHORD_TIMEOUT);

{
"name": "@phosphor/commands",
"version": "1.6.1",
"version": "1.6.2",
"description": "PhosphorJS - Commands",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/phosphorjs/phosphor",
"bugs": {
"url": "https://github.com/phosphorjs/phosphor/issues"
},
"license": "BSD-3-Clause",
"author": "S. Chris Colbert <sccolbert@gmail.com>",
"contributors": [
"A. Darian <git@darian.af>",
"Dave Willmer <dave.willmer@gmail.com>",
"S. Chris Colbert <sccolbert@gmail.com>",
"Steven Silvester <steven.silvester@gmail.com>"
],
"files": [

@@ -11,39 +21,49 @@ "lib/*.d.ts",

],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"dependencies": {
"@phosphor/algorithm": "^1.1.2",
"@phosphor/coreutils": "^1.3.0",
"@phosphor/disposable": "^1.1.2",
"@phosphor/domutils": "^1.1.2",
"@phosphor/keyboard": "^1.1.2",
"@phosphor/signaling": "^1.2.2"
"repository": {
"type": "git",
"url": "https://github.com/phosphorjs/phosphor.git"
},
"devDependencies": {
"rimraf": "^2.5.2",
"typedoc": "^0.7.0",
"typescript": "~2.3.0"
},
"scripts": {
"build": "tsc",
"build": "tsc --build",
"build:test": "tsc --build tests && cd tests && webpack",
"clean": "rimraf lib",
"docs": "typedoc --options tdoptions.json ."
"clean:test": "rimraf tests/build",
"docs": "typedoc --options tdoptions.json src",
"test": "npm run test:firefox",
"test:chrome": "cd tests && karma start --browsers=Chrome",
"test:firefox": "cd tests && karma start --browsers=Firefox",
"test:ie": "cd tests && karma start --browsers=IE",
"watch": "tsc --build --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/phosphorjs/phosphor.git"
"dependencies": {
"@phosphor/algorithm": "^1.1.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.1.3",
"@phosphor/domutils": "^1.1.3",
"@phosphor/keyboard": "^1.1.3",
"@phosphor/signaling": "^1.2.3"
},
"author": "S. Chris Colbert <sccolbert@gmail.com>",
"contributors": [
"A. Darian <git@darian.af>",
"Dave Willmer <dave.willmer@gmail.com>",
"S. Chris Colbert <sccolbert@gmail.com>",
"Steven Silvester <steven.silvester@gmail.com>"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/phosphorjs/phosphor/issues"
},
"homepage": "https://github.com/phosphorjs/phosphor"
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/mocha": "^2.2.39",
"chai": "^3.5.0",
"es6-promise": "^4.0.5",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"mocha": "^3.2.0",
"rimraf": "^2.5.2",
"simulate-event": "^1.4.0",
"typedoc": "~0.12.0",
"typescript": "~3.0.3",
"webpack": "^2.2.1"
}
}
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