@jupyterlab/notebook 4.0.7 → 4.0.8

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 +19 -19
  2. package/style/base.css +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/notebook",
3
- "version": "4.0.7",
3
+ "version": "4.0.8",
4
4
  "description": "JupyterLab - Notebook",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -42,23 +42,23 @@
42
42
  },
43
43
  "dependencies": {
44
44
  "@jupyter/ydoc": "^1.0.2",
45
- "@jupyterlab/apputils": "^4.1.7",
46
- "@jupyterlab/cells": "^4.0.7",
47
- "@jupyterlab/codeeditor": "^4.0.7",
48
- "@jupyterlab/codemirror": "^4.0.7",
49
- "@jupyterlab/coreutils": "^6.0.7",
50
- "@jupyterlab/docregistry": "^4.0.7",
51
- "@jupyterlab/documentsearch": "^4.0.7",
52
- "@jupyterlab/lsp": "^4.0.7",
53
- "@jupyterlab/nbformat": "^4.0.7",
54
- "@jupyterlab/observables": "^5.0.7",
55
- "@jupyterlab/rendermime": "^4.0.7",
56
- "@jupyterlab/services": "^7.0.7",
57
- "@jupyterlab/settingregistry": "^4.0.7",
58
- "@jupyterlab/statusbar": "^4.0.7",
59
- "@jupyterlab/toc": "^6.0.7",
60
- "@jupyterlab/translation": "^4.0.7",
61
- "@jupyterlab/ui-components": "^4.0.7",
45
+ "@jupyterlab/apputils": "^4.1.8",
46
+ "@jupyterlab/cells": "^4.0.8",
47
+ "@jupyterlab/codeeditor": "^4.0.8",
48
+ "@jupyterlab/codemirror": "^4.0.8",
49
+ "@jupyterlab/coreutils": "^6.0.8",
50
+ "@jupyterlab/docregistry": "^4.0.8",
51
+ "@jupyterlab/documentsearch": "^4.0.8",
52
+ "@jupyterlab/lsp": "^4.0.8",
53
+ "@jupyterlab/nbformat": "^4.0.8",
54
+ "@jupyterlab/observables": "^5.0.8",
55
+ "@jupyterlab/rendermime": "^4.0.8",
56
+ "@jupyterlab/services": "^7.0.8",
57
+ "@jupyterlab/settingregistry": "^4.0.8",
58
+ "@jupyterlab/statusbar": "^4.0.8",
59
+ "@jupyterlab/toc": "^6.0.8",
60
+ "@jupyterlab/translation": "^4.0.8",
61
+ "@jupyterlab/ui-components": "^4.0.8",
62
62
  "@lumino/algorithm": "^2.0.1",
63
63
  "@lumino/coreutils": "^2.1.2",
64
64
  "@lumino/domutils": "^2.0.1",
@@ -71,7 +71,7 @@
71
71
  "react": "^18.2.0"
72
72
  },
73
73
  "devDependencies": {
74
- "@jupyterlab/testing": "^4.0.7",
74
+ "@jupyterlab/testing": "^4.0.8",
75
75
  "@types/jest": "^29.2.0",
76
76
  "jest": "^29.2.0",
77
77
  "rimraf": "~3.0.0",
package/style/base.css CHANGED
@@ -318,8 +318,8 @@
318
318
 
319
319
  .jp-mod-sideBySide.jp-Notebook .jp-CodeCell {
320
320
  display: grid;
321
- grid-template-columns: minmax(0, 1fr) min-content minmax(
322
- 0,
321
+ grid-template-columns: minmax(70px, 1fr) min-content minmax(
322
+ 70px,
323
323
  var(--jp-side-by-side-output-size)
324
324
  );
325
325
  grid-template-rows: auto minmax(0, 1fr) auto;
@@ -330,8 +330,8 @@
330
330
  }
331
331
 
332
332
  .jp-mod-sideBySide.jp-Notebook .jp-CodeCell.jp-mod-resizedCell {
333
- grid-template-columns: minmax(0, 1fr) min-content minmax(
334
- 0,
333
+ grid-template-columns: minmax(70px, 1fr) min-content minmax(
334
+ 70px,
335
335
  var(--jp-side-by-side-resized-cell)
336
336
  );
337
337
  }