@jupyterlab/launcher 4.0.0-rc.1 → 4.0.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 +5 -5
- package/style/base.css +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/launcher",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "JupyterLab - Launcher Panel",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"watch": "tsc -b --watch"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@jupyterlab/apputils": "^4.
|
|
41
|
-
"@jupyterlab/translation": "^4.0.
|
|
42
|
-
"@jupyterlab/ui-components": "^4.0.
|
|
40
|
+
"@jupyterlab/apputils": "^4.1.1",
|
|
41
|
+
"@jupyterlab/translation": "^4.0.1",
|
|
42
|
+
"@jupyterlab/ui-components": "^4.0.1",
|
|
43
43
|
"@lumino/algorithm": "^2.0.0",
|
|
44
44
|
"@lumino/commands": "^2.1.1",
|
|
45
45
|
"@lumino/coreutils": "^2.1.1",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/react": "^18.0.26",
|
|
53
53
|
"rimraf": "~3.0.0",
|
|
54
|
-
"typedoc": "~0.24.
|
|
54
|
+
"typedoc": "~0.24.7",
|
|
55
55
|
"typescript": "~5.0.4"
|
|
56
56
|
},
|
|
57
57
|
"publishConfig": {
|
package/style/base.css
CHANGED
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
flex-direction: column;
|
|
101
101
|
cursor: pointer;
|
|
102
102
|
width: var(--jp-private-launcher-card-size);
|
|
103
|
-
height: var(--jp-private-launcher-card-size);
|
|
103
|
+
min-height: var(--jp-private-launcher-card-size);
|
|
104
104
|
margin: 8px;
|
|
105
105
|
padding: 0;
|
|
106
106
|
border: 1px solid var(--jp-border-color2);
|
|
@@ -154,14 +154,14 @@
|
|
|
154
154
|
|
|
155
155
|
.jp-LauncherCard-label {
|
|
156
156
|
width: 100%;
|
|
157
|
-
height: var(--jp-private-launcher-card-label-height);
|
|
157
|
+
min-height: var(--jp-private-launcher-card-label-height);
|
|
158
158
|
padding: 0 4px 4px;
|
|
159
159
|
box-sizing: border-box;
|
|
160
160
|
overflow: hidden;
|
|
161
161
|
}
|
|
162
162
|
|
|
163
163
|
.jp-LauncherCard-label p {
|
|
164
|
-
height: 2.154em;
|
|
164
|
+
min-height: 2.154em;
|
|
165
165
|
word-break: break-word;
|
|
166
166
|
text-align: center;
|
|
167
167
|
color: var(--jp-ui-font-color1);
|