@clayui/table 3.106.1 → 3.111.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.111.0](https://github.com/liferay/clay/compare/v3.110.0...v3.111.0) (2024-02-15)
7
+
8
+ **Note:** Version bump only for package @clayui/table
9
+
10
+ # [3.108.0](https://github.com/liferay/clay/compare/v3.107.1...v3.108.0) (2023-12-12)
11
+
12
+ ### Features
13
+
14
+ - **@clayui/table:** adds the border to the head by default ([fb2cbdb](https://github.com/liferay/clay/commit/fb2cbdb7ac749756ff4c1749056af54bed9441fe))
15
+ - **@clayui/table:** sets striped by default ([2ee5787](https://github.com/liferay/clay/commit/2ee5787ef5c2bd83aa66632014577a797645081c))
16
+
6
17
  ## [3.106.1](https://github.com/liferay/clay/compare/v3.106.0...v3.106.1) (2023-10-26)
7
18
 
8
19
  **Note:** Version bump only for package @clayui/table
package/lib/index.js CHANGED
@@ -45,7 +45,8 @@ var ClayTable = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
45
45
  _ref$responsive = _ref.responsive,
46
46
  responsive = _ref$responsive === void 0 ? true : _ref$responsive,
47
47
  responsiveSize = _ref.responsiveSize,
48
- striped = _ref.striped,
48
+ _ref$striped = _ref.striped,
49
+ striped = _ref$striped === void 0 ? true : _ref$striped,
49
50
  tableVerticalAlignment = _ref.tableVerticalAlignment,
50
51
  otherProps = _objectWithoutProperties(_ref, _excluded);
51
52
 
@@ -60,7 +61,7 @@ var ClayTable = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
60
61
  'table-bordered': borderedColumns,
61
62
  'table-heading-nowrap': headingNoWrap,
62
63
  'table-hover': hover,
63
- 'table-list': !borderless,
64
+ 'table-list table-head-bordered': !borderless,
64
65
  'table-nowrap': noWrap,
65
66
  'table-striped': striped
66
67
  }, _defineProperty(_classNames2, "tbody-valign-".concat(bodyVerticalAlignment), bodyVerticalAlignment), _defineProperty(_classNames2, "thead-valign-".concat(headVerticalAlignment), headVerticalAlignment), _defineProperty(_classNames2, "table-valign-".concat(tableVerticalAlignment), tableVerticalAlignment), _classNames2), className)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clayui/table",
3
- "version": "3.106.1",
3
+ "version": "3.111.0",
4
4
  "description": "ClayTable component",
5
5
  "license": "BSD-3-Clause",
6
6
  "repository": "https://github.com/liferay/clay",
@@ -17,7 +17,6 @@
17
17
  "scripts": {
18
18
  "build": "cross-env NODE_ENV=production babel src --root-mode upward --out-dir lib --extensions .ts,.tsx",
19
19
  "buildTypes": "cross-env NODE_ENV=production tsc --project ./tsconfig.declarations.json",
20
- "prepublishOnly": "yarn build && yarn buildTypes",
21
20
  "test": "jest --config ../../jest.config.js"
22
21
  },
23
22
  "keywords": [
@@ -35,5 +34,5 @@
35
34
  "browserslist": [
36
35
  "extends browserslist-config-clay"
37
36
  ],
38
- "gitHead": "b5345687d03988ed7d2409305d394434b9800b34"
37
+ "gitHead": "7dae7b1ba2f61516876e5799dc95045a5adb2c18"
39
38
  }