@dcloudio/uni-app-x 0.4.5 → 0.4.6
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/.env +1 -1
- package/package.json +1 -1
- package/tsconfig.json +5 -0
- package/types/app.d.ts +986 -0
- package/types/common.d.ts +7 -0
- package/types/index.d.ts +3 -0
- package/types/native/AsyncApiResult.d.ts +1 -0
- package/types/native/CSSStyleDeclaration.d.ts +20 -0
- package/types/native/CustomEvent.d.ts +3 -0
- package/types/native/DOMRect.d.ts +56 -0
- package/types/native/DrawableContext.d.ts +102 -11
- package/types/native/Event.d.ts +25 -10
- package/types/native/IApp.d.ts +1 -0
- package/types/native/IDocument.d.ts +1 -0
- package/types/native/INode.d.ts +136 -5
- package/types/native/IPage.d.ts +1 -0
- package/types/native/IPageManager.d.ts +1 -0
- package/types/native/ITabsNode.d.ts +1 -0
- package/types/native/IWebViewNode.d.ts +28 -0
- package/types/native/ImageErrorEvent.d.ts +13 -0
- package/types/native/ImageLoadEvent.d.ts +17 -0
- package/types/native/MouseEvent.d.ts +44 -19
- package/types/native/NodeData.d.ts +1 -0
- package/types/native/PageEvent.d.ts +1 -0
- package/types/native/PageScrollEvent.d.ts +3 -0
- package/types/native/ResizeEvent.d.ts +26 -6
- package/types/native/RichTextItemClickEvent.d.ts +21 -0
- package/types/native/ScrollEvent.d.ts +27 -9
- package/types/native/SourceError.d.ts +38 -0
- package/types/native/TabTapEvent.d.ts +10 -2
- package/types/native/TouchEvent.d.ts +37 -10
- package/types/native/UTSError.d.ts +5 -2
- package/types/native/UTSPromise.d.ts +74 -0
- package/types/native/UniAggregateError.d.ts +17 -0
- package/types/native/UniAppManager.d.ts +1 -0
- package/types/native/UniError.d.ts +54 -5
- package/types/native/WebViewErrorEvent.d.ts +13 -0
- package/types/native/WebViewLoadedEvent.d.ts +8 -0
- package/types/native/WebViewLoadingEvent.d.ts +8 -0
- package/types/native/WebViewMessageEvent.d.ts +13 -0
- package/types/native/index.d.ts +15 -1
- package/types/page.d.ts +1729 -0
- package/types/shims-vue.d.ts +12 -0
- package/types/uni/core/lib/performance/index.d.ts +21 -0
- package/types/uni/core/lib/performance/interface.d.ts +152 -0
- package/types/uni/core/lib/ui/create-selector-query/index.d.ts +4 -0
- package/types/uni/ext/index.d.ts +0 -1
- package/types/uni/ext/lib/uni-audio/utssdk/index.d.ts +4 -0
- package/types/uni/ext/lib/uni-exit/utssdk/interface.d.ts +4 -4
- package/types/uni/ext/lib/uni-file-manager/utssdk/index.d.ts +2 -0
- package/types/uni/ext/lib/uni-file-manager/utssdk/interface.d.ts +6 -6
- package/types/uni/ext/lib/uni-getLocation-system/utssdk/interface.d.ts +39 -17
- package/types/uni/ext/lib/uni-getNetworkType/utssdk/interface.d.ts +3 -10
- package/types/uni/ext/lib/uni-getRecorderManager/utssdk/index.d.ts +2 -0
- package/types/uni/ext/lib/uni-getSystemInfo/utssdk/interface.d.ts +3 -10
- package/types/uni/ext/lib/uni-media/utssdk/interface.d.ts +55 -55
- package/types/uni/ext/lib/uni-network/utssdk/app-ios/index.d.ts +67 -0
- package/types/uni/ext/lib/uni-network/utssdk/app-ios/interface.d.ts +530 -0
- package/types/uni/ext/lib/uni-network/utssdk/index.d.ts +10 -4
- package/types/uni/ext/lib/uni-network/utssdk/interface.d.ts +37 -77
- package/types/uni/ext/lib/uni-openAppAuthorizeSetting/utssdk/interface.d.ts +3 -3
- package/types/uni/ext/lib/uni-prompt/utssdk/index.d.ts +0 -8
- package/types/uni/ext/lib/uni-prompt/utssdk/interface.d.ts +35 -112
- package/types/uni/ext/lib/uni-storage/utssdk/interface.d.ts +12 -12
- package/types/uni/ext/lib/uni-websocket/utssdk/index.d.ts +2 -0
- package/types/uni/ext/lib/uni-websocket/utssdk/interface.d.ts +11 -18
- package/types/uni-cloud/index.d.ts +333 -274
- package/types/vue/index.d.ts +1 -1
- package/types/uni/ext/lib/uni-getLocation-tencent/utssdk/index.d.ts +0 -15
- package/types/uni/ext/lib/uni-getLocation-tencent/utssdk/interface.d.ts +0 -93
package/.env
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
UNI_CORE_DIR = "/Users/guoshengqiang/Documents/vuejs-core/packages/
|
|
1
|
+
UNI_CORE_DIR = "/Users/guoshengqiang/Documents/vuejs-core/packages/uni-ext-api/src"
|
|
2
2
|
UNI_EXT_DIR = "/Users/guoshengqiang/Documents/uni-app/api"
|
|
3
3
|
UNI_COMPLIER_META_DIR = "/Users/guoshengqiang/Documents/uni-app-next/packages/uni-uts-v1/lib/ext-api"
|
package/package.json
CHANGED