@hyphen/hyphen-components 2.19.0 → 2.19.2

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.
@@ -1949,7 +1949,10 @@ var Drawer = /*#__PURE__*/forwardRef(function (_ref, ref) {
1949
1949
  direction: "row",
1950
1950
  justifyContent: "space-between",
1951
1951
  alignItems: "center",
1952
- padding: "2xl"
1952
+ padding: {
1953
+ base: '2xl',
1954
+ tablet: '4xl'
1955
+ }
1953
1956
  }, React.createElement(Box, {
1954
1957
  className: styles$h.title,
1955
1958
  fontWeight: "bold"
@@ -3871,7 +3874,6 @@ var TableRow = function TableRow(_ref) {
3871
3874
  var TableBody = function TableBody(_ref) {
3872
3875
  var _classNames;
3873
3876
  var columns = _ref.columns,
3874
- rowKey = _ref.rowKey,
3875
3877
  rows = _ref.rows,
3876
3878
  _ref$align = _ref.align,
3877
3879
  align = _ref$align === void 0 ? 'left' : _ref$align,
@@ -3898,7 +3900,7 @@ var TableBody = function TableBody(_ref) {
3898
3900
  row: row,
3899
3901
  rowIndex: rowIndex,
3900
3902
  align: align,
3901
- key: row[rowKey],
3903
+ key: rowIndex,
3902
3904
  emptyCellPlaceholder: emptyCellPlaceholder,
3903
3905
  truncateOverflow: truncateOverflow,
3904
3906
  isBorderless: isBorderless,