Skip to content
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
69a337a
feat: Extend DashboardContainer schema with tabs and display options
alex-fedotyev Apr 3, 2026
33ea2bb
feat: Add @dnd-kit infrastructure for container reordering
alex-fedotyev Apr 3, 2026
cc4d62f
feat: Add GroupContainer, replace SectionHeader
alex-fedotyev Apr 3, 2026
7742b48
feat: Add useDashboardContainers and useTileSelection hooks
alex-fedotyev Apr 3, 2026
bcce771
feat: Integrate groups, tabs, and DnD into dashboard page
alex-fedotyev Apr 6, 2026
c244076
test: Add GroupContainer and dashboard container tests
alex-fedotyev Apr 6, 2026
b018011
Merge branch 'main' into feat/unified-group
alex-fedotyev Apr 6, 2026
e501956
fix: use semantic CSS tokens per review feedback
alex-fedotyev Apr 7, 2026
09831a0
fix: Replace remaining Mantine tokens with semantic tokens
alex-fedotyev Apr 7, 2026
dbec2c1
fix: Address PR review feedback — Mantine components, decomposition, …
alex-fedotyev Apr 10, 2026
649bea4
fix: Tab delete offers choice — delete tiles or move to another tab
alex-fedotyev Apr 15, 2026
3787fab
Merge remote-tracking branch 'origin/main' into feat/unified-group
alex-fedotyev Apr 21, 2026
08593ae
chore: remove redundant WHAT-style comments per review feedback
alex-fedotyev Apr 21, 2026
7110037
feat: auto-delete emptied groups after Cmd+G regrouping
alex-fedotyev Apr 21, 2026
9c39efa
refactor: rename GroupContainer → DashboardContainer
alex-fedotyev Apr 21, 2026
dc153b9
refactor: move activeTabId to URL state (per-viewer)
alex-fedotyev Apr 21, 2026
9c95f42
fix: take viewer to new tab after Add Tab + harden stale activeTabId …
alex-fedotyev Apr 21, 2026
b845595
feat: 3-option prompt for group delete (Cancel / Ungroup Tiles / Delete)
alex-fedotyev Apr 21, 2026
f059991
fix: address 3 issues from latest code review
alex-fedotyev Apr 21, 2026
c01ae19
feat: show group-level alert dot on expanded plain (no-tab) containers
alex-fedotyev Apr 21, 2026
931d80b
fix: address pulpdrew review round (bug fix + design simplifications …
alex-fedotyev Apr 22, 2026
1518b9e
docs: surface dashboard tile selection shortcuts in KeyboardShortcuts…
alex-fedotyev Apr 22, 2026
4cf5bc6
Merge remote-tracking branch 'origin/main' into feat/unified-group
alex-fedotyev Apr 22, 2026
4394704
Merge remote-tracking branch 'origin/main' into feat/unified-group
alex-fedotyev Apr 23, 2026
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
6 changes: 6 additions & 0 deletions .changeset/unified-group-containers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@hyperdx/app": patch
"@hyperdx/common-utils": patch
---

refactor: Unify section/group into single Group with collapsible/bordered options
3 changes: 3 additions & 0 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
"@codemirror/lint": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@dagrejs/dagre": "^1.1.5",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^3.9.0",
"@hyperdx/browser": "^0.22.0",
"@hyperdx/common-utils": "^0.17.0",
Expand Down
Loading
Loading