@omniumretail/component-library 1.3.15 → 1.3.16
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.
|
@@ -25051,20 +25051,32 @@ const ResponsiveTable = (props) => {
|
|
|
25051
25051
|
);
|
|
25052
25052
|
const isSelected2 = cellIndex2 !== -1;
|
|
25053
25053
|
if (isDisabled) {
|
|
25054
|
-
|
|
25055
|
-
|
|
25056
|
-
|
|
25057
|
-
|
|
25058
|
-
|
|
25059
|
-
|
|
25060
|
-
|
|
25061
|
-
|
|
25062
|
-
|
|
25063
|
-
|
|
25064
|
-
|
|
25065
|
-
|
|
25066
|
-
|
|
25067
|
-
|
|
25054
|
+
if (originalCellContent2?.type === "I") {
|
|
25055
|
+
return /* @__PURE__ */ jsx(
|
|
25056
|
+
"div",
|
|
25057
|
+
{
|
|
25058
|
+
style: {
|
|
25059
|
+
cursor: "not-allowed"
|
|
25060
|
+
},
|
|
25061
|
+
children: "I"
|
|
25062
|
+
}
|
|
25063
|
+
);
|
|
25064
|
+
} else {
|
|
25065
|
+
return /* @__PURE__ */ jsx(
|
|
25066
|
+
"div",
|
|
25067
|
+
{
|
|
25068
|
+
style: {
|
|
25069
|
+
backgroundColor: "#e8e8e8",
|
|
25070
|
+
cursor: "not-allowed",
|
|
25071
|
+
textAlign: "center",
|
|
25072
|
+
color: "#999",
|
|
25073
|
+
padding: "8px",
|
|
25074
|
+
border: "1px solid #d9d9d9"
|
|
25075
|
+
},
|
|
25076
|
+
children: "-"
|
|
25077
|
+
}
|
|
25078
|
+
);
|
|
25079
|
+
}
|
|
25068
25080
|
}
|
|
25069
25081
|
if (isSelectable2) {
|
|
25070
25082
|
const cellContent = (() => {
|