@morze/ui 0.2.3 → 0.2.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.js CHANGED
@@ -1909,7 +1909,7 @@ function ColumnFilter({ columnLabel, def, value, onApply, labels: labelsProp })
1909
1909
  ) }),
1910
1910
  /* @__PURE__ */ jsxs(PopoverContent, { align: "start", className: "mz-dt__filter-panel", children: [
1911
1911
  /* @__PURE__ */ jsx("div", { className: "mz-dt__filter-head", children: columnLabel }),
1912
- /* @__PURE__ */ jsx(
1912
+ /* @__PURE__ */ jsx("div", { className: "mz-dt__filter-body", children: /* @__PURE__ */ jsx(
1913
1913
  FilterBody,
1914
1914
  {
1915
1915
  def,
@@ -1919,7 +1919,7 @@ function ColumnFilter({ columnLabel, def, value, onApply, labels: labelsProp })
1919
1919
  onSubmit: () => commit(draft),
1920
1920
  onCommit: commit
1921
1921
  }
1922
- ),
1922
+ ) }),
1923
1923
  def.type === "custom" && def.actions === false ? null : /* @__PURE__ */ jsxs("div", { className: "mz-dt__filter-actions", children: [
1924
1924
  /* @__PURE__ */ jsx(Button, { size: "sm", variant: "ghost", onClick: () => commit(void 0), children: labels.reset }),
1925
1925
  /* @__PURE__ */ jsx(Button, { size: "sm", onClick: () => commit(draft), children: labels.apply })