@dcloudio/uni-app-x 0.7.41 → 0.7.43

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 (44) hide show
  1. package/package.json +1 -1
  2. package/types/UniPage.d.ts +32 -77
  3. package/types/app.d.ts +39 -2
  4. package/types/native/CSSStyleDeclaration.d.ts +40 -7
  5. package/types/native/CanvasRenderingContext2D.d.ts +56 -6
  6. package/types/native/IUniElement.d.ts +31 -2
  7. package/types/native/UniAnimation.d.ts +578 -0
  8. package/types/native/UniAnimationPlaybackEvent.d.ts +12 -0
  9. package/types/native/UniNativePage.d.ts +1 -19
  10. package/types/native/UniSafeAreaInsets.d.ts +74 -0
  11. package/types/native/global.d.ts +6 -2
  12. package/types/native/index.d.ts +3 -1
  13. package/types/uni/uni-map-tencent-global.d.ts +5 -1
  14. package/types/uni/uni-map-tencent-map.d.ts +7 -0
  15. package/types/uni/uts-plugin-api/global.d.ts +3 -0
  16. package/types/uni/uts-plugin-api/index.d.ts +3 -0
  17. package/types/uni/uts-plugin-api/lib/uni-actionSheet/utssdk/interface.d.ts +680 -51
  18. package/types/uni/uts-plugin-api/lib/uni-chooseMedia/utssdk/global.d.ts +32 -0
  19. package/types/uni/uts-plugin-api/lib/uni-chooseMedia/utssdk/index.d.ts +15 -0
  20. package/types/uni/uts-plugin-api/lib/uni-chooseMedia/utssdk/interface.d.ts +685 -0
  21. package/types/uni/uts-plugin-api/lib/uni-document/utssdk/global.d.ts +10 -0
  22. package/types/uni/uts-plugin-api/lib/uni-document/utssdk/index.d.ts +4 -0
  23. package/types/uni/uts-plugin-api/lib/uni-document/utssdk/interface.d.ts +76 -0
  24. package/types/uni/uts-plugin-api/lib/uni-fileSystemManager/utssdk/interface.d.ts +105 -104
  25. package/types/uni/uts-plugin-api/lib/uni-getDeviceInfo/utssdk/interface.d.ts +75 -1
  26. package/types/uni/uts-plugin-api/lib/uni-loadFontFace/utssdk/global.d.ts +2 -0
  27. package/types/uni/uts-plugin-api/lib/uni-loadFontFace/utssdk/index.d.ts +1 -0
  28. package/types/uni/uts-plugin-api/lib/uni-loadFontFace/utssdk/interface.d.ts +4 -5
  29. package/types/uni/uts-plugin-api/lib/uni-media/utssdk/global.d.ts +0 -22
  30. package/types/uni/uts-plugin-api/lib/uni-media/utssdk/index.d.ts +0 -11
  31. package/types/uni/uts-plugin-api/lib/uni-media/utssdk/interface.d.ts +171 -896
  32. package/types/uni/uts-plugin-api/lib/uni-network/utssdk/interface.d.ts +1 -1
  33. package/types/uni/uts-plugin-api/lib/uni-previewImage/utssdk/global.d.ts +46 -0
  34. package/types/uni/uts-plugin-api/lib/uni-previewImage/utssdk/index.d.ts +22 -0
  35. package/types/uni/uts-plugin-api/lib/uni-previewImage/utssdk/interface.d.ts +339 -0
  36. package/types/uni/uts-plugin-api/lib/uni-prompt/utssdk/interface.d.ts +1 -1
  37. package/types/uni/uts-plugin-api/lib/uni-theme/utssdk/global.d.ts +4 -0
  38. package/types/uni/uts-plugin-api/lib/uni-theme/utssdk/index.d.ts +2 -0
  39. package/types/uni/uts-plugin-api/lib/uni-theme/utssdk/interface.d.ts +6 -4
  40. package/types/uni/uts-plugin-api/lib/uni-websocket/utssdk/interface.d.ts +2187 -2066
  41. package/types/uni/uts-plugin-biz/lib/uni-crash/utssdk/interface.d.ts +1 -1
  42. package/types/uni/uts-plugin-biz/lib/uni-map-tencent/utssdk/interface.d.ts +268 -20
  43. package/types/uni/uts-plugin-biz/lib/uni-verify/utssdk/interface.d.ts +398 -203
  44. package/types/native/UniSafeArea.d.ts +0 -185
@@ -0,0 +1,76 @@
1
+ export interface Uni {
2
+ /**
3
+ * 设置系统剪贴板的内容
4
+ *
5
+ * @tutorial https://uniapp.dcloud.net.cn/api/system/clipboard.html#setclipboarddata
6
+ * @tutorial-uni-app https://uniapp.dcloud.net.cn/api/system/clipboard.html#setclipboarddata
7
+ * @uniPlatform {
8
+ * "app": {
9
+ * "android": {
10
+ * "osVer": "5.0",
11
+ * "uniVer": "√",
12
+ * "unixVer": "x"
13
+ * },
14
+ * "ios": {
15
+ * "osVer": "12.0",
16
+ * "uniVer": "√",
17
+ * "unixVer": "x"
18
+ * },
19
+ * "harmony": {
20
+ * "osVer": "3.0",
21
+ * "uniVer": "4.23",
22
+ * "unixVer": "x"
23
+ * }
24
+ * },
25
+ * "mp": {
26
+ * "weixin": {
27
+ * "hostVer": "√",
28
+ * "uniVer": "√",
29
+ * "unixVer": "4.41"
30
+ * },
31
+ * "alipay": {
32
+ * "hostVer": "√",
33
+ * "uniVer": "√",
34
+ * "unixVer": "x"
35
+ * },
36
+ * "baidu": {
37
+ * "hostVer": "√",
38
+ * "uniVer": "√",
39
+ * "unixVer": "x"
40
+ * },
41
+ * "toutiao": {
42
+ * "hostVer": "√",
43
+ * "uniVer": "√",
44
+ * "unixVer": "x"
45
+ * },
46
+ * "lark": {
47
+ * "hostVer": "√",
48
+ * "uniVer": "√",
49
+ * "unixVer": "x"
50
+ * },
51
+ * "qq": {
52
+ * "hostVer": "√",
53
+ * "uniVer": "√",
54
+ * "unixVer": "x"
55
+ * },
56
+ * "kuaishou": {
57
+ * "hostVer": "√",
58
+ * "uniVer": "√",
59
+ * "unixVer": "x"
60
+ * },
61
+ * "jd": {
62
+ * "hostVer": "√",
63
+ * "uniVer": "√",
64
+ * "unixVer": "x"
65
+ * }
66
+ * },
67
+ * "web": {
68
+ * "uniVer": "√",
69
+ * "unixVer": "4.0"
70
+ * }
71
+ * }
72
+ */
73
+ createElement: CreateElement;
74
+ }
75
+
76
+ export type CreateElement = (tagName: string) => UniElement;