@morze/ui 0.2.4 → 0.2.6

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
@@ -910,6 +910,9 @@ function Avatar({
910
910
  }
911
911
  );
912
912
  }
913
+ function AvatarGroup({ className, ...props }) {
914
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { "data-slot": "avatar-group", role: "group", className: cn("mz-avatar-group", className), ...props });
915
+ }
913
916
  function AvatarImage({ className, ...props }) {
914
917
  return /* @__PURE__ */ jsxRuntime.jsx(
915
918
  radixUi.Avatar.Image,
@@ -1931,7 +1934,7 @@ function ColumnFilter({ columnLabel, def, value, onApply, labels: labelsProp })
1931
1934
  ) }),
1932
1935
  /* @__PURE__ */ jsxRuntime.jsxs(PopoverContent, { align: "start", className: "mz-dt__filter-panel", children: [
1933
1936
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mz-dt__filter-head", children: columnLabel }),
1934
- /* @__PURE__ */ jsxRuntime.jsx(
1937
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mz-dt__filter-body", children: /* @__PURE__ */ jsxRuntime.jsx(
1935
1938
  FilterBody,
1936
1939
  {
1937
1940
  def,
@@ -1941,7 +1944,7 @@ function ColumnFilter({ columnLabel, def, value, onApply, labels: labelsProp })
1941
1944
  onSubmit: () => commit(draft),
1942
1945
  onCommit: commit
1943
1946
  }
1944
- ),
1947
+ ) }),
1945
1948
  def.type === "custom" && def.actions === false ? null : /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mz-dt__filter-actions", children: [
1946
1949
  /* @__PURE__ */ jsxRuntime.jsx(Button, { size: "sm", variant: "ghost", onClick: () => commit(void 0), children: labels.reset }),
1947
1950
  /* @__PURE__ */ jsxRuntime.jsx(Button, { size: "sm", onClick: () => commit(draft), children: labels.apply })
@@ -3268,6 +3271,7 @@ exports.AlertDescription = AlertDescription;
3268
3271
  exports.AlertTitle = AlertTitle;
3269
3272
  exports.Avatar = Avatar;
3270
3273
  exports.AvatarFallback = AvatarFallback;
3274
+ exports.AvatarGroup = AvatarGroup;
3271
3275
  exports.AvatarImage = AvatarImage;
3272
3276
  exports.Badge = Badge;
3273
3277
  exports.Button = Button;