@jupyterlab/notebook-extension 4.0.6 → 4.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +30 -30
  2. package/schema/tracker.json +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/notebook-extension",
3
- "version": "4.0.6",
3
+ "version": "4.0.7",
4
4
  "description": "JupyterLab - Notebook Extension",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -38,35 +38,35 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "@jupyter/ydoc": "^1.0.2",
41
- "@jupyterlab/application": "^4.0.6",
42
- "@jupyterlab/apputils": "^4.1.6",
43
- "@jupyterlab/cells": "^4.0.6",
44
- "@jupyterlab/codeeditor": "^4.0.6",
45
- "@jupyterlab/codemirror": "^4.0.6",
46
- "@jupyterlab/completer": "^4.0.6",
47
- "@jupyterlab/coreutils": "^6.0.6",
48
- "@jupyterlab/docmanager": "^4.0.6",
49
- "@jupyterlab/docmanager-extension": "^4.0.6",
50
- "@jupyterlab/docregistry": "^4.0.6",
51
- "@jupyterlab/documentsearch": "^4.0.6",
52
- "@jupyterlab/filebrowser": "^4.0.6",
53
- "@jupyterlab/launcher": "^4.0.6",
54
- "@jupyterlab/logconsole": "^4.0.6",
55
- "@jupyterlab/lsp": "^4.0.6",
56
- "@jupyterlab/mainmenu": "^4.0.6",
57
- "@jupyterlab/metadataform": "^4.0.6",
58
- "@jupyterlab/nbformat": "^4.0.6",
59
- "@jupyterlab/notebook": "^4.0.6",
60
- "@jupyterlab/observables": "^5.0.6",
61
- "@jupyterlab/property-inspector": "^4.0.6",
62
- "@jupyterlab/rendermime": "^4.0.6",
63
- "@jupyterlab/services": "^7.0.6",
64
- "@jupyterlab/settingregistry": "^4.0.6",
65
- "@jupyterlab/statedb": "^4.0.6",
66
- "@jupyterlab/statusbar": "^4.0.6",
67
- "@jupyterlab/toc": "^6.0.6",
68
- "@jupyterlab/translation": "^4.0.6",
69
- "@jupyterlab/ui-components": "^4.0.6",
41
+ "@jupyterlab/application": "^4.0.7",
42
+ "@jupyterlab/apputils": "^4.1.7",
43
+ "@jupyterlab/cells": "^4.0.7",
44
+ "@jupyterlab/codeeditor": "^4.0.7",
45
+ "@jupyterlab/codemirror": "^4.0.7",
46
+ "@jupyterlab/completer": "^4.0.7",
47
+ "@jupyterlab/coreutils": "^6.0.7",
48
+ "@jupyterlab/docmanager": "^4.0.7",
49
+ "@jupyterlab/docmanager-extension": "^4.0.7",
50
+ "@jupyterlab/docregistry": "^4.0.7",
51
+ "@jupyterlab/documentsearch": "^4.0.7",
52
+ "@jupyterlab/filebrowser": "^4.0.7",
53
+ "@jupyterlab/launcher": "^4.0.7",
54
+ "@jupyterlab/logconsole": "^4.0.7",
55
+ "@jupyterlab/lsp": "^4.0.7",
56
+ "@jupyterlab/mainmenu": "^4.0.7",
57
+ "@jupyterlab/metadataform": "^4.0.7",
58
+ "@jupyterlab/nbformat": "^4.0.7",
59
+ "@jupyterlab/notebook": "^4.0.7",
60
+ "@jupyterlab/observables": "^5.0.7",
61
+ "@jupyterlab/property-inspector": "^4.0.7",
62
+ "@jupyterlab/rendermime": "^4.0.7",
63
+ "@jupyterlab/services": "^7.0.7",
64
+ "@jupyterlab/settingregistry": "^4.0.7",
65
+ "@jupyterlab/statedb": "^4.0.7",
66
+ "@jupyterlab/statusbar": "^4.0.7",
67
+ "@jupyterlab/toc": "^6.0.7",
68
+ "@jupyterlab/translation": "^4.0.7",
69
+ "@jupyterlab/ui-components": "^4.0.7",
70
70
  "@lumino/algorithm": "^2.0.1",
71
71
  "@lumino/commands": "^2.1.3",
72
72
  "@lumino/coreutils": "^2.1.2",
@@ -499,22 +499,22 @@
499
499
  {
500
500
  "command": "notebook:move-cursor-down",
501
501
  "keys": ["ArrowDown"],
502
- "selector": ".jp-Notebook:focus"
502
+ "selector": "[data-jp-traversable]:focus"
503
503
  },
504
504
  {
505
505
  "command": "notebook:move-cursor-down",
506
506
  "keys": ["J"],
507
- "selector": ".jp-Notebook:focus"
507
+ "selector": "[data-jp-traversable]:focus"
508
508
  },
509
509
  {
510
510
  "command": "notebook:move-cursor-up",
511
511
  "keys": ["ArrowUp"],
512
- "selector": ".jp-Notebook:focus"
512
+ "selector": "[data-jp-traversable]:focus"
513
513
  },
514
514
  {
515
515
  "command": "notebook:move-cursor-up",
516
516
  "keys": ["K"],
517
- "selector": ".jp-Notebook:focus"
517
+ "selector": "[data-jp-traversable]:focus"
518
518
  },
519
519
  {
520
520
  "command": "notebook:move-cursor-heading-above-or-collapse",