@konoma-development/react-components 0.3.14 → 0.3.15
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.
|
@@ -16885,7 +16885,7 @@ function Table({ noDataClasses = baseClasses$2.noDataClasses, wrapperClasses = b
|
|
|
16885
16885
|
className: "sticky left-0 flex flex-row border-r",
|
|
16886
16886
|
children: [detailsRow && /* @__PURE__ */ jsx("div", {
|
|
16887
16887
|
className: ["flex items-center justify-center w-12", rowLeftWrapperClasses].join(" "),
|
|
16888
|
-
children: /* @__PURE__ */ jsx("button", {
|
|
16888
|
+
children: detailsRow(entry) && /* @__PURE__ */ jsx("button", {
|
|
16889
16889
|
className: "w-8 cursor-pointer",
|
|
16890
16890
|
onClick: (e) => {
|
|
16891
16891
|
e.stopPropagation();
|
|
@@ -17052,7 +17052,7 @@ function Row({ index, entry, onDragRow, onDropRow, onRowClick, onRowDoubleClick,
|
|
|
17052
17052
|
className: "sticky left-0 flex flex-row border-r",
|
|
17053
17053
|
children: [detailsRow && /* @__PURE__ */ jsx("div", {
|
|
17054
17054
|
className: ["flex items-center justify-center w-12", rowLeftWrapperClasses].join(" "),
|
|
17055
|
-
children: /* @__PURE__ */ jsx("button", {
|
|
17055
|
+
children: detailsRow?.(entry) && /* @__PURE__ */ jsx("button", {
|
|
17056
17056
|
className: "w-8 cursor-pointer",
|
|
17057
17057
|
onClick: (e) => {
|
|
17058
17058
|
e.stopPropagation();
|