@addsign/moje-agenda-shared-lib 2.0.46 → 2.0.47
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/components/datatable/DataTableServer.js +3 -2
- package/dist/components/datatable/DataTableServer.js.map +1 -1
- package/dist/components/ui/multi-select.js +6 -3
- package/dist/components/ui/multi-select.js.map +1 -1
- package/lib/components/datatable/DataTableServer.tsx +3 -2
- package/lib/components/ui/multi-select.tsx +35 -20
- package/package.json +1 -1
|
@@ -22262,7 +22262,8 @@ function DataTableServer({
|
|
|
22262
22262
|
disabled: Object.keys(
|
|
22263
22263
|
filters || {}
|
|
22264
22264
|
).includes(String(filterParam)),
|
|
22265
|
-
variant: "secondary"
|
|
22265
|
+
variant: "secondary",
|
|
22266
|
+
maxCount: 0
|
|
22266
22267
|
}
|
|
22267
22268
|
) : filterType === "dateRange" ? /* @__PURE__ */ jsx(
|
|
22268
22269
|
DateRangeField,
|
|
@@ -22353,7 +22354,7 @@ function DataTableServer({
|
|
|
22353
22354
|
"td",
|
|
22354
22355
|
{
|
|
22355
22356
|
onClick: rowAction ? () => rowAction(item) : void 0,
|
|
22356
|
-
className: `px-3 py-2 text-gray-
|
|
22357
|
+
className: `px-3 py-2 text-gray-800 ${rowAction ? "cursor-pointer" : ""} ${colIndex === 0 ? "font-bold " : ""} ${classes || ""}`,
|
|
22357
22358
|
children: [
|
|
22358
22359
|
render ? render(item) : "",
|
|
22359
22360
|
actions && actions.filter((it) => {
|