cozy-ui 128.3.2 → 128.3.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [128.3.4](https://github.com/cozy/cozy-ui/compare/v128.3.3...v128.3.4) (2025-09-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Resolve issue item in table could not select :bug: ([dbab92d](https://github.com/cozy/cozy-ui/commit/dbab92d))
7
+
8
+ ## [128.3.3](https://github.com/cozy/cozy-ui/compare/v128.3.2...v128.3.3) (2025-09-03)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **packages:** Don't apply patch-package if no package to patch ([8c9cc6c](https://github.com/cozy/cozy-ui/commit/8c9cc6c))
14
+
1
15
  ## [128.3.2](https://github.com/cozy/cozy-ui/compare/v128.3.1...v128.3.2) (2025-09-03)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-ui",
3
- "version": "128.3.2",
3
+ "version": "128.3.4",
4
4
  "description": "Cozy apps UI SDK",
5
5
  "main": "./index.js",
6
6
  "bin": {
@@ -50,7 +50,7 @@
50
50
  "test": "jest",
51
51
  "screenshots:server": "nodemon ./scripts/pixelmatch-server/server.js -e js,hbs",
52
52
  "postbuild": "postcss transpiled/react/stylesheet.css --replace",
53
- "postinstall": "patch-package",
53
+ "postinstall": "if [ -d 'node_modules/@fastify/deepmerge' ]; then patch-package; fi",
54
54
  "travis-deploy-once": "travis-deploy-once",
55
55
  "start:css:utils": "yarn build:css:utils --watch",
56
56
  "start:css": "yarn build:css --watch",
@@ -161,7 +161,6 @@
161
161
  "dependencies": {
162
162
  "@babel/runtime": "^7.3.4",
163
163
  "@date-io/date-fns": "1",
164
- "@fastify/deepmerge": "2.0.2",
165
164
  "@material-ui/core": "4.12.3",
166
165
  "@material-ui/lab": "^4.0.0-alpha.61",
167
166
  "@material-ui/pickers": "3.3.11",
@@ -30,7 +30,7 @@ const RowContent = ({
30
30
  'aria-labelledby': `enhanced-table-checkbox-${index}`
31
31
  }}
32
32
  size="small"
33
- onClick={event => onSelectClick(event, row, index)}
33
+ onClick={event => onSelectClick(row, event, index)}
34
34
  />
35
35
  </TableCell>
36
36
  {columns.map(column => (
@@ -28,7 +28,7 @@ var RowContent = function RowContent(_ref) {
28
28
  },
29
29
  size: "small",
30
30
  onClick: function onClick(event) {
31
- return onSelectClick(event, row, index);
31
+ return onSelectClick(row, event, index);
32
32
  }
33
33
  })), columns.map(function (column) {
34
34
  return /*#__PURE__*/React.createElement(Cell, {