@perspective-dev/jupyterlab 4.3.0 → 4.4.1
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": "@perspective-dev/jupyterlab",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.1",
|
|
4
4
|
"description": "A Jupyterlab extension for the Perspective library, designed to be used with perspective-python.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist/**/*",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@perspective-dev/esbuild-plugin": "",
|
|
33
33
|
"@perspective-dev/test": "",
|
|
34
34
|
"@jupyterlab/builder": "^4",
|
|
35
|
-
"
|
|
35
|
+
"lightningcss": "^1.29.0",
|
|
36
36
|
"copy-webpack-plugin": "~12",
|
|
37
37
|
"zx": "^8.1.8"
|
|
38
38
|
},
|
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
/* ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
|
2
|
+
* ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃
|
|
3
|
+
* ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃
|
|
4
|
+
* ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃
|
|
5
|
+
* ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃
|
|
6
|
+
* ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
|
|
7
|
+
* ┃ Copyright (c) 2017, the Perspective Authors. ┃
|
|
8
|
+
* ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
|
|
9
|
+
* ┃ This file is part of the Perspective library, distributed under the terms ┃
|
|
10
|
+
* ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
|
|
11
|
+
* ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
12
|
+
*/
|
|
12
13
|
|
|
13
14
|
@import "@perspective-dev/viewer/dist/css/themes.css";
|
|
14
15
|
|
|
@@ -25,18 +26,18 @@ div.PSPContainer {
|
|
|
25
26
|
resize: vertical;
|
|
26
27
|
}
|
|
27
28
|
|
|
28
|
-
|
|
29
|
+
/* Widget height for Jupyterlab */
|
|
29
30
|
.jp-NotebookPanel-notebook div.PSPContainer {
|
|
30
31
|
height: 520px;
|
|
31
32
|
}
|
|
32
33
|
|
|
33
|
-
|
|
34
|
+
/* Widget height for Jupyter Notebook */
|
|
34
35
|
.jupyter-widgets-view div.PSPContainer {
|
|
35
36
|
height: 520px;
|
|
36
37
|
}
|
|
37
38
|
|
|
38
|
-
|
|
39
|
-
|
|
39
|
+
/* Widget height for Voila */
|
|
40
|
+
/* Widget height for VS Code */
|
|
40
41
|
body[data-voila="voila"] .jp-OutputArea-output div.PSPContainer,
|
|
41
42
|
body[data-vscode-theme-id] .cell-output-ipywidget-background div.PSPContainer {
|
|
42
43
|
min-height: 520px;
|
|
@@ -44,7 +45,7 @@ body[data-vscode-theme-id] .cell-output-ipywidget-background div.PSPContainer {
|
|
|
44
45
|
}
|
|
45
46
|
|
|
46
47
|
div.PSPContainer perspective-viewer[theme="Pro Light"] {
|
|
47
|
-
--plugin--border: 1px solid #e0e0e0;
|
|
48
|
+
--psp-plugin--border: 1px solid #e0e0e0;
|
|
48
49
|
}
|
|
49
50
|
|
|
50
51
|
div.PSPContainer perspective-viewer {
|