unione-form-vue 0.0.2 → 0.0.4
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/editor.d.ts +2 -2
- package/dist/index.d.ts +6 -4
- package/dist/index.umd.js +97 -105
- package/dist/lib/data.d.ts +55 -31
- package/dist/page/view.vue.d.ts +5 -21
- package/dist/style.css +1 -1
- package/dist/typing.d.ts +2 -2
- package/dist/version/version.d.ts +1 -1
- package/dist/widgets/query/queryForm.vue.d.ts +2 -2
- package/dist/widgets/table/tableList.vue.d.ts +2 -2
- package/package.json +2 -2
package/dist/editor.d.ts
CHANGED
|
@@ -11,13 +11,13 @@ export default class UnioneEditor {
|
|
|
11
11
|
$dataModelMap: Ref<any>;
|
|
12
12
|
$axios: any;
|
|
13
13
|
$axiosProccess: any;
|
|
14
|
-
constructor(define?: PageDefine
|
|
14
|
+
constructor(define?: PageDefine);
|
|
15
15
|
$initAxios(): void;
|
|
16
16
|
/**
|
|
17
17
|
* 加载编辑器数据
|
|
18
18
|
* @param sn
|
|
19
19
|
*/
|
|
20
|
-
load(sn: string,
|
|
20
|
+
load(sn: string, pageDefine?: PageDefine): void;
|
|
21
21
|
/**
|
|
22
22
|
* 保存编辑器数据
|
|
23
23
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
|
-
import { default as
|
|
3
|
-
export { default as
|
|
4
|
-
export { default as
|
|
2
|
+
import { default as UnioneEditor } from './editor';
|
|
3
|
+
export { default as UnionePage } from './page/page.vue';
|
|
4
|
+
export { default as UnionePageView } from './page/view.vue';
|
|
5
|
+
export { default as UnionePageSetting } from './widgets/props/page/pageSetting.vue';
|
|
6
|
+
export { default as UnioneEditor } from './editor';
|
|
5
7
|
export { default as locales } from './locales';
|
|
6
8
|
declare const _default: {
|
|
7
|
-
|
|
9
|
+
UnioneEditor: typeof UnioneEditor;
|
|
8
10
|
locales: {
|
|
9
11
|
i18n: import('vue-i18n').I18n<{
|
|
10
12
|
"zh-CN": any;
|