@snack-uikit/table 0.36.11-preview-a9a08c2d.0 → 0.36.11

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,19 @@
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.36.11 (2025-06-19)
7
+
8
+ ### Only dependencies have been changed
9
+ * [@snack-uikit/chips@0.27.8](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/chips/CHANGELOG.md)
10
+ * [@snack-uikit/info-block@0.6.25](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/info-block/CHANGELOG.md)
11
+ * [@snack-uikit/list@0.29.6](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/list/CHANGELOG.md)
12
+ * [@snack-uikit/toolbar@0.13.9](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/toolbar/CHANGELOG.md)
13
+ * [@snack-uikit/truncate-string@0.6.21](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/truncate-string/CHANGELOG.md)
14
+
15
+
16
+
17
+
18
+
6
19
  ## 0.36.10 (2025-06-19)
7
20
 
8
21
 
@@ -1,3 +1 @@
1
- type OnSearchHandler = (newValue: string, onChange: (newValue: string) => void) => void;
2
- export declare const onSearchDebounced: OnSearchHandler;
3
- export {};
1
+ export declare const onSearchDebounced: import("lodash").DebouncedFunc<(newValue: string, onChange: (newValue: string) => void) => void>;
@@ -1,3 +1 @@
1
- type OnSearchHandler = (newValue: string, onChange: (newValue: string) => void) => void;
2
- export declare const onSearchDebounced: OnSearchHandler;
3
- export {};
1
+ export declare const onSearchDebounced: import("lodash").DebouncedFunc<(newValue: string, onChange: (newValue: string) => void) => void>;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "title": "Table",
7
- "version": "0.36.11-preview-a9a08c2d.0",
7
+ "version": "0.36.11",
8
8
  "sideEffects": [
9
9
  "*.css",
10
10
  "*.woff",
@@ -42,17 +42,17 @@
42
42
  "@dnd-kit/sortable": "10.0.0",
43
43
  "@dnd-kit/utilities": "3.2.2",
44
44
  "@snack-uikit/button": "0.19.11",
45
- "@snack-uikit/chips": "0.27.7",
45
+ "@snack-uikit/chips": "0.27.8",
46
46
  "@snack-uikit/icon-predefined": "0.7.6",
47
47
  "@snack-uikit/icons": "0.26.4",
48
- "@snack-uikit/info-block": "0.6.24",
49
- "@snack-uikit/list": "0.29.5",
48
+ "@snack-uikit/info-block": "0.6.25",
49
+ "@snack-uikit/list": "0.29.6",
50
50
  "@snack-uikit/pagination": "0.10.12",
51
51
  "@snack-uikit/scroll": "0.10.1",
52
52
  "@snack-uikit/skeleton": "0.6.5",
53
53
  "@snack-uikit/toggles": "0.13.15",
54
- "@snack-uikit/toolbar": "0.13.8",
55
- "@snack-uikit/truncate-string": "0.6.20",
54
+ "@snack-uikit/toolbar": "0.13.9",
55
+ "@snack-uikit/truncate-string": "0.6.21",
56
56
  "@snack-uikit/typography": "0.8.7",
57
57
  "@snack-uikit/utils": "3.8.2",
58
58
  "@tanstack/match-sorter-utils": "8.11.8",
@@ -66,5 +66,5 @@
66
66
  "peerDependencies": {
67
67
  "@snack-uikit/locale": "*"
68
68
  },
69
- "gitHead": "b23ee0dc0db5810122d7df85da9d9bb13a99863b"
69
+ "gitHead": "30ce13048847439dad862be32ab65379adc107c0"
70
70
  }
@@ -2,8 +2,6 @@ import debounce from 'lodash.debounce';
2
2
 
3
3
  import { SEARCH_DELAY } from './constants';
4
4
 
5
- type OnSearchHandler = (newValue: string, onChange: (newValue: string) => void) => void;
6
-
7
- export const onSearchDebounced: OnSearchHandler = debounce((newValue, onChange) => {
5
+ export const onSearchDebounced = debounce((newValue: string, onChange: (newValue: string) => void) => {
8
6
  onChange(newValue);
9
7
  }, SEARCH_DELAY);