@pingux/astro 2.132.0-alpha.3 → 2.132.0-alpha.4

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.
@@ -158,10 +158,14 @@ var DataTable = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
158
158
  }, renderChildren(children));
159
159
  }
160
160
  if (reusableView.viewType === 'row') {
161
+ // remove contain style for rows to avoid layout issues in chrome for UIP-7748
162
+ delete style.contain;
161
163
  return (0, _react2.jsx)(TableRow, {
162
164
  key: reusableView.key,
163
165
  item: reusableView.content,
164
- style: style,
166
+ style: _objectSpread(_objectSpread({}, style), {}, {
167
+ contain: 'size style'
168
+ }),
165
169
  hasActions: onAction
166
170
  }, renderChildren(children));
167
171
  }
@@ -147,10 +147,14 @@ var DataTable = /*#__PURE__*/forwardRef(function (props, ref) {
147
147
  }, renderChildren(children));
148
148
  }
149
149
  if (reusableView.viewType === 'row') {
150
+ // remove contain style for rows to avoid layout issues in chrome for UIP-7748
151
+ delete style.contain;
150
152
  return ___EmotionJSX(TableRow, {
151
153
  key: reusableView.key,
152
154
  item: reusableView.content,
153
- style: style,
155
+ style: _objectSpread(_objectSpread({}, style), {}, {
156
+ contain: 'size style'
157
+ }),
154
158
  hasActions: onAction
155
159
  }, renderChildren(children));
156
160
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "2.132.0-alpha.3",
3
+ "version": "2.132.0-alpha.4",
4
4
  "description": "React component library for Ping Identity's design system",
5
5
  "repository": {
6
6
  "type": "git",