@snack-uikit/table 0.26.2 → 0.26.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
@@ -3,6 +3,26 @@
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
+ ## 0.26.4 (2025-01-13)
7
+
8
+ ### Only dependencies have been changed
9
+ * [@snack-uikit/chips@0.23.3](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/chips/CHANGELOG.md)
10
+
11
+
12
+
13
+
14
+
15
+ ## 0.26.3 (2024-12-26)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **FF-5734:** eslint fixes ([5ce6f1f](https://github.com/cloud-ru-tech/snack-uikit/commit/5ce6f1f22d3ac3dd367cbdd184e5873e67837c8b))
21
+
22
+
23
+
24
+
25
+
6
26
  ## 0.26.2 (2024-12-25)
7
27
 
8
28
  ### Only dependencies have been changed
@@ -31,17 +31,14 @@ exports.Cell = (0, react_1.forwardRef)((_a, ref) => {
31
31
  role = 'cell'
32
32
  } = _a,
33
33
  attributes = __rest(_a, ["onClick", "onMouseUp", "className", "style", "children", "role"]);
34
- return (
35
- // eslint-disable-next-line jsx-a11y/no-noninteractive-element-interactions
36
- (0, jsx_runtime_1.jsx)("div", Object.assign({
37
- role: role,
38
- onClick: onClick,
39
- onMouseUp: onMouseUp,
40
- className: (0, classnames_1.default)(styles_module_scss_1.default.tableCell, className),
41
- style: style,
42
- ref: ref
43
- }, attributes, {
44
- children: children
45
- }))
46
- );
34
+ return (0, jsx_runtime_1.jsx)("div", Object.assign({
35
+ role: role,
36
+ onClick: onClick,
37
+ onMouseUp: onMouseUp,
38
+ className: (0, classnames_1.default)(styles_module_scss_1.default.tableCell, className),
39
+ style: style,
40
+ ref: ref
41
+ }, attributes, {
42
+ children: children
43
+ }));
47
44
  });
@@ -15,7 +15,5 @@ import { forwardRef } from 'react';
15
15
  import styles from './styles.module.css';
16
16
  export const Cell = forwardRef((_a, ref) => {
17
17
  var { onClick, onMouseUp, className, style, children, role = 'cell' } = _a, attributes = __rest(_a, ["onClick", "onMouseUp", "className", "style", "children", "role"]);
18
- return (
19
- // eslint-disable-next-line jsx-a11y/no-noninteractive-element-interactions
20
- _jsx("div", Object.assign({ role: role, onClick: onClick, onMouseUp: onMouseUp, className: cn(styles.tableCell, className), style: style, ref: ref }, attributes, { children: children })));
18
+ return (_jsx("div", Object.assign({ role: role, onClick: onClick, onMouseUp: onMouseUp, className: cn(styles.tableCell, className), style: style, ref: ref }, attributes, { children: children })));
21
19
  });
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "title": "Table",
7
- "version": "0.26.2",
7
+ "version": "0.26.4",
8
8
  "sideEffects": [
9
9
  "*.css",
10
10
  "*.woff",
@@ -37,17 +37,17 @@
37
37
  "scripts": {},
38
38
  "dependencies": {
39
39
  "@snack-uikit/button": "0.19.5",
40
- "@snack-uikit/chips": "0.23.1",
40
+ "@snack-uikit/chips": "0.23.3",
41
41
  "@snack-uikit/icon-predefined": "0.7.2",
42
42
  "@snack-uikit/icons": "0.24.1",
43
- "@snack-uikit/info-block": "0.6.6",
44
- "@snack-uikit/list": "0.22.1",
43
+ "@snack-uikit/info-block": "0.6.7",
44
+ "@snack-uikit/list": "0.22.2",
45
45
  "@snack-uikit/pagination": "0.10.0",
46
46
  "@snack-uikit/scroll": "0.9.2",
47
47
  "@snack-uikit/skeleton": "0.6.1",
48
- "@snack-uikit/toggles": "0.13.2",
49
- "@snack-uikit/toolbar": "0.9.15",
50
- "@snack-uikit/truncate-string": "0.6.3",
48
+ "@snack-uikit/toggles": "0.13.3",
49
+ "@snack-uikit/toolbar": "0.9.16",
50
+ "@snack-uikit/truncate-string": "0.6.4",
51
51
  "@snack-uikit/typography": "0.8.3",
52
52
  "@snack-uikit/utils": "3.6.0",
53
53
  "@tanstack/match-sorter-utils": "8.11.8",
@@ -61,5 +61,5 @@
61
61
  "peerDependencies": {
62
62
  "@snack-uikit/locale": "*"
63
63
  },
64
- "gitHead": "5f981cd3d7c5169db2bff1d58db36b6c83da6861"
64
+ "gitHead": "ba3f9cd111868431a1df6a20e0d9de99054bc317"
65
65
  }
@@ -15,7 +15,6 @@ export type CellProps = {
15
15
 
16
16
  export const Cell = forwardRef<HTMLDivElement, CellProps>(
17
17
  ({ onClick, onMouseUp, className, style, children, role = 'cell', ...attributes }, ref) => (
18
- // eslint-disable-next-line jsx-a11y/no-noninteractive-element-interactions
19
18
  <div
20
19
  role={role}
21
20
  onClick={onClick}