2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-04-21 18:50:52 +00:00

Plugin stock forms (#10584)

* Expose stock adjustment forms to plugins

* Update changelog

* Expand type exports

* Update CHANGELOG.md
This commit is contained in:
Oliver
2025-10-15 09:08:38 +11:00
committed by GitHub
parent e0559bb2b4
commit c2ade84872
16 changed files with 84 additions and 32 deletions

View File

@@ -12,7 +12,12 @@ export { ModelType } from './enums/ModelType';
export type { ModelDict } from './enums/ModelInformation';
export { UserRoles, UserPermissions } from './enums/Roles';
export type { InvenTreePluginContext } from './types/Plugins';
export type {
InvenTreePluginContext,
InvenTreeFormsContext,
PluginVersion,
StockAdjustmentFormsContext
} from './types/Plugins';
export type { RowAction, RowViewProps } from './types/Tables';
export type {
@@ -25,6 +30,11 @@ export type {
BulkEditApiFormModalProps
} from './types/Forms';
export type {
UseModalProps,
UseModalReturn
} from './types/Modals';
// Common utility functions
export { apiUrl } from './functions/Api';
export {