Skip to content

Commit 7d0b53e

Browse files
Version Packages (#1141)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent b5157cc commit 7d0b53e

5 files changed

Lines changed: 15 additions & 18 deletions

File tree

.changeset/fix-tree-virtualization-scroll.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/reorderable-tab-picker.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/revert-tree-expand-on-folder-click.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @cube-dev/ui-kit
22

3+
## 0.133.0
4+
5+
### Minor Changes
6+
7+
- [#1140](https://github.com/cube-js/cube-ui-kit/pull/1140) [`af1736db`](https://github.com/cube-js/cube-ui-kit/commit/af1736db1e0b6de77e77a0c25deefabe4c7e6d51) Thanks [@solarrust](https://github.com/solarrust)! - **Tabs**: reorderable tab picker — when `isReorderable` is enabled and a tab picker is shown, items in the picker dropdown can be reordered via drag-and-drop or `Alt+Arrow` keyboard shortcuts.
8+
9+
- [#1142](https://github.com/cube-js/cube-ui-kit/pull/1142) [`fe05e4cd`](https://github.com/cube-js/cube-ui-kit/commit/fe05e4cdf5f49843427191018c57c3e8dbe41d06) Thanks [@tenphi](https://github.com/tenphi)! - **Tree**: revert `expandOnFolderClick`. Its row-level `stopPropagation()` on pointer/mouse events prevented document-level listeners from receiving them — most visibly, `Layout.Panel`'s resize (via React Aria's `useMove`) latched when the cursor released over a folder row in a `Tree` rendered inside a resizable panel. The default `treegrid` behavior (chevron expands, row activates selection) is unchanged.
10+
11+
### Patch Changes
12+
13+
- [#1142](https://github.com/cube-js/cube-ui-kit/pull/1142) [`fe05e4cd`](https://github.com/cube-js/cube-ui-kit/commit/fe05e4cdf5f49843427191018c57c3e8dbe41d06) Thanks [@tenphi](https://github.com/tenphi)! - **Tree**: fix virtualized scroll container growing past its fixed height. The previous structure made the outer `TreeElement` both a `display: flex` layout container and the `overflow: auto` scroll element, so the virtualizer's sizer (a flex child with `height: totalSize`) was squashed by `flex-shrink: 1` and the scroll area visibly grew as `@tanstack/react-virtual` re-measured rows during scroll. Scrolling now happens inside a dedicated block-level inner container, so the sizer's height is honored and the scroll viewport stays stable.
14+
15+
The forwarded `ref` now points at this inner scroll container so consumers can read/write `scrollTop` directly. The `role="treegrid"` element (used internally by `useTree`) is its parent.
16+
317
## 0.132.0
418

519
### Minor Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cube-dev/ui-kit",
3-
"version": "0.132.0",
3+
"version": "0.133.0",
44
"type": "module",
55
"description": "UIKit for Cube Projects",
66
"repository": {

0 commit comments

Comments
 (0)