@snack-uikit/table 0.26.2-preview-95f36d41.0 → 0.26.2

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,18 @@
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.2 (2024-12-25)
7
+
8
+ ### Only dependencies have been changed
9
+ * [@snack-uikit/chips@0.23.1](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/chips/CHANGELOG.md)
10
+ * [@snack-uikit/list@0.22.1](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/list/CHANGELOG.md)
11
+ * [@snack-uikit/toolbar@0.9.15](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/toolbar/CHANGELOG.md)
12
+ * [@snack-uikit/truncate-string@0.6.3](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/truncate-string/CHANGELOG.md)
13
+
14
+
15
+
16
+
17
+
6
18
  ## 0.26.1 (2024-12-25)
7
19
 
8
20
  ### Only dependencies have been changed
@@ -31,14 +31,17 @@ 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 (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
- }));
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
+ );
44
47
  });
@@ -15,5 +15,7 @@ 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 (_jsx("div", Object.assign({ role: role, onClick: onClick, onMouseUp: onMouseUp, className: cn(styles.tableCell, className), style: style, ref: ref }, attributes, { children: children })));
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 })));
19
21
  });
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "title": "Table",
7
- "version": "0.26.2-preview-95f36d41.0",
7
+ "version": "0.26.2",
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-preview-95f36d41.0",
40
+ "@snack-uikit/chips": "0.23.1",
41
41
  "@snack-uikit/icon-predefined": "0.7.2",
42
42
  "@snack-uikit/icons": "0.24.1",
43
- "@snack-uikit/info-block": "0.6.7-preview-95f36d41.0",
44
- "@snack-uikit/list": "0.22.1-preview-95f36d41.0",
43
+ "@snack-uikit/info-block": "0.6.6",
44
+ "@snack-uikit/list": "0.22.1",
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.3-preview-95f36d41.0",
49
- "@snack-uikit/toolbar": "0.9.15-preview-95f36d41.0",
50
- "@snack-uikit/truncate-string": "0.6.3-preview-95f36d41.0",
48
+ "@snack-uikit/toggles": "0.13.2",
49
+ "@snack-uikit/toolbar": "0.9.15",
50
+ "@snack-uikit/truncate-string": "0.6.3",
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": "e866724aaa8b037109a05efa3e188a2c17989aa6"
64
+ "gitHead": "5f981cd3d7c5169db2bff1d58db36b6c83da6861"
65
65
  }
@@ -15,6 +15,7 @@ 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
18
19
  <div
19
20
  role={role}
20
21
  onClick={onClick}