@eqtylab/equality 1.5.0 → 1.5.1
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 +7 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/dist/table-components.module.module.css.module.css +18 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2804,10 +2804,15 @@ function SortButton({
|
|
|
2804
2804
|
] });
|
|
2805
2805
|
}
|
|
2806
2806
|
var tableElevationVariants = generateElevationVariants(styles50__default.default, "table", ELEVATION.RAISED);
|
|
2807
|
-
var TableContainer = React15__namespace.forwardRef(({ className, style, elevation = ELEVATION.RAISED, tableLayout, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2807
|
+
var TableContainer = React15__namespace.forwardRef(({ className, style, elevation = ELEVATION.RAISED, tableLayout, border, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2808
2808
|
"div",
|
|
2809
2809
|
{
|
|
2810
|
-
className: cn(
|
|
2810
|
+
className: cn(
|
|
2811
|
+
styles50__default.default["table"],
|
|
2812
|
+
tableElevationVariants({ elevation }),
|
|
2813
|
+
border && styles50__default.default["table-border"],
|
|
2814
|
+
className
|
|
2815
|
+
),
|
|
2811
2816
|
style,
|
|
2812
2817
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2813
2818
|
"table",
|