Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
a0f8be8
Polish command palette hierarchy and footer
brsbl Aug 31, 2026
ca6c218
Align command palette controls and metadata
brsbl Sep 1, 2026
f6b8648
Merge corrected thread-search foundation
brsbl Sep 2, 2026
1726178
Merge corrected palette guidance layer
brsbl Sep 2, 2026
65143d3
Merge corrected thread-search foundation
brsbl Sep 2, 2026
6e3d88c
Merge corrected palette guidance layer
brsbl Sep 2, 2026
0a382aa
Merge branch 'bb/command-palette-thread-search-v4-thr_ccffp4w2p2' int…
brsbl Sep 3, 2026
4b6574f
Merge branch 'bb/command-palette-persistent-guidance-v4-thr_ccffp4w2p…
brsbl Sep 3, 2026
69b331f
Merge branch 'bb/command-palette-thread-search-v4-thr_ccffp4w2p2' int…
brsbl Sep 3, 2026
2f8240a
Merge branch 'bb/command-palette-persistent-guidance-v4-thr_ccffp4w2p…
brsbl Sep 3, 2026
2d9560c
Restore command palette tab fill
brsbl Sep 3, 2026
0c5674d
De-emphasize command palette shortcuts
brsbl Sep 3, 2026
a39d83d
Refine command palette guidance
brsbl Sep 3, 2026
898e720
Align palette metadata assertions
brsbl Sep 3, 2026
3fb83cf
Restore trailing thread lifecycle labels
brsbl Sep 3, 2026
eb96e2b
Merge remote-tracking branch 'origin/bb/command-palette-thread-search…
brsbl Sep 3, 2026
8043449
Merge remote-tracking branch 'origin/bb/command-palette-persistent-gu…
brsbl Sep 3, 2026
6915090
Merge main into command palette foundation
brsbl Sep 9, 2026
539a14e
Merge branch 'bb/command-palette-thread-search-v4-thr_ccffp4w2p2' int…
brsbl Sep 9, 2026
bc8e508
Keep thread scope menu outside palette results clipping
brsbl Sep 9, 2026
fbeabbd
Update palette thread fixtures for current environment metadata
brsbl Sep 9, 2026
0d12142
Merge branch 'bb/command-palette-thread-search-v4-thr_ccffp4w2p2' int…
brsbl Sep 9, 2026
1b6beb7
Merge scope menu fix and main updates into palette hierarchy
brsbl Sep 9, 2026
25eff95
Align palette guide source anchor with results-only clipping
brsbl Sep 9, 2026
1c36a2d
Merge branch 'bb/command-palette-persistent-guidance-v4-thr_ccffp4w2p…
brsbl Sep 9, 2026
b9b9264
Allow 2 KiB of raw boot budget for the persistent palette shell
brsbl Sep 9, 2026
bc8ec0a
Merge branch 'bb/command-palette-persistent-guidance-v4-thr_ccffp4w2p…
brsbl Sep 9, 2026
88848cc
Cover opening already archived threads in split panes
brsbl Sep 9, 2026
3ff9a9d
Keep already archived threads readable in split panes
brsbl Sep 9, 2026
ad72eea
Merge branch 'bb/command-palette-thread-search-v4-thr_ccffp4w2p2' int…
brsbl Sep 9, 2026
534a84a
Merge branch 'bb/command-palette-persistent-guidance-v4-thr_ccffp4w2p…
brsbl Sep 9, 2026
68c157f
Merge branch 'bb/command-palette-thread-search-v4-thr_ccffp4w2p2' int…
brsbl Sep 9, 2026
ab9a7f3
Merge branch 'bb/command-palette-persistent-guidance-v4-thr_ccffp4w2p…
brsbl Sep 9, 2026
bb35971
Make palette defaults useful and guidance contextual
brsbl Sep 9, 2026
4f08192
Align palette scope tests with accessible menu naming
brsbl Sep 9, 2026
d19dbfb
Track the command runner in the empty-state callback
brsbl Sep 9, 2026
75de5eb
Sort palette rows using their source timestamps
brsbl Sep 9, 2026
432d8ce
Reuse the sidebar empty state in thread search
brsbl Sep 10, 2026
30d3f23
Show palette guidance on demand and expose the split action
brsbl Sep 10, 2026
6cf6278
Handle Escape from palette action tooltips and account for their shel…
brsbl Sep 10, 2026
8edd64c
Own palette tooltip context in the production shell
brsbl Sep 10, 2026
5677d47
Tighten palette spacing and clarify result metadata
brsbl Sep 11, 2026
fcbc0c3
Integrate independent thread search with the final palette UI
brsbl Sep 11, 2026
46f8ecc
Align palette guidance tests and source anchors with the trimmed UI
brsbl Sep 11, 2026
b688c3b
Carry compact command activation into the final palette
brsbl Sep 11, 2026
88ae77d
Separate palette defaults and modes from split opening
brsbl Sep 12, 2026
52b388c
Keep status tooltips and derive highlights from current search contract
brsbl Sep 12, 2026
15e439b
Make follow-up draft fixture explicitly read
brsbl Sep 12, 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
4 changes: 2 additions & 2 deletions apps/app/src/components/commands/AppCommandShortcutHint.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface AppCommandShortcutPillProps {
className?: string;
}

const APP_COMMAND_SHORTCUT_HINT_CLASS =
export const APP_COMMAND_ACCESSORY_PILL_CLASS =
"pointer-events-none inline-flex shrink-0 items-center justify-center whitespace-nowrap rounded-sm bg-state-hover px-1.5 py-1 font-sans text-xs font-normal leading-none tabular-nums text-subtle-foreground opacity-60";

export function AppCommandShortcutPill({
Expand All @@ -24,7 +24,7 @@ export function AppCommandShortcutPill({
return (
<kbd
aria-hidden={ariaHidden}
className={cn(APP_COMMAND_SHORTCUT_HINT_CLASS, className)}
className={cn(APP_COMMAND_ACCESSORY_PILL_CLASS, className)}
>
{shortcut.label}
</kbd>
Expand Down
Loading
Loading