@byteluck-fe/runtime-engine 2.0.16 → 2.0.17

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.
@@ -7,6 +7,8 @@ import { setVueApp } from '../../../src/utils/core/vueApp';
7
7
  import { onEngineListInit } from '../../../src/hooks';
8
8
  import { setFormDataNew } from '../../../src/utils';
9
9
  import { PropsInstanceType } from '../../../src/constant';
10
+ import { useCancel as desktopUseCancel } from '../../../src/entry_desktop/hooks/useCancel';
11
+ import { useCancel as mobileUseCancel } from '../../../src/entry_mobile//views/page-render/useCancel';
10
12
  import { ComputedRef, Ref } from 'vue';
11
13
 
12
14
  declare const useRenderEngine: ({ props, emit, route, router, store, }: {
@@ -52,4 +54,4 @@ declare const useRenderEngine: ({ props, emit, route, router, store, }: {
52
54
  declare function initContext(props: PropsInstanceType<'render-engine'>, printUrlList?: any, inject?: any, customViteVue?: any): Engine;
53
55
  declare function checkToGetFormPageTitleInListPage(engine: Engine): void;
54
56
  declare function checkToAddFormKey(formKey: string, needGetTitleFormKeyObj: any): void;
55
- export { initContext, checkToGetFormPageTitleInListPage, checkToAddFormKey, onEngineListInit, setFormDataNew, setVueApp, setTenant, useRenderEngine, };
57
+ export { initContext, checkToGetFormPageTitleInListPage, checkToAddFormKey, onEngineListInit, setFormDataNew, setVueApp, setTenant, useRenderEngine, desktopUseCancel, mobileUseCancel, };