@fluid-app/ui-primitives 0.1.4 → 0.1.5

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 CHANGED
@@ -1785,7 +1785,7 @@ function SelectTrigger({
1785
1785
  ...props,
1786
1786
  children: [
1787
1787
  children,
1788
- /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Icon, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronDown, { className: "size-4 opacity-50" }) })
1788
+ /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Icon, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronDownIcon, { className: "size-4 opacity-50" }) })
1789
1789
  ]
1790
1790
  }
1791
1791
  );
@@ -1793,7 +1793,7 @@ function SelectTrigger({
1793
1793
  function SelectContent({
1794
1794
  className,
1795
1795
  children,
1796
- position = "popper",
1796
+ position = "item-aligned",
1797
1797
  align = "center",
1798
1798
  ...props
1799
1799
  }) {
@@ -1855,7 +1855,14 @@ function SelectItem({
1855
1855
  ),
1856
1856
  ...props,
1857
1857
  children: [
1858
- /* @__PURE__ */ jsxRuntime.jsx("span", { className: "absolute right-2 flex size-3.5 items-center justify-center", children: /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.ItemIndicator, { children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Check, { className: "size-4" }) }) }),
1858
+ /* @__PURE__ */ jsxRuntime.jsx(
1859
+ "span",
1860
+ {
1861
+ "data-slot": "select-item-indicator",
1862
+ className: "absolute right-2 flex size-3.5 items-center justify-center",
1863
+ children: /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.ItemIndicator, { children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.CheckIcon, { className: "size-4" }) })
1864
+ }
1865
+ ),
1859
1866
  /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.ItemText, { children })
1860
1867
  ]
1861
1868
  }
@@ -1887,7 +1894,7 @@ function SelectScrollUpButton({
1887
1894
  className
1888
1895
  ),
1889
1896
  ...props,
1890
- children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronUp, { className: "size-4" })
1897
+ children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronUpIcon, { className: "size-4" })
1891
1898
  }
1892
1899
  );
1893
1900
  }
@@ -1904,7 +1911,7 @@ function SelectScrollDownButton({
1904
1911
  className
1905
1912
  ),
1906
1913
  ...props,
1907
- children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronDown, { className: "size-4" })
1914
+ children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronDownIcon, { className: "size-4" })
1908
1915
  }
1909
1916
  );
1910
1917
  }