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

Merged
merged 3 commits into from
Jul 16, 2024
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
5 changes: 0 additions & 5 deletions .changeset/cool-beds-hunt.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/few-candles-impress.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fifty-seahorses-dance.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lucky-starfishes-enjoy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nice-students-matter.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nine-bees-peel.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/proud-hornets-itch.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/rare-buckets-mate.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/real-jokes-repair.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silent-jars-trade.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silver-ways-enjoy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/violet-donkeys-help.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/violet-rats-breathe.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wet-trainers-heal.md

This file was deleted.

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

## 3.13.0

### Minor Changes

- [#2106](https://github.com/iTwin/iTwinUI/pull/2106): All internal CSS class prefixes have been changed to prevent style conflicts across minor versions.
- While this is _not_ considered a breaking change according to our [support policy](https://github.com/iTwin/iTwinUI/wiki/Support-policy), this change might affect you if you ignore our pleas to not rely on these internal class names. The recommendation is to pass your own custom `className` through props.

- [#2131](https://github.com/iTwin/iTwinUI/pull/2131): Development-only warnings will now be properly excluded from the production build. This is done using a separate `"development"` entrypoint listed in `package.json#exports`.

- [#2135](https://github.com/iTwin/iTwinUI/pull/2135): Changed the column manager from a `DropdownMenu` to a `Popover` to fix invalid markup and accessibility issues.

- Added dependency on `@tanstack/react-virtual` to replace the custom virtual-scroll implementation. This affects the `enableVirtualization` prop in `ComboBox`, `Table`, and `Tree`.
- [#2061](https://github.com/iTwin/iTwinUI/pull/2061): Virtualized `ComboBox` now correctly supports dynamic sizing, e.g. when options both with and without `subLabel` are present.
- [#2092](https://github.com/iTwin/iTwinUI/pull/2092): Virtualized `Table` has been improved so that scrolling no longer jumps when rows are scrolled past.
- [#2139](https://github.com/iTwin/iTwinUI/pull/2139): Virtualized `Tree` no longer requires a wrapping scrollable element, since the tree itself is scrollable now.
<details>
<summary>Diff</summary>

```diff
- <div style={{overflow: 'auto', height: 'min(400px, 90vh)'}}>
<Tree
enableVirtualization
+ style={{height: 'min(400px, 90vh)'}}
/>
- </div>
```
</details>

### Patch Changes

- [#2139](https://github.com/iTwin/iTwinUI/pull/2139): Added `overflow: auto` to `Tree` component to provide more consistent styling across components.
- [#2137](https://github.com/iTwin/iTwinUI/pull/2137): Console warnings will now be displayed during development when multiple versions of iTwinUI are detected.
- [#2145](https://github.com/iTwin/iTwinUI/pull/2145): Fixed an issue where the `Overlay` component was causing bundler warnings about a non-analyzable expression used in a dependency.
- [#2135](https://github.com/iTwin/iTwinUI/pull/2135): The `Table` column manager button's open state no longer has the `Button`'s blue active color.
- [#2142](https://github.com/iTwin/iTwinUI/pull/2142): Added `displayName`s to all components that were previously missing them.
- [#2141](https://github.com/iTwin/iTwinUI/pull/2141): `displayName`s have been eliminated from the production build, so they only show up during development.
- [#2135](https://github.com/iTwin/iTwinUI/pull/2135): `ActionColumn`'s `dropdownMenuProps` no longer exposes the unnecessary `matchWidth` prop.

## 3.12.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/itwinui-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/itwinui-react",
"version": "3.12.2",
"version": "3.13.0",
"author": "Bentley Systems",
"license": "MIT",
"type": "module",
Expand Down
Loading