[READ-ONLY] Mirror of https://github.com/flo-bit/ui-kit. 🦊 fox ui, svelte 5 and tailwind 4 flo-bit.dev/ui-kit/
svelte tailwindcss ui-components
0

Configure Feed

Select the types of activity you want to include in your feed.

small fixes

Florian (May 3, 2025, 8:49 AM +0200) 01386779 9629a618

+8 -1
+5
.changeset/stale-ducks-wear.md
··· 1 + --- 2 + '@fuxui/social': patch 3 + --- 4 + 5 + small fixes emoji picker
+3 -1
packages/social/src/lib/components/emoji-picker/PopoverEmojiPicker.svelte
··· 8 8 onpicked, 9 9 children, 10 10 class: className, 11 + open = $bindable(false), 12 + triggerRef = $bindable(null), 11 13 ...props 12 14 }: { 13 15 onpicked?: (emoji: Emoji) => void; ··· 16 18 } & PopoverProps = $props(); 17 19 </script> 18 20 19 - <Popover {...props} class={cn('px-0 pb-0 pt-1', className)}> 21 + <Popover {...props} bind:triggerRef bind:open class={cn('px-0 pb-0 pt-1', className)}> 20 22 {@render children?.()} 21 23 <EmojiPicker {onpicked} /> 22 24 </Popover>