From 1e968a533d49bb882e5e00cc7f162efa81f8b6f1 Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 13 Apr 2026 22:26:33 +1000 Subject: [PATCH] Bump UI to 0.11.2 (#11738) - Expose additional type hints --- src/frontend/CHANGELOG.md | 9 +++++++++ src/frontend/lib/index.ts | 7 +++++++ src/frontend/package.json | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/src/frontend/CHANGELOG.md b/src/frontend/CHANGELOG.md index 9d1d44f1bb..f1c4f9ba47 100644 --- a/src/frontend/CHANGELOG.md +++ b/src/frontend/CHANGELOG.md @@ -2,6 +2,15 @@ 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 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. diff --git a/src/frontend/lib/index.ts b/src/frontend/lib/index.ts index c38dfffca2..8bf7103acd 100644 --- a/src/frontend/lib/index.ts +++ b/src/frontend/lib/index.ts @@ -30,6 +30,13 @@ export type { InvenTreeTableRenderProps } from './types/Tables'; +export type { + TableFilterChoice, + TableFilterType, + TableFilter, + FilterSetState +} from './types/Filters'; + export type { ApiFormFieldChoice, ApiFormFieldHeader, diff --git a/src/frontend/package.json b/src/frontend/package.json index db56aa4aae..1f8f58a8d1 100644 --- a/src/frontend/package.json +++ b/src/frontend/package.json @@ -1,7 +1,7 @@ { "name": "@inventreedb/ui", "description": "UI components for the InvenTree project", - "version": "0.11.1", + "version": "0.11.2", "private": false, "type": "module", "license": "MIT",