@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.js CHANGED
@@ -7958,20 +7958,25 @@ function EmojiPicker({
7958
7958
  sectionRefs.current.set(section.key, el);
7959
7959
  },
7960
7960
  className: "mb-2",
7961
- style: {
7962
- contentVisibility: "auto",
7963
- containIntrinsicSize: "auto 200px"
7964
- },
7965
7961
  children: [
7966
7962
  /* @__PURE__ */ jsx("h3", { className: "text-muted-foreground bg-popover sticky top-0 z-[1] px-1 py-1 text-xs font-medium", children: section.title }),
7967
7963
  /* @__PURE__ */ jsx(
7968
- EmojiGrid,
7964
+ "div",
7969
7965
  {
7970
- emojis: section.emojis,
7971
- startIndex,
7972
- activeIndex: focusIndex,
7973
- skinTone,
7974
- onSelect: handleSelect
7966
+ style: {
7967
+ contentVisibility: "auto",
7968
+ containIntrinsicSize: "auto 200px"
7969
+ },
7970
+ children: /* @__PURE__ */ jsx(
7971
+ EmojiGrid,
7972
+ {
7973
+ emojis: section.emojis,
7974
+ startIndex,
7975
+ activeIndex: focusIndex,
7976
+ skinTone,
7977
+ onSelect: handleSelect
7978
+ }
7979
+ )
7975
7980
  }
7976
7981
  )
7977
7982
  ]