@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.
@@ -1667,9 +1667,6 @@ video {
1667
1667
  .pl-2 {
1668
1668
  padding-left: 0.5rem;
1669
1669
  }
1670
- .pl-3 {
1671
- padding-left: 0.75rem;
1672
- }
1673
1670
  .pl-4 {
1674
1671
  padding-left: 1rem;
1675
1672
  }
@@ -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: "pl-3"
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] pl-3"
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) => {