@tachybase/module-workflow 1.0.18 → 1.1.0
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/dist/client/WorkflowCategoriesProvider.d.ts +10 -0
- package/dist/client/components/AddWorkflowCategory.d.ts +2 -0
- package/dist/client/components/EditWorkflowCategory.d.ts +4 -0
- package/dist/client/index.js +54 -54
- package/dist/client/schemas/workflows.d.ts +37 -3
- package/dist/externalVersion.js +17 -16
- package/dist/locale/zh-CN.json +1 -0
- package/dist/node_modules/@babel/core/lib/index.js +13 -13
- package/dist/node_modules/@babel/core/package.json +1 -1
- package/dist/node_modules/cron-parser/package.json +1 -1
- package/dist/node_modules/form-data/package.json +1 -1
- package/dist/node_modules/jsonata/package.json +1 -1
- package/dist/node_modules/lru-cache/package.json +1 -1
- package/dist/node_modules/mime-types/package.json +1 -1
- package/dist/node_modules/qrcode/package.json +1 -1
- package/dist/server/Plugin.js +2 -1
- package/dist/server/actions/workflows.js +3 -2
- package/dist/server/collections/workflowCategories.d.ts +3 -0
- package/dist/server/collections/workflowCategories.js +52 -0
- package/dist/server/collections/workflows.js +11 -0
- package/package.json +19 -19
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare const WorkflowCategoryContext: import("react").Context<{
|
|
2
|
+
refresh: () => void;
|
|
3
|
+
activeKey: string;
|
|
4
|
+
setActiveKey: (key: string) => void;
|
|
5
|
+
}>;
|
|
6
|
+
export declare const useWorkflowCategory: () => {
|
|
7
|
+
refresh: () => void;
|
|
8
|
+
activeKey: string;
|
|
9
|
+
setActiveKey: (key: string) => void;
|
|
10
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ISchema } from '@tachybase/schema';
|
|
2
|
+
export declare const EditWorkflowCategory: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const EditWorkflowCategoryAction: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export declare const collectionCategoryEditSchema: ISchema;
|