@vtj/renderer 0.10.1-alpha.1 → 0.10.1-alpha.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/index.cjs +8 -6
- package/dist/index.mjs +539 -520
- package/package.json +5 -6
- package/types/provider/provider.d.ts +1 -0
- package/types/utils/util.d.ts +1 -0
- package/types/version.d.ts +2 -2
package/package.json
CHANGED
@@ -1,19 +1,18 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vtj/renderer",
|
3
3
|
"private": false,
|
4
|
-
"version": "0.10.1-alpha.
|
4
|
+
"version": "0.10.1-alpha.3",
|
5
5
|
"type": "module",
|
6
6
|
"dependencies": {
|
7
|
-
"
|
8
|
-
"@vtj/utils": "~0.10.1-alpha.
|
9
|
-
"@vtj/core": "~0.10.1-alpha.1"
|
7
|
+
"@vtj/core": "~0.10.1-alpha.3",
|
8
|
+
"@vtj/utils": "~0.10.1-alpha.3"
|
10
9
|
},
|
11
10
|
"devDependencies": {
|
12
11
|
"vue": "~3.5.5",
|
13
12
|
"vue-router": "~4.5.0",
|
14
|
-
"@vtj/
|
13
|
+
"@vtj/ui": "~0.10.1-alpha.3",
|
15
14
|
"@vtj/cli": "~0.10.0",
|
16
|
-
"@vtj/
|
15
|
+
"@vtj/icons": "~0.10.1-alpha.3"
|
17
16
|
},
|
18
17
|
"exports": {
|
19
18
|
".": {
|
@@ -47,6 +47,7 @@ export declare class Provider extends Base {
|
|
47
47
|
constructor(options: ProviderOptions);
|
48
48
|
createMock(func: (...args: any) => any): (...args: any[]) => Promise<any>;
|
49
49
|
load(project: ProjectSchema): Promise<void>;
|
50
|
+
initMock(global?: any): void;
|
50
51
|
private loadDependencies;
|
51
52
|
private loadAssets;
|
52
53
|
private initRouter;
|
package/types/utils/util.d.ts
CHANGED
@@ -7,3 +7,4 @@ export declare function loadScriptUrl(urls: string[], library: string, global?:
|
|
7
7
|
export declare function isVuePlugin(value: unknown): value is Plugin;
|
8
8
|
export declare function isBuiltInTag(tag: string): boolean;
|
9
9
|
export declare function isNativeTag(tag: string): boolean;
|
10
|
+
export declare function getMock(global?: any): any;
|
package/types/version.d.ts
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
* Copyright (c) 2025, VTJ.PRO All rights reserved.
|
3
3
|
* @name @vtj/renderer
|
4
4
|
* @author CHC chenhuachun1549@dingtalk.com
|
5
|
-
* @version 0.10.1-alpha.
|
5
|
+
* @version 0.10.1-alpha.2
|
6
6
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
7
7
|
*/
|
8
|
-
export declare const version = "0.10.1-alpha.
|
8
|
+
export declare const version = "0.10.1-alpha.2";
|