@byteluck-fe/runtime-engine 2.0.9 → 2.0.10
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.
|
@@ -5,6 +5,7 @@ export declare class DataFilterPlugin implements Plugin {
|
|
|
5
5
|
private engine;
|
|
6
6
|
private cacheInstanceFilterId;
|
|
7
7
|
private weakMap;
|
|
8
|
+
private cacheListViewInstanceFilterEngine;
|
|
8
9
|
apply(engine: Engine): void;
|
|
9
10
|
private watchChangeEvents;
|
|
10
11
|
private runImpactInstanceSearchAndReset;
|
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
import { Router } from 'vue-router';
|
|
2
|
+
import { default as runtimeStore } from '../store/index';
|
|
2
3
|
import { App } from 'vue';
|
|
3
4
|
|
|
4
5
|
declare const _default: {
|
|
5
|
-
install(
|
|
6
|
+
install(params: {
|
|
7
|
+
router: Router;
|
|
8
|
+
app: App;
|
|
9
|
+
i18n: any;
|
|
10
|
+
type: 'desktop' | 'mobile';
|
|
11
|
+
codeOutStore?: typeof runtimeStore;
|
|
12
|
+
}): Promise<void>;
|
|
6
13
|
};
|
|
7
14
|
export default _default;
|