Skip to content

Commit 1039606

Browse files
committed
Publish 0.11.0
SHA256 hashes: jupyter-react-components-0.11.0.tgz: 7fcc017e3dc51eaa68988dffc24b9baf8f01156a371e4e294956092850ade61d jupyter-web-components-0.11.0.tgz: 43b1d799000fa42ccc56b31507d308255d1b8c4a9e9f304bd0289bee22690153
1 parent 1d655c9 commit 1039606

File tree

7 files changed

+95
-75
lines changed

7 files changed

+95
-75
lines changed

CHANGELOG.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

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

5+
## 0.11.0
6+
7+
([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/@jupyter/react-components@0.10.1...1d655c9f8ec4566846a99b49844d613bb53171b5))
8+
9+
### Enhancements made
10+
11+
- Add listbox component [#65](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/65) ([@fcollonval](https://github.com/fcollonval))
12+
- Add anchor component [#64](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/64) ([@fcollonval](https://github.com/fcollonval))
13+
14+
### Maintenance and upkeep improvements
15+
16+
- Fix bump_version.py [#66](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/66) ([@fcollonval](https://github.com/fcollonval))
17+
- Bump word-wrap from 1.2.3 to 1.2.4 [#62](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/62) ([@dependabot](https://github.com/dependabot))
18+
19+
### Contributors to this release
20+
21+
([GitHub contributors page for this release](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/graphs/contributors?from=2023-07-18&to=2023-07-27&type=c))
22+
23+
[@dependabot](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Adependabot+updated%3A2023-07-18..2023-07-27&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Afcollonval+updated%3A2023-07-18..2023-07-27&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Agithub-actions+updated%3A2023-07-18..2023-07-27&type=Issues)
24+
25+
<!-- <END NEW CHANGELOG ENTRY> -->
26+
527
## 0.10.1
628

729
([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/v0.10.0...798a00a15d88ed289ecd80e7eaf7d627926e532e))
@@ -29,8 +51,6 @@
2951

3052
[@dependabot](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Adependabot+updated%3A2023-06-28..2023-07-18&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Afcollonval+updated%3A2023-06-28..2023-07-18&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Agithub-actions+updated%3A2023-06-28..2023-07-18&type=Issues)
3153

32-
<!-- <END NEW CHANGELOG ENTRY> -->
33-
3454
## 0.10.0
3555

3656
([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/v0.9.1...d687dc2f1f656ac2e6782cf8ffc6edcbf6bcf6bb))

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"npmClient": "yarn",
3-
"version": "0.10.1"
3+
"version": "0.11.0"
44
}

package.json

Lines changed: 61 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,65 @@
11
{
2-
"name": "@jupyter/root-ui-toolkit",
3-
"version": "0.10.1",
4-
"private": true,
5-
"description": "UI Toolkit for Jupyter",
6-
"keywords": [
7-
"jupyter"
8-
],
9-
"homepage": "https://jupyterlab-contrib.github.io/jupyter-ui-toolkit/",
10-
"bugs": {
11-
"url": "https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/issues"
12-
},
13-
"license": "BSD-3-Clause",
14-
"author": {
15-
"name": "Project Jupyter"
16-
},
17-
"repository": {
18-
"type": "git",
19-
"url": "https://github.com/jupyterlab-contrib/jupyter-ui-toolkit.git"
20-
},
21-
"workspaces": [
22-
"packages/*"
23-
],
24-
"scripts": {
25-
"build": "lerna run build",
26-
"build:prod": "lerna run --scope @jupyter/web-components --scope @jupyter/react-components build && lerna run --scope jupyter-ui-demo build:prod",
27-
"clean": "lerna run clean",
28-
"format": "yarn stylelint && prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
29-
"format:check": "yarn stylelint:check && prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
30-
"lint": "lerna run eslint",
31-
"lint:check": "lerna run eslint:check",
32-
"stylelint": "yarn stylelint:check --fix",
33-
"stylelint:check": "stylelint --cache \"packages/lab-example/style/**/*.css\""
34-
},
35-
"devDependencies": {
36-
"@typescript-eslint/eslint-plugin": "^5.55.0",
37-
"@typescript-eslint/parser": "^5.55.0",
38-
"eslint": "^8.36.0",
39-
"eslint-config-prettier": "^8.8.0",
40-
"eslint-plugin-prettier": "^5.0.0",
41-
"lerna": "^7.0.0",
42-
"prettier": "^3.0.0",
43-
"stylelint": "^15.10.1",
44-
"stylelint-config-recommended": "^13.0.0",
45-
"stylelint-config-standard": "^34.0.0",
46-
"stylelint-prettier": "^4.0.0"
47-
},
48-
"resolutions": {
49-
"file-system-cache": "<2.4.0 || >2.4.0"
50-
},
51-
"packageManager": "[email protected]",
52-
"stylelint": {
53-
"extends": [
54-
"stylelint-config-recommended",
55-
"stylelint-config-standard",
56-
"stylelint-prettier/recommended"
2+
"name": "@jupyter/root-ui-toolkit",
3+
"version": "0.11.0",
4+
"private": true,
5+
"description": "UI Toolkit for Jupyter",
6+
"keywords": [
7+
"jupyter"
578
],
58-
"rules": {
59-
"property-no-vendor-prefix": null,
60-
"selector-class-pattern": null,
61-
"selector-no-vendor-prefix": null,
62-
"value-no-vendor-prefix": null
9+
"homepage": "https://jupyterlab-contrib.github.io/jupyter-ui-toolkit/",
10+
"bugs": {
11+
"url": "https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/issues"
12+
},
13+
"license": "BSD-3-Clause",
14+
"author": {
15+
"name": "Project Jupyter"
16+
},
17+
"repository": {
18+
"type": "git",
19+
"url": "https://github.com/jupyterlab-contrib/jupyter-ui-toolkit.git"
20+
},
21+
"workspaces": [
22+
"packages/*"
23+
],
24+
"scripts": {
25+
"build": "lerna run build",
26+
"build:prod": "lerna run --scope @jupyter/web-components --scope @jupyter/react-components build && lerna run --scope jupyter-ui-demo build:prod",
27+
"clean": "lerna run clean",
28+
"format": "yarn stylelint && prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
29+
"format:check": "yarn stylelint:check && prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
30+
"lint": "lerna run eslint",
31+
"lint:check": "lerna run eslint:check",
32+
"stylelint": "yarn stylelint:check --fix",
33+
"stylelint:check": "stylelint --cache \"packages/lab-example/style/**/*.css\""
34+
},
35+
"devDependencies": {
36+
"@typescript-eslint/eslint-plugin": "^5.55.0",
37+
"@typescript-eslint/parser": "^5.55.0",
38+
"eslint": "^8.36.0",
39+
"eslint-config-prettier": "^8.8.0",
40+
"eslint-plugin-prettier": "^5.0.0",
41+
"lerna": "^7.0.0",
42+
"prettier": "^3.0.0",
43+
"stylelint": "^15.10.1",
44+
"stylelint-config-recommended": "^13.0.0",
45+
"stylelint-config-standard": "^34.0.0",
46+
"stylelint-prettier": "^4.0.0"
47+
},
48+
"resolutions": {
49+
"file-system-cache": "<2.4.0 || >2.4.0"
50+
},
51+
"packageManager": "[email protected]",
52+
"stylelint": {
53+
"extends": [
54+
"stylelint-config-recommended",
55+
"stylelint-config-standard",
56+
"stylelint-prettier/recommended"
57+
],
58+
"rules": {
59+
"property-no-vendor-prefix": null,
60+
"selector-class-pattern": null,
61+
"selector-no-vendor-prefix": null,
62+
"value-no-vendor-prefix": null
63+
}
6364
}
64-
}
6565
}

packages/components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter/web-components",
3-
"version": "0.10.1",
3+
"version": "0.11.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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyter-ui-demo",
3-
"version": "0.10.1",
3+
"version": "0.11.0",
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.10.1",
52-
"@jupyter/web-components": "^0.10.1",
51+
"@jupyter/react-components": "^0.11.0",
52+
"@jupyter/web-components": "^0.11.0",
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter/react-components",
3-
"version": "0.10.1",
3+
"version": "0.11.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.10.1",
35+
"@jupyter/web-components": "^0.11.0",
3636
"@microsoft/fast-react-wrapper": "^0.3.18",
3737
"react": ">=17.0.0 <19.0.0"
3838
},

yarn.lock

Lines changed: 5 additions & 5 deletions
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.10.1, @jupyter/react-components@workspace:packages/react-components":
2467+
"@jupyter/react-components@^0.11.0, @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.10.1
2471+
"@jupyter/web-components": ^0.11.0
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.10.1, @jupyter/web-components@workspace:packages/components":
2503+
"@jupyter/web-components@^0.11.0, @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.10.1
11978-
"@jupyter/web-components": ^0.10.1
11977+
"@jupyter/react-components": ^0.11.0
11978+
"@jupyter/web-components": ^0.11.0
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)