Skip to content

Commit 84496d1

Browse files
committed
Publish 0.17.1
SHA256 hashes: jupyter-react-components-0.17.1.tgz: 941e12f55b62c60412140c68596e9e4421f8d5bd35d6bdb051931304b5d65d45 jupyter-web-components-0.17.1.tgz: d6c1748e68de6672046533ae32a72eb7b98a116199e02faa34ad2ef4475cf6ff
1 parent 1eed1b9 commit 84496d1

File tree

7 files changed

+30
-15
lines changed

7 files changed

+30
-15
lines changed

CHANGELOG.md

+17-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
<!-- <START NEW CHANGELOG ENTRY> -->
44

5+
## 0.17.1
6+
7+
([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/@jupyter/react-components@0.17.0...1eed1b9bd87a77e5309bfeb38e6cfa08fd1ce8c6))
8+
9+
### Bugs fixed
10+
11+
- Don't make the toolbar stands out of its parent [#126](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/126) ([@fcollonval](https://github.com/fcollonval))
12+
- Improve width button density scale [#125](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/125) ([@fcollonval](https://github.com/fcollonval))
13+
14+
### Contributors to this release
15+
16+
([GitHub contributors page for this release](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/graphs/contributors?from=2024-08-05&to=2024-08-10&type=c))
17+
18+
[@fcollonval](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Afcollonval+updated%3A2024-08-05..2024-08-10&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Agithub-actions+updated%3A2024-08-05..2024-08-10&type=Issues)
19+
20+
<!-- <END NEW CHANGELOG ENTRY> -->
21+
522
## 0.17.0
623

724
([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/@jupyter/react-components@0.16.7...b418fb300992c6086d21d217d3f3b81a55cd2029))
@@ -17,8 +34,6 @@
1734

1835
[@fcollonval](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Afcollonval+updated%3A2024-07-30..2024-08-05&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Agithub-actions+updated%3A2024-07-30..2024-08-05&type=Issues) | [@Mehak261124](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3AMehak261124+updated%3A2024-07-30..2024-08-05&type=Issues)
1936

20-
<!-- <END NEW CHANGELOG ENTRY> -->
21-
2237
## 0.16.7
2338

2439
([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/@jupyter/react-components@0.16.6...e440657a1db8d63400f972b6492896aa985febd1))

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"npmClient": "yarn",
3-
"version": "0.17.0"
3+
"version": "0.17.1"
44
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter/root-ui-toolkit",
3-
"version": "0.17.0",
3+
"version": "0.17.1",
44
"private": true,
55
"description": "UI Toolkit for Jupyter",
66
"keywords": [

packages/components/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter/web-components",
3-
"version": "0.17.0",
3+
"version": "0.17.1",
44
"description": "A component library for building extensions in Jupyter frontends.",
55
"homepage": "https://github.com/jupyterlab-contrib/jupyter-ui-toolkit#readme",
66
"license": "BSD-3-Clause",

packages/lab-example/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyter-ui-demo",
3-
"version": "0.17.0",
3+
"version": "0.17.1",
44
"description": "A JupyterLab extension to present an artwork of available UI components",
55
"private": true,
66
"keywords": [
@@ -47,8 +47,8 @@
4747
"watch:labextension": "jupyter labextension watch ."
4848
},
4949
"dependencies": {
50-
"@jupyter/react-components": "^0.17.0",
51-
"@jupyter/web-components": "^0.17.0",
50+
"@jupyter/react-components": "^0.17.1",
51+
"@jupyter/web-components": "^0.17.1",
5252
"@jupyterlab/application": "^3.1.0 || ^4.0.0",
5353
"@jupyterlab/apputils": "^3.0.0 || ^4.0.0",
5454
"@lumino/messaging": "^1.10.1 || ^2.0.0",

packages/react-components/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter/react-components",
3-
"version": "0.17.0",
3+
"version": "0.17.1",
44
"description": "A component library for building extensions in Jupyter frontends.",
55
"homepage": "https://github.com/jupyterlab-contrib/jupyter-ui-toolkit#readme",
66
"license": "BSD-3-Clause",
@@ -32,7 +32,7 @@
3232
"prepublishOnly": "rimraf README.md && cp ../../README.md . && yarn run build"
3333
},
3434
"dependencies": {
35-
"@jupyter/web-components": "^0.17.0",
35+
"@jupyter/web-components": "^0.17.1",
3636
"react": ">=17.0.0 <19.0.0"
3737
},
3838
"devDependencies": {

yarn.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -2412,11 +2412,11 @@ __metadata:
24122412
languageName: node
24132413
linkType: hard
24142414

2415-
"@jupyter/react-components@^0.17.0, @jupyter/react-components@workspace:packages/react-components":
2415+
"@jupyter/react-components@^0.17.1, @jupyter/react-components@workspace:packages/react-components":
24162416
version: 0.0.0-use.local
24172417
resolution: "@jupyter/react-components@workspace:packages/react-components"
24182418
dependencies:
2419-
"@jupyter/web-components": ^0.17.0
2419+
"@jupyter/web-components": ^0.17.1
24202420
"@types/react": ^18.2.0
24212421
eslint: ^8.43.0
24222422
eslint-config-prettier: ^8.8.0
@@ -2446,7 +2446,7 @@ __metadata:
24462446
languageName: unknown
24472447
linkType: soft
24482448

2449-
"@jupyter/web-components@^0.17.0, @jupyter/web-components@workspace:packages/components":
2449+
"@jupyter/web-components@^0.17.1, @jupyter/web-components@workspace:packages/components":
24502450
version: 0.0.0-use.local
24512451
resolution: "@jupyter/web-components@workspace:packages/components"
24522452
dependencies:
@@ -12585,8 +12585,8 @@ __metadata:
1258512585
version: 0.0.0-use.local
1258612586
resolution: "jupyter-ui-demo@workspace:packages/lab-example"
1258712587
dependencies:
12588-
"@jupyter/react-components": ^0.17.0
12589-
"@jupyter/web-components": ^0.17.0
12588+
"@jupyter/react-components": ^0.17.1
12589+
"@jupyter/web-components": ^0.17.1
1259012590
"@jupyterlab/application": ^3.1.0 || ^4.0.0
1259112591
"@jupyterlab/apputils": ^3.0.0 || ^4.0.0
1259212592
"@jupyterlab/builder": ^4.0.0

0 commit comments

Comments
 (0)