@steedos-widgets/amis-lib 6.10.54-beta.13 → 6.10.54-beta.14
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/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/types/workflow/__tests__/workflow-multi-lookup-values.test.d.ts +1 -0
- package/dist/types/workflow/index.d.ts +1 -0
- package/dist/types/workflow/util.d.ts +4 -0
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
export { getFlowFormSchema } from './flow';
|
|
2
2
|
export { getInstanceInfo, getApplicant, autoUpgradeInstance, fetchAutoNumber } from './instance';
|
|
3
|
+
export { getWorkflowMultiLookupFieldPaths, normalizeWorkflowMultiLookupValues, wrapWorkflowMultiLookupFormGetValues, } from './util';
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
export function getWorkflowMultiLookupFieldPaths(fields: any): any[];
|
|
2
|
+
export function normalizeWorkflowMultiLookupValues(values: any, lookupFieldPaths: any): any;
|
|
3
|
+
export function wrapWorkflowMultiLookupFormGetValues(form: any, lookupFieldPaths: any): any;
|
|
4
|
+
export function getWorkflowMultiLookupNormalizationScript(fields: any): string;
|
|
1
5
|
export function shouldUseAllStepSelection(instance: any): boolean;
|
|
2
6
|
export function getOpinionFieldStepsName(field: any, top_keywords: any): any[];
|
|
3
7
|
export function getTraceApprovesByStep(instance: any, flow: any, stepName: any, only_cc_opinion: any, options?: {}): any[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos-widgets/amis-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "6.10.54-beta.
|
|
4
|
+
"version": "6.10.54-beta.14",
|
|
5
5
|
"unpkg": "./dist/index.umd.js",
|
|
6
6
|
"main": "./dist/index.cjs.js",
|
|
7
7
|
"module": "./dist/index.esm.js",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"i18next": "24.2.2",
|
|
60
60
|
"lodash": "^4.17.21"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "5f4ce99c7b134ef5c85b031d8dd0af7935f965e6"
|
|
63
63
|
}
|