Skip to content

Commit 8aab404

Browse files
committed
Publish 0.15.2
SHA256 hashes: jupyter-react-components-0.15.2.tgz: 17455daf758a2bc54e4d9925f755645d5aab42a2337f4c7b9c97024cccacba8a jupyter-web-components-0.15.2.tgz: 2e95e4422574913f1b6d1d8827867b4af4c3e580938d62dfee62db3d126b2ac9
1 parent 0e699a7 commit 8aab404

File tree

7 files changed

+29
-15
lines changed

7 files changed

+29
-15
lines changed

CHANGELOG.md

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

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

5+
## 0.15.2
6+
7+
([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/@jupyter/react-components@0.15.1...0e699a7df4367bf2bbdffbb67c4f0b1563049b75))
8+
9+
### Bugs fixed
10+
11+
- Fix toolbar item focus [#88](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/88) ([@fcollonval](https://github.com/fcollonval))
12+
13+
### Contributors to this release
14+
15+
([GitHub contributors page for this release](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/graphs/contributors?from=2024-01-10&to=2024-01-24&type=c))
16+
17+
[@fcollonval](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Afcollonval+updated%3A2024-01-10..2024-01-24&type=Issues)
18+
19+
<!-- <END NEW CHANGELOG ENTRY> -->
20+
521
## 0.15.1
622

723
([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/@jupyter/react-components@0.15.0...3d7a1e585d3f976d1e6f530b7543b7dc1bad48d9))
@@ -20,8 +36,6 @@
2036

2137
[@dependabot](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Adependabot+updated%3A2024-01-04..2024-01-10&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Afcollonval+updated%3A2024-01-04..2024-01-10&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Agithub-actions+updated%3A2024-01-04..2024-01-10&type=Issues)
2238

23-
<!-- <END NEW CHANGELOG ENTRY> -->
24-
2539
## 0.15.0
2640

2741
([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/@jupyter/react-components@0.14.0...47f59e1ae05e85d29b6cefb2f4589078e6db127a))

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"npmClient": "yarn",
3-
"version": "0.15.1"
3+
"version": "0.15.2"
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.15.1",
3+
"version": "0.15.2",
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.15.1",
3+
"version": "0.15.2",
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.15.1",
3+
"version": "0.15.2",
44
"description": "A JupyterLab extension to present an artwork of available UI components",
55
"private": true,
66
"keywords": [
@@ -48,8 +48,8 @@
4848
"watch:labextension": "jupyter labextension watch ."
4949
},
5050
"dependencies": {
51-
"@jupyter/react-components": "^0.15.1",
52-
"@jupyter/web-components": "^0.15.1",
51+
"@jupyter/react-components": "^0.15.2",
52+
"@jupyter/web-components": "^0.15.2",
5353
"@jupyterlab/application": "^3.1.0 || ^4.0.0",
5454
"@jupyterlab/apputils": "^3.0.0 || ^4.0.0",
5555
"@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.15.1",
3+
"version": "0.15.2",
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.15.1",
35+
"@jupyter/web-components": "^0.15.2",
3636
"@microsoft/fast-react-wrapper": "^0.3.22",
3737
"react": ">=17.0.0 <19.0.0"
3838
},

yarn.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -2375,11 +2375,11 @@ __metadata:
23752375
languageName: node
23762376
linkType: hard
23772377

2378-
"@jupyter/react-components@^0.15.1, @jupyter/react-components@workspace:packages/react-components":
2378+
"@jupyter/react-components@^0.15.2, @jupyter/react-components@workspace:packages/react-components":
23792379
version: 0.0.0-use.local
23802380
resolution: "@jupyter/react-components@workspace:packages/react-components"
23812381
dependencies:
2382-
"@jupyter/web-components": ^0.15.1
2382+
"@jupyter/web-components": ^0.15.2
23832383
"@microsoft/fast-react-wrapper": ^0.3.22
23842384
"@types/react": ^18.2.0
23852385
"@typescript-eslint/eslint-plugin": ^5.60.0
@@ -2411,7 +2411,7 @@ __metadata:
24112411
languageName: unknown
24122412
linkType: soft
24132413

2414-
"@jupyter/web-components@^0.15.1, @jupyter/web-components@workspace:packages/components":
2414+
"@jupyter/web-components@^0.15.2, @jupyter/web-components@workspace:packages/components":
24152415
version: 0.0.0-use.local
24162416
resolution: "@jupyter/web-components@workspace:packages/components"
24172417
dependencies:
@@ -12419,8 +12419,8 @@ __metadata:
1241912419
version: 0.0.0-use.local
1242012420
resolution: "jupyter-ui-demo@workspace:packages/lab-example"
1242112421
dependencies:
12422-
"@jupyter/react-components": ^0.15.1
12423-
"@jupyter/web-components": ^0.15.1
12422+
"@jupyter/react-components": ^0.15.2
12423+
"@jupyter/web-components": ^0.15.2
1242412424
"@jupyterlab/application": ^3.1.0 || ^4.0.0
1242512425
"@jupyterlab/apputils": ^3.0.0 || ^4.0.0
1242612426
"@jupyterlab/builder": ^4.0.0

0 commit comments

Comments
 (0)