@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/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@vtj/renderer",
3
3
  "private": false,
4
- "version": "0.9.0",
4
+ "version": "0.9.2",
5
5
  "type": "module",
6
6
  "dependencies": {
7
7
  "mockjs": "~1.1.0",
8
- "@vtj/utils": "~0.9.0",
9
- "@vtj/core": "~0.9.0"
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/icons": "~0.9.0",
15
- "@vtj/ui": "~0.9.0",
16
- "@vtj/cli": "~0.9.0"
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
  ".": {
@@ -38,3 +38,5 @@ export declare const PAGE_ROUTE_NAME = "VtjPage";
38
38
  * 主页路由名称
39
39
  */
40
40
  export declare const HOMEPAGE_ROUTE_NAME = "VtjHomepage";
41
+ export declare const HTML_TAGS: string[];
42
+ export declare const BUILD_IN_TAGS: string[];
@@ -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
- private options;
92
+ options: AccessOptions;
93
93
  private data;
94
94
  private mode?;
95
95
  constructor(options: Partial<AccessOptions>);
@@ -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;
@@ -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.0-alpha.50
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.0-alpha.50";
8
+ export declare const version = "0.9.1";