carbon-react 119.3.0 → 119.3.1

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.
@@ -175,9 +175,9 @@ const FlatTable = _ref => {
175
175
  setSelectedId,
176
176
  selectedId
177
177
  }
178
- }, children)), footer && /*#__PURE__*/React.createElement(StyledFlatTableFooter, {
178
+ }, children))), footer && /*#__PURE__*/React.createElement(StyledFlatTableFooter, {
179
179
  hasStickyFooter: hasStickyFooter
180
- }, footer)));
180
+ }, footer));
181
181
  });
182
182
  };
183
183
  FlatTable.propTypes = {
@@ -13,9 +13,6 @@ const HEADER_OVERLAY_INCREMENT = 3;
13
13
  const STICKY_FOOTER_OVERLAY_INCREMENT = 1;
14
14
  const ROW_HEADER_OVERLAY_INCREMENT = 5;
15
15
  const StyledTableContainer = styled.div`
16
- display: grid;
17
- grid-auto-rows: min-content;
18
-
19
16
  ${_ref => {
20
17
  let {
21
18
  width,
@@ -185,9 +185,9 @@ const FlatTable = _ref => {
185
185
  setSelectedId,
186
186
  selectedId
187
187
  }
188
- }, children)), footer && /*#__PURE__*/_react.default.createElement(_flatTable.StyledFlatTableFooter, {
188
+ }, children))), footer && /*#__PURE__*/_react.default.createElement(_flatTable.StyledFlatTableFooter, {
189
189
  hasStickyFooter: hasStickyFooter
190
- }, footer)));
190
+ }, footer));
191
191
  });
192
192
  };
193
193
  FlatTable.propTypes = {
@@ -22,9 +22,6 @@ const HEADER_OVERLAY_INCREMENT = 3;
22
22
  const STICKY_FOOTER_OVERLAY_INCREMENT = 1;
23
23
  const ROW_HEADER_OVERLAY_INCREMENT = 5;
24
24
  const StyledTableContainer = _styledComponents.default.div`
25
- display: grid;
26
- grid-auto-rows: min-content;
27
-
28
25
  ${_ref => {
29
26
  let {
30
27
  width,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "carbon-react",
3
- "version": "119.3.0",
3
+ "version": "119.3.1",
4
4
  "description": "A library of reusable React components for easily building user interfaces.",
5
5
  "files": [
6
6
  "lib",
@@ -14,8 +14,8 @@
14
14
  "test": "jest --config=./jest.config.json",
15
15
  "test-update": "jest --config=./jest.config.json --updateSnapshot",
16
16
  "cypress:react": "npx cypress open --component --browser chrome",
17
- "format": "prettier --write './src/**/*.{js,jsx,ts,tsx}'",
18
- "lint": "eslint ./src",
17
+ "format": "prettier --write './{src,cypress}/**/*.{js,jsx,ts,tsx}'",
18
+ "lint": "eslint ./src ./cypress",
19
19
  "build": "node ./scripts/build.js",
20
20
  "copy-files": "node ./scripts/copy-files.js",
21
21
  "precompile": "npm run type-check && npm run clean-lib && npm run build && npm run build:types && npm run copy-files",