@dcloudio/uni-app-x 0.7.62 → 0.7.64
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/app.d.ts +36 -1
- package/types/dom2/UniCSSProperty.d.ts +446 -0
- package/types/dom2/UniCSSType.d.ts +72 -0
- package/types/dom2/UniCommon.d.ts +40 -0
- package/types/dom2/UniCustomViewElement.d.ts +12 -0
- package/types/dom2/UniElement.d.ts +354 -0
- package/types/dom2/UniElementType.d.ts +37 -0
- package/types/dom2/UniImageElement.d.ts +102 -0
- package/types/dom2/UniNativeBaseView.d.ts +178 -0
- package/types/dom2/UniNativeCustomView.d.ts +13 -0
- package/types/dom2/UniNativeDefines.d.ts +435 -0
- package/types/dom2/UniNativeImageView.d.ts +34 -0
- package/types/dom2/UniNativeScrollView.d.ts +42 -0
- package/types/dom2/UniNativeTextView.d.ts +25 -0
- package/types/dom2/UniNativeView.d.ts +51 -0
- package/types/dom2/UniNativeViewType.d.ts +22 -0
- package/types/dom2/UniPage.d.ts +55 -0
- package/types/dom2/UniScrollViewElement.d.ts +13 -0
- package/types/dom2/UniTextElement.d.ts +20 -0
- package/types/dom2/UniTextLayout.d.ts +386 -0
- package/types/dom2/UniViewElement.d.ts +57 -0
- package/types/dom2/global.d.ts +189 -0
- package/types/dom2/index.d.ts +40 -0
- package/types/dom2/sharedData.d.ts +227 -0
- package/types/index.d.ts +2 -1
- package/types/native/DOMRect.d.ts +2 -1
- package/types/native/DrawableContext.d.ts +1665 -1661
- package/types/native/IUniElement.d.ts +3514 -2877
- package/types/native/SnapshotOptions.d.ts +2 -2
- package/types/native/UniAnimation.d.ts +11 -10
- package/types/native/UniElement.d.ts +1 -1
- package/types/native/UniEvent.d.ts +108 -3
- package/types/native/UniPage.d.ts +891 -887
- package/types/native/UniTextElement.d.ts +37 -0
- package/types/native/UniTextLayout.d.ts +387 -0
- package/types/native/UniVideoElement.d.ts +20 -17
- package/types/native/Worker.d.ts +19 -0
- package/types/native/global.d.ts +28 -68
- package/types/native/index.d.ts +18 -1
- package/types/page.d.ts +1862 -599
- package/types/uni/uts-plugin-api/global.d.ts +2 -0
- package/types/uni/uts-plugin-api/index.d.ts +2 -0
- package/types/uni/uts-plugin-api/lib/uni-chooseMedia/utssdk/interface.d.ts +1 -1
- package/types/uni/uts-plugin-api/lib/uni-createInnerAudioContext/utssdk/interface.d.ts +10 -10
- package/types/uni/uts-plugin-api/lib/uni-createWebviewContext/utssdk/interface.d.ts +0 -1
- package/types/uni/uts-plugin-api/lib/uni-createWorker/utssdk/global.d.ts +22 -0
- package/types/uni/uts-plugin-api/lib/uni-createWorker/utssdk/index.d.ts +10 -0
- package/types/uni/uts-plugin-api/lib/uni-createWorker/utssdk/interface.d.ts +524 -0
- package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/interface.d.ts +985 -76
- package/types/uni/uts-plugin-api/lib/uni-getEnterOptionsSync/utssdk/interface.d.ts +79 -55
- package/types/uni/uts-plugin-api/lib/uni-getLaunchOptionsSync/utssdk/interface.d.ts +77 -53
- package/types/uni/uts-plugin-api/lib/uni-getNetworkType/utssdk/interface.d.ts +458 -407
- package/types/uni/uts-plugin-api/lib/uni-getSystemInfo/utssdk/interface.d.ts +420 -0
- package/types/uni/uts-plugin-api/lib/uni-location/utssdk/interface.d.ts +80 -80
- package/types/uni/uts-plugin-api/lib/uni-modal/utssdk/global.d.ts +12 -4
- package/types/uni/uts-plugin-api/lib/uni-modal/utssdk/index.d.ts +6 -2
- package/types/uni/uts-plugin-api/lib/uni-modal/utssdk/interface.d.ts +713 -91
- package/types/uni/uts-plugin-api/lib/uni-network/utssdk/interface.d.ts +4 -0
- package/types/uni/uts-plugin-api/lib/uni-oauth/utssdk/interface.d.ts +3 -3
- package/types/uni/uts-plugin-api/lib/uni-oauth-weixin/utssdk/interface.d.ts +3 -1
- package/types/uni/uts-plugin-api/lib/uni-recorder/utssdk/interface.d.ts +71 -1
- package/types/uni/uts-plugin-api/lib/uni-route/utssdk/interface.d.ts +1 -1
- package/types/uni/uts-plugin-api/lib/uni-screenBrightness/utssdk/global.d.ts +56 -0
- package/types/uni/uts-plugin-api/lib/uni-screenBrightness/utssdk/index.d.ts +27 -0
- package/types/uni/uts-plugin-api/lib/uni-screenBrightness/utssdk/interface.d.ts +842 -0
- package/types/uni/uts-plugin-api/lib/uni-share/utssdk/interface.d.ts +11 -11
- package/types/uni/uts-plugin-api/lib/uni-share-weixin/utssdk/interface.d.ts +1 -1
- package/types/uni/uts-plugin-api/lib/uni-tabBar/utssdk/interface.d.ts +63 -42
- package/types/uni/uts-plugin-biz/lib/uni-ad/utssdk/interface.d.ts +2 -2
- package/types/uni/uts-plugin-biz/lib/uni-facialVerify/utssdk/interface.d.ts +2 -2
- package/types/uni/uts-plugin-biz/lib/uni-live-player/utssdk/global.d.ts +4 -0
- package/types/uni/uts-plugin-biz/lib/uni-live-player/utssdk/index.d.ts +2 -0
- package/types/uni/uts-plugin-biz/lib/uni-live-player/utssdk/interface.d.ts +1007 -314
- package/types/uni/uts-plugin-biz/lib/uni-live-pusher/utssdk/global.d.ts +4 -0
- package/types/uni/uts-plugin-biz/lib/uni-live-pusher/utssdk/index.d.ts +2 -0
- package/types/uni/uts-plugin-biz/lib/uni-live-pusher/utssdk/interface.d.ts +1727 -10
- package/types/uni/uts-plugin-component/lib/uni-camera/utssdk/interface.d.ts +235 -30
- package/types/uni/uts-plugin-component/lib/uni-canvas/utssdk/interface.d.ts +1 -1
- package/types/uni/uts-plugin-component/lib/uni-video/utssdk/interface.d.ts +17 -17
- package/uts-plugin.d.ts +11 -0
|
@@ -103,17 +103,17 @@ export interface Uni {
|
|
|
103
103
|
* "android": {
|
|
104
104
|
* "osVer": "5.0",
|
|
105
105
|
* "uniVer": "√",
|
|
106
|
-
* "unixVer": "4.
|
|
106
|
+
* "unixVer": "4.81"
|
|
107
107
|
* },
|
|
108
108
|
* "ios": {
|
|
109
109
|
* "osVer": "12.0",
|
|
110
110
|
* "uniVer": "√",
|
|
111
|
-
* "unixVer": "4.
|
|
111
|
+
* "unixVer": "4.81"
|
|
112
112
|
* },
|
|
113
113
|
* "harmony": {
|
|
114
114
|
* "osVer": "5.0.0(11)",
|
|
115
115
|
* "uniVer": "4.25",
|
|
116
|
-
* "unixVer": "4.
|
|
116
|
+
* "unixVer": "4.81"
|
|
117
117
|
* }
|
|
118
118
|
* },
|
|
119
119
|
* "mp": {
|
|
@@ -175,17 +175,17 @@ export interface Uni {
|
|
|
175
175
|
* "android": {
|
|
176
176
|
* "osVer": "5.0",
|
|
177
177
|
* "uniVer": "√",
|
|
178
|
-
* "unixVer": "4.
|
|
178
|
+
* "unixVer": "4.81"
|
|
179
179
|
* },
|
|
180
180
|
* "ios": {
|
|
181
181
|
* "osVer": "12.0",
|
|
182
182
|
* "uniVer": "√",
|
|
183
|
-
* "unixVer": "4.
|
|
183
|
+
* "unixVer": "4.81"
|
|
184
184
|
* },
|
|
185
185
|
* "harmony": {
|
|
186
186
|
* "osVer": "5.0.0(11)",
|
|
187
187
|
* "uniVer": "4.25",
|
|
188
|
-
* "unixVer": "4.
|
|
188
|
+
* "unixVer": "4.81"
|
|
189
189
|
* }
|
|
190
190
|
* },
|
|
191
191
|
* "mp": {
|
|
@@ -245,17 +245,17 @@ export interface Uni {
|
|
|
245
245
|
* "android": {
|
|
246
246
|
* "osVer": "5.0",
|
|
247
247
|
* "uniVer": "√",
|
|
248
|
-
* "unixVer": "4.
|
|
248
|
+
* "unixVer": "4.81"
|
|
249
249
|
* },
|
|
250
250
|
* "ios": {
|
|
251
251
|
* "osVer": "12.0",
|
|
252
252
|
* "uniVer": "√",
|
|
253
|
-
* "unixVer": "4.
|
|
253
|
+
* "unixVer": "4.81"
|
|
254
254
|
* },
|
|
255
255
|
* "harmony": {
|
|
256
256
|
* "osVer": "5.0.0(11)",
|
|
257
257
|
* "uniVer": "4.25",
|
|
258
|
-
* "unixVer": "4.
|
|
258
|
+
* "unixVer": "4.81"
|
|
259
259
|
* }
|
|
260
260
|
* },
|
|
261
261
|
* "mp": {
|
|
@@ -315,17 +315,17 @@ export interface Uni {
|
|
|
315
315
|
* "android": {
|
|
316
316
|
* "osVer": "5.0",
|
|
317
317
|
* "uniVer": "√",
|
|
318
|
-
* "unixVer": "4.
|
|
318
|
+
* "unixVer": "4.81"
|
|
319
319
|
* },
|
|
320
320
|
* "ios": {
|
|
321
321
|
* "osVer": "12.0",
|
|
322
322
|
* "uniVer": "√",
|
|
323
|
-
* "unixVer": "4.
|
|
323
|
+
* "unixVer": "4.81"
|
|
324
324
|
* },
|
|
325
325
|
* "harmony": {
|
|
326
326
|
* "osVer": "5.0.0(11)",
|
|
327
327
|
* "uniVer": "4.25",
|
|
328
|
-
* "unixVer": "4.
|
|
328
|
+
* "unixVer": "4.81"
|
|
329
329
|
* }
|
|
330
330
|
* },
|
|
331
331
|
* "mp": {
|
|
@@ -387,17 +387,17 @@ export interface Uni {
|
|
|
387
387
|
* "android": {
|
|
388
388
|
* "osVer": "5.0",
|
|
389
389
|
* "uniVer": "√",
|
|
390
|
-
* "unixVer": "4.
|
|
390
|
+
* "unixVer": "4.81"
|
|
391
391
|
* },
|
|
392
392
|
* "ios": {
|
|
393
393
|
* "osVer": "12.0",
|
|
394
394
|
* "uniVer": "√",
|
|
395
|
-
* "unixVer": "4.
|
|
395
|
+
* "unixVer": "4.81"
|
|
396
396
|
* },
|
|
397
397
|
* "harmony": {
|
|
398
398
|
* "osVer": "5.0.0(11)",
|
|
399
399
|
* "uniVer": "4.25",
|
|
400
|
-
* "unixVer": "4.
|
|
400
|
+
* "unixVer": "4.81"
|
|
401
401
|
* }
|
|
402
402
|
* },
|
|
403
403
|
* "mp": {
|
|
@@ -457,17 +457,17 @@ export interface Uni {
|
|
|
457
457
|
* "android": {
|
|
458
458
|
* "osVer": "5.0",
|
|
459
459
|
* "uniVer": "√",
|
|
460
|
-
* "unixVer": "4.
|
|
460
|
+
* "unixVer": "4.81"
|
|
461
461
|
* },
|
|
462
462
|
* "ios": {
|
|
463
463
|
* "osVer": "12.0",
|
|
464
464
|
* "uniVer": "√",
|
|
465
|
-
* "unixVer": "4.
|
|
465
|
+
* "unixVer": "4.81"
|
|
466
466
|
* },
|
|
467
467
|
* "harmony": {
|
|
468
468
|
* "osVer": "5.0.0(11)",
|
|
469
469
|
* "uniVer": "4.25",
|
|
470
|
-
* "unixVer": "4.
|
|
470
|
+
* "unixVer": "4.81"
|
|
471
471
|
* }
|
|
472
472
|
* },
|
|
473
473
|
* "mp": {
|
|
@@ -527,17 +527,17 @@ export interface Uni {
|
|
|
527
527
|
* "android": {
|
|
528
528
|
* "osVer": "5.0",
|
|
529
529
|
* "uniVer": "√",
|
|
530
|
-
* "unixVer": "4.
|
|
530
|
+
* "unixVer": "4.81"
|
|
531
531
|
* },
|
|
532
532
|
* "ios": {
|
|
533
533
|
* "osVer": "12.0",
|
|
534
534
|
* "uniVer": "√",
|
|
535
|
-
* "unixVer": "4.
|
|
535
|
+
* "unixVer": "4.81"
|
|
536
536
|
* },
|
|
537
537
|
* "harmony": {
|
|
538
538
|
* "osVer": "5.0.0(11)",
|
|
539
539
|
* "uniVer": "4.25",
|
|
540
|
-
* "unixVer": "4.
|
|
540
|
+
* "unixVer": "4.81"
|
|
541
541
|
* }
|
|
542
542
|
* },
|
|
543
543
|
* "mp": {
|
|
@@ -809,7 +809,7 @@ export type LocationErrorCode =
|
|
|
809
809
|
* "harmony": {
|
|
810
810
|
* "osVer": "5.0.0(11)",
|
|
811
811
|
* "uniVer": "4.25",
|
|
812
|
-
* "unixVer": "4.
|
|
812
|
+
* "unixVer": "4.81"
|
|
813
813
|
* }
|
|
814
814
|
* }
|
|
815
815
|
* }
|
|
@@ -832,7 +832,7 @@ export type LocationErrorCode =
|
|
|
832
832
|
* "harmony": {
|
|
833
833
|
* "osVer": "5.0.0(11)",
|
|
834
834
|
* "uniVer": "4.25",
|
|
835
|
-
* "unixVer": "4.
|
|
835
|
+
* "unixVer": "4.81"
|
|
836
836
|
* }
|
|
837
837
|
* }
|
|
838
838
|
* }
|
|
@@ -873,7 +873,7 @@ export type LocationErrorCode =
|
|
|
873
873
|
* "harmony": {
|
|
874
874
|
* "osVer": "5.0.0(11)",
|
|
875
875
|
* "uniVer": "4.25",
|
|
876
|
-
* "unixVer": "4.
|
|
876
|
+
* "unixVer": "4.81"
|
|
877
877
|
* }
|
|
878
878
|
* }
|
|
879
879
|
* }
|
|
@@ -896,7 +896,7 @@ export type LocationErrorCode =
|
|
|
896
896
|
* "harmony": {
|
|
897
897
|
* "osVer": "5.0.0(11)",
|
|
898
898
|
* "uniVer": "4.25",
|
|
899
|
-
* "unixVer": "4.
|
|
899
|
+
* "unixVer": "4.81"
|
|
900
900
|
* }
|
|
901
901
|
* }
|
|
902
902
|
* }
|
|
@@ -1070,12 +1070,12 @@ export type LocationErrorCode =
|
|
|
1070
1070
|
* "android": {
|
|
1071
1071
|
* "osVer": "5.0",
|
|
1072
1072
|
* "uniVer": "√",
|
|
1073
|
-
* "unixVer": "4.
|
|
1073
|
+
* "unixVer": "4.81"
|
|
1074
1074
|
* },
|
|
1075
1075
|
* "ios": {
|
|
1076
1076
|
* "osVer": "12.0",
|
|
1077
1077
|
* "uniVer": "√",
|
|
1078
|
-
* "unixVer": "4.
|
|
1078
|
+
* "unixVer": "4.81"
|
|
1079
1079
|
* },
|
|
1080
1080
|
* "harmony": {
|
|
1081
1081
|
* "osVer": "x",
|
|
@@ -1093,12 +1093,12 @@ export type LocationErrorCode =
|
|
|
1093
1093
|
* "android": {
|
|
1094
1094
|
* "osVer": "5.0",
|
|
1095
1095
|
* "uniVer": "√",
|
|
1096
|
-
* "unixVer": "4.
|
|
1096
|
+
* "unixVer": "4.81"
|
|
1097
1097
|
* },
|
|
1098
1098
|
* "ios": {
|
|
1099
1099
|
* "osVer": "12.0",
|
|
1100
1100
|
* "uniVer": "√",
|
|
1101
|
-
* "unixVer": "4.
|
|
1101
|
+
* "unixVer": "4.81"
|
|
1102
1102
|
* },
|
|
1103
1103
|
* "harmony": {
|
|
1104
1104
|
* "osVer": "x",
|
|
@@ -1449,7 +1449,7 @@ export type GetLocationSuccess = {
|
|
|
1449
1449
|
* "harmony": {
|
|
1450
1450
|
* "osVer": "5.0.0(11)",
|
|
1451
1451
|
* "uniVer": "4.76",
|
|
1452
|
-
* "unixVer": "4.
|
|
1452
|
+
* "unixVer": "4.81"
|
|
1453
1453
|
* }
|
|
1454
1454
|
* },
|
|
1455
1455
|
* "mp": {
|
|
@@ -1667,7 +1667,7 @@ export type GetLocationOptions = {
|
|
|
1667
1667
|
* "harmony": {
|
|
1668
1668
|
* "osVer": "5.0.0(11)",
|
|
1669
1669
|
* "uniVer": "4.25",
|
|
1670
|
-
* "unixVer": "4.
|
|
1670
|
+
* "unixVer": "4.81"
|
|
1671
1671
|
* }
|
|
1672
1672
|
* },
|
|
1673
1673
|
* "mp": {
|
|
@@ -1737,7 +1737,7 @@ export type GetLocationOptions = {
|
|
|
1737
1737
|
* "harmony": {
|
|
1738
1738
|
* "osVer": "5.0.0(11)",
|
|
1739
1739
|
* "uniVer": "4.25",
|
|
1740
|
-
* "unixVer": "4.
|
|
1740
|
+
* "unixVer": "4.81"
|
|
1741
1741
|
* }
|
|
1742
1742
|
* },
|
|
1743
1743
|
* "mp": {
|
|
@@ -1936,7 +1936,7 @@ export type GetLocationOptions = {
|
|
|
1936
1936
|
* "harmony": {
|
|
1937
1937
|
* "osVer": "5.0.0(11)",
|
|
1938
1938
|
* "uniVer": "4.25",
|
|
1939
|
-
* "unixVer": "4.
|
|
1939
|
+
* "unixVer": "4.81"
|
|
1940
1940
|
* }
|
|
1941
1941
|
* },
|
|
1942
1942
|
* "mp": {
|
|
@@ -2078,7 +2078,7 @@ export type GetLocationOptions = {
|
|
|
2078
2078
|
* "harmony": {
|
|
2079
2079
|
* "osVer": "5.0.0(11)",
|
|
2080
2080
|
* "uniVer": "4.25",
|
|
2081
|
-
* "unixVer": "4.
|
|
2081
|
+
* "unixVer": "4.81"
|
|
2082
2082
|
* }
|
|
2083
2083
|
* },
|
|
2084
2084
|
* "mp": {
|
|
@@ -2149,7 +2149,7 @@ export type GetLocationOptions = {
|
|
|
2149
2149
|
* "harmony": {
|
|
2150
2150
|
* "osVer": "5.0.0(11)",
|
|
2151
2151
|
* "uniVer": "4.25",
|
|
2152
|
-
* "unixVer": "4.
|
|
2152
|
+
* "unixVer": "4.81"
|
|
2153
2153
|
* }
|
|
2154
2154
|
* },
|
|
2155
2155
|
* "mp": {
|
|
@@ -2218,7 +2218,7 @@ export type GetLocationOptions = {
|
|
|
2218
2218
|
* "harmony": {
|
|
2219
2219
|
* "osVer": "5.0.0(11)",
|
|
2220
2220
|
* "uniVer": "4.25",
|
|
2221
|
-
* "unixVer": "4.
|
|
2221
|
+
* "unixVer": "4.81"
|
|
2222
2222
|
* }
|
|
2223
2223
|
* },
|
|
2224
2224
|
* "mp": {
|
|
@@ -2287,7 +2287,7 @@ export type GetLocationOptions = {
|
|
|
2287
2287
|
* "harmony": {
|
|
2288
2288
|
* "osVer": "5.0.0(11)",
|
|
2289
2289
|
* "uniVer": "4.25",
|
|
2290
|
-
* "unixVer": "4.
|
|
2290
|
+
* "unixVer": "4.81"
|
|
2291
2291
|
* }
|
|
2292
2292
|
* },
|
|
2293
2293
|
* "mp": {
|
|
@@ -2356,7 +2356,7 @@ export type GetLocationOptions = {
|
|
|
2356
2356
|
* "harmony": {
|
|
2357
2357
|
* "osVer": "5.0.0(11)",
|
|
2358
2358
|
* "uniVer": "4.25",
|
|
2359
|
-
* "unixVer": "4.
|
|
2359
|
+
* "unixVer": "4.81"
|
|
2360
2360
|
* }
|
|
2361
2361
|
* },
|
|
2362
2362
|
* "mp": {
|
|
@@ -2424,17 +2424,17 @@ export type StartLocationUpdateOptionsType =
|
|
|
2424
2424
|
* "android": {
|
|
2425
2425
|
* "osVer": "5.0",
|
|
2426
2426
|
* "uniVer": "√",
|
|
2427
|
-
* "unixVer": "4.
|
|
2427
|
+
* "unixVer": "4.81"
|
|
2428
2428
|
* },
|
|
2429
2429
|
* "ios": {
|
|
2430
2430
|
* "osVer": "12.0",
|
|
2431
2431
|
* "uniVer": "√",
|
|
2432
|
-
* "unixVer": "4.
|
|
2432
|
+
* "unixVer": "4.81"
|
|
2433
2433
|
* },
|
|
2434
2434
|
* "harmony": {
|
|
2435
2435
|
* "osVer": "5.0.0(11)",
|
|
2436
2436
|
* "uniVer": "4.25",
|
|
2437
|
-
* "unixVer": "4.
|
|
2437
|
+
* "unixVer": "4.81"
|
|
2438
2438
|
* }
|
|
2439
2439
|
* },
|
|
2440
2440
|
* "mp": {
|
|
@@ -2494,17 +2494,17 @@ export type StartLocationUpdateOptionsType =
|
|
|
2494
2494
|
* "android": {
|
|
2495
2495
|
* "osVer": "5.0",
|
|
2496
2496
|
* "uniVer": "√",
|
|
2497
|
-
* "unixVer": "4.
|
|
2497
|
+
* "unixVer": "4.81"
|
|
2498
2498
|
* },
|
|
2499
2499
|
* "ios": {
|
|
2500
2500
|
* "osVer": "12.0",
|
|
2501
2501
|
* "uniVer": "√",
|
|
2502
|
-
* "unixVer": "4.
|
|
2502
|
+
* "unixVer": "4.81"
|
|
2503
2503
|
* },
|
|
2504
2504
|
* "harmony": {
|
|
2505
2505
|
* "osVer": "5.0.0(11)",
|
|
2506
2506
|
* "uniVer": "4.25",
|
|
2507
|
-
* "unixVer": "4.
|
|
2507
|
+
* "unixVer": "4.81"
|
|
2508
2508
|
* }
|
|
2509
2509
|
* },
|
|
2510
2510
|
* "mp": {
|
|
@@ -2566,17 +2566,17 @@ export type StartLocationUpdateOptions = {
|
|
|
2566
2566
|
* "android": {
|
|
2567
2567
|
* "osVer": "5.0",
|
|
2568
2568
|
* "uniVer": "√",
|
|
2569
|
-
* "unixVer": "4.
|
|
2569
|
+
* "unixVer": "4.81"
|
|
2570
2570
|
* },
|
|
2571
2571
|
* "ios": {
|
|
2572
2572
|
* "osVer": "12.0",
|
|
2573
2573
|
* "uniVer": "√",
|
|
2574
|
-
* "unixVer": "4.
|
|
2574
|
+
* "unixVer": "4.81"
|
|
2575
2575
|
* },
|
|
2576
2576
|
* "harmony": {
|
|
2577
2577
|
* "osVer": "5.0.0(11)",
|
|
2578
2578
|
* "uniVer": "4.25",
|
|
2579
|
-
* "unixVer": "4.
|
|
2579
|
+
* "unixVer": "4.81"
|
|
2580
2580
|
* }
|
|
2581
2581
|
* },
|
|
2582
2582
|
* "mp": {
|
|
@@ -2636,17 +2636,17 @@ export type StartLocationUpdateOptions = {
|
|
|
2636
2636
|
* "android": {
|
|
2637
2637
|
* "osVer": "5.0",
|
|
2638
2638
|
* "uniVer": "√",
|
|
2639
|
-
* "unixVer": "4.
|
|
2639
|
+
* "unixVer": "4.81"
|
|
2640
2640
|
* },
|
|
2641
2641
|
* "ios": {
|
|
2642
2642
|
* "osVer": "12.0",
|
|
2643
2643
|
* "uniVer": "√",
|
|
2644
|
-
* "unixVer": "4.
|
|
2644
|
+
* "unixVer": "4.81"
|
|
2645
2645
|
* },
|
|
2646
2646
|
* "harmony": {
|
|
2647
2647
|
* "osVer": "5.0.0(11)",
|
|
2648
2648
|
* "uniVer": "4.25",
|
|
2649
|
-
* "unixVer": "4.
|
|
2649
|
+
* "unixVer": "4.81"
|
|
2650
2650
|
* }
|
|
2651
2651
|
* },
|
|
2652
2652
|
* "mp": {
|
|
@@ -2706,17 +2706,17 @@ export type StartLocationUpdateOptions = {
|
|
|
2706
2706
|
* "android": {
|
|
2707
2707
|
* "osVer": "5.0",
|
|
2708
2708
|
* "uniVer": "√",
|
|
2709
|
-
* "unixVer": "4.
|
|
2709
|
+
* "unixVer": "4.81"
|
|
2710
2710
|
* },
|
|
2711
2711
|
* "ios": {
|
|
2712
2712
|
* "osVer": "12.0",
|
|
2713
2713
|
* "uniVer": "√",
|
|
2714
|
-
* "unixVer": "4.
|
|
2714
|
+
* "unixVer": "4.81"
|
|
2715
2715
|
* },
|
|
2716
2716
|
* "harmony": {
|
|
2717
2717
|
* "osVer": "5.0.0(11)",
|
|
2718
2718
|
* "uniVer": "4.25",
|
|
2719
|
-
* "unixVer": "4.
|
|
2719
|
+
* "unixVer": "4.81"
|
|
2720
2720
|
* }
|
|
2721
2721
|
* },
|
|
2722
2722
|
* "mp": {
|
|
@@ -2776,17 +2776,17 @@ export type StartLocationUpdateOptions = {
|
|
|
2776
2776
|
* "android": {
|
|
2777
2777
|
* "osVer": "5.0",
|
|
2778
2778
|
* "uniVer": "√",
|
|
2779
|
-
* "unixVer": "4.
|
|
2779
|
+
* "unixVer": "4.81"
|
|
2780
2780
|
* },
|
|
2781
2781
|
* "ios": {
|
|
2782
2782
|
* "osVer": "12.0",
|
|
2783
2783
|
* "uniVer": "√",
|
|
2784
|
-
* "unixVer": "4.
|
|
2784
|
+
* "unixVer": "4.81"
|
|
2785
2785
|
* },
|
|
2786
2786
|
* "harmony": {
|
|
2787
2787
|
* "osVer": "5.0.0(11)",
|
|
2788
2788
|
* "uniVer": "4.25",
|
|
2789
|
-
* "unixVer": "4.
|
|
2789
|
+
* "unixVer": "4.81"
|
|
2790
2790
|
* }
|
|
2791
2791
|
* },
|
|
2792
2792
|
* "mp": {
|
|
@@ -2846,17 +2846,17 @@ export type StartLocationUpdateOptions = {
|
|
|
2846
2846
|
* "android": {
|
|
2847
2847
|
* "osVer": "5.0",
|
|
2848
2848
|
* "uniVer": "√",
|
|
2849
|
-
* "unixVer": "4.
|
|
2849
|
+
* "unixVer": "4.81"
|
|
2850
2850
|
* },
|
|
2851
2851
|
* "ios": {
|
|
2852
2852
|
* "osVer": "12.0",
|
|
2853
2853
|
* "uniVer": "√",
|
|
2854
|
-
* "unixVer": "4.
|
|
2854
|
+
* "unixVer": "4.81"
|
|
2855
2855
|
* },
|
|
2856
2856
|
* "harmony": {
|
|
2857
2857
|
* "osVer": "5.0.0(11)",
|
|
2858
2858
|
* "uniVer": "4.25",
|
|
2859
|
-
* "unixVer": "4.
|
|
2859
|
+
* "unixVer": "4.81"
|
|
2860
2860
|
* }
|
|
2861
2861
|
* },
|
|
2862
2862
|
* "mp": {
|
|
@@ -2957,17 +2957,17 @@ export type StartLocationUpdateBackgroundOptionsType =
|
|
|
2957
2957
|
* "android": {
|
|
2958
2958
|
* "osVer": "5.0",
|
|
2959
2959
|
* "uniVer": "√",
|
|
2960
|
-
* "unixVer": "4.
|
|
2960
|
+
* "unixVer": "4.81"
|
|
2961
2961
|
* },
|
|
2962
2962
|
* "ios": {
|
|
2963
2963
|
* "osVer": "12.0",
|
|
2964
2964
|
* "uniVer": "√",
|
|
2965
|
-
* "unixVer": "4.
|
|
2965
|
+
* "unixVer": "4.81"
|
|
2966
2966
|
* },
|
|
2967
2967
|
* "harmony": {
|
|
2968
2968
|
* "osVer": "5.0.0(11)",
|
|
2969
2969
|
* "uniVer": "4.25",
|
|
2970
|
-
* "unixVer": "4.
|
|
2970
|
+
* "unixVer": "4.81"
|
|
2971
2971
|
* }
|
|
2972
2972
|
* },
|
|
2973
2973
|
* "mp": {
|
|
@@ -3027,17 +3027,17 @@ export type StartLocationUpdateBackgroundOptionsType =
|
|
|
3027
3027
|
* "android": {
|
|
3028
3028
|
* "osVer": "5.0",
|
|
3029
3029
|
* "uniVer": "√",
|
|
3030
|
-
* "unixVer": "4.
|
|
3030
|
+
* "unixVer": "4.81"
|
|
3031
3031
|
* },
|
|
3032
3032
|
* "ios": {
|
|
3033
3033
|
* "osVer": "12.0",
|
|
3034
3034
|
* "uniVer": "√",
|
|
3035
|
-
* "unixVer": "4.
|
|
3035
|
+
* "unixVer": "4.81"
|
|
3036
3036
|
* },
|
|
3037
3037
|
* "harmony": {
|
|
3038
3038
|
* "osVer": "5.0.0(11)",
|
|
3039
3039
|
* "uniVer": "4.25",
|
|
3040
|
-
* "unixVer": "4.
|
|
3040
|
+
* "unixVer": "4.81"
|
|
3041
3041
|
* }
|
|
3042
3042
|
* },
|
|
3043
3043
|
* "mp": {
|
|
@@ -3099,17 +3099,17 @@ export type StartLocationUpdateBackgroundOptions = {
|
|
|
3099
3099
|
* "android": {
|
|
3100
3100
|
* "osVer": "5.0",
|
|
3101
3101
|
* "uniVer": "√",
|
|
3102
|
-
* "unixVer": "4.
|
|
3102
|
+
* "unixVer": "4.81"
|
|
3103
3103
|
* },
|
|
3104
3104
|
* "ios": {
|
|
3105
3105
|
* "osVer": "12.0",
|
|
3106
3106
|
* "uniVer": "√",
|
|
3107
|
-
* "unixVer": "4.
|
|
3107
|
+
* "unixVer": "4.81"
|
|
3108
3108
|
* },
|
|
3109
3109
|
* "harmony": {
|
|
3110
3110
|
* "osVer": "5.0.0(11)",
|
|
3111
3111
|
* "uniVer": "4.25",
|
|
3112
|
-
* "unixVer": "4.
|
|
3112
|
+
* "unixVer": "4.81"
|
|
3113
3113
|
* }
|
|
3114
3114
|
* },
|
|
3115
3115
|
* "mp": {
|
|
@@ -3169,17 +3169,17 @@ export type StartLocationUpdateBackgroundOptions = {
|
|
|
3169
3169
|
* "android": {
|
|
3170
3170
|
* "osVer": "5.0",
|
|
3171
3171
|
* "uniVer": "√",
|
|
3172
|
-
* "unixVer": "4.
|
|
3172
|
+
* "unixVer": "4.81"
|
|
3173
3173
|
* },
|
|
3174
3174
|
* "ios": {
|
|
3175
3175
|
* "osVer": "12.0",
|
|
3176
3176
|
* "uniVer": "√",
|
|
3177
|
-
* "unixVer": "4.
|
|
3177
|
+
* "unixVer": "4.81"
|
|
3178
3178
|
* },
|
|
3179
3179
|
* "harmony": {
|
|
3180
3180
|
* "osVer": "5.0.0(11)",
|
|
3181
3181
|
* "uniVer": "4.25",
|
|
3182
|
-
* "unixVer": "4.
|
|
3182
|
+
* "unixVer": "4.81"
|
|
3183
3183
|
* }
|
|
3184
3184
|
* },
|
|
3185
3185
|
* "mp": {
|
|
@@ -3239,17 +3239,17 @@ export type StartLocationUpdateBackgroundOptions = {
|
|
|
3239
3239
|
* "android": {
|
|
3240
3240
|
* "osVer": "5.0",
|
|
3241
3241
|
* "uniVer": "√",
|
|
3242
|
-
* "unixVer": "4.
|
|
3242
|
+
* "unixVer": "4.81"
|
|
3243
3243
|
* },
|
|
3244
3244
|
* "ios": {
|
|
3245
3245
|
* "osVer": "12.0",
|
|
3246
3246
|
* "uniVer": "√",
|
|
3247
|
-
* "unixVer": "4.
|
|
3247
|
+
* "unixVer": "4.81"
|
|
3248
3248
|
* },
|
|
3249
3249
|
* "harmony": {
|
|
3250
3250
|
* "osVer": "5.0.0(11)",
|
|
3251
3251
|
* "uniVer": "4.25",
|
|
3252
|
-
* "unixVer": "4.
|
|
3252
|
+
* "unixVer": "4.81"
|
|
3253
3253
|
* }
|
|
3254
3254
|
* },
|
|
3255
3255
|
* "mp": {
|
|
@@ -3309,17 +3309,17 @@ export type StartLocationUpdateBackgroundOptions = {
|
|
|
3309
3309
|
* "android": {
|
|
3310
3310
|
* "osVer": "5.0",
|
|
3311
3311
|
* "uniVer": "√",
|
|
3312
|
-
* "unixVer": "4.
|
|
3312
|
+
* "unixVer": "4.81"
|
|
3313
3313
|
* },
|
|
3314
3314
|
* "ios": {
|
|
3315
3315
|
* "osVer": "12.0",
|
|
3316
3316
|
* "uniVer": "√",
|
|
3317
|
-
* "unixVer": "4.
|
|
3317
|
+
* "unixVer": "4.81"
|
|
3318
3318
|
* },
|
|
3319
3319
|
* "harmony": {
|
|
3320
3320
|
* "osVer": "5.0.0(11)",
|
|
3321
3321
|
* "uniVer": "4.25",
|
|
3322
|
-
* "unixVer": "4.
|
|
3322
|
+
* "unixVer": "4.81"
|
|
3323
3323
|
* }
|
|
3324
3324
|
* },
|
|
3325
3325
|
* "mp": {
|
|
@@ -3379,17 +3379,17 @@ export type StartLocationUpdateBackgroundOptions = {
|
|
|
3379
3379
|
* "android": {
|
|
3380
3380
|
* "osVer": "5.0",
|
|
3381
3381
|
* "uniVer": "√",
|
|
3382
|
-
* "unixVer": "4.
|
|
3382
|
+
* "unixVer": "4.81"
|
|
3383
3383
|
* },
|
|
3384
3384
|
* "ios": {
|
|
3385
3385
|
* "osVer": "12.0",
|
|
3386
3386
|
* "uniVer": "√",
|
|
3387
|
-
* "unixVer": "4.
|
|
3387
|
+
* "unixVer": "4.81"
|
|
3388
3388
|
* },
|
|
3389
3389
|
* "harmony": {
|
|
3390
3390
|
* "osVer": "5.0.0(11)",
|
|
3391
3391
|
* "uniVer": "4.25",
|
|
3392
|
-
* "unixVer": "4.
|
|
3392
|
+
* "unixVer": "4.81"
|
|
3393
3393
|
* }
|
|
3394
3394
|
* },
|
|
3395
3395
|
* "mp": {
|
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
// 本文件为自动构建生成
|
|
2
2
|
import {
|
|
3
3
|
UniShowModalResult as UniShowModalResultOrigin,
|
|
4
|
-
|
|
4
|
+
ShowModalResult as ShowModalResultOrigin,
|
|
5
|
+
ShowModalErrorCode as ShowModalErrorCodeOrigin,
|
|
5
6
|
UniShowModalFail as UniShowModalFailOrigin,
|
|
7
|
+
ShowModalFail as ShowModalFailOrigin,
|
|
6
8
|
ShowModalOptions as ShowModalOptionsOrigin,
|
|
7
9
|
ShowModal as ShowModalOrigin,
|
|
8
10
|
ModalPage as ModalPageOrigin,
|
|
9
11
|
UniHideModalResult as UniHideModalResultOrigin,
|
|
10
|
-
|
|
12
|
+
HideModalResult as HideModalResultOrigin,
|
|
13
|
+
HideModalErrorCode as HideModalErrorCodeOrigin,
|
|
11
14
|
UniHideModalFail as UniHideModalFailOrigin,
|
|
15
|
+
HideModalFail as HideModalFailOrigin,
|
|
12
16
|
HideModalOptions as HideModalOptionsOrigin,
|
|
13
17
|
HideModal as HideModalOrigin,
|
|
14
18
|
Uni as UniOrigin
|
|
@@ -16,14 +20,18 @@ import {
|
|
|
16
20
|
|
|
17
21
|
declare global {
|
|
18
22
|
type UniShowModalResult = UniShowModalResultOrigin
|
|
19
|
-
type
|
|
23
|
+
type ShowModalResult = ShowModalResultOrigin
|
|
24
|
+
type ShowModalErrorCode = ShowModalErrorCodeOrigin
|
|
20
25
|
type UniShowModalFail = UniShowModalFailOrigin
|
|
26
|
+
type ShowModalFail = ShowModalFailOrigin
|
|
21
27
|
type ShowModalOptions = ShowModalOptionsOrigin
|
|
22
28
|
type ShowModal = ShowModalOrigin
|
|
23
29
|
type ModalPage = ModalPageOrigin
|
|
24
30
|
type UniHideModalResult = UniHideModalResultOrigin
|
|
25
|
-
type
|
|
31
|
+
type HideModalResult = HideModalResultOrigin
|
|
32
|
+
type HideModalErrorCode = HideModalErrorCodeOrigin
|
|
26
33
|
type UniHideModalFail = UniHideModalFailOrigin
|
|
34
|
+
type HideModalFail = HideModalFailOrigin
|
|
27
35
|
type HideModalOptions = HideModalOptionsOrigin
|
|
28
36
|
type HideModal = HideModalOrigin
|
|
29
37
|
interface Uni extends UniOrigin { }
|
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
// 本文件为自动构建生成
|
|
2
2
|
export {
|
|
3
3
|
UniShowModalResult,
|
|
4
|
-
|
|
4
|
+
ShowModalResult,
|
|
5
|
+
ShowModalErrorCode,
|
|
5
6
|
UniShowModalFail,
|
|
7
|
+
ShowModalFail,
|
|
6
8
|
ShowModalOptions,
|
|
7
9
|
ShowModal,
|
|
8
10
|
ModalPage,
|
|
9
11
|
UniHideModalResult,
|
|
10
|
-
|
|
12
|
+
HideModalResult,
|
|
13
|
+
HideModalErrorCode,
|
|
11
14
|
UniHideModalFail,
|
|
15
|
+
HideModalFail,
|
|
12
16
|
HideModalOptions,
|
|
13
17
|
HideModal,
|
|
14
18
|
} from './interface'
|