bolt-table 0.1.25 → 0.1.26
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/index.js +4 -3
- package/dist/index.mjs +4 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -925,7 +925,7 @@ var Cell = import_react3.default.memo(
|
|
|
925
925
|
rowSelection.onSelect?.(record, true, [record], e.nativeEvent);
|
|
926
926
|
rowSelection.onChange?.([rawKey], [record], { type: "single" });
|
|
927
927
|
},
|
|
928
|
-
style: { cursor: "pointer", accentColor }
|
|
928
|
+
style: { cursor: "pointer", accentColor, backgroundColor: "#94A3B8" }
|
|
929
929
|
}
|
|
930
930
|
) : /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
931
931
|
"input",
|
|
@@ -951,7 +951,7 @@ var Cell = import_react3.default.memo(
|
|
|
951
951
|
type: "multiple"
|
|
952
952
|
});
|
|
953
953
|
},
|
|
954
|
-
style: { cursor: "pointer", accentColor,
|
|
954
|
+
style: { cursor: "pointer", accentColor, backgroundColor: "#94A3B8" }
|
|
955
955
|
}
|
|
956
956
|
);
|
|
957
957
|
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
@@ -2973,7 +2973,7 @@ function BoltTable({
|
|
|
2973
2973
|
});
|
|
2974
2974
|
}
|
|
2975
2975
|
},
|
|
2976
|
-
style: { cursor: "pointer", accentColor,
|
|
2976
|
+
style: { cursor: "pointer", accentColor, backgroundColor: "#94A3B8" }
|
|
2977
2977
|
}
|
|
2978
2978
|
)
|
|
2979
2979
|
},
|
|
@@ -3001,6 +3001,7 @@ function BoltTable({
|
|
|
3001
3001
|
top: 0,
|
|
3002
3002
|
zIndex: 13,
|
|
3003
3003
|
width: "40px",
|
|
3004
|
+
backgroundColor: styles.pinnedBg,
|
|
3004
3005
|
gridRow: leafGridRow,
|
|
3005
3006
|
...styles.header,
|
|
3006
3007
|
...styles.pinnedHeader
|
package/dist/index.mjs
CHANGED
|
@@ -891,7 +891,7 @@ var Cell = React3.memo(
|
|
|
891
891
|
rowSelection.onSelect?.(record, true, [record], e.nativeEvent);
|
|
892
892
|
rowSelection.onChange?.([rawKey], [record], { type: "single" });
|
|
893
893
|
},
|
|
894
|
-
style: { cursor: "pointer", accentColor }
|
|
894
|
+
style: { cursor: "pointer", accentColor, backgroundColor: "#94A3B8" }
|
|
895
895
|
}
|
|
896
896
|
) : /* @__PURE__ */ jsx4(
|
|
897
897
|
"input",
|
|
@@ -917,7 +917,7 @@ var Cell = React3.memo(
|
|
|
917
917
|
type: "multiple"
|
|
918
918
|
});
|
|
919
919
|
},
|
|
920
|
-
style: { cursor: "pointer", accentColor,
|
|
920
|
+
style: { cursor: "pointer", accentColor, backgroundColor: "#94A3B8" }
|
|
921
921
|
}
|
|
922
922
|
);
|
|
923
923
|
return /* @__PURE__ */ jsx4(
|
|
@@ -2939,7 +2939,7 @@ function BoltTable({
|
|
|
2939
2939
|
});
|
|
2940
2940
|
}
|
|
2941
2941
|
},
|
|
2942
|
-
style: { cursor: "pointer", accentColor,
|
|
2942
|
+
style: { cursor: "pointer", accentColor, backgroundColor: "#94A3B8" }
|
|
2943
2943
|
}
|
|
2944
2944
|
)
|
|
2945
2945
|
},
|
|
@@ -2967,6 +2967,7 @@ function BoltTable({
|
|
|
2967
2967
|
top: 0,
|
|
2968
2968
|
zIndex: 13,
|
|
2969
2969
|
width: "40px",
|
|
2970
|
+
backgroundColor: styles.pinnedBg,
|
|
2970
2971
|
gridRow: leafGridRow,
|
|
2971
2972
|
...styles.header,
|
|
2972
2973
|
...styles.pinnedHeader
|
package/package.json
CHANGED