pxengine 0.1.98 → 0.1.99
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.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +246 -63
- package/dist/index.d.ts +246 -63
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +893 -7
- package/package.json +16 -6
package/dist/index.cjs
CHANGED
|
@@ -26273,12 +26273,12 @@ var TableAtom = ({
|
|
|
26273
26273
|
rows,
|
|
26274
26274
|
className,
|
|
26275
26275
|
style,
|
|
26276
|
-
headerTextColor = "#9ca3af",
|
|
26277
|
-
headerBgColor = "#f9fafb",
|
|
26278
|
-
rowTextColor = "#374151",
|
|
26279
|
-
rowBgColor = "#ffffff",
|
|
26280
|
-
hoverBgColor = "
|
|
26281
|
-
borderColor = "#f3f4f6"
|
|
26276
|
+
headerTextColor = "var(--muted-foreground-color, #9ca3af)",
|
|
26277
|
+
headerBgColor = "var(--card-background, #f9fafb)",
|
|
26278
|
+
rowTextColor = "var(--card-foreground-color, #374151)",
|
|
26279
|
+
rowBgColor = "var(--card-background, #ffffff)",
|
|
26280
|
+
hoverBgColor = "rgba(127, 127, 127, 0.18)",
|
|
26281
|
+
borderColor = "var(--border-color, #f3f4f6)"
|
|
26282
26282
|
}) => {
|
|
26283
26283
|
const safeHeaders = Array.isArray(headers) ? headers : [];
|
|
26284
26284
|
const safeRows = Array.isArray(rows) ? rows : [];
|