@morze/ui 0.2.4 → 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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/morze-ui-tokens.css +1 -1
- package/dist/morze-ui.css +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1931,7 +1931,7 @@ function ColumnFilter({ columnLabel, def, value, onApply, labels: labelsProp })
|
|
|
1931
1931
|
) }),
|
|
1932
1932
|
/* @__PURE__ */ jsxRuntime.jsxs(PopoverContent, { align: "start", className: "mz-dt__filter-panel", children: [
|
|
1933
1933
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "mz-dt__filter-head", children: columnLabel }),
|
|
1934
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1934
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "mz-dt__filter-body", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1935
1935
|
FilterBody,
|
|
1936
1936
|
{
|
|
1937
1937
|
def,
|
|
@@ -1941,7 +1941,7 @@ function ColumnFilter({ columnLabel, def, value, onApply, labels: labelsProp })
|
|
|
1941
1941
|
onSubmit: () => commit(draft),
|
|
1942
1942
|
onCommit: commit
|
|
1943
1943
|
}
|
|
1944
|
-
),
|
|
1944
|
+
) }),
|
|
1945
1945
|
def.type === "custom" && def.actions === false ? null : /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mz-dt__filter-actions", children: [
|
|
1946
1946
|
/* @__PURE__ */ jsxRuntime.jsx(Button, { size: "sm", variant: "ghost", onClick: () => commit(void 0), children: labels.reset }),
|
|
1947
1947
|
/* @__PURE__ */ jsxRuntime.jsx(Button, { size: "sm", onClick: () => commit(draft), children: labels.apply })
|