cd-form 2.0.26 → 2.0.27
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/CdForm.vue.d.ts +18 -2
- package/dist/cd-form.js +31076 -6673
- package/dist/cd-form.umd.cjs +126 -23
- package/dist/index.d.ts +2 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,12 +3,13 @@ import { default as CdFormCol } from './CdFormCol.vue';
|
|
|
3
3
|
import { default as FormRender } from './FormRender.vue';
|
|
4
4
|
import { ShareDialog } from 'cd-share';
|
|
5
5
|
import { default as FieldManageDialog } from './components/FieldManageDialog.vue';
|
|
6
|
+
import { default as ImportWizard } from './components/ImportWizard.vue';
|
|
6
7
|
import { App } from 'vue';
|
|
7
8
|
|
|
8
9
|
export * from './types';
|
|
9
10
|
export { createScriptAPI, executeScript } from './utils/scriptRuntime';
|
|
10
11
|
export type { ScriptContext, ScriptEvent, FormScriptAPI } from './utils/scriptRuntime';
|
|
11
|
-
export { CdForm, CdFormCol, FormRender, ShareDialog, FieldManageDialog };
|
|
12
|
+
export { CdForm, CdFormCol, FormRender, ShareDialog, FieldManageDialog, ImportWizard };
|
|
12
13
|
declare const _default: {
|
|
13
14
|
install(app: App): void;
|
|
14
15
|
};
|