@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/README.md CHANGED
@@ -201,9 +201,11 @@ sink them into the page.
201
201
  ## Customisation
202
202
 
203
203
  **The neutrals carry a whisper of the brand.** Panels, inputs, table headers
204
- and the sunken wells are a grey ramp with four percent of `--mz-tint` mixed in
205
- five channel steps out of 255, enough that a surface is not flat cardboard,
206
- not enough to name a colour. The tint follows `--mz-primary-rgb`, so the greys
204
+ and the sunken wells are a grey ramp with a few percent of `--mz-tint` mixed in
205
+ three channel steps out of 255, enough that a surface is not flat cardboard,
206
+ not enough to name a colour. Dark runs the tint weaker than light (2.5% against
207
+ 4%): there the brand is far lighter than the surfaces it sits in, so the same
208
+ percentage pulls a lot more hue. The tint follows `--mz-primary-rgb`, so the greys
207
209
  move with the brand instead of keeping a violet cast that belongs to no one:
208
210
 
209
211
  ```css
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 })