@addsign/moje-agenda-shared-lib 0.0.95 → 0.0.96
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/assets/tailwind.css
CHANGED
|
@@ -22062,7 +22062,7 @@ function DataTableServer({
|
|
|
22062
22062
|
options: filterOptions[String(filterParam)] || [],
|
|
22063
22063
|
value: (columnFilters == null ? void 0 : columnFilters[String(filterParam)]) || "",
|
|
22064
22064
|
clearable: true,
|
|
22065
|
-
className: "
|
|
22065
|
+
className: "px-1"
|
|
22066
22066
|
}
|
|
22067
22067
|
),
|
|
22068
22068
|
filterType && filterType !== "select" && /* @__PURE__ */ jsx(
|
|
@@ -22077,7 +22077,7 @@ function DataTableServer({
|
|
|
22077
22077
|
type: filterType,
|
|
22078
22078
|
value: (columnFilters == null ? void 0 : columnFilters[String(filterParam)]) || "",
|
|
22079
22079
|
clearable: true,
|
|
22080
|
-
className: "max-w-[300px] min-w-[100px]
|
|
22080
|
+
className: "max-w-[300px] min-w-[100px] px-1"
|
|
22081
22081
|
}
|
|
22082
22082
|
)
|
|
22083
22083
|
]
|
|
@@ -22152,7 +22152,7 @@ function DataTableServer({
|
|
|
22152
22152
|
"td",
|
|
22153
22153
|
{
|
|
22154
22154
|
onClick: rowAction ? () => rowAction(item) : void 0,
|
|
22155
|
-
className: `px-3 py-2 cursor-pointer ${colIndex === 0 ? "font-medium text-gray-900" : "text-gray-700"} ${classes || ""}`,
|
|
22155
|
+
className: `px-3 py-2 ${rowAction ? "cursor-pointer" : ""} ${colIndex === 0 ? "font-medium text-gray-900" : "text-gray-700"} ${classes || ""}`,
|
|
22156
22156
|
children: [
|
|
22157
22157
|
render ? render(item) : "",
|
|
22158
22158
|
actions && actions.filter((it) => {
|