Skip to content

Commit c2789e3

Browse files
committed
Publish 0.16.0
SHA256 hashes: jupyter-react-components-0.16.0.tgz: 690c9e85a544e96afe272f6dd823e59b44550c7f88591260a93458d0ffbb6a84 jupyter-web-components-0.16.0.tgz: d1725192ea25bb2016b7a3a8b5463efa4d6585e5972ace7d4596d5cdaf9d11fc
1 parent b4fdf7a commit c2789e3

File tree

7 files changed

+43
-15
lines changed

7 files changed

+43
-15
lines changed

CHANGELOG.md

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

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

5+
## 0.16.0
6+
7+
([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/@jupyter/react-components@0.15.3...b4fdf7afa1d4f769f8a9a7ba256961596365fbcd))
8+
9+
### Enhancements made
10+
11+
- Make expand glyph size changing with density [#104](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/104) ([@fcollonval](https://github.com/fcollonval))
12+
- Add size attribute to the button [#102](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/102) ([@fcollonval](https://github.com/fcollonval))
13+
14+
### Bugs fixed
15+
16+
- Drop fast react wrapper [#100](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/100) ([@fcollonval](https://github.com/fcollonval))
17+
- Add tiny margin to input so that the focus highlight is visible by default [#96](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/96) ([@fcollonval](https://github.com/fcollonval))
18+
19+
### Maintenance and upkeep improvements
20+
21+
- Bump braces from 3.0.2 to 3.0.3 [#101](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/101) ([@dependabot](https://github.com/dependabot))
22+
- Bump ejs from 3.1.9 to 3.1.10 [#99](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/99) ([@dependabot](https://github.com/dependabot))
23+
- Bump express from 4.18.2 to 4.19.2 [#94](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/94) ([@dependabot](https://github.com/dependabot))
24+
- Bump webpack-dev-middleware from 6.1.1 to 6.1.2 [#93](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/93) ([@dependabot](https://github.com/dependabot))
25+
- Bump follow-redirects from 1.15.4 to 1.15.6 [#92](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/92) ([@dependabot](https://github.com/dependabot))
26+
27+
### Contributors to this release
28+
29+
([GitHub contributors page for this release](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/graphs/contributors?from=2024-03-04&to=2024-06-16&type=c))
30+
31+
[@dependabot](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Adependabot+updated%3A2024-03-04..2024-06-16&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Afcollonval+updated%3A2024-03-04..2024-06-16&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Agithub-actions+updated%3A2024-03-04..2024-06-16&type=Issues)
32+
33+
<!-- <END NEW CHANGELOG ENTRY> -->
34+
535
## 0.15.3
636

737
([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/@jupyter/react-components@0.15.2...82b273e829f017430c7753be2a088736b27d30c8))
@@ -21,8 +51,6 @@
2151

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

24-
<!-- <END NEW CHANGELOG ENTRY> -->
25-
2654
## 0.15.2
2755

2856
([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/@jupyter/react-components@0.15.1...0e699a7df4367bf2bbdffbb67c4f0b1563049b75))

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"npmClient": "yarn",
3-
"version": "0.15.3"
3+
"version": "0.16.0"
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.3",
3+
"version": "0.16.0",
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.3",
3+
"version": "0.16.0",
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.3",
3+
"version": "0.16.0",
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.15.3",
51-
"@jupyter/web-components": "^0.15.3",
50+
"@jupyter/react-components": "^0.16.0",
51+
"@jupyter/web-components": "^0.16.0",
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.15.3",
3+
"version": "0.16.0",
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.3",
35+
"@jupyter/web-components": "^0.16.0",
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.15.3, @jupyter/react-components@workspace:packages/react-components":
2415+
"@jupyter/react-components@^0.16.0, @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.15.3
2419+
"@jupyter/web-components": ^0.16.0
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.15.3, @jupyter/web-components@workspace:packages/components":
2449+
"@jupyter/web-components@^0.16.0, @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.15.3
12589-
"@jupyter/web-components": ^0.15.3
12588+
"@jupyter/react-components": ^0.16.0
12589+
"@jupyter/web-components": ^0.16.0
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)