@vtj/renderer 0.13.15 → 0.13.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.
- package/dist/index.cjs +8 -7
- package/dist/index.mjs +358 -341
- package/package.json +6 -6
- package/types/utils/util.d.ts +1 -0
- package/types/version.d.ts +2 -2
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vtj/renderer",
|
3
3
|
"private": false,
|
4
|
-
"version": "0.13.
|
4
|
+
"version": "0.13.17",
|
5
5
|
"type": "module",
|
6
6
|
"keywords": [
|
7
7
|
"低代码引擎",
|
@@ -21,15 +21,15 @@
|
|
21
21
|
"author": "chenhuachun",
|
22
22
|
"license": "MIT",
|
23
23
|
"dependencies": {
|
24
|
-
"@vtj/utils": "~0.13.
|
25
|
-
"@vtj/core": "~0.13.
|
24
|
+
"@vtj/utils": "~0.13.17",
|
25
|
+
"@vtj/core": "~0.13.17"
|
26
26
|
},
|
27
27
|
"devDependencies": {
|
28
28
|
"vue": "~3.5.5",
|
29
29
|
"vue-router": "~4.5.0",
|
30
|
-
"@vtj/
|
31
|
-
"@vtj/
|
32
|
-
"@vtj/
|
30
|
+
"@vtj/ui": "~0.13.17",
|
31
|
+
"@vtj/icons": "~0.13.17",
|
32
|
+
"@vtj/cli": "~0.12.11"
|
33
33
|
},
|
34
34
|
"exports": {
|
35
35
|
".": {
|
package/types/utils/util.d.ts
CHANGED
@@ -3,6 +3,7 @@ import { PageFile, BlockFile } from '@vtj/core';
|
|
3
3
|
import { RouteLocationNormalizedGeneric } from 'vue-router';
|
4
4
|
export declare function toString(value: any): string;
|
5
5
|
export declare function adoptedStyleSheets(global: Window, id: string, css: string, scoped?: boolean): void;
|
6
|
+
export declare function adoptStylesToInline(document: Document): void;
|
6
7
|
export declare function loadCss(id: string, url: string): Promise<void>;
|
7
8
|
export declare function loadCssUrl(urls: string[], global?: any): void;
|
8
9
|
export declare function loadScriptUrl(urls: string[], library: string, global?: any): Promise<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.13.
|
5
|
+
* @version 0.13.16
|
6
6
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
7
7
|
*/
|
8
|
-
export declare const version = "0.13.
|
8
|
+
export declare const version = "0.13.16";
|