@jupyterlab/fileeditor-extension 3.4.0-rc.0 → 3.4.0

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 +17 -17
  2. package/schema/plugin.json +10 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/fileeditor-extension",
3
- "version": "3.4.0-rc.0",
3
+ "version": "3.4.0",
4
4
  "description": "JupyterLab - Editor Widget Extension",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -37,22 +37,22 @@
37
37
  "watch": "tsc -b --watch"
38
38
  },
39
39
  "dependencies": {
40
- "@jupyterlab/application": "^3.4.0-rc.0",
41
- "@jupyterlab/apputils": "^3.4.0-rc.0",
42
- "@jupyterlab/codeeditor": "^3.4.0-rc.0",
43
- "@jupyterlab/codemirror": "^3.4.0-rc.0",
44
- "@jupyterlab/console": "^3.4.0-rc.0",
45
- "@jupyterlab/coreutils": "^5.4.0-rc.0",
46
- "@jupyterlab/docregistry": "^3.4.0-rc.0",
47
- "@jupyterlab/filebrowser": "^3.4.0-rc.0",
48
- "@jupyterlab/fileeditor": "^3.4.0-rc.0",
49
- "@jupyterlab/launcher": "^3.4.0-rc.0",
50
- "@jupyterlab/mainmenu": "^3.4.0-rc.0",
51
- "@jupyterlab/observables": "^4.4.0-rc.0",
52
- "@jupyterlab/settingregistry": "^3.4.0-rc.0",
53
- "@jupyterlab/statusbar": "^3.4.0-rc.0",
54
- "@jupyterlab/translation": "^3.4.0-rc.0",
55
- "@jupyterlab/ui-components": "^3.4.0-rc.0",
40
+ "@jupyterlab/application": "^3.4.0",
41
+ "@jupyterlab/apputils": "^3.4.0",
42
+ "@jupyterlab/codeeditor": "^3.4.0",
43
+ "@jupyterlab/codemirror": "^3.4.0",
44
+ "@jupyterlab/console": "^3.4.0",
45
+ "@jupyterlab/coreutils": "^5.4.0",
46
+ "@jupyterlab/docregistry": "^3.4.0",
47
+ "@jupyterlab/filebrowser": "^3.4.0",
48
+ "@jupyterlab/fileeditor": "^3.4.0",
49
+ "@jupyterlab/launcher": "^3.4.0",
50
+ "@jupyterlab/mainmenu": "^3.4.0",
51
+ "@jupyterlab/observables": "^4.4.0",
52
+ "@jupyterlab/settingregistry": "^3.4.0",
53
+ "@jupyterlab/statusbar": "^3.4.0",
54
+ "@jupyterlab/translation": "^3.4.0",
55
+ "@jupyterlab/ui-components": "^3.4.0",
56
56
  "@lumino/commands": "^1.19.0",
57
57
  "@lumino/coreutils": "^1.11.0",
58
58
  "@lumino/widgets": "^1.30.0"
@@ -102,14 +102,6 @@
102
102
  }
103
103
  ],
104
104
  "context": [
105
- {
106
- "command": "fileeditor:create-console",
107
- "selector": ".jp-FileEditor"
108
- },
109
- {
110
- "command": "fileeditor:markdown-preview",
111
- "selector": ".jp-FileEditor"
112
- },
113
105
  {
114
106
  "command": "fileeditor:undo",
115
107
  "selector": ".jp-FileEditor",
@@ -139,6 +131,16 @@
139
131
  "command": "fileeditor:select-all",
140
132
  "selector": ".jp-FileEditor",
141
133
  "rank": 6
134
+ },
135
+ {
136
+ "command": "fileeditor:create-console",
137
+ "selector": ".jp-FileEditor",
138
+ "rank": 10
139
+ },
140
+ {
141
+ "command": "fileeditor:markdown-preview",
142
+ "selector": ".jp-FileEditor",
143
+ "rank": 11
142
144
  }
143
145
  ]
144
146
  },