Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@lumino/commands

Package Overview
Dependencies
Maintainers
3
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lumino/commands - npm Package Compare versions

Comparing version 1.9.1 to 1.9.2

2

lib/index.d.ts

@@ -258,3 +258,3 @@ import { ReadonlyPartialJSONObject } from '@lumino/coreutils';

* When the keydown event is processed, if the event target or any of its
* ancestor nodes has a `data-p-suppress-shortcuts` attribute, its keydown
* ancestor nodes has a `data-lm-suppress-shortcuts` attribute, its keydown
* events will not invoke commands.

@@ -261,0 +261,0 @@ */

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

* When the keydown event is processed, if the event target or any of its
* ancestor nodes has a `data-p-suppress-shortcuts` attribute, its keydown
* ancestor nodes has a `data-lm-suppress-shortcuts` attribute, its keydown
* events will not invoke commands.

@@ -899,5 +899,10 @@ */

for (var dist = 0; targ !== null; targ = targ.parentElement, ++dist) {
if (targ.hasAttribute('data-lm-suppress-shortcuts')) {
return -1;
}
/* <DEPRECATED> */
if (targ.hasAttribute('data-p-suppress-shortcuts')) {
return -1;
}
/* </DEPRECATED> */
if (domutils_1.Selector.matches(targ, selector)) {

@@ -904,0 +909,0 @@ return dist;

{
"name": "@lumino/commands",
"version": "1.9.1",
"version": "1.9.2",
"description": "Lumino Commands",

@@ -74,3 +74,3 @@ "homepage": "https://github.com/jupyterlab/lumino",

},
"gitHead": "df307f6f511ad7f56dd930773f31628e53b0c148"
"gitHead": "b277e78d7bdbfa27b655a3a19240c055eab30f27"
}
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