@dcloudio/uni-app-x 0.7.53 → 0.7.54

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcloudio/uni-app-x",
3
- "version": "0.7.53",
3
+ "version": "0.7.54",
4
4
  "description": "uni-app x types",
5
5
  "typings": "index.d.ts",
6
6
  "main": "index.d.ts",
@@ -39,6 +39,41 @@ export type GetBoundingClientRectAsyncOptions = {
39
39
  * }
40
40
  */
41
41
  export interface UniElement {
42
+ /**
43
+ * 只读属性 节点是否与 DOM 树连接
44
+ * @uniPlatform {
45
+ * "app": {
46
+ * "android": {
47
+ * "osVer": "5.0",
48
+ * "uniVer": "x",
49
+ * "unixVer": "x"
50
+ * },
51
+ * "ios": {
52
+ * "osVer": "12.0",
53
+ * "uniVer": "x",
54
+ * "unixVer": "x"
55
+ * "unixUtsPlugin": "x"
56
+ * },
57
+ * "harmony": {
58
+ * "osVer": "12",
59
+ * "uniVer": "x",
60
+ * "unixVer": "4.61"
61
+ * }
62
+ * },
63
+ * "mp": {
64
+ * "weixin": {
65
+ * "osVer": "x",
66
+ * "uniVer": "x",
67
+ * "unixVer": "x"
68
+ * }
69
+ * },
70
+ * "web": {
71
+ * "uniVer": "x",
72
+ * "unixVer": "4.0"
73
+ * }
74
+ * }
75
+ */
76
+ isConnected: boolean
42
77
  /**
43
78
  * 只读属性 获取当前元素的的 class 属性的动态集合。
44
79
  * @uniPlatform {