@vtj/renderer 0.13.14 → 0.13.15
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 +5 -5
- package/dist/index.mjs +301 -279
- package/package.json +6 -6
- package/types/provider/i18n.d.ts +3 -0
- package/types/provider/provider.d.ts +2 -1
- 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.15",
|
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.15",
|
25
|
+
"@vtj/core": "~0.13.15"
|
26
26
|
},
|
27
27
|
"devDependencies": {
|
28
28
|
"vue": "~3.5.5",
|
29
29
|
"vue-router": "~4.5.0",
|
30
|
-
"@vtj/
|
31
|
-
"@vtj/ui": "~0.13.
|
32
|
-
"@vtj/
|
30
|
+
"@vtj/cli": "~0.12.10",
|
31
|
+
"@vtj/ui": "~0.13.15",
|
32
|
+
"@vtj/icons": "~0.13.15"
|
33
33
|
},
|
34
34
|
"exports": {
|
35
35
|
".": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { App, InjectionKey } from 'vue';
|
2
2
|
import { Router, RouteRecordName, RouteMeta } from 'vue-router';
|
3
|
-
import { ProjectSchema, PageFile, BlockFile, Service, BlockSchema, NodeFromPlugin, GlobalConfig, Base } from '@vtj/core';
|
3
|
+
import { ProjectSchema, PageFile, BlockFile, Service, BlockSchema, NodeFromPlugin, GlobalConfig, I18nConfig, Base } from '@vtj/core';
|
4
4
|
import { ContextMode } from '../constants';
|
5
5
|
import { CreateRendererOptions } from '../render';
|
6
6
|
import { ProvideAdapter } from './defaults';
|
@@ -142,6 +142,7 @@ export declare class Provider extends Base {
|
|
142
142
|
* @param win
|
143
143
|
*/
|
144
144
|
initGlobals(globals: GlobalConfig, options: Partial<InitGlobalsOptions>): void;
|
145
|
+
initI18n(app: App, libs: Record<string, any>, i18n?: I18nConfig): void;
|
145
146
|
}
|
146
147
|
/**
|
147
148
|
* 创建 Provider 实例
|
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.14
|
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.14";
|