@basic-ui/material 1.0.0-alpha.46 → 1.0.0-alpha.47

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.
@@ -5861,7 +5861,6 @@ const TabPanel = /*#__PURE__*/react$1.forwardRef(function TabPanel(props, forwar
5861
5861
  const Table = /*#__PURE__*/react$1.forwardRef((props, ref) => {
5862
5862
  const {
5863
5863
  children,
5864
- elevation = 0,
5865
5864
  __css,
5866
5865
  ...rest
5867
5866
  } = props;
@@ -5871,13 +5870,8 @@ const Table = /*#__PURE__*/react$1.forwardRef((props, ref) => {
5871
5870
  display: "flex",
5872
5871
  width: "100%",
5873
5872
  flexDirection: "column",
5874
- elevation: elevation,
5875
- darkThemeBackgroundOverlay: elevation,
5876
- borderRadius: "extra-large",
5873
+ borderRadius: "small",
5877
5874
  __css: {
5878
- borderColor: 'surface-variant',
5879
- borderWidth: "0.125rem",
5880
- borderStyle: 'solid',
5881
5875
  overflowX: 'auto',
5882
5876
  ...__css
5883
5877
  },
@@ -5917,7 +5911,6 @@ const TableHead = /*#__PURE__*/react$1.forwardRef((props, ref) => {
5917
5911
  borderBottomStyle: 'solid',
5918
5912
  borderBottomWidth: "0.0625rem",
5919
5913
  borderBottomColor: 'surface-variant',
5920
- background: mixColor('surface', 'primary', 0.05),
5921
5914
  ...__css
5922
5915
  },
5923
5916
  ...rest,
@@ -5938,7 +5931,7 @@ const TableCell = /*#__PURE__*/react$1.forwardRef((props, ref) => {
5938
5931
  return /*#__PURE__*/jsxRuntime.jsx(Box, {
5939
5932
  ref: ref,
5940
5933
  px: 1,
5941
- py: 3,
5934
+ height: "2.25rem",
5942
5935
  role: isHeadCell ? 'columnheader' : 'cell',
5943
5936
  __css: {
5944
5937
  whiteSpace: 'nowrap',
@@ -5946,6 +5939,8 @@ const TableCell = /*#__PURE__*/react$1.forwardRef((props, ref) => {
5946
5939
  textOverflow: 'ellipsis',
5947
5940
  fontWeight: isHeadCell ? 'medium' : undefined,
5948
5941
  color: 'on.surface',
5942
+ display: 'flex',
5943
+ alignItems: 'center',
5949
5944
  ...__css
5950
5945
  },
5951
5946
  ...rest,