diff options
author | Hailey <153161762+haileyok@users.noreply.github.com> | 2024-01-02 12:16:28 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-02 12:16:28 -0800 |
commit | c1dc0b7ee0f15134578d50a3d344ab4bdad1119f (patch) | |
tree | a8dd56018c9efe4c9a17e7bab4c6d0624b38fb41 /src/state/shell/composer.tsx | |
parent | e460b304fc2ce05be48567579647c969e46ed116 (diff) | |
download | voidsky-c1dc0b7ee0f15134578d50a3d344ab4bdad1119f.tar.zst |
emoji picker improvements (#2392)
* rework emoji picker * dynamic position * always prefer the left if it will fit * add accessibility label * Update EmojiPicker.web.tsx oops. remove accessibility from fake button
Diffstat (limited to 'src/state/shell/composer.tsx')
-rw-r--r-- | src/state/shell/composer.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/state/shell/composer.tsx b/src/state/shell/composer.tsx index bdf5e4a7a..9cf8ef8de 100644 --- a/src/state/shell/composer.tsx +++ b/src/state/shell/composer.tsx @@ -30,6 +30,7 @@ export interface ComposerOpts { onPost?: () => void quote?: ComposerOptsQuote mention?: string // handle of user to mention + openPicker?: (pos: DOMRect | undefined) => void } type StateContext = ComposerOpts | undefined |