x-runtime-lib 0.8.159 → 0.8.160
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/components/element/ui/dataTable/v1/columnSlot.vue.d.ts +0 -1
- package/dist/composables/element/core/elementSlotMethod.d.ts +3 -1
- package/dist/{i18n-en.kg2ecet9.js → i18n-en.l7ddtvmr.js} +9 -9
- package/dist/{i18n-zhHans.hiugu9wu.js → i18n-zhHans.i9qon76g.js} +11 -11
- package/dist/index.js +1328 -1304
- package/dist/utils/provideInject.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { QuickJSRuntime } from 'quickjs-emscripten';
|
|
2
2
|
import { Ref, ShallowRef } from 'vue';
|
|
3
3
|
import { Sandbox } from '@/sandbox';
|
|
4
|
-
import { Data, Depends, Env, Mode } from '@/types';
|
|
4
|
+
import { Data, Depends, Env, Mode, Node } from '@/types';
|
|
5
5
|
export declare function provideOrg(org: string): void;
|
|
6
6
|
export declare function injectOrg(): string;
|
|
7
7
|
export declare function provideEnv(env: Env): void;
|
|
@@ -28,3 +28,5 @@ export declare function provideRuntime(runtime: QuickJSRuntime): void;
|
|
|
28
28
|
export declare function injectRuntime(): QuickJSRuntime;
|
|
29
29
|
export declare function provideSandbox(sandbox: Sandbox): void;
|
|
30
30
|
export declare function injectSandbox(): Sandbox | undefined;
|
|
31
|
+
export declare function provideNode(node: Ref<Node>): void;
|
|
32
|
+
export declare function injectNode(): Ref<Node>;
|