@dcloudio/uni-app-x 0.7.119 → 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 +5 -1
- 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-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 +12 -5
- 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-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 +12 -5
- package/types/uni/uts-plugin-component/lib/uni-share-weixin/utssdk/interface.d.ts +3 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// 本文件为自动构建生成
|
|
2
2
|
import {
|
|
3
|
-
|
|
3
|
+
UniShareProvider as UniShareProviderOrigin,
|
|
4
|
+
IShareFail as IShareFailOrigin,
|
|
4
5
|
ShareErrorCode as ShareErrorCodeOrigin,
|
|
5
6
|
Share as ShareOrigin,
|
|
6
7
|
ShareMiniProgramShareType as ShareMiniProgramShareTypeOrigin,
|
|
@@ -15,12 +16,12 @@
|
|
|
15
16
|
ShareType as ShareTypeOrigin,
|
|
16
17
|
ShareScene as ShareSceneOrigin,
|
|
17
18
|
ShareOptions as ShareOptionsOrigin,
|
|
18
|
-
UniShareProvider as UniShareProviderOrigin,
|
|
19
19
|
Uni as UniOrigin
|
|
20
20
|
} from './interface'
|
|
21
21
|
|
|
22
22
|
declare global {
|
|
23
|
-
type
|
|
23
|
+
type UniShareProvider = UniShareProviderOrigin
|
|
24
|
+
type IShareFail = IShareFailOrigin
|
|
24
25
|
type ShareErrorCode = ShareErrorCodeOrigin
|
|
25
26
|
type Share = ShareOrigin
|
|
26
27
|
type ShareMiniProgramShareType = ShareMiniProgramShareTypeOrigin
|
|
@@ -35,7 +36,6 @@
|
|
|
35
36
|
type ShareType = ShareTypeOrigin
|
|
36
37
|
type ShareScene = ShareSceneOrigin
|
|
37
38
|
type ShareOptions = ShareOptionsOrigin
|
|
38
|
-
type UniShareProvider = UniShareProviderOrigin
|
|
39
39
|
interface Uni extends UniOrigin { }
|
|
40
40
|
}
|
|
41
41
|
|
|
@@ -29,11 +29,20 @@ export interface Uni {
|
|
|
29
29
|
* "unixVer": "x"
|
|
30
30
|
* }
|
|
31
31
|
* }
|
|
32
|
-
*/
|
|
33
|
-
|
|
32
|
+
*/
|
|
33
|
+
share(options: ShareOptions): void;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
export interface UniShareProvider extends UniProvider {
|
|
40
|
+
share(options: ShareOptions): void;
|
|
34
41
|
}
|
|
35
42
|
|
|
36
43
|
|
|
44
|
+
|
|
45
|
+
|
|
37
46
|
export interface IShareFail extends IUniError {
|
|
38
47
|
errCode: ShareErrorCode
|
|
39
48
|
};
|
|
@@ -579,6 +588,4 @@ export type ShareOptions = {
|
|
|
579
588
|
*/
|
|
580
589
|
complete?: ShareCompleteCallback | null
|
|
581
590
|
};
|
|
582
|
-
|
|
583
|
-
share(options: ShareOptions): void;
|
|
584
|
-
}
|
|
591
|
+
|
|
@@ -59,7 +59,6 @@
|
|
|
59
59
|
/// <reference path='./lib/uni-getProvider/utssdk/global.d.ts' />
|
|
60
60
|
/// <reference path='./lib/uni-getSystemInfo/utssdk/global.d.ts' />
|
|
61
61
|
/// <reference path='./lib/uni-getSystemSetting/utssdk/global.d.ts' />
|
|
62
|
-
/// <reference path='./lib/uni-input/utssdk/global.d.ts' />
|
|
63
62
|
/// <reference path='./lib/uni-installApk/utssdk/global.d.ts' />
|
|
64
63
|
/// <reference path='./lib/uni-interceptor/utssdk/global.d.ts' />
|
|
65
64
|
/// <reference path='./lib/uni-keyboard/utssdk/global.d.ts' />
|
|
@@ -99,7 +98,6 @@
|
|
|
99
98
|
/// <reference path='./lib/uni-sse/utssdk/global.d.ts' />
|
|
100
99
|
/// <reference path='./lib/uni-storage/utssdk/global.d.ts' />
|
|
101
100
|
/// <reference path='./lib/uni-tabBar/utssdk/global.d.ts' />
|
|
102
|
-
/// <reference path='./lib/uni-textarea/utssdk/global.d.ts' />
|
|
103
101
|
/// <reference path='./lib/uni-theme/utssdk/global.d.ts' />
|
|
104
102
|
/// <reference path='./lib/uni-video/utssdk/global.d.ts' />
|
|
105
103
|
/// <reference path='./lib/uni-virtualPayment/utssdk/global.d.ts' />
|
|
@@ -59,7 +59,6 @@ export * from './lib/uni-getPerformance/utssdk'
|
|
|
59
59
|
export * from './lib/uni-getProvider/utssdk'
|
|
60
60
|
export * from './lib/uni-getSystemInfo/utssdk'
|
|
61
61
|
export * from './lib/uni-getSystemSetting/utssdk'
|
|
62
|
-
export * from './lib/uni-input/utssdk'
|
|
63
62
|
export * from './lib/uni-installApk/utssdk'
|
|
64
63
|
export * from './lib/uni-interceptor/utssdk'
|
|
65
64
|
export * from './lib/uni-keyboard/utssdk'
|
|
@@ -99,7 +98,6 @@ export * from './lib/uni-showLoading/utssdk'
|
|
|
99
98
|
export * from './lib/uni-sse/utssdk'
|
|
100
99
|
export * from './lib/uni-storage/utssdk'
|
|
101
100
|
export * from './lib/uni-tabBar/utssdk'
|
|
102
|
-
export * from './lib/uni-textarea/utssdk'
|
|
103
101
|
export * from './lib/uni-theme/utssdk'
|
|
104
102
|
export * from './lib/uni-video/utssdk'
|
|
105
103
|
export * from './lib/uni-virtualPayment/utssdk'
|