unione-form-vue 0.0.9 → 0.0.11
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 +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.umd.js +13 -13
- package/dist/lib/data.d.ts +1 -1
- package/dist/lib/ebus.d.ts +1 -1
- package/dist/page/list.vue.d.ts +162 -7
- package/dist/page/tree.vue.d.ts +8 -8
- package/dist/style.css +1 -1
- package/dist/typing.d.ts +8 -2
- package/dist/version/version.d.ts +1 -1
- package/dist/widgets/form/pwdBox.vue.d.ts +9 -0
- package/dist/widgets/query/queryForm.vue.d.ts +44 -2
- package/dist/widgets/table/tableList.vue.d.ts +1 -1
- package/package.json +2 -2
package/dist/editor.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
2
|
import { default as loadConfig } from './config';
|
|
3
3
|
import { default as UnioneEditor } from './editor';
|
|
4
|
+
import { DataStorage } from './lib/data';
|
|
4
5
|
export { default as UnionePage } from './page/page.vue';
|
|
5
6
|
export { default as UnionePageSetting } from './widgets/props/page/pageSetting.vue';
|
|
6
7
|
export { default as UnionePageEditor } from './page/editor.vue';
|
|
@@ -15,6 +16,7 @@ export { default as UnioneEditor } from './editor';
|
|
|
15
16
|
export { default as locales } from './locales';
|
|
16
17
|
export { default as loadConfig } from './config';
|
|
17
18
|
export { default as utils } from './lib/utils';
|
|
19
|
+
export { DataStorage } from './lib/data';
|
|
18
20
|
declare const _default: {
|
|
19
21
|
UnioneEditor: typeof UnioneEditor;
|
|
20
22
|
locales: {
|
|
@@ -24,6 +26,7 @@ declare const _default: {
|
|
|
24
26
|
useI18n: typeof import('unione-base-vue').useI18n;
|
|
25
27
|
};
|
|
26
28
|
loadConfig: typeof loadConfig;
|
|
29
|
+
DataStorage: typeof DataStorage;
|
|
27
30
|
install(app: App<any>, options?: any): void;
|
|
28
31
|
};
|
|
29
32
|
export default _default;
|