Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release packages #1250

Merged
merged 3 commits into from
May 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

13 changes: 0 additions & 13 deletions .changeset/lovely-poems-remember.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.

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

## 1.11.0

### Minor Changes

- [#863](https://github.com/iTwin/iTwinUI/pull/863): SearchBox - 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
- [#1060](https://github.com/iTwin/iTwinUI/pull/1060): Tabs - Added data attribute 'data-iui-overflow' - when true it adds styling for overflow tabs

### 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
32 changes: 32 additions & 0 deletions packages/itwinui-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# 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.

- [#1060](https://github.com/iTwin/iTwinUI/pull/1060): Tabs - Added property `overflowOptions` - contains `useOverflow`, which when true enables tabs to scroll if there's overflow
```typescript
<Tabs type='default' overflowButton={{ useOverflow: true }}>
{tabs}
</Tabs>
```

### 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/[email protected]

## 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