@a2simcode/dui 0.0.22 → 0.0.24
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/index.d.ts +4 -2
- package/dist/dui.es.js +1208 -1141
- package/dist/dui.umd.js +4 -4
- package/package.json +1 -1
|
@@ -6,8 +6,10 @@ import { default as DLayout } from './layout';
|
|
|
6
6
|
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 { toFormSchema, toFormDesignSchema, toFormSaveSchema } from './formDesign/src/utils';
|
|
10
|
+
export { DDrag, dragTool, dragContainer, dragFormList, dragIndexList, DFlowDesign, DInputFlow, DLayout, DDraggable, DFormDesign, DIndexDesign, };
|
|
11
|
+
export { toFormSchema, toFormDesignSchema, toFormSaveSchema };
|
|
10
12
|
declare const _default: {
|
|
11
|
-
install: (app: App) =>
|
|
13
|
+
install: (app: App, ...options: any[]) => any;
|
|
12
14
|
};
|
|
13
15
|
export default _default;
|