Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@itwin/[email protected]
Minor Changes
#2106: All internal CSS class prefixes have been changed to prevent style conflicts across minor versions.
className
through props.#2131: Development-only warnings will now be properly excluded from the production build. This is done using a separate
"development"
entrypoint listed inpackage.json#exports
.#2135: Changed the column manager from a
DropdownMenu
to aPopover
to fix invalid markup and accessibility issues.Added dependency on
@tanstack/react-virtual
to replace the custom virtual-scroll implementation. This affects theenableVirtualization
prop inComboBox
,Table
, andTree
.#2061: Virtualized
ComboBox
now correctly supports dynamic sizing, e.g. when options both with and withoutsubLabel
are present.#2092: Virtualized
Table
has been improved so that scrolling no longer jumps when rows are scrolled past.#2139: Virtualized
Tree
no longer requires a wrapping scrollable element, since the tree itself is scrollable now.Diff
Patch Changes
overflow: auto
toTree
component to provide more consistent styling across components.Overlay
component was causing bundler warnings about a non-analyzable expression used in a dependency.Table
column manager button's open state no longer has theButton
's blue active color.displayName
s to all components that were previously missing them.displayName
s have been eliminated from the production build, so they only show up during development.ActionColumn
'sdropdownMenuProps
no longer exposes the unnecessarymatchWidth
prop.