@dcloudio/uni-app-x 0.7.89 → 0.7.91

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.
Files changed (147) hide show
  1. package/package.json +1 -1
  2. package/types/dom2-internal/UniElement.d.ts +10 -2
  3. package/types/dom2-internal/UniNativeBaseView.d.ts +6 -8
  4. package/types/dom2-internal/UniNativeDefines.d.ts +2 -1
  5. package/types/dom2-internal/UniNativeRichTextNativelView.d.ts +15 -0
  6. package/types/dom2-internal/UniPage.d.ts +11 -0
  7. package/types/dom2-internal/UniRichTextNativeEement.d.ts +15 -0
  8. package/types/dom2-internal/global.d.ts +2 -0
  9. package/types/dom2-internal/index.d.ts +3 -0
  10. package/types/dom2-internal/sharedData.d.ts +5 -1
  11. package/types/native/CSSStyleDeclaration.d.ts +20 -18
  12. package/types/native/CanvasRenderingContext2D.d.ts +1872 -905
  13. package/types/native/DrawableContext.d.ts +214 -55
  14. package/types/native/IUniElement.d.ts +400 -419
  15. package/types/native/UniPage.d.ts +74 -0
  16. package/types/native/UniResizeObserver.d.ts +332 -2
  17. package/types/native/global.d.ts +4 -0
  18. package/types/node_modules/.package-lock.json +20 -0
  19. package/types/node_modules/typescript/LICENSE.txt +55 -0
  20. package/types/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
  21. package/types/node_modules/typescript/bin/tsc +2 -0
  22. package/types/node_modules/typescript/bin/tsserver +2 -0
  23. package/types/node_modules/typescript/lib/cancellationToken.js +90 -0
  24. package/types/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +1880 -0
  25. package/types/node_modules/typescript/lib/de/diagnosticMessages.generated.json +1880 -0
  26. package/types/node_modules/typescript/lib/es/diagnosticMessages.generated.json +1880 -0
  27. package/types/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +1880 -0
  28. package/types/node_modules/typescript/lib/it/diagnosticMessages.generated.json +1880 -0
  29. package/types/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +1880 -0
  30. package/types/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +1880 -0
  31. package/types/node_modules/typescript/lib/lib.d.ts +22 -0
  32. package/types/node_modules/typescript/lib/lib.decorators.d.ts +386 -0
  33. package/types/node_modules/typescript/lib/lib.decorators.legacy.d.ts +22 -0
  34. package/types/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +33 -0
  35. package/types/node_modules/typescript/lib/lib.dom.d.ts +28596 -0
  36. package/types/node_modules/typescript/lib/lib.dom.iterable.d.ts +475 -0
  37. package/types/node_modules/typescript/lib/lib.es2015.collection.d.ts +147 -0
  38. package/types/node_modules/typescript/lib/lib.es2015.core.d.ts +597 -0
  39. package/types/node_modules/typescript/lib/lib.es2015.d.ts +28 -0
  40. package/types/node_modules/typescript/lib/lib.es2015.generator.d.ts +77 -0
  41. package/types/node_modules/typescript/lib/lib.es2015.iterable.d.ts +495 -0
  42. package/types/node_modules/typescript/lib/lib.es2015.promise.d.ts +81 -0
  43. package/types/node_modules/typescript/lib/lib.es2015.proxy.d.ts +128 -0
  44. package/types/node_modules/typescript/lib/lib.es2015.reflect.d.ts +144 -0
  45. package/types/node_modules/typescript/lib/lib.es2015.symbol.d.ts +46 -0
  46. package/types/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +326 -0
  47. package/types/node_modules/typescript/lib/lib.es2016.array.include.d.ts +116 -0
  48. package/types/node_modules/typescript/lib/lib.es2016.d.ts +21 -0
  49. package/types/node_modules/typescript/lib/lib.es2016.full.d.ts +23 -0
  50. package/types/node_modules/typescript/lib/lib.es2016.intl.d.ts +31 -0
  51. package/types/node_modules/typescript/lib/lib.es2017.d.ts +25 -0
  52. package/types/node_modules/typescript/lib/lib.es2017.date.d.ts +31 -0
  53. package/types/node_modules/typescript/lib/lib.es2017.full.d.ts +23 -0
  54. package/types/node_modules/typescript/lib/lib.es2017.intl.d.ts +44 -0
  55. package/types/node_modules/typescript/lib/lib.es2017.object.d.ts +49 -0
  56. package/types/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +135 -0
  57. package/types/node_modules/typescript/lib/lib.es2017.string.d.ts +45 -0
  58. package/types/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +53 -0
  59. package/types/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +77 -0
  60. package/types/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +43 -0
  61. package/types/node_modules/typescript/lib/lib.es2018.d.ts +24 -0
  62. package/types/node_modules/typescript/lib/lib.es2018.full.d.ts +24 -0
  63. package/types/node_modules/typescript/lib/lib.es2018.intl.d.ts +83 -0
  64. package/types/node_modules/typescript/lib/lib.es2018.promise.d.ts +30 -0
  65. package/types/node_modules/typescript/lib/lib.es2018.regexp.d.ts +37 -0
  66. package/types/node_modules/typescript/lib/lib.es2019.array.d.ts +79 -0
  67. package/types/node_modules/typescript/lib/lib.es2019.d.ts +24 -0
  68. package/types/node_modules/typescript/lib/lib.es2019.full.d.ts +24 -0
  69. package/types/node_modules/typescript/lib/lib.es2019.intl.d.ts +23 -0
  70. package/types/node_modules/typescript/lib/lib.es2019.object.d.ts +33 -0
  71. package/types/node_modules/typescript/lib/lib.es2019.string.d.ts +37 -0
  72. package/types/node_modules/typescript/lib/lib.es2019.symbol.d.ts +24 -0
  73. package/types/node_modules/typescript/lib/lib.es2020.bigint.d.ts +727 -0
  74. package/types/node_modules/typescript/lib/lib.es2020.d.ts +27 -0
  75. package/types/node_modules/typescript/lib/lib.es2020.date.d.ts +42 -0
  76. package/types/node_modules/typescript/lib/lib.es2020.full.d.ts +24 -0
  77. package/types/node_modules/typescript/lib/lib.es2020.intl.d.ts +474 -0
  78. package/types/node_modules/typescript/lib/lib.es2020.number.d.ts +28 -0
  79. package/types/node_modules/typescript/lib/lib.es2020.promise.d.ts +47 -0
  80. package/types/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +97 -0
  81. package/types/node_modules/typescript/lib/lib.es2020.string.d.ts +42 -0
  82. package/types/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +37 -0
  83. package/types/node_modules/typescript/lib/lib.es2021.d.ts +23 -0
  84. package/types/node_modules/typescript/lib/lib.es2021.full.d.ts +24 -0
  85. package/types/node_modules/typescript/lib/lib.es2021.intl.d.ts +166 -0
  86. package/types/node_modules/typescript/lib/lib.es2021.promise.d.ts +48 -0
  87. package/types/node_modules/typescript/lib/lib.es2021.string.d.ts +33 -0
  88. package/types/node_modules/typescript/lib/lib.es2021.weakref.d.ts +76 -0
  89. package/types/node_modules/typescript/lib/lib.es2022.array.d.ts +121 -0
  90. package/types/node_modules/typescript/lib/lib.es2022.d.ts +26 -0
  91. package/types/node_modules/typescript/lib/lib.es2022.error.d.ts +73 -0
  92. package/types/node_modules/typescript/lib/lib.es2022.full.d.ts +24 -0
  93. package/types/node_modules/typescript/lib/lib.es2022.intl.d.ts +117 -0
  94. package/types/node_modules/typescript/lib/lib.es2022.object.d.ts +26 -0
  95. package/types/node_modules/typescript/lib/lib.es2022.regexp.d.ts +39 -0
  96. package/types/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts +39 -0
  97. package/types/node_modules/typescript/lib/lib.es2022.string.d.ts +25 -0
  98. package/types/node_modules/typescript/lib/lib.es2023.array.d.ts +924 -0
  99. package/types/node_modules/typescript/lib/lib.es2023.collection.d.ts +21 -0
  100. package/types/node_modules/typescript/lib/lib.es2023.d.ts +22 -0
  101. package/types/node_modules/typescript/lib/lib.es2023.full.d.ts +24 -0
  102. package/types/node_modules/typescript/lib/lib.es2023.intl.d.ts +56 -0
  103. package/types/node_modules/typescript/lib/lib.es5.d.ts +4585 -0
  104. package/types/node_modules/typescript/lib/lib.es6.d.ts +23 -0
  105. package/types/node_modules/typescript/lib/lib.esnext.array.d.ts +35 -0
  106. package/types/node_modules/typescript/lib/lib.esnext.collection.d.ts +106 -0
  107. package/types/node_modules/typescript/lib/lib.esnext.d.ts +28 -0
  108. package/types/node_modules/typescript/lib/lib.esnext.decorators.d.ts +28 -0
  109. package/types/node_modules/typescript/lib/lib.esnext.disposable.d.ts +185 -0
  110. package/types/node_modules/typescript/lib/lib.esnext.full.d.ts +24 -0
  111. package/types/node_modules/typescript/lib/lib.esnext.intl.d.ts +21 -0
  112. package/types/node_modules/typescript/lib/lib.esnext.object.d.ts +29 -0
  113. package/types/node_modules/typescript/lib/lib.esnext.promise.d.ts +35 -0
  114. package/types/node_modules/typescript/lib/lib.esnext.regexp.d.ts +25 -0
  115. package/types/node_modules/typescript/lib/lib.esnext.string.d.ts +29 -0
  116. package/types/node_modules/typescript/lib/lib.scripthost.d.ts +322 -0
  117. package/types/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +33 -0
  118. package/types/node_modules/typescript/lib/lib.webworker.d.ts +9431 -0
  119. package/types/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +23 -0
  120. package/types/node_modules/typescript/lib/lib.webworker.iterable.d.ts +276 -0
  121. package/types/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +1880 -0
  122. package/types/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +1880 -0
  123. package/types/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +1880 -0
  124. package/types/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +1880 -0
  125. package/types/node_modules/typescript/lib/tsc.js +129741 -0
  126. package/types/node_modules/typescript/lib/tsserver.js +621 -0
  127. package/types/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
  128. package/types/node_modules/typescript/lib/tsserverlibrary.js +21 -0
  129. package/types/node_modules/typescript/lib/typesMap.json +497 -0
  130. package/types/node_modules/typescript/lib/typescript.d.ts +11240 -0
  131. package/types/node_modules/typescript/lib/typescript.js +194910 -0
  132. package/types/node_modules/typescript/lib/typingsInstaller.js +236 -0
  133. package/types/node_modules/typescript/lib/watchGuard.js +53 -0
  134. package/types/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +1880 -0
  135. package/types/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +1880 -0
  136. package/types/node_modules/typescript/package.json +116 -0
  137. package/types/uni/uts-plugin-api/lib/uni-navigationBar/utssdk/interface.d.ts +2 -2
  138. package/types/uni/uts-plugin-api/lib/uni-network/utssdk/global.d.ts +10 -0
  139. package/types/uni/uts-plugin-api/lib/uni-network/utssdk/index.d.ts +5 -0
  140. package/types/uni/uts-plugin-api/lib/uni-network/utssdk/interface.d.ts +141 -71
  141. package/types/uni/uts-plugin-component/lib/uni-canvas/utssdk/interface.d.ts +16 -8
  142. package/types/uni/uts-plugin-component/lib/uni-canvas-dom2/utssdk/interface.d.ts +16 -8
  143. package/types/uni/uts-plugin-component/lib/uni-progress-global/utssdk/interface.d.ts +1 -1
  144. package/types/uni/uts-plugin-component/lib/uni-video/utssdk/interface.d.ts +18 -9
  145. package/types/uni/uts-plugin-component/lib/uni-web-view/utssdk/interface.d.ts +131 -110
  146. package/types/uni-cloud/index.d.ts +3 -1
  147. package/types/uni-cloud/interface.d.ts +305 -62
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcloudio/uni-app-x",
3
- "version": "0.7.89",
3
+ "version": "0.7.91",
4
4
  "description": "uni-app x types",
