From 9da6606e8648f2b664b7f76652dba94cc93f5438 Mon Sep 17 00:00:00 2001 From: Junyi Date: Fri, 3 Nov 2023 23:25:33 +0800 Subject: [PATCH] refactor(plugin-workflow): add exports for client (#2960) --- packages/plugins/@nocobase/plugin-workflow/src/client/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugins/@nocobase/plugin-workflow/src/client/index.tsx b/packages/plugins/@nocobase/plugin-workflow/src/client/index.tsx index 75c8576776..15a328b33e 100644 --- a/packages/plugins/@nocobase/plugin-workflow/src/client/index.tsx +++ b/packages/plugins/@nocobase/plugin-workflow/src/client/index.tsx @@ -3,7 +3,7 @@ export * from './Branch'; export * from './FlowContext'; export * from './nodes'; export { triggers, useTrigger, getTriggersOptions } from './triggers'; -export { useWorkflowVariableOptions, getCollectionFieldOptions } from './variable'; +export * from './variable'; export { default as useStyles } from './style'; import { Plugin } from '@nocobase/client';