@algenium/blocks 1.14.0 → 1.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +15 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +15 -10
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -7989,20 +7989,25 @@ function EmojiPicker({
|
|
|
7989
7989
|
sectionRefs.current.set(section.key, el);
|
|
7990
7990
|
},
|
|
7991
7991
|
className: "mb-2",
|
|
7992
|
-
style: {
|
|
7993
|
-
contentVisibility: "auto",
|
|
7994
|
-
containIntrinsicSize: "auto 200px"
|
|
7995
|
-
},
|
|
7996
7992
|
children: [
|
|
7997
7993
|
/* @__PURE__ */ jsxRuntime.jsx("h3", { className: "text-muted-foreground bg-popover sticky top-0 z-[1] px-1 py-1 text-xs font-medium", children: section.title }),
|
|
7998
7994
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
7999
|
-
|
|
7995
|
+
"div",
|
|
8000
7996
|
{
|
|
8001
|
-
|
|
8002
|
-
|
|
8003
|
-
|
|
8004
|
-
|
|
8005
|
-
|
|
7997
|
+
style: {
|
|
7998
|
+
contentVisibility: "auto",
|
|
7999
|
+
containIntrinsicSize: "auto 200px"
|
|
8000
|
+
},
|
|
8001
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
8002
|
+
EmojiGrid,
|
|
8003
|
+
{
|
|
8004
|
+
emojis: section.emojis,
|
|
8005
|
+
startIndex,
|
|
8006
|
+
activeIndex: focusIndex,
|
|
8007
|
+
skinTone,
|
|
8008
|
+
onSelect: handleSelect
|
|
8009
|
+
}
|
|
8010
|
+
)
|
|
8006
8011
|
}
|
|
8007
8012
|
)
|
|
8008
8013
|
]
|