@byteluck-fe/runtime-engine 1.1.1 → 1.1.3
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/packages/runtime-engine/src/runtimeEngine.d.ts +6 -1
- package/dist/runtime-engine.js +4649 -4591
- package/dist/src/entry_desktop/controls/rok-attachment/hook-file-base.d.ts +3 -25
- package/dist/src/entry_desktop/hooks/useInitPage.d.ts +11 -0
- package/dist/src/entry_mobile/components/VanSuperForm/index.d.ts +1 -1
- package/dist/src/entry_mobile/controls/rok-attachment/hook-file-base.d.ts +2 -37
- package/dist/src/entry_mobile/controls/rok-attachment/hook.d.ts +2 -28
- package/dist/src/entry_mobile/controls/rok-date-picker/hook.d.ts +2 -149
- package/dist/src/entry_mobile/controls/rok-date-range/hook.d.ts +2 -150
- package/dist/src/entry_mobile/controls/rok-department/hook.d.ts +1 -20
- package/dist/src/entry_mobile/controls/rok-department2/hook.d.ts +1 -21
- package/dist/src/entry_mobile/controls/rok-employee/hook.d.ts +1 -111
- package/dist/src/entry_mobile/controls/rok-image/hook.d.ts +2 -20
- package/dist/src/entry_mobile/controls/rok-organization-selection/hook.d.ts +1 -21
- package/dist/src/entry_mobile/controls/rok-search-date-range/hook.d.ts +2 -147
- package/dist/src/entry_mobile/controls/rok-subtable/hooks/useFull.d.ts +3 -1
- package/dist/src/hooks/components/useLayout.d.ts +2 -1
- package/dist/src/hooks/controls/department2/useDepartmentDatasource.d.ts +6 -1
- package/dist/src/hooks/controls/simpleSearch/useSimpleSearch.d.ts +1 -2
- package/dist/src/locales/index.d.ts +2 -2
- package/dist/src/plugins/engine/ActionUtilsPlugin.d.ts +1 -1
- package/dist/src/plugins/engine/EventListenerPlugin/type.d.ts +2 -2
- package/dist/src/plugins/engine/FormStateChangePlugin.d.ts +13 -0
- package/dist/src/plugins/engine/index.d.ts +1 -0
- package/dist/src/store/index.d.ts +3 -1
- package/dist/src/utils/controls/dateUtils.d.ts +1 -1
- package/dist/src/utils/core/expressionTools.d.ts +22 -0
- package/dist/src/utils/core/index.d.ts +1 -0
- package/dist/src/utils/platform/engine.d.ts +2 -2
- package/package.json +4 -4
- package/dist/src/entry_desktop/controls/components/base-table/props.d.ts +0 -52
- package/dist/src/entry_desktop/controls/components/subtable-ag-grid/props.d.ts +0 -98
- package/dist/src/entry_desktop/controls/rok-grid-table/components/components/ImportModal.d.ts +0 -87
- package/dist/src/entry_desktop/controls/rok-grid-table/hooks/useInstance.d.ts +0 -9
- package/dist/src/entry_desktop/controls/rok-list-view/useShrinkMode.d.ts +0 -16
- package/dist/src/entry_desktop/controls/rok-subtable/components/import-modal/import-modal.d.ts +0 -79
- package/dist/src/entry_desktop/controls/rok-subtable/hooks/useLogic.d.ts +0 -43
- package/dist/src/entry_desktop/controls/rok-subtable/hooks/useSubtable.d.ts +0 -41
- package/dist/src/entry_desktop/controls/rok-subtable/utils/cellRenderColumn.d.ts +0 -8
- package/dist/src/entry_mobile/controls/rok-grid-table/hooks/useRender.d.ts +0 -3
- package/dist/src/entry_mobile/controls/rok-subtable/hooks/useOperate.d.ts +0 -33
- package/dist/src/entry_mobile/controls/rok-subtable/utils/cellRenderColumn.d.ts +0 -6
- package/dist/src/hooks/components/useList.d.ts +0 -10
- package/dist/src/hooks/controls/button/useButton.d.ts +0 -19
- package/dist/src/hooks/controls/calc/useCalc.d.ts +0 -18
- package/dist/src/hooks/controls/dataView/useDataView.d.ts +0 -34
- package/dist/src/hooks/controls/input/useInput.d.ts +0 -32
- package/dist/src/hooks/controls/tab/useTab.d.ts +0 -15
- package/dist/src/hooks/controls/useDateRange.d.ts +0 -139
- package/dist/src/hooks/controls/useNumberValue.d.ts +0 -16
- package/dist/src/hooks/controls/useRichText.d.ts +0 -27
- package/dist/src/hooks/controls/wps/useWps.d.ts +0 -55
- package/dist/src/hooks/form/useBaseForm.d.ts +0 -26
- package/dist/src/utils/controls/subtableDealTableColumn.d.ts +0 -156
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
import * as vue from 'vue';
|
|
2
2
|
export * as vueApp from '../../../src/utils/core/vueApp';
|
|
3
3
|
import { ActionUtilsPlugin, ApprovalPlugin, DataFilterPlugin, DatasourceSearchPlugin, DataViewPlugin, DisplayPlugin, FormRelationFieldPlugin, JurisdictionPlugin, MultistageFillingPlugin, ReferenceAndCalcFieldPlugin, TitlePlugin, SubtableChangePlugin, DataSourceManagePlugin, ExpressionPlugin, TitleSettingPlugin, EventListenerPlugin } from '../../../src/plugins/engine';
|
|
4
|
-
|
|
4
|
+
import { Store } from 'vuex';
|
|
5
|
+
export declare function useRuntimeEngine(props: any, route: any, store: Store<any>): {
|
|
5
6
|
context: any;
|
|
6
7
|
runtimeInstances: vue.ComputedRef<any[]>;
|
|
7
8
|
title: vue.Ref<string>;
|
|
8
9
|
getState: (id: string) => any;
|
|
10
|
+
createEngine: () => Promise<{
|
|
11
|
+
title: vue.Ref<string>;
|
|
12
|
+
context: any;
|
|
13
|
+
} | undefined>;
|
|
9
14
|
ActionUtilsPlugin: typeof ActionUtilsPlugin;
|
|
10
15
|
ApprovalPlugin: typeof ApprovalPlugin;
|
|
11
16
|
DataFilterPlugin: typeof DataFilterPlugin;
|