5
5
  "typings": "index.d.ts",
6
6
  "main": "index.d.ts",
@@ -21,8 +21,7 @@ declare global {
21
21
  /**
22
22
  * 插槽名称
23
23
  */
24
- get slot() : UniSlotType
25
- set slot(slotType : UniSlotType)
24
+ slot: UniSlotType
26
25
  /**
27
26
  * 以下方法在FlexNode层封装,仅用于内部使用
28
27
  * - Android平台:c层实现
@@ -230,6 +229,15 @@ declare global {
230
229
  */
231
230
  getNodeId(): number
232
231
 
232
+ /**
233
+ * 设置插槽名称
234
+ */
235
+ setSlot(slot: UniSlotType): void
236
+ /**
237
+ * 获取插槽名称
238
+ */
239
+ getSlot(): UniSlotType
240
+
233
241
  /**
234
242
  * 以下方法在FlexNode和DOM层封装
235
243
  * - Android平台:c层和kt层都需要封装
@@ -21,13 +21,6 @@ export interface UniNativeBaseView {
21
21
  */
22
22
  ext: Map<string, any | null>
23
23
 
24
- /**
25
- * 插槽名称
26
- * 默认为UniNativeSlotType.None,提供给特定场景(如自定义下拉刷新)使用
27
- */
28
- get slot() : UniNativeSlotType
29
- set slot(slotType : UniNativeSlotType)
30
-
31
24
  /**
32
25
  * 获取内部ID值,用于框架调用,不对外公开
33
26
  * Android平台在kotlin层实现
@@ -35,7 +28,6 @@ export interface UniNativeBaseView {
35
28
  */
36
29
  getNodeId(): number
37
30
 
38
-
39
31
  /**
40
32
  * 获取渲染相关样式,用于UniElement封装获取样式
41
33
  * 子类需根据支持的样式重写
@@ -50,6 +42,11 @@ export interface UniNativeBaseView {
50
42
  getStyleAny(key: UniCSSPropertyID): any | null
51
43
 
52
44
 
45
+ /**
46
+ * 插槽名称
47
+ */
48
+ slot(value: UniNativeSlotType): UniNativeBaseView
49
+
53
50
  /**
54
51
  * 位置相关
55
52
  * 坐标相对于父View
@@ -220,5 +217,6 @@ export interface UniNativeBaseView {
220
217
  transitionDuration(value: UniNativeTransitionDuration | UniNativeTransitionDurations): UniNativeBaseView
221
218
  transitionDelay(value: UniNativeTransitionDelay | UniNativeTransitionDelays): UniNativeBaseView
222
219
  transitionTimingFunction(value: UniNativeTransitionTimingFunction | UniNativeTransitionTimingFunctions): UniNativeBaseView
220
+
223
221
  }
224
222
 
@@ -410,7 +410,8 @@ export type UniNativeTransitionTimingFunctions = UniCSSTransitionTimingFunctions
410
410
 
411
411
  /**
412
412
  * 插槽名称
413
- * 注:鸿蒙/iOS平台都是在C层可以与CSS中的 UniSlotType 复用
413
+ * 注:鸿蒙/iOS平台都是在C层可以与CSS中的 UniSlotType 复用
414
+ * UniNativeSlotType 与 UniSlotType 相同,重新定义是为了编译器能正确的将其识别为enum
414
415
  */
415
416
  export enum UniNativeSlotType {
416
417
  /**
@@ -0,0 +1,15 @@
1
+ import { UniNativeBaseView, } from "./UniNativeBaseView"
2
+
3
+
4
+
5
+ /**
6
+ * 富文本(原生渲染)组件 rich-text-native
7
+ */
8
+ export interface UniNativeRichTextNativeView extends UniNativeBaseView {
9
+ /**
10
+ * 设置富文本内容
11
+ */
12
+ html(html: string): void;
13
+
14
+ }
15
+
@@ -3,11 +3,13 @@ import { UniElementType, UniElementStyles } from './UniElementType'
3
3
  import { UniViewElement } from './index'
4
4
  import { UniTextElement } from './index'
5
5
  import { UniImageElement } from './index'
6
+ import { UniRichTextNativeElement } from './index'
6
7
  import { UniNativeView } from './UniNativeView'
7
8
  import { UniNativeTextView } from './UniNativeTextView'
8
9
  import { UniNativeImageView } from './UniNativeImageView'
9
10
  import { UniNativeScrollView, UniNativeScrollViewOptions } from './UniNativeScrollView'
10
11
  import { UniNativeCustomView } from './UniNativeCustomView'
12
+ import { UniNativeRichTextNativeView } from './UniNativeRichTextNativelView'
11
13
  import { UniTextLayout } from './index'
12
14
  import { UniText } from './index'
13
15
 
@@ -65,6 +67,11 @@ declare global {
65
67
  * @internal
66
68
  */
67
69
  createNativeViewElement(): UniNativeViewElement
70
+ /**
71
+ * 创建rich-text-native组件的Element
72
+ * @internal
73
+ */
74
+ createRichTextNativeElement(): UniRichTextNativeElement
68
75
  /**
69
76
  * 创建注释节点的Element
70
77
  * @internal
@@ -121,6 +128,10 @@ declare global {
121
128
  * @internal
122
129
  */
123
130
  createNativeCustomView(): UniNativeCustomView
131
+ /**
132
+ * 创建原生富文本View(rich-text-native)
133
+ */
134
+ createNativeRichTextNativeView(): UniNativeRichTextNativeView
124
135
  // 废弃通过类型创建NativeView的API,改用上面创建指定类型的原生View
125
136
  // createNativeView(type: UniNativeViewType, flatten: boolean): UniNativeBaseView
126
137
  // createNativeView<T extends UniNativeBaseView>(type: UniNativeViewType, flatten: boolean): T
@@ -0,0 +1,15 @@
1
+ import { UniElement } from './index'
2
+
3
+
4
+ declare global {
5
+
6
+ /**
7
+ * UniRichTextNativeElement
8
+ * rich-text-native组件的UniElement
9
+ */
10
+ interface UniRichTextNativeElement extends UniElement {
11
+
12
+ }
13
+
14
+ }
15
+
@@ -11,6 +11,7 @@ import {
11
11
  UniNativeScrollViewRefresherStyleType as UniNativeScrollViewRefresherStyleTypeOrigin,
12
12
  UniNativeScrollView as UniNativeScrollViewOrigin,
13
13
  UniNativeScrollViewOptions as UniNativeScrollViewOptionsOrigin,
14
+ UniNativeRichTextNativeView as UniNativeRichTextNativeViewOrigin,
14
15
  UniNativeImageView as UniNativeImageViewOrigin,
15
16
  UniNativeBackgroundClip as UniNativeBackgroundClipOrigin,
16
17
  UniNativeLinearGradientDirectionType as UniNativeLinearGradientDirectionTypeOrigin,
@@ -139,6 +140,7 @@ declare global {
139
140
  type UniNativeScrollViewRefresherStyleType = UniNativeScrollViewRefresherStyleTypeOrigin
140
141
  type UniNativeScrollView = UniNativeScrollViewOrigin
141
142
  type UniNativeScrollViewOptions = UniNativeScrollViewOptionsOrigin
143
+ type UniNativeRichTextNativeView = UniNativeRichTextNativeViewOrigin
142
144
  type UniNativeImageView = UniNativeImageViewOrigin
143
145
  const UniNativeBackgroundClip: typeof UniNativeBackgroundClipOrigin
144
146
  type UniNativeBackgroundClip = UniNativeBackgroundClipOrigin
@@ -4,6 +4,7 @@
4
4
  /// <reference path="./UniTextLayout.d.ts" />
5
5
  /// <reference path="./UniTextElement.d.ts" />
6
6
  /// <reference path="./UniScrollViewElement.d.ts" />
7
+ /// <reference path="./UniRichTextNativeEement.d.ts" />
7
8
  /// <reference path="./UniPage.d.ts" />
8
9
  /// <reference path="./UniNestedScrollHeaderElement.d.ts" />
9
10
  /// <reference path="./UniNestedScrollBodyElement.d.ts" />
@@ -14,6 +15,7 @@ export * from './UniViewElement'
14
15
  export * from './UniTextLayout'
15
16
  export * from './UniTextElement'
16
17
  export * from './UniScrollViewElement'
18
+ export * from './UniRichTextNativeEement'
17
19
  export * from './UniPage'
18
20
  export * from './UniNestedScrollHeaderElement'
19
21
  export * from './UniNestedScrollBodyElement'
@@ -21,6 +23,7 @@ export * from './UniNativeViewType'
21
23
  export * from './UniNativeView'
22
24
  export * from './UniNativeTextView'
23
25
  export * from './UniNativeScrollView'
26
+ export * from './UniNativeRichTextNativelView'
24
27
  export * from './UniNativeNestedScrollView'
25
28
  export * from './UniNativeImageView'
26
29
  export * from './UniNativeDefines'
@@ -257,9 +257,13 @@ declare global {
257
257
  type UniSharedDataVForUpdate = {
258
258
  /**
259
259
  * 需要更新的索引值
260
- * update((newBlocks[i] = oldBlocks[i]), getItem(source, i))
260
+ * update((newBlocks[index] = oldBlocks[oldIndex]), getItem(source, i))
261
261
  */
262
262
  readonly index: number
263
+ /**
264
+ * 旧索引值
265
+ */
266
+ readonly oldIndex: number
263
267
  }
264
268
 
265
269
  class UniSharedDataVFor<T extends UniSharedData> extends UniSharedData {
@@ -14,9 +14,10 @@
14
14
  * "unixVer": "4.11"
15
15
  * },
16
16
  * "harmony": {
17
- * "osVer": "5.0.0",
18
- * "uniVer": "x",
19
- * "unixVer": "4.61"
17
+ * "osVer": "5.0.0",
18
+ * "uniVer": "x",
19
+ * "unixVer": "4.61",
20
+ * "unixvVer": "4.61"
20
21
  * }
21
22
  * },
22
23
  * "web": {
@@ -44,9 +45,9 @@ export class CSSStyleDeclaration {
44
45
  * "unixVer": "4.51"
45
46
  * },
46
47
  * "harmony": {
47
- * "osVer": "5.0.0",
48
- * "uniVer": "x",
49
- * "unixVer": "4.61"
48
+ * "osVer": "5.0.0",
49
+ * "uniVer": "x",
50
+ * "unixVer": "4.61"
50
51
  * }
51
52
  * },
52
53
  * "mp": {
@@ -80,11 +81,11 @@ export class CSSStyleDeclaration {
80
81
  * "osVer": "12.0",
81
82
  * "uniVer": "x",
82
83
  * "unixVer": "4.11"
83
- * },
84
+ * },
84
85
  * "harmony": {
85
- * "osVer": "5.0.0",
86
- * "uniVer": "x",
87
- * "unixVer": "4.61"
86
+ * "osVer": "5.0.0",
87
+ * "uniVer": "x",
88
+ * "unixVer": "4.61"
88
89
  * }
89
90
  * },
90
91
  * "mp": {
@@ -116,11 +117,11 @@ export class CSSStyleDeclaration {
116
117
  * "osVer": "12.0",
117
118
  * "uniVer": "x",
118
119
  * "unixVer": "4.51"
119
- * },
120
+ * },
120
121
  * "harmony": {
121
- * "osVer": "5.0.0",
122
- * "uniVer": "x",
123
- * "unixVer": "4.61"
122
+ * "osVer": "5.0.0",
123
+ * "uniVer": "x",
124
+ * "unixVer": "4.61"
124
125
  * }
125
126
  * },
126
127
  * "mp": {
@@ -152,11 +153,12 @@ export class CSSStyleDeclaration {
152
153
  * "osVer": "12.0",
153
154
  * "uniVer": "x",
154
155
  * "unixVer": "4.51"
155
- * },
156
+ * },
156
157
  * "harmony": {
157
- * "osVer": "5.0.0",
158
- * "uniVer": "x",
159
- * "unixVer": "4.61"
158
+ * "osVer": "5.0.0",
159
+ * "uniVer": "x",
160
+ * "unixVer": "4.61",
161
+ * "unixvVer": "x"
160
162
  * }
161
163
  * }
162
164
  * "web": {