@byteluck-fe/runtime-engine 1.1.3 → 1.1.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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as vue from 'vue';
|
|
2
|
-
export * as
|
|
2
|
+
export * as core from '../../../src/utils/core';
|
|
3
3
|
import { ActionUtilsPlugin, ApprovalPlugin, DataFilterPlugin, DatasourceSearchPlugin, DataViewPlugin, DisplayPlugin, FormRelationFieldPlugin, JurisdictionPlugin, MultistageFillingPlugin, ReferenceAndCalcFieldPlugin, TitlePlugin, SubtableChangePlugin, DataSourceManagePlugin, ExpressionPlugin, TitleSettingPlugin, EventListenerPlugin } from '../../../src/plugins/engine';
|
|
4
|
+
import { apiInit } from '../../../src/services';
|
|
4
5
|
import { Store } from 'vuex';
|
|
5
6
|
export declare function useRuntimeEngine(props: any, route: any, store: Store<any>): {
|
|
6
7
|
context: any;
|
|
@@ -11,6 +12,7 @@ export declare function useRuntimeEngine(props: any, route: any, store: Store<an
|
|
|
11
12
|
title: vue.Ref<string>;
|
|
12
13
|
context: any;
|
|
13
14
|
} | undefined>;
|
|
15
|
+
apiInit: typeof apiInit;
|
|
14
16
|
ActionUtilsPlugin: typeof ActionUtilsPlugin;
|
|
15
17
|
ApprovalPlugin: typeof ApprovalPlugin;
|
|
16
18
|
DataFilterPlugin: typeof DataFilterPlugin;
|