diff options
author | Eric Bailey <git@esb.lol> | 2024-09-25 15:54:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-25 15:54:43 -0500 |
commit | b1ca2503de55c41431aac38db4d164da7d506d4f (patch) | |
tree | bc9ee42651a4c639d910e6a31572d47fb45c5c93 /src/alf/types.ts | |
parent | 6bc001a30e4376e706fd1c10469065e0e78e1bf0 (diff) | |
download | voidsky-b1ca2503de55c41431aac38db4d164da7d506d4f.tar.zst |
Add language filtering UI to search (#5459)
* Use new TextField for search bar * Add lang dropdown * Dialog * Revert "Dialog" This reverts commit 257573cd9c2a70d29df4ef5bdd503eea4ae411fe. * Extract util, test, cleanup * Fix formatting * Pass through other params * Fix sticky header * Fix stale data, hide/show * Improve query parsing * Replace memo * Couple tweaks * Revert cancel change * Remove unused placeholder
Diffstat (limited to 'src/alf/types.ts')
-rw-r--r-- | src/alf/types.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/alf/types.ts b/src/alf/types.ts index 41822b8dd..08ec59392 100644 --- a/src/alf/types.ts +++ b/src/alf/types.ts @@ -156,6 +156,7 @@ export type ThemedAtoms = { } } export type Theme = { + scheme: 'light' | 'dark' // for library support name: ThemeName palette: Palette atoms: ThemedAtoms |