@snack-uikit/toolbar 0.11.4 → 0.11.6
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 +22 -0
- package/dist/cjs/components/Toolbar/Toolbar.d.ts +1 -1
- package/dist/cjs/components/Toolbar/styles.module.css +1 -1
- package/dist/esm/components/Toolbar/Toolbar.d.ts +1 -1
- package/dist/esm/components/Toolbar/styles.module.css +1 -1
- package/package.json +2 -2
- package/src/components/Toolbar/Toolbar.tsx +1 -1
- package/src/components/Toolbar/styles.module.scss +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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.11.6 (2025-02-24)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **FF-6288:** width of chips droplist ([113b338](https://github.com/cloud-ru-tech/snack-uikit/commit/113b338c81f6e8a6606bb11afd50a5ade5f8aa4a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## 0.11.5 (2025-02-10)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **PDS-1081:** make type for filters in generic non required ([136ea97](https://github.com/cloud-ru-tech/snack-uikit/commit/136ea971801290030eb6ad68bfcb8c06b2b3e732))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## 0.11.4 (2025-02-10)
|
|
7
29
|
|
|
8
30
|
### Only dependencies have been changed
|
|
@@ -4,4 +4,4 @@ import { CheckedToolbarProps, DefaultToolbarProps, FilterRow } from './types';
|
|
|
4
4
|
export type ToolbarProps<TState extends FiltersState = Record<string, unknown>> = WithSupportProps<DefaultToolbarProps | CheckedToolbarProps> & {
|
|
5
5
|
filterRow?: FilterRow<TState>;
|
|
6
6
|
};
|
|
7
|
-
export declare function Toolbar<TState extends FiltersState
|
|
7
|
+
export declare function Toolbar<TState extends FiltersState = Record<string, unknown>>({ className, after, outline, moreActions, onRefresh, search, filterRow: filterRowProps, ...rest }: ToolbarProps<TState>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -4,4 +4,4 @@ import { CheckedToolbarProps, DefaultToolbarProps, FilterRow } from './types';
|
|
|
4
4
|
export type ToolbarProps<TState extends FiltersState = Record<string, unknown>> = WithSupportProps<DefaultToolbarProps | CheckedToolbarProps> & {
|
|
5
5
|
filterRow?: FilterRow<TState>;
|
|
6
6
|
};
|
|
7
|
-
export declare function Toolbar<TState extends FiltersState
|
|
7
|
+
export declare function Toolbar<TState extends FiltersState = Record<string, unknown>>({ className, after, outline, moreActions, onRefresh, search, filterRow: filterRowProps, ...rest }: ToolbarProps<TState>): import("react/jsx-runtime").JSX.Element;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"title": "Toolbar",
|
|
7
|
-
"version": "0.11.
|
|
7
|
+
"version": "0.11.6",
|
|
8
8
|
"sideEffects": [
|
|
9
9
|
"*.css",
|
|
10
10
|
"*.woff",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"@snack-uikit/locale": "*"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "7f6a542648b3565ae326506da7405d0ab3aece37"
|
|
55
55
|
}
|
|
@@ -20,7 +20,7 @@ export type ToolbarProps<TState extends FiltersState = Record<string, unknown>>
|
|
|
20
20
|
filterRow?: FilterRow<TState>;
|
|
21
21
|
};
|
|
22
22
|
|
|
23
|
-
export function Toolbar<TState extends FiltersState
|
|
23
|
+
export function Toolbar<TState extends FiltersState = Record<string, unknown>>({
|
|
24
24
|
className,
|
|
25
25
|
after,
|
|
26
26
|
outline,
|