@dcloudio/uni-app-x 0.7.78 → 0.7.80
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 +3 -2
- package/types/dom2/UniCSSProperty.d.ts +0 -1
- package/types/dom2/UniCSSTransform.d.ts +1 -1
- package/types/dom2/UniCSSTransition.d.ts +30 -6
- package/types/dom2/UniElement.d.ts +5 -0
- package/types/dom2/UniNativeBaseView.d.ts +16 -18
- package/types/dom2/UniNativeDefines.d.ts +12 -54
- package/types/dom2/UniNativeViewElement.d.ts +60 -0
- package/types/dom2/UniPage.d.ts +36 -3
- package/types/dom2/UniTextElement.d.ts +12 -0
- package/types/dom2/UniTextLayout.d.ts +7 -0
- package/types/dom2/global.d.ts +24 -13
- package/types/dom2/sharedData.d.ts +23 -6
- package/types/dom2-internal/UniElement.d.ts +15 -0
- package/types/native/UniPage.d.ts +105 -0
- package/types/uni/global.d.ts +0 -2
- package/types/uni/uts-plugin-api/lib/uni-exit/utssdk/global.d.ts +7 -6
- package/types/uni/uts-plugin-api/lib/uni-exit/utssdk/index.d.ts +4 -3
- package/types/uni/uts-plugin-api/lib/uni-exit/utssdk/interface.d.ts +2 -1
- package/types/uni/uts-plugin-api/lib/uni-getBackgroundAudioManager/utssdk/interface.d.ts +2 -2
- package/types/uni/uts-plugin-api/lib/uni-getSystemInfo/utssdk/global.d.ts +7 -6
- package/types/uni/uts-plugin-api/lib/uni-getSystemInfo/utssdk/index.d.ts +4 -3
- package/types/uni/uts-plugin-api/lib/uni-getSystemInfo/utssdk/interface.d.ts +69 -23
- package/types/uni/uts-plugin-api/lib/uni-media/utssdk/global.d.ts +7 -40
- package/types/uni/uts-plugin-api/lib/uni-media/utssdk/index.d.ts +4 -20
- package/types/uni/uts-plugin-api/lib/uni-media/utssdk/interface.d.ts +66 -495
- package/types/uni/uts-plugin-biz/global.d.ts +1 -0
- package/types/uni/uts-plugin-biz/index.d.ts +1 -0
- package/types/uni/uts-plugin-biz/lib/uni-crash/utssdk/global.d.ts +9 -8
- package/types/uni/uts-plugin-biz/lib/uni-crash/utssdk/index.d.ts +5 -4
- package/types/uni/uts-plugin-biz/lib/uni-crash/utssdk/interface.d.ts +29 -28
- package/types/uni/uts-plugin-biz/lib/uni-map-amap/utssdk/global.d.ts +14 -0
- package/types/uni/uts-plugin-biz/lib/uni-map-amap/utssdk/index.d.ts +7 -0
- package/types/uni/uts-plugin-biz/lib/uni-map-amap/utssdk/interface.d.ts +101 -0
- package/types/uni/uts-plugin-component/global.d.ts +5 -0
- package/types/uni/uts-plugin-component/index.d.ts +5 -0
- package/types/uni/uts-plugin-component/lib/uni-camera-global/utssdk/global.d.ts +23 -0
- package/types/uni/uts-plugin-component/lib/uni-camera-global/utssdk/index.d.ts +12 -0
- package/types/uni/uts-plugin-component/lib/uni-camera-global/utssdk/interface.d.ts +38 -0
- package/types/uni/{uni-map-tencent-global.d.ts → uts-plugin-component/lib/uni-map-tencent-global/utssdk/global.d.ts} +22 -20
- package/types/uni/uts-plugin-component/lib/uni-map-tencent-global/utssdk/index.d.ts +20 -0
- package/types/uni/uts-plugin-component/lib/uni-map-tencent-global/utssdk/interface.d.ts +56 -0
- package/types/uni/uts-plugin-component/lib/uni-video-global/utssdk/global.d.ts +39 -0
- package/types/uni/uts-plugin-component/lib/uni-video-global/utssdk/index.d.ts +20 -0
- package/types/uni/uts-plugin-component/lib/uni-video-global/utssdk/interface.d.ts +94 -0
- package/types/uni/uts-plugin-component/lib/uni-web-view/utssdk/global.d.ts +29 -0
- package/types/uni/uts-plugin-component/lib/uni-web-view/utssdk/index.d.ts +14 -0
- package/types/uni/uts-plugin-component/lib/uni-web-view/utssdk/interface.d.ts +431 -0
- package/types/uni/uts-plugin-component/lib/uni-web-view-global/utssdk/global.d.ts +31 -0
- package/types/uni/uts-plugin-component/lib/uni-web-view-global/utssdk/index.d.ts +16 -0
- package/types/uni/uts-plugin-component/lib/uni-web-view-global/utssdk/interface.d.ts +51 -0
- package/types/uni/uni-camera-global.d.ts +0 -23
- package/types/uni/uni-camera.d.ts +0 -35
- package/types/uni/uni-map-tencent-map.d.ts +0 -63
|
@@ -3,6 +3,7 @@ import { UniCSSPropertyID, UniCSSPropertyName, UniCSSPropertyValue } from '../do
|
|
|
3
3
|
import { UniCSSUnitType, UniCSSUnitValue } from '../dom2/UniCSSType'
|
|
4
4
|
import { UniCSSBoxSizingType, UniCSSDisplayType, UniCSSPositionType, UniCSSBorderStyleType, UniCSSBorderWidthType } from '../dom2/UniCSSProperty'
|
|
5
5
|
import { UniCSSFlexDirectionType, UniCSSFlexWrapType, UniCSSJustifyContentType, UniCSSAlignItemsType, UniCSSAlignSelfType, UniCSSAlignContentType, UniCSSFlexBasisType } from '../dom2/UniCSSProperty'
|
|
6
|
+
import { UniCSSTransitions } from '../dom2/UniCSSTransition'
|
|
6
7
|
|
|
7
8
|
declare global {
|
|
8
9
|
/**
|
|
@@ -149,6 +150,20 @@ declare global {
|
|
|
149
150
|
getStyleAlignSelf(): UniCSSAlignSelfType
|
|
150
151
|
setStyleAlignContent(value: UniCSSAlignContentType): void
|
|
151
152
|
getStyleAlignContent(): UniCSSAlignContentType
|
|
153
|
+
/**
|
|
154
|
+
* 设置Transition相关CSS属性
|
|
155
|
+
* 注意:transition/transition-property属性值设置为none时,解析设置null值
|
|
156
|
+
*/
|
|
157
|
+
setStyleTransition(value?: UniCSSTransition | UniCSSTransitions | null): void
|
|
158
|
+
getStyleTransition(): UniCSSTransitions | null
|
|
159
|
+
setStyleTransitionProperty(value?: UniNativeTransitionProperty | UniNativeTransitionProperties | null): void
|
|
160
|
+
getStyleTransitionProperty(): UniNativeTransitionProperties | null
|
|
161
|
+
setStyleTransitionDuration(value: UniNativeTransitionDuration | UniNativeTransitionDurations): void
|
|
162
|
+
getStyleTransitionDuration(): UniNativeTransitionDurations
|
|
163
|
+
setStyleTransitionDelay(value: UniNativeTransitionDelay | UniNativeTransitionDelays): void
|
|
164
|
+
getStyleTransitionDelay(): UniNativeTransitionDelays
|
|
165
|
+
setStyleTransitionTimingFunction(value: UniNativeTransitionTimingFunction | UniNativeTransitionTimingFunctions): void
|
|
166
|
+
getStyleTransitionTimingFunction(): UniNativeTransitionTimingFunctions
|
|
152
167
|
/**
|
|
153
168
|
* 获取CSS属性
|
|
154
169
|
* 返回字符串格式数据
|
|
@@ -890,6 +890,111 @@ declare global {
|
|
|
890
890
|
* ios 获取当前页面 dialogPage 创建的 API 弹框集合
|
|
891
891
|
*/
|
|
892
892
|
__$$getSystemDialogPages(): UniPage[]
|
|
893
|
+
|
|
894
|
+
/**
|
|
895
|
+
* 监听页面布局变化更新事件
|
|
896
|
+
* @uniPlatform {
|
|
897
|
+
* "app": {
|
|
898
|
+
* "android": {
|
|
899
|
+
* "osVer": "5.0",
|
|
900
|
+
* "uniVer": "x",
|
|
901
|
+
* "unixVer": "x",
|
|
902
|
+
* "unixvVer": "x"
|
|
903
|
+
* },
|
|
904
|
+
* "ios": {
|
|
905
|
+
* "osVer": "12.0",
|
|
906
|
+
* "uniVer": "x",
|
|
907
|
+
* "unixVer": "x",
|
|
908
|
+
* "unixvVer": "x"
|
|
909
|
+
* },
|
|
910
|
+
* "harmony": {
|
|
911
|
+
* "osVer": "6.0",
|
|
912
|
+
* "uniVer": "x",
|
|
913
|
+
* "unixVer": "x",
|
|
914
|
+
* "unixvVer": "5.0"
|
|
915
|
+
* }
|
|
916
|
+
* }
|
|
917
|
+
* }
|
|
918
|
+
*/
|
|
919
|
+
onLayoutChange(callback: UniPageOnLayoutChangeCallback): number
|
|
920
|
+
/**
|
|
921
|
+
* 取消监听页面布局变化更新事件
|
|
922
|
+
* @uniPlatform {
|
|
923
|
+
* "app": {
|
|
924
|
+
* "android": {
|
|
925
|
+
* "osVer": "5.0",
|
|
926
|
+
* "uniVer": "x",
|
|
927
|
+
* "unixVer": "x",
|
|
928
|
+
* "unixvVer": "x"
|
|
929
|
+
* },
|
|
930
|
+
* "ios": {
|
|
931
|
+
* "osVer": "12.0",
|
|
932
|
+
* "uniVer": "x",
|
|
933
|
+
* "unixVer": "x",
|
|
934
|
+
* "unixvVer": "x"
|
|
935
|
+
* },
|
|
936
|
+
* "harmony": {
|
|
937
|
+
* "osVer": "6.0",
|
|
938
|
+
* "uniVer": "x",
|
|
939
|
+
* "unixVer": "x",
|
|
940
|
+
* "unixvVer": "5.0"
|
|
941
|
+
* }
|
|
942
|
+
* }
|
|
943
|
+
* }
|
|
944
|
+
*/
|
|
945
|
+
offLayoutChange(id: number): void
|
|
946
|
+
/**
|
|
947
|
+
* 监听页面渲染变化更新事件
|
|
948
|
+
* @uniPlatform {
|
|
949
|
+
* "app": {
|
|
950
|
+
* "android": {
|
|
951
|
+
* "osVer": "5.0",
|
|
952
|
+
* "uniVer": "x",
|
|
953
|
+
* "unixVer": "x",
|
|
954
|
+
* "unixvVer": "x"
|
|
955
|
+
* },
|
|
956
|
+
* "ios": {
|
|
957
|
+
* "osVer": "12.0",
|
|
958
|
+
* "uniVer": "x",
|
|
959
|
+
* "unixVer": "x",
|
|
960
|
+
* "unixvVer": "x"
|
|
961
|
+
* },
|
|
962
|
+
* "harmony": {
|
|
963
|
+
* "osVer": "6.0",
|
|
964
|
+
* "uniVer": "x",
|
|
965
|
+
* "unixVer": "x",
|
|
966
|
+
* "unixvVer": "5.0"
|
|
967
|
+
* }
|
|
968
|
+
* }
|
|
969
|
+
* }
|
|
970
|
+
*/
|
|
971
|
+
onRenderChange(callback: UniPageOnRenderChangeCallback): number
|
|
972
|
+
/**
|
|
973
|
+
* 取消监听页面渲染变化更新事件
|
|
974
|
+
* @uniPlatform {
|
|
975
|
+
* "app": {
|
|
976
|
+
* "android": {
|
|
977
|
+
* "osVer": "5.0",
|
|
978
|
+
* "uniVer": "x",
|
|
979
|
+
* "unixVer": "x",
|
|
980
|
+
* "unixvVer": "x"
|
|
981
|
+
* },
|
|
982
|
+
* "ios": {
|
|
983
|
+
* "osVer": "12.0",
|
|
984
|
+
* "uniVer": "x",
|
|
985
|
+
* "unixVer": "x",
|
|
986
|
+
* "unixvVer": "x"
|
|
987
|
+
* },
|
|
988
|
+
* "harmony": {
|
|
989
|
+
* "osVer": "6.0",
|
|
990
|
+
* "uniVer": "x",
|
|
991
|
+
* "unixVer": "x",
|
|
992
|
+
* "unixvVer": "5.0"
|
|
993
|
+
* }
|
|
994
|
+
* }
|
|
995
|
+
* }
|
|
996
|
+
*/
|
|
997
|
+
offRenderChange(id: number): void
|
|
893
998
|
}
|
|
894
999
|
}
|
|
895
1000
|
|
package/types/uni/global.d.ts
CHANGED
|
@@ -4,5 +4,3 @@
|
|
|
4
4
|
/// <reference path='./uts-plugin-biz/global.d.ts' />
|
|
5
5
|
/// <reference path='./uts-plugin-component/global.d.ts' />
|
|
6
6
|
/// <reference path='./uts-plugin-extend/global.d.ts' />
|
|
7
|
-
/// <reference path='./uni-map-tencent-global.d.ts' />
|
|
8
|
-
/// <reference path='./uni-camera-global.d.ts' />
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// 本文件为自动构建生成
|
|
2
|
-
import {
|
|
3
|
-
|
|
2
|
+
import {
|
|
3
|
+
ExitSuccess as ExitSuccessOrigin,
|
|
4
4
|
ExitErrorCode as ExitErrorCodeOrigin,
|
|
5
5
|
IExitError as IExitErrorOrigin,
|
|
6
6
|
ExitFail as ExitFailOrigin,
|
|
@@ -10,10 +10,10 @@ import {
|
|
|
10
10
|
ExitOptions as ExitOptionsOrigin,
|
|
11
11
|
Exit as ExitOrigin,
|
|
12
12
|
Uni as UniOrigin
|
|
13
|
-
} from './interface'
|
|
13
|
+
} from './interface'
|
|
14
14
|
|
|
15
|
-
declare global {
|
|
16
|
-
|
|
15
|
+
declare global {
|
|
16
|
+
type ExitSuccess = ExitSuccessOrigin
|
|
17
17
|
type ExitErrorCode = ExitErrorCodeOrigin
|
|
18
18
|
type IExitError = IExitErrorOrigin
|
|
19
19
|
type ExitFail = ExitFailOrigin
|
|
@@ -23,4 +23,5 @@ declare global {
|
|
|
23
23
|
type ExitOptions = ExitOptionsOrigin
|
|
24
24
|
type Exit = ExitOrigin
|
|
25
25
|
interface Uni extends UniOrigin { }
|
|
26
|
-
}
|
|
26
|
+
}
|
|
27
|
+
|
|
@@ -423,7 +423,7 @@ export interface BackgroundAudioManager {
|
|
|
423
423
|
"unixUtsPlugin": "4.71"
|
|
424
424
|
},
|
|
425
425
|
"harmony": {
|
|
426
|
-
"osVer": "
|
|
426
|
+
"osVer": "x",
|
|
427
427
|
"uniVer": "x",
|
|
428
428
|
"unixVer": "x",
|
|
429
429
|
}
|
|
@@ -917,7 +917,7 @@ export interface BackgroundAudioManager {
|
|
|
917
917
|
}
|
|
918
918
|
*/
|
|
919
919
|
onWaiting(callback: (result: any) => void): void;
|
|
920
|
-
|
|
920
|
+
|
|
921
921
|
/**
|
|
922
922
|
* 取消监听背景音频可播放事件
|
|
923
923
|
* @uniPlatform
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// 本文件为自动构建生成
|
|
2
|
-
import {
|
|
3
|
-
|
|
2
|
+
import {
|
|
3
|
+
GetSystemInfo as GetSystemInfoOrigin,
|
|
4
4
|
GetSystemInfoSync as GetSystemInfoSyncOrigin,
|
|
5
5
|
GetWindowInfo as GetWindowInfoOrigin,
|
|
6
6
|
SafeArea as SafeAreaOrigin,
|
|
@@ -13,10 +13,10 @@ import {
|
|
|
13
13
|
GetSystemInfoOptions as GetSystemInfoOptionsOrigin,
|
|
14
14
|
GetWindowInfoResult as GetWindowInfoResultOrigin,
|
|
15
15
|
Uni as UniOrigin
|
|
16
|
-
} from './interface'
|
|
16
|
+
} from './interface'
|
|
17
17
|
|
|
18
|
-
declare global {
|
|
19
|
-
|
|
18
|
+
declare global {
|
|
19
|
+
type GetSystemInfo = GetSystemInfoOrigin
|
|
20
20
|
type GetSystemInfoSync = GetSystemInfoSyncOrigin
|
|
21
21
|
type GetWindowInfo = GetWindowInfoOrigin
|
|
22
22
|
type SafeArea = SafeAreaOrigin
|
|
@@ -29,4 +29,5 @@ declare global {
|
|
|
29
29
|
type GetSystemInfoOptions = GetSystemInfoOptionsOrigin
|
|
30
30
|
type GetWindowInfoResult = GetWindowInfoResultOrigin
|
|
31
31
|
interface Uni extends UniOrigin { }
|
|
32
|
-
}
|
|
32
|
+
}
|
|
33
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// 本文件为自动构建生成
|
|
2
|
-
export {
|
|
3
|
-
|
|
2
|
+
export {
|
|
3
|
+
GetSystemInfo,
|
|
4
4
|
GetSystemInfoSync,
|
|
5
5
|
GetWindowInfo,
|
|
6
6
|
SafeArea,
|
|
@@ -12,4 +12,5 @@ export {
|
|
|
12
12
|
GetSystemInfoCompleteCallback,
|
|
13
13
|
GetSystemInfoOptions,
|
|
14
14
|
GetWindowInfoResult,
|
|
15
|
-
} from './interface'
|
|
15
|
+
} from './interface'
|
|
16
|
+
|
|
@@ -6617,6 +6617,12 @@ export type GetWindowInfoResult = {
|
|
|
6617
6617
|
* "uniVer": "√",
|
|
6618
6618
|
* "unixVer": "4.11"
|
|
6619
6619
|
* },
|
|
6620
|
+
* "harmony": {
|
|
6621
|
+
* "osVer": "3.0",
|
|
6622
|
+
* "uniVer": "4.23",
|
|
6623
|
+
* "unixVer": "4.61"
|
|
6624
|
+
* }
|
|
6625
|
+
* },
|
|
6620
6626
|
* "mp": {
|
|
6621
6627
|
* "weixin": {
|
|
6622
6628
|
* "hostVer": "√",
|
|
@@ -6659,12 +6665,10 @@ export type GetWindowInfoResult = {
|
|
|
6659
6665
|
* "unixVer": "x"
|
|
6660
6666
|
* }
|
|
6661
6667
|
* },
|
|
6662
|
-
*
|
|
6663
|
-
*
|
|
6664
|
-
*
|
|
6665
|
-
*
|
|
6666
|
-
* }
|
|
6667
|
-
* }
|
|
6668
|
+
* "web": {
|
|
6669
|
+
* "uniVer": "√",
|
|
6670
|
+
* "unixVer": "4.0"
|
|
6671
|
+
* }
|
|
6668
6672
|
* }
|
|
6669
6673
|
*/
|
|
6670
6674
|
windowHeight: number,
|
|
@@ -6761,6 +6765,48 @@ export type GetWindowInfoResult = {
|
|
|
6761
6765
|
* "unixVer": "4.61"
|
|
6762
6766
|
* }
|
|
6763
6767
|
* },
|
|
6768
|
+
* "mp": {
|
|
6769
|
+
* "weixin": {
|
|
6770
|
+
* "hostVer": "x",
|
|
6771
|
+
* "uniVer": "x",
|
|
6772
|
+
* "unixVer": "x"
|
|
6773
|
+
* },
|
|
6774
|
+
* "alipay": {
|
|
6775
|
+
* "hostVer": "x",
|
|
6776
|
+
* "uniVer": "x",
|
|
6777
|
+
* "unixVer": "x"
|
|
6778
|
+
* },
|
|
6779
|
+
* "baidu": {
|
|
6780
|
+
* "hostVer": "x",
|
|
6781
|
+
* "uniVer": "x",
|
|
6782
|
+
* "unixVer": "x"
|
|
6783
|
+
* },
|
|
6784
|
+
* "toutiao": {
|
|
6785
|
+
* "hostVer": "x",
|
|
6786
|
+
* "uniVer": "x",
|
|
6787
|
+
* "unixVer": "x"
|
|
6788
|
+
* },
|
|
6789
|
+
* "lark": {
|
|
6790
|
+
* "hostVer": "x",
|
|
6791
|
+
* "uniVer": "x",
|
|
6792
|
+
* "unixVer": "x"
|
|
6793
|
+
* },
|
|
6794
|
+
* "qq": {
|
|
6795
|
+
* "hostVer": "x",
|
|
6796
|
+
* "uniVer": "x",
|
|
6797
|
+
* "unixVer": "x"
|
|
6798
|
+
* },
|
|
6799
|
+
* "kuaishou": {
|
|
6800
|
+
* "hostVer": "x",
|
|
6801
|
+
* "uniVer": "x",
|
|
6802
|
+
* "unixVer": "x"
|
|
6803
|
+
* },
|
|
6804
|
+
* "jd": {
|
|
6805
|
+
* "hostVer": "x",
|
|
6806
|
+
* "uniVer": "x",
|
|
6807
|
+
* "unixVer": "x"
|
|
6808
|
+
* }
|
|
6809
|
+
* },
|
|
6764
6810
|
* "web": {
|
|
6765
6811
|
* "uniVer": "√",
|
|
6766
6812
|
* "unixVer": "4.0"
|
|
@@ -6792,43 +6838,43 @@ export type GetWindowInfoResult = {
|
|
|
6792
6838
|
* },
|
|
6793
6839
|
* "mp": {
|
|
6794
6840
|
* "weixin": {
|
|
6795
|
-
* "hostVer": "
|
|
6796
|
-
* "uniVer": "
|
|
6797
|
-
* "unixVer": "
|
|
6841
|
+
* "hostVer": "x",
|
|
6842
|
+
* "uniVer": "x",
|
|
6843
|
+
* "unixVer": "x"
|
|
6798
6844
|
* },
|
|
6799
6845
|
* "alipay": {
|
|
6800
|
-
* "hostVer": "
|
|
6801
|
-
* "uniVer": "
|
|
6846
|
+
* "hostVer": "x",
|
|
6847
|
+
* "uniVer": "x",
|
|
6802
6848
|
* "unixVer": "x"
|
|
6803
6849
|
* },
|
|
6804
6850
|
* "baidu": {
|
|
6805
|
-
* "hostVer": "
|
|
6806
|
-
* "uniVer": "
|
|
6851
|
+
* "hostVer": "x",
|
|
6852
|
+
* "uniVer": "x",
|
|
6807
6853
|
* "unixVer": "x"
|
|
6808
6854
|
* },
|
|
6809
6855
|
* "toutiao": {
|
|
6810
|
-
* "hostVer": "
|
|
6811
|
-
* "uniVer": "
|
|
6856
|
+
* "hostVer": "x",
|
|
6857
|
+
* "uniVer": "x",
|
|
6812
6858
|
* "unixVer": "x"
|
|
6813
6859
|
* },
|
|
6814
6860
|
* "lark": {
|
|
6815
|
-
* "hostVer": "
|
|
6816
|
-
* "uniVer": "
|
|
6861
|
+
* "hostVer": "x",
|
|
6862
|
+
* "uniVer": "x",
|
|
6817
6863
|
* "unixVer": "x"
|
|
6818
6864
|
* },
|
|
6819
6865
|
* "qq": {
|
|
6820
|
-
* "hostVer": "
|
|
6821
|
-
* "uniVer": "
|
|
6866
|
+
* "hostVer": "x",
|
|
6867
|
+
* "uniVer": "x",
|
|
6822
6868
|
* "unixVer": "x"
|
|
6823
6869
|
* },
|
|
6824
6870
|
* "kuaishou": {
|
|
6825
|
-
* "hostVer": "
|
|
6826
|
-
* "uniVer": "
|
|
6871
|
+
* "hostVer": "x",
|
|
6872
|
+
* "uniVer": "x",
|
|
6827
6873
|
* "unixVer": "x"
|
|
6828
6874
|
* },
|
|
6829
6875
|
* "jd": {
|
|
6830
|
-
* "hostVer": "
|
|
6831
|
-
* "uniVer": "
|
|
6876
|
+
* "hostVer": "x",
|
|
6877
|
+
* "uniVer": "x",
|
|
6832
6878
|
* "unixVer": "x"
|
|
6833
6879
|
* }
|
|
6834
6880
|
* },
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// 本文件为自动构建生成
|
|
2
|
-
import {
|
|
3
|
-
|
|
2
|
+
import {
|
|
3
|
+
MediaOrientation as MediaOrientationOrigin,
|
|
4
4
|
MediaErrorCode as MediaErrorCodeOrigin,
|
|
5
5
|
IMediaError as IMediaErrorOrigin,
|
|
6
6
|
ChooseImageTempFile as ChooseImageTempFileOrigin,
|
|
@@ -14,23 +14,6 @@ import {
|
|
|
14
14
|
ChooseImageAlbumMode as ChooseImageAlbumModeOrigin,
|
|
15
15
|
ChooseImageOptions as ChooseImageOptionsOrigin,
|
|
16
16
|
ChooseImage as ChooseImageOrigin,
|
|
17
|
-
PreviewImageSuccess as PreviewImageSuccessOrigin,
|
|
18
|
-
LongPressActionsSuccessResult as LongPressActionsSuccessResultOrigin,
|
|
19
|
-
LongPressActionsFailResult as LongPressActionsFailResultOrigin,
|
|
20
|
-
LongPressActionsOptions as LongPressActionsOptionsOrigin,
|
|
21
|
-
PreviewImageFail as PreviewImageFailOrigin,
|
|
22
|
-
PreviewImageSuccessCallback as PreviewImageSuccessCallbackOrigin,
|
|
23
|
-
PreviewImageFailCallback as PreviewImageFailCallbackOrigin,
|
|
24
|
-
PreviewImageCompleteCallback as PreviewImageCompleteCallbackOrigin,
|
|
25
|
-
PreviewImageOptions as PreviewImageOptionsOrigin,
|
|
26
|
-
PreviewImage as PreviewImageOrigin,
|
|
27
|
-
ClosePreviewImage as ClosePreviewImageOrigin,
|
|
28
|
-
ClosePreviewImageSuccess as ClosePreviewImageSuccessOrigin,
|
|
29
|
-
ClosePreviewImageFail as ClosePreviewImageFailOrigin,
|
|
30
|
-
ClosePreviewImageSuccessCallback as ClosePreviewImageSuccessCallbackOrigin,
|
|
31
|
-
ClosePreviewImageFailCallback as ClosePreviewImageFailCallbackOrigin,
|
|
32
|
-
ClosePreviewImageCompleteCallback as ClosePreviewImageCompleteCallbackOrigin,
|
|
33
|
-
ClosePreviewImageOptions as ClosePreviewImageOptionsOrigin,
|
|
34
17
|
GetImageInfo as GetImageInfoOrigin,
|
|
35
18
|
GetImageInfoSuccess as GetImageInfoSuccessOrigin,
|
|
36
19
|
GetImageInfoFail as GetImageInfoFailOrigin,
|
|
@@ -92,10 +75,10 @@ import {
|
|
|
92
75
|
ChooseFileCompleteCallback as ChooseFileCompleteCallbackOrigin,
|
|
93
76
|
ChooseFileOptions as ChooseFileOptionsOrigin,
|
|
94
77
|
Uni as UniOrigin
|
|
95
|
-
} from './interface'
|
|
78
|
+
} from './interface'
|
|
96
79
|
|
|
97
|
-
declare global {
|
|
98
|
-
|
|
80
|
+
declare global {
|
|
81
|
+
type MediaOrientation = MediaOrientationOrigin
|
|
99
82
|
type MediaErrorCode = MediaErrorCodeOrigin
|
|
100
83
|
type IMediaError = IMediaErrorOrigin
|
|
101
84
|
type ChooseImageTempFile = ChooseImageTempFileOrigin
|
|
@@ -109,23 +92,6 @@ declare global {
|
|
|
109
92
|
type ChooseImageAlbumMode = ChooseImageAlbumModeOrigin
|
|
110
93
|
type ChooseImageOptions = ChooseImageOptionsOrigin
|
|
111
94
|
type ChooseImage = ChooseImageOrigin
|
|
112
|
-
type PreviewImageSuccess = PreviewImageSuccessOrigin
|
|
113
|
-
type LongPressActionsSuccessResult = LongPressActionsSuccessResultOrigin
|
|
114
|
-
type LongPressActionsFailResult = LongPressActionsFailResultOrigin
|
|
115
|
-
type LongPressActionsOptions = LongPressActionsOptionsOrigin
|
|
116
|
-
type PreviewImageFail = PreviewImageFailOrigin
|
|
117
|
-
type PreviewImageSuccessCallback = PreviewImageSuccessCallbackOrigin
|
|
118
|
-
type PreviewImageFailCallback = PreviewImageFailCallbackOrigin
|
|
119
|
-
type PreviewImageCompleteCallback = PreviewImageCompleteCallbackOrigin
|
|
120
|
-
type PreviewImageOptions = PreviewImageOptionsOrigin
|
|
121
|
-
type PreviewImage = PreviewImageOrigin
|
|
122
|
-
type ClosePreviewImage = ClosePreviewImageOrigin
|
|
123
|
-
type ClosePreviewImageSuccess = ClosePreviewImageSuccessOrigin
|
|
124
|
-
type ClosePreviewImageFail = ClosePreviewImageFailOrigin
|
|
125
|
-
type ClosePreviewImageSuccessCallback = ClosePreviewImageSuccessCallbackOrigin
|
|
126
|
-
type ClosePreviewImageFailCallback = ClosePreviewImageFailCallbackOrigin
|
|
127
|
-
type ClosePreviewImageCompleteCallback = ClosePreviewImageCompleteCallbackOrigin
|
|
128
|
-
type ClosePreviewImageOptions = ClosePreviewImageOptionsOrigin
|
|
129
95
|
type GetImageInfo = GetImageInfoOrigin
|
|
130
96
|
type GetImageInfoSuccess = GetImageInfoSuccessOrigin
|
|
131
97
|
type GetImageInfoFail = GetImageInfoFailOrigin
|
|
@@ -187,4 +153,5 @@ declare global {
|
|
|
187
153
|
type ChooseFileCompleteCallback = ChooseFileCompleteCallbackOrigin
|
|
188
154
|
type ChooseFileOptions = ChooseFileOptionsOrigin
|
|
189
155
|
interface Uni extends UniOrigin { }
|
|
190
|
-
}
|
|
156
|
+
}
|
|
157
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// 本文件为自动构建生成
|
|
2
|
-
export {
|
|
3
|
-
|
|
2
|
+
export {
|
|
3
|
+
MediaOrientation,
|
|
4
4
|
MediaErrorCode,
|
|
5
5
|
IMediaError,
|
|
6
6
|
ChooseImageTempFile,
|
|
@@ -14,23 +14,6 @@ export {
|
|
|
14
14
|
ChooseImageAlbumMode,
|
|
15
15
|
ChooseImageOptions,
|
|
16
16
|
ChooseImage,
|
|
17
|
-
PreviewImageSuccess,
|
|
18
|
-
LongPressActionsSuccessResult,
|
|
19
|
-
LongPressActionsFailResult,
|
|
20
|
-
LongPressActionsOptions,
|
|
21
|
-
PreviewImageFail,
|
|
22
|
-
PreviewImageSuccessCallback,
|
|
23
|
-
PreviewImageFailCallback,
|
|
24
|
-
PreviewImageCompleteCallback,
|
|
25
|
-
PreviewImageOptions,
|
|
26
|
-
PreviewImage,
|
|
27
|
-
ClosePreviewImage,
|
|
28
|
-
ClosePreviewImageSuccess,
|
|
29
|
-
ClosePreviewImageFail,
|
|
30
|
-
ClosePreviewImageSuccessCallback,
|
|
31
|
-
ClosePreviewImageFailCallback,
|
|
32
|
-
ClosePreviewImageCompleteCallback,
|
|
33
|
-
ClosePreviewImageOptions,
|
|
34
17
|
GetImageInfo,
|
|
35
18
|
GetImageInfoSuccess,
|
|
36
19
|
GetImageInfoFail,
|
|
@@ -91,4 +74,5 @@ export {
|
|
|
91
74
|
ChooseFileComplete,
|
|
92
75
|
ChooseFileCompleteCallback,
|
|
93
76
|
ChooseFileOptions,
|
|
94
|
-
} from './interface'
|
|
77
|
+
} from './interface'
|
|
78
|
+
|