@dcloudio/uni-app-x 0.4.5 → 0.5.0

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 (74) hide show
  1. package/package.json +1 -1
  2. package/types/app.d.ts +986 -0
  3. package/types/common.d.ts +7 -0
  4. package/types/index.d.ts +3 -0
  5. package/types/native/AsyncApiResult.d.ts +1 -0
  6. package/types/native/CSSStyleDeclaration.d.ts +20 -0
  7. package/types/native/CustomEvent.d.ts +1 -0
  8. package/types/native/DOMRect.d.ts +56 -0
  9. package/types/native/DrawableContext.d.ts +102 -11
  10. package/types/native/Event.d.ts +25 -10
  11. package/types/native/IApp.d.ts +1 -0
  12. package/types/native/IDocument.d.ts +1 -0
  13. package/types/native/INode.d.ts +136 -5
  14. package/types/native/IPage.d.ts +1 -0
  15. package/types/native/IPageManager.d.ts +1 -0
  16. package/types/native/ITabsNode.d.ts +1 -0
  17. package/types/native/IWebViewNode.d.ts +28 -0
  18. package/types/native/ImageErrorEvent.d.ts +13 -0
  19. package/types/native/ImageLoadEvent.d.ts +17 -0
  20. package/types/native/MouseEvent.d.ts +44 -19
  21. package/types/native/NodeData.d.ts +1 -0
  22. package/types/native/PageEvent.d.ts +1 -0
  23. package/types/native/PageScrollEvent.d.ts +3 -0
  24. package/types/native/ResizeEvent.d.ts +26 -6
  25. package/types/native/RichTextItemClickEvent.d.ts +21 -0
  26. package/types/native/ScrollEvent.d.ts +27 -9
  27. package/types/native/SourceError.d.ts +36 -0
  28. package/types/native/TabTapEvent.d.ts +10 -2
  29. package/types/native/TouchEvent.d.ts +41 -10
  30. package/types/native/UniAggregateError.d.ts +17 -0
  31. package/types/native/UniAppManager.d.ts +1 -0
  32. package/types/native/UniError.d.ts +54 -6
  33. package/types/native/WebViewErrorEvent.d.ts +13 -0
  34. package/types/native/WebViewLoadedEvent.d.ts +8 -0
  35. package/types/native/WebViewLoadingEvent.d.ts +8 -0
  36. package/types/native/WebViewMessageEvent.d.ts +13 -0
  37. package/types/native/index.d.ts +14 -2
  38. package/types/page.d.ts +1729 -0
  39. package/types/shims-vue.d.ts +12 -0
  40. package/types/uni/core/index.d.ts +1 -0
  41. package/types/uni/core/lib/performance/index.d.ts +21 -0
  42. package/types/uni/core/lib/performance/interface.d.ts +132 -0
  43. package/types/uni/core/lib/ui/create-selector-query/index.d.ts +4 -0
  44. package/types/uni/ext/index.d.ts +0 -1
  45. package/types/uni/ext/lib/uni-audio/utssdk/index.d.ts +4 -0
  46. package/types/uni/ext/lib/uni-createWebviewContext/utssdk/index.d.ts +11 -0
  47. package/types/uni/ext/lib/uni-createWebviewContext/utssdk/interface.d.ts +98 -0
  48. package/types/uni/ext/lib/uni-exit/utssdk/interface.d.ts +4 -4
  49. package/types/uni/ext/lib/uni-file-manager/utssdk/index.d.ts +2 -4
  50. package/types/uni/ext/lib/uni-file-manager/utssdk/interface.d.ts +8 -36
  51. package/types/uni/ext/lib/uni-getLocation-system/utssdk/index.d.ts +0 -2
  52. package/types/uni/ext/lib/uni-getLocation-system/utssdk/interface.d.ts +40 -26
  53. package/types/uni/ext/lib/uni-getNetworkType/utssdk/interface.d.ts +3 -10
  54. package/types/uni/ext/lib/uni-getRecorderManager/utssdk/index.d.ts +2 -0
  55. package/types/uni/ext/lib/uni-getSystemInfo/utssdk/interface.d.ts +3 -137
  56. package/types/uni/ext/lib/uni-media/utssdk/index.d.ts +0 -20
  57. package/types/uni/ext/lib/uni-media/utssdk/interface.d.ts +57 -139
  58. package/types/uni/ext/lib/uni-network/utssdk/app-ios/index.d.ts +67 -0
  59. package/types/uni/ext/lib/uni-network/utssdk/app-ios/interface.d.ts +530 -0
  60. package/types/uni/ext/lib/uni-network/utssdk/index.d.ts +10 -4
  61. package/types/uni/ext/lib/uni-network/utssdk/interface.d.ts +37 -77
  62. package/types/uni/ext/lib/uni-openAppAuthorizeSetting/utssdk/interface.d.ts +3 -3
  63. package/types/uni/ext/lib/uni-prompt/utssdk/index.d.ts +0 -8
  64. package/types/uni/ext/lib/uni-prompt/utssdk/interface.d.ts +35 -112
  65. package/types/uni/ext/lib/uni-storage/utssdk/index.d.ts +0 -10
  66. package/types/uni/ext/lib/uni-storage/utssdk/interface.d.ts +18 -102
  67. package/types/uni/ext/lib/uni-websocket/utssdk/index.d.ts +2 -0
  68. package/types/uni/ext/lib/uni-websocket/utssdk/interface.d.ts +11 -18
  69. package/types/uni-cloud/index.d.ts +330 -274
  70. package/types/vue/index.d.ts +1 -1
  71. package/.env +0 -3
  72. package/types/native/UTSError.d.ts +0 -12
  73. package/types/uni/ext/lib/uni-getLocation-tencent/utssdk/index.d.ts +0 -15
  74. package/types/uni/ext/lib/uni-getLocation-tencent/utssdk/interface.d.ts +0 -93
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcloudio/uni-app-x",
3
- "version": "0.4.5",
3
+ "version": "0.5.0",
4
4
  "description": "uni-app x types",
5
5
  "typings": "index.d.ts",
6
6
  "author": "DCloud",