@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.
- package/dist/components/Drawer/Drawer.stories.d.ts +3 -1
- package/dist/css/index.css +4 -4
- package/dist/hyphen-components.cjs.development.js +5 -3
- package/dist/hyphen-components.cjs.development.js.map +1 -1
- package/dist/hyphen-components.cjs.production.min.js +1 -1
- package/dist/hyphen-components.cjs.production.min.js.map +1 -1
- package/dist/hyphen-components.esm.js +5 -3
- package/dist/hyphen-components.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Drawer/Drawer.stories.tsx +67 -17
- package/src/components/Drawer/Drawer.tsx +1 -1
- package/src/components/Table/Table.module.scss +1 -1
- package/src/components/Table/TableBody/TableBody.tsx +1 -2
- package/src/components/Table/TableBody/TableBodyCell/TableBodyCell.module.scss +1 -4
- package/src/components/Table/TableHead/TableHeaderCell/TableHeaderCell.module.scss +1 -5
- package/src/components/Table/common/TableRow/TableRow.module.scss +12 -0
|
@@ -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:
|
|
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:
|
|
3903
|
+
key: rowIndex,
|
|
3902
3904
|
emptyCellPlaceholder: emptyCellPlaceholder,
|
|
3903
3905
|
truncateOverflow: truncateOverflow,
|
|
3904
3906
|
isBorderless: isBorderless,
|