@onesaz/ui 0.4.4 → 0.4.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 +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1393,7 +1393,7 @@ var Checkbox = React12.forwardRef(
|
|
|
1393
1393
|
"flex items-center justify-center",
|
|
1394
1394
|
// Focus ring mirrors the hidden input's focus-visible state
|
|
1395
1395
|
"peer-focus-visible:ring-2 peer-focus-visible:ring-ring peer-focus-visible:ring-offset-2 peer-focus-visible:ring-offset-background peer-focus-visible:outline-none",
|
|
1396
|
-
active ? "bg-accent border-accent text-accent-foreground" : "bg-background border-
|
|
1396
|
+
active ? "bg-accent border-accent text-accent-foreground" : "bg-background border-muted-foreground text-transparent"
|
|
1397
1397
|
),
|
|
1398
1398
|
children: indeterminate ? (
|
|
1399
1399
|
// Dash for indeterminate
|
|
@@ -4913,16 +4913,16 @@ var DataGridToolbar = ({
|
|
|
4913
4913
|
customButtons,
|
|
4914
4914
|
moreOptions = []
|
|
4915
4915
|
}) => {
|
|
4916
|
-
return /* @__PURE__ */ jsxs23("div", { className: "flex
|
|
4916
|
+
return /* @__PURE__ */ jsxs23("div", { className: "flex items-center gap-2 px-4 py-3 border-b border-border bg-background", children: [
|
|
4917
4917
|
title && /* @__PURE__ */ jsx36("h3", { className: "text-sm font-semibold text-foreground shrink-0", children: title }),
|
|
4918
|
-
/* @__PURE__ */ jsxs23("div", { className: "flex
|
|
4918
|
+
/* @__PURE__ */ jsxs23("div", { className: "flex items-center gap-2 ml-auto", children: [
|
|
4919
4919
|
showQuickFilter && /* @__PURE__ */ jsx36(
|
|
4920
4920
|
Input,
|
|
4921
4921
|
{
|
|
4922
4922
|
placeholder: "Search...",
|
|
4923
4923
|
value: globalFilter ?? "",
|
|
4924
4924
|
onChange: (e) => setGlobalFilter(e.target.value),
|
|
4925
|
-
className: "h-9
|
|
4925
|
+
className: "h-9 w-[200px]",
|
|
4926
4926
|
endAdornment: /* @__PURE__ */ jsxs23("svg", { xmlns: "http://www.w3.org/2000/svg", width: "16", height: "16", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", className: "text-muted-foreground", children: [
|
|
4927
4927
|
/* @__PURE__ */ jsx36("circle", { cx: "11", cy: "11", r: "8" }),
|
|
4928
4928
|
/* @__PURE__ */ jsx36("path", { d: "m21 21-4.3-4.3" })
|