@a2simcode/dui 0.0.61 → 0.0.62
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/components-dui/formDesign/src/utils.d.ts +6 -0
- package/dist/components-dui/index.d.ts +2 -2
- package/dist/dui.es.js +1 -0
- package/dist/dui.umd.js +7 -7
- package/package.json +10 -10
- package/LICENSE +0 -53
|
@@ -20,3 +20,9 @@ export declare const toFormSaveSchema: (formConfig: Record<string, any>, compone
|
|
|
20
20
|
components: FormDeisgnSaveComponent[];
|
|
21
21
|
db: Record<string, any>;
|
|
22
22
|
};
|
|
23
|
+
/**
|
|
24
|
+
* 转化方法,转化成具体运行的表单json数据
|
|
25
|
+
* @param list
|
|
26
|
+
* @returns
|
|
27
|
+
*/
|
|
28
|
+
export declare const formToRuntimeFrom: (list: FormDeisgnSaveComponent[]) => FormSchemaConfig[];
|
|
@@ -7,9 +7,9 @@ import { default as DDraggable } from './draggable';
|
|
|
7
7
|
import { default as DFormDesign } from './formDesign';
|
|
8
8
|
import { default as DIndexDesign } from './indexDesign';
|
|
9
9
|
import { default as DBiDesign } from './biDesign';
|
|
10
|
-
import { toFormSchema, toFormDesignSchema, toFormSaveSchema } from './formDesign/src/utils';
|
|
10
|
+
import { toFormSchema, toFormDesignSchema, toFormSaveSchema, formToRuntimeFrom } from './formDesign/src/utils';
|
|
11
11
|
export { DDrag, dragTool, dragContainer, dragFormList, dragIndexList, DFlowDesign, DInputFlow, DLayout, DDraggable, DFormDesign, DIndexDesign, DBiDesign, };
|
|
12
|
-
export { toFormSchema, toFormDesignSchema, toFormSaveSchema };
|
|
12
|
+
export { toFormSchema, toFormDesignSchema, toFormSaveSchema, formToRuntimeFrom };
|
|
13
13
|
declare const _default: {
|
|
14
14
|
install: (app: App, ...options: any[]) => any;
|
|
15
15
|
};
|
package/dist/dui.es.js
CHANGED
|
@@ -17994,6 +17994,7 @@ export {
|
|
|
17994
17994
|
Ru as dragFormList,
|
|
17995
17995
|
ku as dragIndexList,
|
|
17996
17996
|
Ou as dragTool,
|
|
17997
|
+
M0 as formToRuntimeFrom,
|
|
17997
17998
|
N0 as toFormDesignSchema,
|
|
17998
17999
|
gs as toFormSaveSchema,
|
|
17999
18000
|
T0 as toFormSchema
|