@dcloudio/uni-app-x 0.7.118 → 0.7.120
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/sharedData.d.ts +9 -3
- package/types/uni/uts-plugin-api/global.d.ts +0 -2
- package/types/uni/uts-plugin-api/index.d.ts +0 -2
- package/types/uni/uts-plugin-api/lib/uni-editor/utssdk/interface.d.ts +110 -110
- package/types/uni/uts-plugin-api/lib/uni-keyboard/utssdk/interface.d.ts +214 -549
- package/types/uni/uts-plugin-api/lib/uni-oauth/utssdk/interface.d.ts +198 -1087
- package/types/uni/uts-plugin-api/lib/uni-pageScrollTo/utssdk/interface.d.ts +534 -337
- package/types/uni/uts-plugin-api/lib/uni-share/utssdk/global.d.ts +4 -4
- package/types/uni/uts-plugin-api/lib/uni-share/utssdk/index.d.ts +2 -2
- package/types/uni/uts-plugin-api/lib/uni-share/utssdk/interface.d.ts +27 -20
- package/types/uni/uts-plugin-api/lib/uni-share-weixin/utssdk/interface.d.ts +3 -1
- package/types/uni/uts-plugin-component/global.d.ts +0 -2
- package/types/uni/uts-plugin-component/index.d.ts +0 -2
- package/types/uni/uts-plugin-component/lib/uni-editor/utssdk/interface.d.ts +110 -110
- package/types/uni/uts-plugin-component/lib/uni-keyboard/utssdk/interface.d.ts +569 -110
- package/types/uni/uts-plugin-component/lib/uni-oauth/utssdk/interface.d.ts +1087 -198
- package/types/uni/uts-plugin-component/lib/uni-pageScrollTo/utssdk/interface.d.ts +478 -15
- package/types/uni/uts-plugin-component/lib/uni-share/utssdk/global.d.ts +4 -4
- package/types/uni/uts-plugin-component/lib/uni-share/utssdk/index.d.ts +2 -2
- package/types/uni/uts-plugin-component/lib/uni-share/utssdk/interface.d.ts +27 -20
- package/types/uni/uts-plugin-component/lib/uni-share-weixin/utssdk/interface.d.ts +3 -1
package/package.json
CHANGED
|
@@ -161,6 +161,10 @@ declare global {
|
|
|
161
161
|
* @internal
|
|
162
162
|
*/
|
|
163
163
|
_renderElement(): UniElementBlock
|
|
164
|
+
/**
|
|
165
|
+
* @internal
|
|
166
|
+
*/
|
|
167
|
+
_dispose(): void
|
|
164
168
|
|
|
165
169
|
/**
|
|
166
170
|
* 由编译器动态生成的子类中的 Kotlin Element 渲染器,kt层
|
|
@@ -312,7 +316,7 @@ declare global {
|
|
|
312
316
|
|
|
313
317
|
type InferSharedData<T, R extends UniSharedData = UniSharedData> = T extends keyof UniSharedDataRegistry ? UniSharedDataRegistry[T] : R
|
|
314
318
|
|
|
315
|
-
function useSharedData<T extends string>(scope: UniSharedDataPage): InferSharedData<T>
|
|
319
|
+
function useSharedData<T extends string>(scope: UniSharedDataPage, options?: UniDynamicSharedDataInitOptions): InferSharedData<T>
|
|
316
320
|
|
|
317
321
|
function useSharedDataPage<T extends string>(
|
|
318
322
|
pageIdOrScope: number | UniSharedDataPage,
|
|
@@ -418,6 +422,8 @@ declare global {
|
|
|
418
422
|
readonly sharedDataClassId: number
|
|
419
423
|
}
|
|
420
424
|
|
|
425
|
+
interface UniDynamicSharedDataComponentOptions extends UniSharedDataComponentOptions, UniDynamicSharedDataInitOptions {}
|
|
426
|
+
|
|
421
427
|
/**
|
|
422
428
|
* UniDynamicSharedDataState 的初始化参数。
|
|
423
429
|
*
|
|
@@ -599,7 +605,7 @@ declare global {
|
|
|
599
605
|
readonly _sharedDataClass: UniDynamicSharedDataClassDefinition
|
|
600
606
|
readonly _dynamicState: UniDynamicSharedDataState
|
|
601
607
|
|
|
602
|
-
constructor(scope: UniSharedDataPage, options:
|
|
608
|
+
constructor(scope: UniSharedDataPage, options: UniDynamicSharedDataComponentOptions)
|
|
603
609
|
|
|
604
610
|
getField(fieldId: number): UniSharedDataAny
|
|
605
611
|
getFlag(flagGroupId: number): number
|
|
@@ -634,7 +640,7 @@ declare global {
|
|
|
634
640
|
readonly _sharedDataClass: UniDynamicSharedDataClassDefinition
|
|
635
641
|
readonly _dynamicState: UniDynamicSharedDataState
|
|
636
642
|
|
|
637
|
-
constructor(pageIdOrScope: number | UniSharedDataPage, options:
|
|
643
|
+
constructor(pageIdOrScope: number | UniSharedDataPage, options: UniDynamicSharedDataComponentOptions)
|
|
638
644
|
|
|
639
645
|
getField(fieldId: number): UniSharedDataAny
|
|
640
646
|
getFlag(flagGroupId: number): number
|
|
@@ -36,7 +36,6 @@
|
|
|
36
36
|
/// <reference path='./lib/uni-getProvider/utssdk/global.d.ts' />
|
|
37
37
|
/// <reference path='./lib/uni-getSystemInfo/utssdk/global.d.ts' />
|
|
38
38
|
/// <reference path='./lib/uni-getSystemSetting/utssdk/global.d.ts' />
|
|
39
|
-
/// <reference path='./lib/uni-input/utssdk/global.d.ts' />
|
|
40
39
|
/// <reference path='./lib/uni-installApk/utssdk/global.d.ts' />
|
|
41
40
|
/// <reference path='./lib/uni-interceptor/utssdk/global.d.ts' />
|
|
42
41
|
/// <reference path='./lib/uni-keyboard/utssdk/global.d.ts' />
|
|
@@ -76,7 +75,6 @@
|
|
|
76
75
|
/// <reference path='./lib/uni-sse/utssdk/global.d.ts' />
|
|
77
76
|
/// <reference path='./lib/uni-storage/utssdk/global.d.ts' />
|
|
78
77
|
/// <reference path='./lib/uni-tabBar/utssdk/global.d.ts' />
|
|
79
|
-
/// <reference path='./lib/uni-textarea/utssdk/global.d.ts' />
|
|
80
78
|
/// <reference path='./lib/uni-theme/utssdk/global.d.ts' />
|
|
81
79
|
/// <reference path='./lib/uni-video/utssdk/global.d.ts' />
|
|
82
80
|
/// <reference path='./lib/uni-virtualPayment/utssdk/global.d.ts' />
|
|
@@ -36,7 +36,6 @@ export * from './lib/uni-getPerformance/utssdk'
|
|
|
36
36
|
export * from './lib/uni-getProvider/utssdk'
|
|
37
37
|
export * from './lib/uni-getSystemInfo/utssdk'
|
|
38
38
|
export * from './lib/uni-getSystemSetting/utssdk'
|
|
39
|
-
export * from './lib/uni-input/utssdk'
|
|
40
39
|
export * from './lib/uni-installApk/utssdk'
|
|
41
40
|
export * from './lib/uni-interceptor/utssdk'
|
|
42
41
|
export * from './lib/uni-keyboard/utssdk'
|
|
@@ -76,7 +75,6 @@ export * from './lib/uni-showLoading/utssdk'
|
|
|
76
75
|
export * from './lib/uni-sse/utssdk'
|
|
77
76
|
export * from './lib/uni-storage/utssdk'
|
|
78
77
|
export * from './lib/uni-tabBar/utssdk'
|
|
79
|
-
export * from './lib/uni-textarea/utssdk'
|
|
80
78
|
export * from './lib/uni-theme/utssdk'
|
|
81
79
|
export * from './lib/uni-video/utssdk'
|
|
82
80
|
export * from './lib/uni-virtualPayment/utssdk'
|
|
@@ -122,33 +122,33 @@ export type CreateEditorContextAsyncOptions = {
|
|
|
122
122
|
* "android": {
|
|
123
123
|
* "osVer": "5.0",
|
|
124
124
|
* "uniVer": "x",
|
|
125
|
-
* "unixVer": "5.
|
|
125
|
+
* "unixVer": "5.06",
|
|
126
126
|
* "unixVaporVer": "x"
|
|
127
127
|
* },
|
|
128
128
|
* "ios": {
|
|
129
129
|
* "osVer": "10.0",
|
|
130
130
|
* "uniVer": "x",
|
|
131
|
-
* "unixVer": "5.
|
|
131
|
+
* "unixVer": "5.06",
|
|
132
132
|
* "unixVaporVer": "x"
|
|
133
133
|
* },
|
|
134
134
|
* "harmony": {
|
|
135
135
|
* "osVer": "5.0.0",
|
|
136
136
|
* "uniVer": "x",
|
|
137
|
-
* "unixVer": "5.
|
|
138
|
-
* "unixVaporVer": "5.
|
|
137
|
+
* "unixVer": "5.06",
|
|
138
|
+
* "unixVaporVer": "5.06"
|
|
139
139
|
* }
|
|
140
140
|
* },
|
|
141
141
|
* "web": {
|
|
142
142
|
* "uniVer": "√",
|
|
143
|
-
* "unixVer": "5.
|
|
144
|
-
* "unixVaporVer": "5.
|
|
143
|
+
* "unixVer": "5.06",
|
|
144
|
+
* "unixVaporVer": "5.06"
|
|
145
145
|
* },
|
|
146
146
|
* "mp":{
|
|
147
147
|
* "weixin": {
|
|
148
148
|
* "hostVer": "√",
|
|
149
|
-
* "uniVer": "5.
|
|
150
|
-
* "unixVer": "5.
|
|
151
|
-
* "unixVaporVer": "5.
|
|
149
|
+
* "uniVer": "5.06",
|
|
150
|
+
* "unixVer": "5.06",
|
|
151
|
+
* "unixVaporVer": "5.06"
|
|
152
152
|
* },
|
|
153
153
|
* "alipay": {
|
|
154
154
|
* "hostVer": "x",
|
|
@@ -196,33 +196,33 @@ export type CreateEditorContextAsyncOptions = {
|
|
|
196
196
|
* "android": {
|
|
197
197
|
* "osVer": "5.0",
|
|
198
198
|
* "uniVer": "x",
|
|
199
|
-
* "unixVer": "5.
|
|
199
|
+
* "unixVer": "5.06",
|
|
200
200
|
* "unixVaporVer": "x"
|
|
201
201
|
* },
|
|
202
202
|
* "ios": {
|
|
203
203
|
* "osVer": "10.0",
|
|
204
204
|
* "uniVer": "x",
|
|
205
|
-
* "unixVer": "5.
|
|
205
|
+
* "unixVer": "5.06",
|
|
206
206
|
* "unixVaporVer": "x"
|
|
207
207
|
* },
|
|
208
208
|
* "harmony": {
|
|
209
209
|
* "osVer": "5.0.0",
|
|
210
210
|
* "uniVer": "x",
|
|
211
|
-
* "unixVer": "5.
|
|
212
|
-
* "unixVaporVer": "5.
|
|
211
|
+
* "unixVer": "5.06",
|
|
212
|
+
* "unixVaporVer": "5.06"
|
|
213
213
|
* }
|
|
214
214
|
* },
|
|
215
215
|
* "web": {
|
|
216
216
|
* "uniVer": "√",
|
|
217
|
-
* "unixVer": "5.
|
|
218
|
-
* "unixVaporVer": "5.
|
|
217
|
+
* "unixVer": "5.06",
|
|
218
|
+
* "unixVaporVer": "5.06"
|
|
219
219
|
* },
|
|
220
220
|
* "mp":{
|
|
221
221
|
* "weixin": {
|
|
222
222
|
* "hostVer": "√",
|
|
223
|
-
* "uniVer": "5.
|
|
224
|
-
* "unixVer": "5.
|
|
225
|
-
* "unixVaporVer": "5.
|
|
223
|
+
* "uniVer": "5.06",
|
|
224
|
+
* "unixVer": "5.06",
|
|
225
|
+
* "unixVaporVer": "5.06"
|
|
226
226
|
* },
|
|
227
227
|
* "alipay": {
|
|
228
228
|
* "hostVer": "x",
|
|
@@ -270,33 +270,33 @@ export type CreateEditorContextAsyncOptions = {
|
|
|
270
270
|
* "android": {
|
|
271
271
|
* "osVer": "5.0",
|
|
272
272
|
* "uniVer": "x",
|
|
273
|
-
* "unixVer": "5.
|
|
273
|
+
* "unixVer": "5.06",
|
|
274
274
|
* "unixVaporVer": "x"
|
|
275
275
|
* },
|
|
276
276
|
* "ios": {
|
|
277
277
|
* "osVer": "10.0",
|
|
278
278
|
* "uniVer": "x",
|
|
279
|
-
* "unixVer": "5.
|
|
279
|
+
* "unixVer": "5.06",
|
|
280
280
|
* "unixVaporVer": "x"
|
|
281
281
|
* },
|
|
282
282
|
* "harmony": {
|
|
283
283
|
* "osVer": "5.0.0",
|
|
284
284
|
* "uniVer": "x",
|
|
285
|
-
* "unixVer": "5.
|
|
286
|
-
* "unixVaporVer": "5.
|
|
285
|
+
* "unixVer": "5.06",
|
|
286
|
+
* "unixVaporVer": "5.06"
|
|
287
287
|
* }
|
|
288
288
|
* },
|
|
289
289
|
* "web": {
|
|
290
290
|
* "uniVer": "√",
|
|
291
|
-
* "unixVer": "5.
|
|
292
|
-
* "unixVaporVer": "5.
|
|
291
|
+
* "unixVer": "5.06",
|
|
292
|
+
* "unixVaporVer": "5.06"
|
|
293
293
|
* },
|
|
294
294
|
* "mp":{
|
|
295
295
|
* "weixin": {
|
|
296
296
|
* "hostVer": "√",
|
|
297
|
-
* "uniVer": "5.
|
|
298
|
-
* "unixVer": "5.
|
|
299
|
-
* "unixVaporVer": "5.
|
|
297
|
+
* "uniVer": "5.06",
|
|
298
|
+
* "unixVer": "5.06",
|
|
299
|
+
* "unixVaporVer": "5.06"
|
|
300
300
|
* },
|
|
301
301
|
* "alipay": {
|
|
302
302
|
* "hostVer": "x",
|
|
@@ -344,33 +344,33 @@ export type CreateEditorContextAsyncOptions = {
|
|
|
344
344
|
* "android": {
|
|
345
345
|
* "osVer": "5.0",
|
|
346
346
|
* "uniVer": "x",
|
|
347
|
-
* "unixVer": "5.
|
|
347
|
+
* "unixVer": "5.06",
|
|
348
348
|
* "unixVaporVer": "x"
|
|
349
349
|
* },
|
|
350
350
|
* "ios": {
|
|
351
351
|
* "osVer": "10.0",
|
|
352
352
|
* "uniVer": "x",
|
|
353
|
-
* "unixVer": "5.
|
|
353
|
+
* "unixVer": "5.06",
|
|
354
354
|
* "unixVaporVer": "x"
|
|
355
355
|
* },
|
|
356
356
|
* "harmony": {
|
|
357
357
|
* "osVer": "5.0.0",
|
|
358
358
|
* "uniVer": "x",
|
|
359
|
-
* "unixVer": "5.
|
|
360
|
-
* "unixVaporVer": "5.
|
|
359
|
+
* "unixVer": "5.06",
|
|
360
|
+
* "unixVaporVer": "5.06"
|
|
361
361
|
* }
|
|
362
362
|
* },
|
|
363
363
|
* "web": {
|
|
364
364
|
* "uniVer": "√",
|
|
365
|
-
* "unixVer": "5.
|
|
366
|
-
* "unixVaporVer": "5.
|
|
365
|
+
* "unixVer": "5.06",
|
|
366
|
+
* "unixVaporVer": "5.06"
|
|
367
367
|
* },
|
|
368
368
|
* "mp":{
|
|
369
369
|
* "weixin": {
|
|
370
370
|
* "hostVer": "√",
|
|
371
|
-
* "uniVer": "5.
|
|
372
|
-
* "unixVer": "5.
|
|
373
|
-
* "unixVaporVer": "5.
|
|
371
|
+
* "uniVer": "5.06",
|
|
372
|
+
* "unixVer": "5.06",
|
|
373
|
+
* "unixVaporVer": "5.06"
|
|
374
374
|
* },
|
|
375
375
|
* "alipay": {
|
|
376
376
|
* "hostVer": "x",
|
|
@@ -418,33 +418,33 @@ export type CreateEditorContextAsyncOptions = {
|
|
|
418
418
|
* "android": {
|
|
419
419
|
* "osVer": "5.0",
|
|
420
420
|
* "uniVer": "x",
|
|
421
|
-
* "unixVer": "5.
|
|
421
|
+
* "unixVer": "5.06",
|
|
422
422
|
* "unixVaporVer": "x"
|
|
423
423
|
* },
|
|
424
424
|
* "ios": {
|
|
425
425
|
* "osVer": "10.0",
|
|
426
426
|
* "uniVer": "x",
|
|
427
|
-
* "unixVer": "5.
|
|
427
|
+
* "unixVer": "5.06",
|
|
428
428
|
* "unixVaporVer": "x"
|
|
429
429
|
* },
|
|
430
430
|
* "harmony": {
|
|
431
431
|
* "osVer": "5.0.0",
|
|
432
432
|
* "uniVer": "x",
|
|
433
|
-
* "unixVer": "5.
|
|
434
|
-
* "unixVaporVer": "5.
|
|
433
|
+
* "unixVer": "5.06",
|
|
434
|
+
* "unixVaporVer": "5.06"
|
|
435
435
|
* }
|
|
436
436
|
* },
|
|
437
437
|
* "web": {
|
|
438
438
|
* "uniVer": "√",
|
|
439
|
-
* "unixVer": "5.
|
|
440
|
-
* "unixVaporVer": "5.
|
|
439
|
+
* "unixVer": "5.06",
|
|
440
|
+
* "unixVaporVer": "5.06"
|
|
441
441
|
* },
|
|
442
442
|
* "mp":{
|
|
443
443
|
* "weixin": {
|
|
444
444
|
* "hostVer": "√",
|
|
445
|
-
* "uniVer": "5.
|
|
446
|
-
* "unixVer": "5.
|
|
447
|
-
* "unixVaporVer": "5.
|
|
445
|
+
* "uniVer": "5.06",
|
|
446
|
+
* "unixVer": "5.06",
|
|
447
|
+
* "unixVaporVer": "5.06"
|
|
448
448
|
* },
|
|
449
449
|
* "alipay": {
|
|
450
450
|
* "hostVer": "x",
|
|
@@ -495,18 +495,18 @@ export interface EditorContext {
|
|
|
495
495
|
* "android": {
|
|
496
496
|
* "osVer": "4.4",
|
|
497
497
|
* "uniVer": "x",
|
|
498
|
-
* "unixVer": "5.
|
|
498
|
+
* "unixVer": "5.06"
|
|
499
499
|
* },
|
|
500
500
|
* "ios": {
|
|
501
501
|
* "osVer": "12.0",
|
|
502
502
|
* "uniVer": "x",
|
|
503
|
-
* "unixVer": "5.
|
|
503
|
+
* "unixVer": "5.06"
|
|
504
504
|
* },
|
|
505
505
|
* "harmony": {
|
|
506
506
|
* "osVer": "√",
|
|
507
507
|
* "uniVer": "x",
|
|
508
|
-
* "unixVer": "5.
|
|
509
|
-
* "unixVaporVer": "5.
|
|
508
|
+
* "unixVer": "5.06",
|
|
509
|
+
* "unixVaporVer": "5.06"
|
|
510
510
|
* }
|
|
511
511
|
* },
|
|
512
512
|
* }
|
|
@@ -519,18 +519,18 @@ export interface EditorContext {
|
|
|
519
519
|
* "android": {
|
|
520
520
|
* "osVer": "4.4",
|
|
521
521
|
* "uniVer": "x",
|
|
522
|
-
* "unixVer": "5.
|
|
522
|
+
* "unixVer": "5.06"
|
|
523
523
|
* },
|
|
524
524
|
* "ios": {
|
|
525
525
|
* "osVer": "12.0",
|
|
526
526
|
* "uniVer": "x",
|
|
527
|
-
* "unixVer": "5.
|
|
527
|
+
* "unixVer": "5.06"
|
|
528
528
|
* },
|
|
529
529
|
* "harmony": {
|
|
530
530
|
* "osVer": "√",
|
|
531
531
|
* "uniVer": "x",
|
|
532
|
-
* "unixVer": "5.
|
|
533
|
-
* "unixVaporVer": "5.
|
|
532
|
+
* "unixVer": "5.06",
|
|
533
|
+
* "unixVaporVer": "5.06"
|
|
534
534
|
* }
|
|
535
535
|
* },
|
|
536
536
|
* }
|
|
@@ -543,18 +543,18 @@ export interface EditorContext {
|
|
|
543
543
|
* "android": {
|
|
544
544
|
* "osVer": "4.4",
|
|
545
545
|
* "uniVer": "x",
|
|
546
|
-
* "unixVer": "5.
|
|
546
|
+
* "unixVer": "5.06"
|
|
547
547
|
* },
|
|
548
548
|
* "ios": {
|
|
549
549
|
* "osVer": "12.0",
|
|
550
550
|
* "uniVer": "x",
|
|
551
|
-
* "unixVer": "5.
|
|
551
|
+
* "unixVer": "5.06"
|
|
552
552
|
* },
|
|
553
553
|
* "harmony": {
|
|
554
554
|
* "osVer": "√",
|
|
555
555
|
* "uniVer": "x",
|
|
556
|
-
* "unixVer": "5.
|
|
557
|
-
* "unixVaporVer": "5.
|
|
556
|
+
* "unixVer": "5.06",
|
|
557
|
+
* "unixVaporVer": "5.06"
|
|
558
558
|
* }
|
|
559
559
|
* },
|
|
560
560
|
* }
|
|
@@ -567,18 +567,18 @@ export interface EditorContext {
|
|
|
567
567
|
* "android": {
|
|
568
568
|
* "osVer": "4.4",
|
|
569
569
|
* "uniVer": "x",
|
|
570
|
-
* "unixVer": "5.
|
|
570
|
+
* "unixVer": "5.06"
|
|
571
571
|
* },
|
|
572
572
|
* "ios": {
|
|
573
573
|
* "osVer": "12.0",
|
|
574
574
|
* "uniVer": "x",
|
|
575
|
-
* "unixVer": "5.
|
|
575
|
+
* "unixVer": "5.06"
|
|
576
576
|
* },
|
|
577
577
|
* "harmony": {
|
|
578
578
|
* "osVer": "√",
|
|
579
579
|
* "uniVer": "x",
|
|
580
|
-
* "unixVer": "5.
|
|
581
|
-
* "unixVaporVer": "5.
|
|
580
|
+
* "unixVer": "5.06",
|
|
581
|
+
* "unixVaporVer": "5.06"
|
|
582
582
|
* }
|
|
583
583
|
* },
|
|
584
584
|
* }
|
|
@@ -591,18 +591,18 @@ export interface EditorContext {
|
|
|
591
591
|
* "android": {
|
|
592
592
|
* "osVer": "4.4",
|
|
593
593
|
* "uniVer": "x",
|
|
594
|
-
* "unixVer": "5.
|
|
594
|
+
* "unixVer": "5.06"
|
|
595
595
|
* },
|
|
596
596
|
* "ios": {
|
|
597
597
|
* "osVer": "12.0",
|
|
598
598
|
* "uniVer": "x",
|
|
599
|
-
* "unixVer": "5.
|
|
599
|
+
* "unixVer": "5.06"
|
|
600
600
|
* },
|
|
601
601
|
* "harmony": {
|
|
602
602
|
* "osVer": "√",
|
|
603
603
|
* "uniVer": "x",
|
|
604
|
-
* "unixVer": "5.
|
|
605
|
-
* "unixVaporVer": "5.
|
|
604
|
+
* "unixVer": "5.06",
|
|
605
|
+
* "unixVaporVer": "5.06"
|
|
606
606
|
* }
|
|
607
607
|
* },
|
|
608
608
|
* }
|
|
@@ -615,18 +615,18 @@ export interface EditorContext {
|
|
|
615
615
|
* "android": {
|
|
616
616
|
* "osVer": "4.4",
|
|
617
617
|
* "uniVer": "x",
|
|
618
|
-
* "unixVer": "5.
|
|
618
|
+
* "unixVer": "5.06"
|
|
619
619
|
* },
|
|
620
620
|
* "ios": {
|
|
621
621
|
* "osVer": "12.0",
|
|
622
622
|
* "uniVer": "x",
|
|
623
|
-
* "unixVer": "5.
|
|
623
|
+
* "unixVer": "5.06"
|
|
624
624
|
* },
|
|
625
625
|
* "harmony": {
|
|
626
626
|
* "osVer": "√",
|
|
627
627
|
* "uniVer": "x",
|
|
628
|
-
* "unixVer": "5.
|
|
629
|
-
* "unixVaporVer": "5.
|
|
628
|
+
* "unixVer": "5.06",
|
|
629
|
+
* "unixVaporVer": "5.06"
|
|
630
630
|
* }
|
|
631
631
|
* },
|
|
632
632
|
* }
|
|
@@ -639,18 +639,18 @@ export interface EditorContext {
|
|
|
639
639
|
* "android": {
|
|
640
640
|
* "osVer": "4.4",
|
|
641
641
|
* "uniVer": "x",
|
|
642
|
-
* "unixVer": "5.
|
|
642
|
+
* "unixVer": "5.06"
|
|
643
643
|
* },
|
|
644
644
|
* "ios": {
|
|
645
645
|
* "osVer": "12.0",
|
|
646
646
|
* "uniVer": "x",
|
|
647
|
-
* "unixVer": "5.
|
|
647
|
+
* "unixVer": "5.06"
|
|
648
648
|
* },
|
|
649
649
|
* "harmony": {
|
|
650
650
|
* "osVer": "√",
|
|
651
651
|
* "uniVer": "x",
|
|
652
|
-
* "unixVer": "5.
|
|
653
|
-
* "unixVaporVer": "5.
|
|
652
|
+
* "unixVer": "5.06",
|
|
653
|
+
* "unixVaporVer": "5.06"
|
|
654
654
|
* }
|
|
655
655
|
* },
|
|
656
656
|
* }
|
|
@@ -663,18 +663,18 @@ export interface EditorContext {
|
|
|
663
663
|
* "android": {
|
|
664
664
|
* "osVer": "4.4",
|
|
665
665
|
* "uniVer": "x",
|
|
666
|
-
* "unixVer": "5.
|
|
666
|
+
* "unixVer": "5.06"
|
|
667
667
|
* },
|
|
668
668
|
* "ios": {
|
|
669
669
|
* "osVer": "12.0",
|
|
670
670
|
* "uniVer": "x",
|
|
671
|
-
* "unixVer": "5.
|
|
671
|
+
* "unixVer": "5.06"
|
|
672
672
|
* },
|
|
673
673
|
* "harmony": {
|
|
674
674
|
* "osVer": "√",
|
|
675
675
|
* "uniVer": "x",
|
|
676
|
-
* "unixVer": "5.
|
|
677
|
-
* "unixVaporVer": "5.
|
|
676
|
+
* "unixVer": "5.06",
|
|
677
|
+
* "unixVaporVer": "5.06"
|
|
678
678
|
* }
|
|
679
679
|
* },
|
|
680
680
|
* }
|
|
@@ -687,18 +687,18 @@ export interface EditorContext {
|
|
|
687
687
|
* "android": {
|
|
688
688
|
* "osVer": "4.4",
|
|
689
689
|
* "uniVer": "x",
|
|
690
|
-
* "unixVer": "5.
|
|
690
|
+
* "unixVer": "5.06"
|
|
691
691
|
* },
|
|
692
692
|
* "ios": {
|
|
693
693
|
* "osVer": "12.0",
|
|
694
694
|
* "uniVer": "x",
|
|
695
|
-
* "unixVer": "5.
|
|
695
|
+
* "unixVer": "5.06"
|
|
696
696
|
* },
|
|
697
697
|
* "harmony": {
|
|
698
698
|
* "osVer": "√",
|
|
699
699
|
* "uniVer": "x",
|
|
700
|
-
* "unixVer": "5.
|
|
701
|
-
* "unixVaporVer": "5.
|
|
700
|
+
* "unixVer": "5.06",
|
|
701
|
+
* "unixVaporVer": "5.06"
|
|
702
702
|
* }
|
|
703
703
|
* },
|
|
704
704
|
* }
|
|
@@ -711,18 +711,18 @@ export interface EditorContext {
|
|
|
711
711
|
* "android": {
|
|
712
712
|
* "osVer": "4.4",
|
|
713
713
|
* "uniVer": "x",
|
|
714
|
-
* "unixVer": "5.
|
|
714
|
+
* "unixVer": "5.06"
|
|
715
715
|
* },
|
|
716
716
|
* "ios": {
|
|
717
717
|
* "osVer": "12.0",
|
|
718
718
|
* "uniVer": "x",
|
|
719
|
-
* "unixVer": "5.
|
|
719
|
+
* "unixVer": "5.06"
|
|
720
720
|
* },
|
|
721
721
|
* "harmony": {
|
|
722
722
|
* "osVer": "√",
|
|
723
723
|
* "uniVer": "x",
|
|
724
|
-
* "unixVer": "5.
|
|
725
|
-
* "unixVaporVer": "5.
|
|
724
|
+
* "unixVer": "5.06",
|
|
725
|
+
* "unixVaporVer": "5.06"
|
|
726
726
|
* }
|
|
727
727
|
* },
|
|
728
728
|
* }
|
|
@@ -735,18 +735,18 @@ export interface EditorContext {
|
|
|
735
735
|
* "android": {
|
|
736
736
|
* "osVer": "4.4",
|
|
737
737
|
* "uniVer": "x",
|
|
738
|
-
* "unixVer": "5.
|
|
738
|
+
* "unixVer": "5.06"
|
|
739
739
|
* },
|
|
740
740
|
* "ios": {
|
|
741
741
|
* "osVer": "12.0",
|
|
742
742
|
* "uniVer": "x",
|
|
743
|
-
* "unixVer": "5.
|
|
743
|
+
* "unixVer": "5.06"
|
|
744
744
|
* },
|
|
745
745
|
* "harmony": {
|
|
746
746
|
* "osVer": "√",
|
|
747
747
|
* "uniVer": "x",
|
|
748
|
-
* "unixVer": "5.
|
|
749
|
-
* "unixVaporVer": "5.
|
|
748
|
+
* "unixVer": "5.06",
|
|
749
|
+
* "unixVaporVer": "5.06"
|
|
750
750
|
* }
|
|
751
751
|
* },
|
|
752
752
|
* }
|
|
@@ -759,18 +759,18 @@ export interface EditorContext {
|
|
|
759
759
|
* "android": {
|
|
760
760
|
* "osVer": "4.4",
|
|
761
761
|
* "uniVer": "x",
|
|
762
|
-
* "unixVer": "5.
|
|
762
|
+
* "unixVer": "5.06"
|
|
763
763
|
* },
|
|
764
764
|
* "ios": {
|
|
765
765
|
* "osVer": "12.0",
|
|
766
766
|
* "uniVer": "x",
|
|
767
|
-
* "unixVer": "5.
|
|
767
|
+
* "unixVer": "5.06"
|
|
768
768
|
* },
|
|
769
769
|
* "harmony": {
|
|
770
770
|
* "osVer": "√",
|
|
771
771
|
* "uniVer": "x",
|
|
772
|
-
* "unixVer": "5.
|
|
773
|
-
* "unixVaporVer": "5.
|
|
772
|
+
* "unixVer": "5.06",
|
|
773
|
+
* "unixVaporVer": "5.06"
|
|
774
774
|
* }
|
|
775
775
|
* },
|
|
776
776
|
* }
|
|
@@ -783,18 +783,18 @@ export interface EditorContext {
|
|
|
783
783
|
* "android": {
|
|
784
784
|
* "osVer": "4.4",
|
|
785
785
|
* "uniVer": "x",
|
|
786
|
-
* "unixVer": "5.
|
|
786
|
+
* "unixVer": "5.06"
|
|
787
787
|
* },
|
|
788
788
|
* "ios": {
|
|
789
789
|
* "osVer": "12.0",
|
|
790
790
|
* "uniVer": "x",
|
|
791
|
-
* "unixVer": "5.
|
|
791
|
+
* "unixVer": "5.06"
|
|
792
792
|
* },
|
|
793
793
|
* "harmony": {
|
|
794
794
|
* "osVer": "√",
|
|
795
795
|
* "uniVer": "x",
|
|
796
|
-
* "unixVer": "5.
|
|
797
|
-
* "unixVaporVer": "5.
|
|
796
|
+
* "unixVer": "5.06",
|
|
797
|
+
* "unixVaporVer": "5.06"
|
|
798
798
|
* }
|
|
799
799
|
* },
|
|
800
800
|
* }
|
|
@@ -807,18 +807,18 @@ export interface EditorContext {
|
|
|
807
807
|
* "android": {
|
|
808
808
|
* "osVer": "4.4",
|
|
809
809
|
* "uniVer": "x",
|
|
810
|
-
* "unixVer": "5.
|
|
810
|
+
* "unixVer": "5.06"
|
|
811
811
|
* },
|
|
812
812
|
* "ios": {
|
|
813
813
|
* "osVer": "12.0",
|
|
814
814
|
* "uniVer": "x",
|
|
815
|
-
* "unixVer": "5.
|
|
815
|
+
* "unixVer": "5.06"
|
|
816
816
|
* },
|
|
817
817
|
* "harmony": {
|
|
818
818
|
* "osVer": "√",
|
|
819
819
|
* "uniVer": "x",
|
|
820
|
-
* "unixVer": "5.
|
|
821
|
-
* "unixVaporVer": "5.
|
|
820
|
+
* "unixVer": "5.06",
|
|
821
|
+
* "unixVaporVer": "5.06"
|
|
822
822
|
* }
|
|
823
823
|
* },
|
|
824
824
|
* }
|
|
@@ -836,33 +836,33 @@ export interface Uni {
|
|
|
836
836
|
* "android": {
|
|
837
837
|
* "osVer": "5.0",
|
|
838
838
|
* "uniVer": "x",
|
|
839
|
-
* "unixVer": "5.
|
|
839
|
+
* "unixVer": "5.06",
|
|
840
840
|
* "unixVaporVer": "x"
|
|
841
841
|
* },
|
|
842
842
|
* "ios": {
|
|
843
843
|
* "osVer": "10.0",
|
|
844
844
|
* "uniVer": "x",
|
|
845
|
-
* "unixVer": "5.
|
|
845
|
+
* "unixVer": "5.06",
|
|
846
846
|
* "unixVaporVer": "x"
|
|
847
847
|
* },
|
|
848
848
|
* "harmony": {
|
|
849
849
|
* "osVer": "5.0.0",
|
|
850
850
|
* "uniVer": "x",
|
|
851
|
-
* "unixVer": "5.
|
|
852
|
-
* "unixVaporVer": "5.
|
|
851
|
+
* "unixVer": "5.06",
|
|
852
|
+
* "unixVaporVer": "5.06"
|
|
853
853
|
* }
|
|
854
854
|
* },
|
|
855
855
|
* "web": {
|
|
856
856
|
* "uniVer": "√",
|
|
857
|
-
* "unixVer": "5.
|
|
858
|
-
* "unixVaporVer": "5.
|
|
857
|
+
* "unixVer": "5.06",
|
|
858
|
+
* "unixVaporVer": "5.06"
|
|
859
859
|
* },
|
|
860
860
|
* "mp":{
|
|
861
861
|
* "weixin": {
|
|
862
862
|
* "hostVer": "√",
|
|
863
|
-
* "uniVer": "5.
|
|
864
|
-
* "unixVer": "5.
|
|
865
|
-
* "unixVaporVer": "5.
|
|
863
|
+
* "uniVer": "5.06",
|
|
864
|
+
* "unixVer": "5.06",
|
|
865
|
+
* "unixVaporVer": "5.06"
|
|
866
866
|
* },
|
|
867
867
|
* "alipay": {
|
|
868
868
|
* "hostVer": "x",
|