2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-04-17 00:38:46 +00:00

Bump UI to 0.11.2 (#11738)

- Expose additional type hints
This commit is contained in:
Oliver
2026-04-13 22:26:33 +10:00
committed by GitHub
parent 23f43ffd33
commit 1e968a533d
3 changed files with 17 additions and 1 deletions

View File

@@ -2,6 +2,15 @@
This file contains historical changelog information for the InvenTree UI components library. This file contains historical changelog information for the InvenTree UI components library.
### 0.11.2 - April 2026
Exposes additional type definitions related to tables and filters:
- TableFilterChoice
- TableFilterType
- TableFilter
- FilterSetState
### 0.11.1 - April 2026 ### 0.11.1 - April 2026
Fixes dependency issues for the `InvenTreeTable` component, which were introduced in `0.11.0`. This ensures that the component works correctly and does not cause issues with plugin builds. Fixes dependency issues for the `InvenTreeTable` component, which were introduced in `0.11.0`. This ensures that the component works correctly and does not cause issues with plugin builds.

View File

@@ -30,6 +30,13 @@ export type {
InvenTreeTableRenderProps InvenTreeTableRenderProps
} from './types/Tables'; } from './types/Tables';
export type {
TableFilterChoice,
TableFilterType,
TableFilter,
FilterSetState
} from './types/Filters';
export type { export type {
ApiFormFieldChoice, ApiFormFieldChoice,
ApiFormFieldHeader, ApiFormFieldHeader,

View File

@@ -1,7 +1,7 @@
{ {
"name": "@inventreedb/ui", "name": "@inventreedb/ui",
"description": "UI components for the InvenTree project", "description": "UI components for the InvenTree project",
"version": "0.11.1", "version": "0.11.2",
"private": false, "private": false,
"type": "module", "type": "module",
"license": "MIT", "license": "MIT",