jclib-ui 1.0.232 → 1.0.235

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.
@@ -4714,25 +4714,20 @@ function TableBody({
4714
4714
  color: getColor(col, line),
4715
4715
  width: width2
4716
4716
  },
4717
- children: /* @__PURE__ */ jsxRuntimeExports.jsxs(
4718
- "div",
4719
- {
4720
- onClick: (e) => {
4721
- if (col == null ? void 0 : col.onClick) {
4722
- e.stopPropagation();
4723
- col.onClick(line);
4724
- }
4725
- },
4726
- role: (col == null ? void 0 : col.onClick) ? "button" : "",
4727
- children: [
4728
- col.titulo && /* @__PURE__ */ jsxRuntimeExports.jsxs("span", { className: "titulo", children: [
4729
- col.tituloCard || col.titulo,
4730
- ": "
4731
- ] }),
4732
- getDataCol(col, line)
4733
- ]
4717
+ onClick: (e) => {
4718
+ if (col == null ? void 0 : col.onClick) {
4719
+ e.stopPropagation();
4720
+ col.onClick(line);
4734
4721
  }
4735
- )
4722
+ },
4723
+ role: (col == null ? void 0 : col.onClick) ? "button" : "",
4724
+ children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { children: [
4725
+ col.titulo && /* @__PURE__ */ jsxRuntimeExports.jsxs("span", { className: "titulo", children: [
4726
+ col.tituloCard || col.titulo,
4727
+ ": "
4728
+ ] }),
4729
+ getDataCol(col, line)
4730
+ ] })
4736
4731
  },
4737
4732
  colId
4738
4733
  );