@vtj/renderer 0.9.0 → 0.9.2
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 +6 -6
- package/dist/index.mjs +505 -465
- package/package.json +6 -6
- package/types/constants.d.ts +2 -0
- package/types/plugins/access.d.ts +1 -1
- package/types/utils/util.d.ts +2 -0
- package/types/version.d.ts +2 -2
package/package.json
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vtj/renderer",
|
3
3
|
"private": false,
|
4
|
-
"version": "0.9.
|
4
|
+
"version": "0.9.2",
|
5
5
|
"type": "module",
|
6
6
|
"dependencies": {
|
7
7
|
"mockjs": "~1.1.0",
|
8
|
-
"@vtj/
|
9
|
-
"@vtj/
|
8
|
+
"@vtj/core": "~0.9.2",
|
9
|
+
"@vtj/utils": "~0.9.2"
|
10
10
|
},
|
11
11
|
"devDependencies": {
|
12
12
|
"vue": "~3.5.5",
|
13
13
|
"vue-router": "~4.5.0",
|
14
|
-
"@vtj/
|
15
|
-
"@vtj/ui": "~0.9.
|
16
|
-
"@vtj/
|
14
|
+
"@vtj/cli": "~0.9.1",
|
15
|
+
"@vtj/ui": "~0.9.2",
|
16
|
+
"@vtj/icons": "~0.9.2"
|
17
17
|
},
|
18
18
|
"exports": {
|
19
19
|
".": {
|
package/types/constants.d.ts
CHANGED
@@ -89,7 +89,7 @@ export interface AccessConnectParams {
|
|
89
89
|
}
|
90
90
|
export declare const ACCESS_KEY: InjectionKey<Access>;
|
91
91
|
export declare class Access {
|
92
|
-
|
92
|
+
options: AccessOptions;
|
93
93
|
private data;
|
94
94
|
private mode?;
|
95
95
|
constructor(options: Partial<AccessOptions>);
|
package/types/utils/util.d.ts
CHANGED
@@ -5,3 +5,5 @@ export declare function loadCss(id: string, url: string): Promise<void>;
|
|
5
5
|
export declare function loadCssUrl(urls: string[], global?: any): void;
|
6
6
|
export declare function loadScriptUrl(urls: string[], library: string, global?: any): Promise<any>;
|
7
7
|
export declare function isVuePlugin(value: unknown): value is Plugin;
|
8
|
+
export declare function isBuiltInTag(tag: string): boolean;
|
9
|
+
export declare function isNativeTag(tag: string): boolean;
|
package/types/version.d.ts
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
* Copyright (c) 2024, VTJ.PRO All rights reserved.
|
3
3
|
* @name @vtj/renderer
|
4
4
|
* @author CHC chenhuachun1549@dingtalk.com
|
5
|
-
* @version 0.9.
|
5
|
+
* @version 0.9.1
|
6
6
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
7
7
|
*/
|
8
|
-
export declare const version = "0.9.
|
8
|
+
export declare const version = "0.9.1";
|