@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.
- package/package.json +1 -1
- package/types/dom2-internal/UniElement.d.ts +10 -2
- package/types/dom2-internal/UniNativeBaseView.d.ts +6 -8
- package/types/dom2-internal/UniNativeDefines.d.ts +2 -1
- package/types/dom2-internal/UniNativeRichTextNativelView.d.ts +15 -0
- package/types/dom2-internal/UniPage.d.ts +11 -0
- package/types/dom2-internal/UniRichTextNativeEement.d.ts +15 -0
- package/types/dom2-internal/global.d.ts +2 -0
- package/types/dom2-internal/index.d.ts +3 -0
- package/types/dom2-internal/sharedData.d.ts +5 -1
- package/types/native/CSSStyleDeclaration.d.ts +20 -18
- package/types/native/CanvasRenderingContext2D.d.ts +1872 -905
- package/types/native/DrawableContext.d.ts +214 -55
- package/types/native/IUniElement.d.ts +400 -419
- package/types/native/UniPage.d.ts +74 -0
- package/types/native/UniResizeObserver.d.ts +332 -2
- package/types/native/global.d.ts +4 -0
- package/types/node_modules/.package-lock.json +20 -0
- package/types/node_modules/typescript/LICENSE.txt +55 -0
- package/types/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
- package/types/node_modules/typescript/bin/tsc +2 -0
- package/types/node_modules/typescript/bin/tsserver +2 -0
- package/types/node_modules/typescript/lib/cancellationToken.js +90 -0
- package/types/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/de/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/es/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/it/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/lib.d.ts +22 -0
- package/types/node_modules/typescript/lib/lib.decorators.d.ts +386 -0
- package/types/node_modules/typescript/lib/lib.decorators.legacy.d.ts +22 -0
- package/types/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +33 -0
- package/types/node_modules/typescript/lib/lib.dom.d.ts +28596 -0
- package/types/node_modules/typescript/lib/lib.dom.iterable.d.ts +475 -0
- package/types/node_modules/typescript/lib/lib.es2015.collection.d.ts +147 -0
- package/types/node_modules/typescript/lib/lib.es2015.core.d.ts +597 -0
- package/types/node_modules/typescript/lib/lib.es2015.d.ts +28 -0
- package/types/node_modules/typescript/lib/lib.es2015.generator.d.ts +77 -0
- package/types/node_modules/typescript/lib/lib.es2015.iterable.d.ts +495 -0
- package/types/node_modules/typescript/lib/lib.es2015.promise.d.ts +81 -0
- package/types/node_modules/typescript/lib/lib.es2015.proxy.d.ts +128 -0
- package/types/node_modules/typescript/lib/lib.es2015.reflect.d.ts +144 -0
- package/types/node_modules/typescript/lib/lib.es2015.symbol.d.ts +46 -0
- package/types/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +326 -0
- package/types/node_modules/typescript/lib/lib.es2016.array.include.d.ts +116 -0
- package/types/node_modules/typescript/lib/lib.es2016.d.ts +21 -0
- package/types/node_modules/typescript/lib/lib.es2016.full.d.ts +23 -0
- package/types/node_modules/typescript/lib/lib.es2016.intl.d.ts +31 -0
- package/types/node_modules/typescript/lib/lib.es2017.d.ts +25 -0
- package/types/node_modules/typescript/lib/lib.es2017.date.d.ts +31 -0
- package/types/node_modules/typescript/lib/lib.es2017.full.d.ts +23 -0
- package/types/node_modules/typescript/lib/lib.es2017.intl.d.ts +44 -0
- package/types/node_modules/typescript/lib/lib.es2017.object.d.ts +49 -0
- package/types/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +135 -0
- package/types/node_modules/typescript/lib/lib.es2017.string.d.ts +45 -0
- package/types/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +53 -0
- package/types/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +77 -0
- package/types/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +43 -0
- package/types/node_modules/typescript/lib/lib.es2018.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2018.full.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2018.intl.d.ts +83 -0
- package/types/node_modules/typescript/lib/lib.es2018.promise.d.ts +30 -0
- package/types/node_modules/typescript/lib/lib.es2018.regexp.d.ts +37 -0
- package/types/node_modules/typescript/lib/lib.es2019.array.d.ts +79 -0
- package/types/node_modules/typescript/lib/lib.es2019.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2019.full.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2019.intl.d.ts +23 -0
- package/types/node_modules/typescript/lib/lib.es2019.object.d.ts +33 -0
- package/types/node_modules/typescript/lib/lib.es2019.string.d.ts +37 -0
- package/types/node_modules/typescript/lib/lib.es2019.symbol.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2020.bigint.d.ts +727 -0
- package/types/node_modules/typescript/lib/lib.es2020.d.ts +27 -0
- package/types/node_modules/typescript/lib/lib.es2020.date.d.ts +42 -0
- package/types/node_modules/typescript/lib/lib.es2020.full.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2020.intl.d.ts +474 -0
- package/types/node_modules/typescript/lib/lib.es2020.number.d.ts +28 -0
- package/types/node_modules/typescript/lib/lib.es2020.promise.d.ts +47 -0
- package/types/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +97 -0
- package/types/node_modules/typescript/lib/lib.es2020.string.d.ts +42 -0
- package/types/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +37 -0
- package/types/node_modules/typescript/lib/lib.es2021.d.ts +23 -0
- package/types/node_modules/typescript/lib/lib.es2021.full.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2021.intl.d.ts +166 -0
- package/types/node_modules/typescript/lib/lib.es2021.promise.d.ts +48 -0
- package/types/node_modules/typescript/lib/lib.es2021.string.d.ts +33 -0
- package/types/node_modules/typescript/lib/lib.es2021.weakref.d.ts +76 -0
- package/types/node_modules/typescript/lib/lib.es2022.array.d.ts +121 -0
- package/types/node_modules/typescript/lib/lib.es2022.d.ts +26 -0
- package/types/node_modules/typescript/lib/lib.es2022.error.d.ts +73 -0
- package/types/node_modules/typescript/lib/lib.es2022.full.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2022.intl.d.ts +117 -0
- package/types/node_modules/typescript/lib/lib.es2022.object.d.ts +26 -0
- package/types/node_modules/typescript/lib/lib.es2022.regexp.d.ts +39 -0
- package/types/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts +39 -0
- package/types/node_modules/typescript/lib/lib.es2022.string.d.ts +25 -0
- package/types/node_modules/typescript/lib/lib.es2023.array.d.ts +924 -0
- package/types/node_modules/typescript/lib/lib.es2023.collection.d.ts +21 -0
- package/types/node_modules/typescript/lib/lib.es2023.d.ts +22 -0
- package/types/node_modules/typescript/lib/lib.es2023.full.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2023.intl.d.ts +56 -0
- package/types/node_modules/typescript/lib/lib.es5.d.ts +4585 -0
- package/types/node_modules/typescript/lib/lib.es6.d.ts +23 -0
- package/types/node_modules/typescript/lib/lib.esnext.array.d.ts +35 -0
- package/types/node_modules/typescript/lib/lib.esnext.collection.d.ts +106 -0
- package/types/node_modules/typescript/lib/lib.esnext.d.ts +28 -0
- package/types/node_modules/typescript/lib/lib.esnext.decorators.d.ts +28 -0
- package/types/node_modules/typescript/lib/lib.esnext.disposable.d.ts +185 -0
- package/types/node_modules/typescript/lib/lib.esnext.full.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.esnext.intl.d.ts +21 -0
- package/types/node_modules/typescript/lib/lib.esnext.object.d.ts +29 -0
- package/types/node_modules/typescript/lib/lib.esnext.promise.d.ts +35 -0
- package/types/node_modules/typescript/lib/lib.esnext.regexp.d.ts +25 -0
- package/types/node_modules/typescript/lib/lib.esnext.string.d.ts +29 -0
- package/types/node_modules/typescript/lib/lib.scripthost.d.ts +322 -0
- package/types/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +33 -0
- package/types/node_modules/typescript/lib/lib.webworker.d.ts +9431 -0
- package/types/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +23 -0
- package/types/node_modules/typescript/lib/lib.webworker.iterable.d.ts +276 -0
- package/types/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/tsc.js +129741 -0
- package/types/node_modules/typescript/lib/tsserver.js +621 -0
- package/types/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
- package/types/node_modules/typescript/lib/tsserverlibrary.js +21 -0
- package/types/node_modules/typescript/lib/typesMap.json +497 -0
- package/types/node_modules/typescript/lib/typescript.d.ts +11240 -0
- package/types/node_modules/typescript/lib/typescript.js +194910 -0
- package/types/node_modules/typescript/lib/typingsInstaller.js +236 -0
- package/types/node_modules/typescript/lib/watchGuard.js +53 -0
- package/types/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/package.json +116 -0
- package/types/uni/uts-plugin-api/lib/uni-navigationBar/utssdk/interface.d.ts +2 -2
- package/types/uni/uts-plugin-api/lib/uni-network/utssdk/global.d.ts +10 -0
- package/types/uni/uts-plugin-api/lib/uni-network/utssdk/index.d.ts +5 -0
- package/types/uni/uts-plugin-api/lib/uni-network/utssdk/interface.d.ts +141 -71
- package/types/uni/uts-plugin-component/lib/uni-canvas/utssdk/interface.d.ts +16 -8
- package/types/uni/uts-plugin-component/lib/uni-canvas-dom2/utssdk/interface.d.ts +16 -8
- package/types/uni/uts-plugin-component/lib/uni-progress-global/utssdk/interface.d.ts +1 -1
- package/types/uni/uts-plugin-component/lib/uni-video/utssdk/interface.d.ts +18 -9
- package/types/uni/uts-plugin-component/lib/uni-web-view/utssdk/interface.d.ts +131 -110
- package/types/uni-cloud/index.d.ts +3 -1
- package/types/uni-cloud/interface.d.ts +305 -62
package/package.json
CHANGED
|
@@ -21,8 +21,7 @@ declare global {
|
|
|
21
21
|
/**
|
|
22
22
|
* 插槽名称
|
|
23
23
|
*/
|
|
24
|
-
|
|
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
|
-
*
|
|
413
|
+
* 注:鸿蒙/iOS平台都是在C层可以与CSS中的 UniSlotType 复用
|
|
414
|
+
* UniNativeSlotType 与 UniSlotType 相同,重新定义是为了编译器能正确的将其识别为enum
|
|
414
415
|
*/
|
|
415
416
|
export enum UniNativeSlotType {
|
|
416
417
|
/**
|
|
@@ -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
|
|
@@ -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[
|
|
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
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
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
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
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
|
-
*
|
|
86
|
-
*
|
|
87
|
-
*
|
|
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
|
-
*
|
|
122
|
-
*
|
|
123
|
-
*
|
|
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
|
-
*
|
|
158
|
-
*
|
|
159
|
-
*
|
|
158
|
+
* "osVer": "5.0.0",
|
|
159
|
+
* "uniVer": "x",
|
|
160
|
+
* "unixVer": "4.61",
|
|
161
|
+
* "unixvVer": "x"
|
|
160
162
|
* }
|
|
161
163
|
* }
|
|
162
164
|
* "web": {
|