Skip to content

Commit

Permalink
Release packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 15, 2023
1 parent c533796 commit 79c886c
Show file tree
Hide file tree
Showing 18 changed files with 47 additions and 74 deletions.
13 changes: 0 additions & 13 deletions .changeset/brave-otters-switch.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/fluffy-dogs-vanish.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hip-suns-repeat.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/long-buttons-glow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/mighty-cycles-sparkle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nine-schools-lick.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/perfect-geckos-carry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/plenty-cats-report.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/poor-bees-sneeze.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/purple-beds-hammer.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/wet-eyes-drop.md

This file was deleted.

16 changes: 16 additions & 0 deletions packages/itwinui-css/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 1.11.0

### Minor Changes

- [#863](https://github.com/iTwin/iTwinUI/pull/863): - Add `iui-input-flex-container` class for inputs with icons and buttons within
- Add `iui-searchbox` class for Searchbox
- Add `iui-expandable-searchbox` class for Searchbox that can be expanded
- Add `iui-search-icon` for styling icons within search

### Patch Changes

- [#1275](https://github.com/iTwin/iTwinUI/pull/1275): Fixed an issue where `ProgressRadial` was not correctly showing when used inside a v2 boundary within a v1 page.
- [#1251](https://github.com/iTwin/iTwinUI/pull/1251): Reorganized source file structure. Should have no changes in the CSS output.
- [#1271](https://github.com/iTwin/iTwinUI/pull/1271): Added `color` declaration to `iui-keyboard`.
- [#1257](https://github.com/iTwin/iTwinUI/pull/1257): Fixed an issue where pseudo elements inside a v2 boundary were not reverting v1 styles.

## 1.10.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/itwinui-css/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/itwinui-css",
"version": "1.10.3",
"version": "1.11.0",
"author": "Bentley Systems",
"license": "MIT",
"main": "css/all.css",
Expand Down
25 changes: 25 additions & 0 deletions packages/itwinui-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## 2.11.0

### Minor Changes

- [#863](https://github.com/iTwin/iTwinUI/pull/863): Add `SearchBox` component for your search needs. It can be used as static or expandable version of SearchBox.

```ts
<SearchBox inputProps={{placeholder:'Basic search'}} />
<SearchBox expandable inputProps={{placeholder:'Expandable search'}} />
```

`SearchBox` has `SearchBox.Icon`, `SearchBox.Button`, `SearchBox.Input`, `SearchBox.CollapseButton` and `SearchBox.ExpandButton` subcomponents which can be passed as children to customise the look.

### Patch Changes

- [#1275](https://github.com/iTwin/iTwinUI/pull/1275): Fixed an issue where `ProgressRadial` was not correctly showing when used inside a v2 boundary within a v1 page.
- [#1156](https://github.com/iTwin/iTwinUI/pull/1156): Fixes an issue where table crashes when resizing the Column Manager column in expand mode.
- [#1246](https://github.com/iTwin/iTwinUI/pull/1246): All relative imports now use the `.js` extension, in preparation of better ESM support.
- [#1228](https://github.com/iTwin/iTwinUI/pull/1228): `ComboBox` and `Select` will now use a hidden live region to ensure that multiple selected options are announced by assistive technologies every time the selection is updated.
- [#1276](https://github.com/iTwin/iTwinUI/pull/1276): Fixed an issue where using Popover components in controlled mode (through `visible` prop) was appending it to the wrong root element.
- [#1281](https://github.com/iTwin/iTwinUI/pull/1281): Fixed an issue in ButtonGroup where null/undefined children were also getting wrapped by empty `<div>`s.
- [#1257](https://github.com/iTwin/iTwinUI/pull/1257): Fixed an issue where pseudo elements inside a v2 boundary were not reverting v1 styles.
- Updated dependencies:
- @itwin/itwinui-css@1.11.0

## 2.10.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/itwinui-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/itwinui-react",
"version": "2.10.1",
"version": "2.11.0",
"author": "Bentley Systems",
"license": "MIT",
"main": "cjs/index.js",
Expand Down Expand Up @@ -67,7 +67,7 @@
"dev:types": "concurrently \"tsc -p tsconfig.cjs.json --emitDeclarationOnly --watch --preserveWatchOutput\" \"tsc -p tsconfig.esm.json --emitDeclarationOnly --watch --preserveWatchOutput\""
},
"dependencies": {
"@itwin/itwinui-css": "^1.10.3",
"@itwin/itwinui-css": "^1.11.0",
"@itwin/itwinui-illustrations-react": "^2.0.0",
"@itwin/itwinui-variables": "^2.0.0",
"@tippyjs/react": "^4.2.6",
Expand Down
2 changes: 1 addition & 1 deletion playgrounds/astro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"dependencies": {
"@astrojs/react": "^2.0.2",
"@itwin/itwinui-react": "2.10.1",
"@itwin/itwinui-react": "2.11.0",
"astro": "^2.0.13",
"react": "^18.2.0",
"react-dom": "^18.2.0"
Expand Down
2 changes: 1 addition & 1 deletion playgrounds/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"clean": "rimraf .turbo && rimraf node_modules && rimraf .next"
},
"dependencies": {
"@itwin/itwinui-react": "2.10.1",
"@itwin/itwinui-react": "2.11.0",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
Expand Down
2 changes: 1 addition & 1 deletion playgrounds/vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"clean": "rimraf .turbo && rimraf node_modules && rimraf dist"
},
"dependencies": {
"@itwin/itwinui-react": "2.10.1",
"@itwin/itwinui-react": "2.11.0",
"@itwin/itwinui-icons-react": "2",
"react": "^18.0.0",
"react-dom": "^18.0.0"
Expand Down

0 comments on commit 79c886c

Please sign in to comment.