Skip to content

Commit ade6b6b

Browse files
committed
Publish 0.13.3
SHA256 hashes: jupyter-react-components-0.13.3.tgz: a49ed56e22f99885d6c922398196c18063df73712552706c037590c1edd736dc jupyter-web-components-0.13.3.tgz: d2de71735e1a373b445056d6701fb50f97599f54dcb4aac3b3671b23411c5157
1 parent 977cca1 commit ade6b6b

File tree

7 files changed

+33
-15
lines changed

7 files changed

+33
-15
lines changed

CHANGELOG.md

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

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

5+
## 0.13.3
6+
7+
([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/@jupyter/react-components@0.13.2...977cca16ab4e8e5382138cc13ccd0469877caa69))
8+
9+
### Bugs fixed
10+
11+
- Fix type for data grid attribute [#76](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/76) ([@fcollonval](https://github.com/fcollonval))
12+
13+
### Maintenance and upkeep improvements
14+
15+
- Bump postcss from 8.4.24 to 8.4.31 [#75](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/75) ([@dependabot](https://github.com/dependabot))
16+
17+
### Contributors to this release
18+
19+
([GitHub contributors page for this release](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/graphs/contributors?from=2023-09-12&to=2023-10-26&type=c))
20+
21+
[@dependabot](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Adependabot+updated%3A2023-09-12..2023-10-26&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Afcollonval+updated%3A2023-09-12..2023-10-26&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Agithub-actions+updated%3A2023-09-12..2023-10-26&type=Issues)
22+
23+
<!-- <END NEW CHANGELOG ENTRY> -->
24+
525
## 0.13.2
626

727
([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/@jupyter/react-components@0.13.1...7c3fa1e275ac8d7345cff0b1307d8ca880132394))
@@ -16,8 +36,6 @@
1636

1737
[@fcollonval](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Afcollonval+updated%3A2023-09-11..2023-09-12&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Agithub-actions+updated%3A2023-09-11..2023-09-12&type=Issues)
1838

19-
<!-- <END NEW CHANGELOG ENTRY> -->
20-
2139
## 0.13.1
2240

2341
([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/@jupyter/react-components@0.13.0...bcf0810aeb66bb189591a60d1ac90737255b33f3))

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"npmClient": "yarn",
3-
"version": "0.13.2"
3+
"version": "0.13.3"
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.13.2",
3+
"version": "0.13.3",
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.13.2",
3+
"version": "0.13.3",
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.13.2",
3+
"version": "0.13.3",
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.13.2",
52-
"@jupyter/web-components": "^0.13.2",
51+
"@jupyter/react-components": "^0.13.3",
52+
"@jupyter/web-components": "^0.13.3",
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.13.2",
3+
"version": "0.13.3",
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.13.2",
35+
"@jupyter/web-components": "^0.13.3",
3636
"@microsoft/fast-react-wrapper": "^0.3.18",
3737
"react": ">=17.0.0 <19.0.0"
3838
},

yarn.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -2464,11 +2464,11 @@ __metadata:
24642464
languageName: node
24652465
linkType: hard
24662466

2467-
"@jupyter/react-components@^0.13.2, @jupyter/react-components@workspace:packages/react-components":
2467+
"@jupyter/react-components@^0.13.3, @jupyter/react-components@workspace:packages/react-components":
24682468
version: 0.0.0-use.local
24692469
resolution: "@jupyter/react-components@workspace:packages/react-components"
24702470
dependencies:
2471-
"@jupyter/web-components": ^0.13.2
2471+
"@jupyter/web-components": ^0.13.3
24722472
"@microsoft/fast-react-wrapper": ^0.3.18
24732473
"@types/react": ^18.2.0
24742474
"@typescript-eslint/eslint-plugin": ^5.60.0
@@ -2500,7 +2500,7 @@ __metadata:
25002500
languageName: unknown
25012501
linkType: soft
25022502

2503-
"@jupyter/web-components@^0.13.2, @jupyter/web-components@workspace:packages/components":
2503+
"@jupyter/web-components@^0.13.3, @jupyter/web-components@workspace:packages/components":
25042504
version: 0.0.0-use.local
25052505
resolution: "@jupyter/web-components@workspace:packages/components"
25062506
dependencies:
@@ -11974,8 +11974,8 @@ __metadata:
1197411974
version: 0.0.0-use.local
1197511975
resolution: "jupyter-ui-demo@workspace:packages/lab-example"
1197611976
dependencies:
11977-
"@jupyter/react-components": ^0.13.2
11978-
"@jupyter/web-components": ^0.13.2
11977+
"@jupyter/react-components": ^0.13.3
11978+
"@jupyter/web-components": ^0.13.3
1197911979
"@jupyterlab/application": ^3.1.0 || ^4.0.0
1198011980
"@jupyterlab/apputils": ^3.0.0 || ^4.0.0
1198111981
"@jupyterlab/builder": ^4.0.0

0 commit comments

Comments
 (0)