@basic-ui/material 1.0.0-alpha.47 → 1.0.0-alpha.49
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/build/cjs/index.js +10 -10
- package/build/cjs/index.js.map +1 -1
- package/build/esm/Table/Table.js +6 -6
- package/build/esm/Table/Table.js.map +1 -1
- package/build/esm/Table/TableCell.js +2 -2
- package/build/esm/Table/TableCell.js.map +1 -1
- package/build/esm/Table/TableRow.js +3 -3
- package/build/esm/Table/TableRow.js.map +1 -1
- package/build/esm/Table/index.js.map +1 -1
- package/build/tsconfig-build.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/Table/Table.tsx +7 -7
- package/src/Table/TableCell.tsx +2 -2
- package/src/Table/TableRow.tsx +3 -3
- package/src/Table/index.ts +5 -5
package/build/cjs/index.js
CHANGED
|
@@ -5864,14 +5864,14 @@ const Table = /*#__PURE__*/react$1.forwardRef((props, ref) => {
|
|
|
5864
5864
|
__css,
|
|
5865
5865
|
...rest
|
|
5866
5866
|
} = props;
|
|
5867
|
-
return /*#__PURE__*/jsxRuntime.jsx(
|
|
5867
|
+
return /*#__PURE__*/jsxRuntime.jsx(Box, {
|
|
5868
5868
|
ref: ref,
|
|
5869
5869
|
role: "table",
|
|
5870
|
-
display: "flex",
|
|
5871
|
-
width: "100%",
|
|
5872
|
-
flexDirection: "column",
|
|
5873
|
-
borderRadius: "small",
|
|
5874
5870
|
__css: {
|
|
5871
|
+
display: 'flex',
|
|
5872
|
+
width: '100%',
|
|
5873
|
+
flexDirection: 'column',
|
|
5874
|
+
borderRadius: 'small',
|
|
5875
5875
|
overflowX: 'auto',
|
|
5876
5876
|
...__css
|
|
5877
5877
|
},
|
|
@@ -5930,10 +5930,10 @@ const TableCell = /*#__PURE__*/react$1.forwardRef((props, ref) => {
|
|
|
5930
5930
|
const isHeadCell = useTableHeadContext();
|
|
5931
5931
|
return /*#__PURE__*/jsxRuntime.jsx(Box, {
|
|
5932
5932
|
ref: ref,
|
|
5933
|
-
px: 1,
|
|
5934
|
-
height: "2.25rem",
|
|
5935
5933
|
role: isHeadCell ? 'columnheader' : 'cell',
|
|
5936
5934
|
__css: {
|
|
5935
|
+
px: 1,
|
|
5936
|
+
height: "2.25rem",
|
|
5937
5937
|
whiteSpace: 'nowrap',
|
|
5938
5938
|
overflow: 'hidden',
|
|
5939
5939
|
textOverflow: 'ellipsis',
|
|
@@ -5958,12 +5958,12 @@ const TableRow = /*#__PURE__*/react$1.forwardRef((props, ref) => {
|
|
|
5958
5958
|
ref: ref,
|
|
5959
5959
|
as: "div",
|
|
5960
5960
|
role: "row",
|
|
5961
|
-
display: "flex",
|
|
5962
|
-
flexDirection: "row",
|
|
5963
|
-
width: "100%",
|
|
5964
5961
|
variant: "body-medium",
|
|
5965
5962
|
px: 2,
|
|
5966
5963
|
__css: {
|
|
5964
|
+
display: 'flex',
|
|
5965
|
+
flexDirection: 'row',
|
|
5966
|
+
width: '100%',
|
|
5967
5967
|
borderBottomStyle: 'solid',
|
|
5968
5968
|
borderBottomWidth: "0.0625rem",
|
|
5969
5969
|
borderBottomColor: 'surface-variant',
|