@jupyterlab/cell-toolbar 4.0.3 → 4.0.5

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/cell-toolbar",
3
- "version": "4.0.3",
3
+ "version": "4.0.5",
4
4
  "description": "Contextual cell toolbar adapted from jlab-enhanced-cell-toolbar",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -41,20 +41,20 @@
41
41
  },
42
42
  "dependencies": {
43
43
  "@jupyter/ydoc": "^1.0.2",
44
- "@jupyterlab/apputils": "^4.1.3",
45
- "@jupyterlab/cells": "^4.0.3",
46
- "@jupyterlab/docregistry": "^4.0.3",
47
- "@jupyterlab/notebook": "^4.0.3",
48
- "@jupyterlab/observables": "^5.0.3",
49
- "@jupyterlab/ui-components": "^4.0.3",
50
- "@lumino/algorithm": "^2.0.0",
51
- "@lumino/commands": "^2.1.1",
52
- "@lumino/disposable": "^2.1.1",
53
- "@lumino/signaling": "^2.1.1",
54
- "@lumino/widgets": "^2.1.1"
44
+ "@jupyterlab/apputils": "^4.1.5",
45
+ "@jupyterlab/cells": "^4.0.5",
46
+ "@jupyterlab/docregistry": "^4.0.5",
47
+ "@jupyterlab/notebook": "^4.0.5",
48
+ "@jupyterlab/observables": "^5.0.5",
49
+ "@jupyterlab/ui-components": "^4.0.5",
50
+ "@lumino/algorithm": "^2.0.1",
51
+ "@lumino/commands": "^2.1.3",
52
+ "@lumino/disposable": "^2.1.2",
53
+ "@lumino/signaling": "^2.1.2",
54
+ "@lumino/widgets": "^2.3.0"
55
55
  },
56
56
  "devDependencies": {
57
- "@jupyterlab/testing": "^4.0.3",
57
+ "@jupyterlab/testing": "^4.0.5",
58
58
  "@types/jest": "^29.2.0",
59
59
  "jest": "^29.2.0",
60
60
  "rimraf": "~3.0.0",
package/style/base.css CHANGED
@@ -32,7 +32,7 @@
32
32
  }
33
33
 
34
34
  /* Overrides for mobile view hiding cell toolbar */
35
- @media only screen and (max-width: 760px) {
35
+ @media only screen and (width <= 760px) {
36
36
  .jp-cell-menu.jp-cell-toolbar {
37
37
  display: none;
38
38
  }
package/style/index.css CHANGED
@@ -10,5 +10,4 @@
10
10
  @import url('~@jupyterlab/docregistry/style/index.css');
11
11
  @import url('~@jupyterlab/cells/style/index.css');
12
12
  @import url('~@jupyterlab/notebook/style/index.css');
13
-
14
13
  @import url('./base.css');