@jupyterlab/apputils-extension 3.5.0-rc.0 → 3.6.0-alpha.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/apputils-extension",
3
- "version": "3.5.0-rc.0",
3
+ "version": "3.6.0-alpha.0",
4
4
  "description": "JupyterLab - Application Utilities Extension",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -37,17 +37,17 @@
37
37
  "watch": "tsc -b --watch"
38
38
  },
39
39
  "dependencies": {
40
- "@jupyterlab/application": "^3.5.0-rc.0",
41
- "@jupyterlab/apputils": "^3.5.0-rc.0",
42
- "@jupyterlab/coreutils": "^5.5.0-rc.0",
43
- "@jupyterlab/docregistry": "^3.5.0-rc.0",
44
- "@jupyterlab/filebrowser": "^3.5.0-rc.0",
45
- "@jupyterlab/mainmenu": "^3.5.0-rc.0",
46
- "@jupyterlab/services": "^6.5.0-rc.0",
47
- "@jupyterlab/settingregistry": "^3.5.0-rc.0",
48
- "@jupyterlab/statedb": "^3.5.0-rc.0",
49
- "@jupyterlab/translation": "^3.5.0-rc.0",
50
- "@jupyterlab/ui-components": "^3.5.0-rc.0",
40
+ "@jupyterlab/application": "^3.6.0-alpha.0",
41
+ "@jupyterlab/apputils": "^3.6.0-alpha.0",
42
+ "@jupyterlab/coreutils": "^5.6.0-alpha.0",
43
+ "@jupyterlab/docregistry": "^3.6.0-alpha.0",
44
+ "@jupyterlab/filebrowser": "^3.6.0-alpha.0",
45
+ "@jupyterlab/mainmenu": "^3.6.0-alpha.0",
46
+ "@jupyterlab/services": "^6.6.0-alpha.0",
47
+ "@jupyterlab/settingregistry": "^3.6.0-alpha.0",
48
+ "@jupyterlab/statedb": "^3.6.0-alpha.0",
49
+ "@jupyterlab/translation": "^3.6.0-alpha.0",
50
+ "@jupyterlab/ui-components": "^3.6.0-alpha.0",
51
51
  "@lumino/algorithm": "^1.9.0",
52
52
  "@lumino/commands": "^1.19.0",
53
53
  "@lumino/coreutils": "^1.11.0",
@@ -1,6 +1,8 @@
1
1
  {
2
2
  "title": "Command Palette",
3
3
  "description": "Command palette settings.",
4
+ "jupyter.lab.setting-icon": "ui-components:palette",
5
+ "jupyter.lab.setting-icon-label": "Command Palette",
4
6
  "jupyter.lab.menus": {
5
7
  "main": [
6
8
  {
package/style/base.css CHANGED
@@ -4,5 +4,4 @@
4
4
  | Distributed under the terms of the Modified BSD License.
5
5
  |----------------------------------------------------------------------------*/
6
6
 
7
- @import './redirect.css';
8
7
  @import './splash.css';
@@ -1,15 +0,0 @@
1
- /*-----------------------------------------------------------------------------
2
- | Copyright (c) 2014-2017, Jupyter Development Team.
3
- |
4
- | Distributed under the terms of the Modified BSD License.
5
- |----------------------------------------------------------------------------*/
6
-
7
- .jp-RedirectForm input {
8
- display: block;
9
- margin-top: 10px;
10
- width: 100%;
11
- }
12
-
13
- .jp-RedirectForm-warning {
14
- color: var(--jp-warn-color0);
15
- }