@dcloudio/uni-app-x 0.7.18 → 0.7.20

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.
Files changed (32) hide show
  1. package/package.json +1 -1
  2. package/types/app.d.ts +184 -24
  3. package/types/native/CanvasRenderingContext2D.d.ts +2 -1
  4. package/types/native/IUniElement.d.ts +113 -5
  5. package/types/uni/uts-plugin-api/global.d.ts +3 -3
  6. package/types/uni/uts-plugin-api/index.d.ts +3 -3
  7. package/types/uni/uts-plugin-api/lib/{uni-requestAnimationFrame → uni-animationFrame}/utssdk/interface.d.ts +48 -26
  8. package/types/uni/uts-plugin-api/lib/uni-authentication/utssdk/global.d.ts +60 -0
  9. package/types/uni/uts-plugin-api/lib/uni-authentication/utssdk/index.d.ts +29 -0
  10. package/types/uni/uts-plugin-api/lib/uni-authentication/utssdk/interface.d.ts +161 -0
  11. package/types/uni/uts-plugin-api/lib/uni-canvas/utssdk/interface.d.ts +70 -4
  12. package/types/uni/uts-plugin-api/lib/uni-createSelectorQuery/utssdk/interface.d.ts +37 -0
  13. package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/interface.d.ts +4 -3
  14. package/types/uni/uts-plugin-api/lib/uni-getEnterOptionsSync/utssdk/interface.d.ts +108 -0
  15. package/types/uni/uts-plugin-api/lib/uni-getLaunchOptionsSync/utssdk/interface.d.ts +112 -1
  16. package/types/uni/uts-plugin-api/lib/uni-getLocation/utssdk/interface.d.ts +1 -1
  17. package/types/uni/uts-plugin-api/lib/uni-getProvider/utssdk/global.d.ts +6 -8
  18. package/types/uni/uts-plugin-api/lib/uni-getProvider/utssdk/index.d.ts +3 -4
  19. package/types/uni/uts-plugin-api/lib/uni-getProvider/utssdk/interface.d.ts +49 -49
  20. package/types/uni/uts-plugin-api/lib/uni-prompt/utssdk/global.d.ts +4 -0
  21. package/types/uni/uts-plugin-api/lib/uni-prompt/utssdk/index.d.ts +2 -0
  22. package/types/uni/uts-plugin-api/lib/uni-prompt/utssdk/interface.d.ts +193 -8
  23. package/types/uni/uts-plugin-api/lib/uni-route/utssdk/interface.d.ts +2 -2
  24. package/types/uni/uts-plugin-biz/lib/uni-push/utssdk/interface.d.ts +808 -778
  25. package/types/uni-cloud/index.d.ts +5 -1
  26. package/types/uni-cloud/interface.d.ts +846 -850
  27. package/types/shim-uts-basic.d.ts +0 -4495
  28. package/types/uni/uts-plugin-api/lib/uni-cancelAnimationFrame/utssdk/global.d.ts +0 -10
  29. package/types/uni/uts-plugin-api/lib/uni-cancelAnimationFrame/utssdk/index.d.ts +0 -4
  30. package/types/uni/uts-plugin-api/lib/uni-cancelAnimationFrame/utssdk/interface.d.ts +0 -24
  31. /package/types/uni/uts-plugin-api/lib/{uni-requestAnimationFrame → uni-animationFrame}/utssdk/global.d.ts +0 -0
  32. /package/types/uni/uts-plugin-api/lib/{uni-requestAnimationFrame → uni-animationFrame}/utssdk/index.d.ts +0 -0
@@ -1,10 +0,0 @@
1
- // 本文件为自动构建生成
2
- import {
3
-
4
- Uni as UniOrigin
5
- } from './interface'
6
-
7
- declare global {
8
-
9
- interface Uni extends UniOrigin { }
10
- }
@@ -1,4 +0,0 @@
1
- // 本文件为自动构建生成
2
- export {
3
-
4
- } from './interface'
@@ -1,24 +0,0 @@
1
- export interface Uni {
2
- /**
3
- * 方法取消一个先前通过调用 window.requestAnimationFrame() 方法添加到计划中的动画帧请求
4
- * @uniPlatform {
5
- * "app": {
6
- * "android": {
7
- * "osVer": "5.0",
8
- * "uniVer": "x",
9
- * "unixVer": "4.25"
10
- * },
11
- * "ios": {
12
- * "osVer": "12.0",
13
- * "uniVer": "x",
14
- * "unixVer": "4.25"
15
- * }
16
- * },
17
- * "web": {
18
- * "uniVer": "x",
19
- * "unixVer": "4.25"
20
- * }
21
- * }
22
- */
23
- cancelAnimationFrame(taskId: number): void;
24
- }