Port launch bar to React (#7934)

This commit is contained in:
Elian Doran
2025-12-06 09:35:06 +02:00
committed by GitHub
62 changed files with 2180 additions and 1991 deletions

View File

@@ -24,6 +24,11 @@ type Labels = {
orderBy: string;
orderDirection: string;
// Launch bar
bookmarkFolder: boolean;
command: string;
keyboardShortcut: string;
// Collection-specific
viewType: string;
status: string;
@@ -55,7 +60,11 @@ type Labels = {
*/
type Relations = [
"searchScript",
"ancestor"
"ancestor",
// Launcher-specific
"target",
"widget"
];
export type LabelNames = keyof Labels;