@dcloudio/uni-app-x 0.5.7 → 0.5.9

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/README.md CHANGED
@@ -1,39 +1 @@
1
1
  # uni-app x 类型
2
-
3
- ## 初始化依赖
4
-
5
- ```shell
6
- pnpm i
7
- ```
8
-
9
- ## 配置环境
10
-
11
- 当前目录建立 .env 文件
12
-
13
- ```
14
- UNI_CORE_DIR = "%vuejs-core 仓库路径%/packages/uni-ext-api/src"
15
- UNI_UTS_PLUGIN_API_DIR = "%新 uni-app 仓库路径%/api"
16
- UNI_UTS_PLUGIN_COMPONENT_DIR = "%新 uni-app 仓库路径%/component"
17
- UNI_COMPLIER_META_DIR = "%旧 uni-app 仓库路径%/packages/uni-uts-v1/lib/ext-api"
18
-
19
- ```
20
-
21
- ## 构建
22
-
23
- 构建框架内置 Uni Api
24
-
25
- ```shell
26
- pnpm build:types:core
27
- ```
28
-
29
- 构建 Ext Api
30
-
31
- ```shell
32
- pnpm build:types:ext
33
- ```
34
-
35
- 生成默认参数数据到编译器
36
-
37
- ```shell
38
- pnpm build:types:meta
39
- ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcloudio/uni-app-x",
3
- "version": "0.5.7",
3
+ "version": "0.5.9",
4
4
  "description": "uni-app x types",
5
5
  "typings": "index.d.ts",
6
6
  "author": "DCloud",
@@ -1,6 +1,6 @@
1
1
  /// <reference path='./UniElement.d.ts' />
2
2
 
3
- interface ITextNode {
3
+ interface TextElement {
4
4
  /**
5
5
  * 只读属性 text元素的文案内容
6
6
  */
@@ -13,7 +13,7 @@ interface ITextNode {
13
13
  * @package io.dcloud.uniapp.runtime
14
14
  * @autodoc false
15
15
  */
16
- declare class UniTextElement extends UniElement implements ITextNode {
16
+ declare class UniTextElement extends UniElement implements TextElement {
17
17
  /**
18
18
  * 只读属性 text元素的文案内容
19
19
  */