@dcloudio/uni-app-x 0.7.120 → 0.7.122
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/README.md +87 -0
- package/package.json +1 -1
- package/types/app.d.ts +2 -1
- package/types/dom2-internal/UniCommon.d.ts +7 -2
- package/types/dom2-internal/UniNativeDefines.d.ts +7 -2
- package/types/dom2-internal/UniPage.d.ts +6 -0
- package/types/native/DrawableContext.d.ts +104 -52
- package/types/native/IUniElement.d.ts +4 -2
- package/types/node_modules/.package-lock.json +20 -0
- package/types/node_modules/typescript/LICENSE.txt +55 -0
- package/types/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
- package/types/node_modules/typescript/bin/tsc +2 -0
- package/types/node_modules/typescript/bin/tsserver +2 -0
- package/types/node_modules/typescript/lib/cancellationToken.js +90 -0
- package/types/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/de/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/es/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/it/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/lib.d.ts +22 -0
- package/types/node_modules/typescript/lib/lib.decorators.d.ts +386 -0
- package/types/node_modules/typescript/lib/lib.decorators.legacy.d.ts +22 -0
- package/types/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +33 -0
- package/types/node_modules/typescript/lib/lib.dom.d.ts +28596 -0
- package/types/node_modules/typescript/lib/lib.dom.iterable.d.ts +475 -0
- package/types/node_modules/typescript/lib/lib.es2015.collection.d.ts +147 -0
- package/types/node_modules/typescript/lib/lib.es2015.core.d.ts +597 -0
- package/types/node_modules/typescript/lib/lib.es2015.d.ts +28 -0
- package/types/node_modules/typescript/lib/lib.es2015.generator.d.ts +77 -0
- package/types/node_modules/typescript/lib/lib.es2015.iterable.d.ts +495 -0
- package/types/node_modules/typescript/lib/lib.es2015.promise.d.ts +81 -0
- package/types/node_modules/typescript/lib/lib.es2015.proxy.d.ts +128 -0
- package/types/node_modules/typescript/lib/lib.es2015.reflect.d.ts +144 -0
- package/types/node_modules/typescript/lib/lib.es2015.symbol.d.ts +46 -0
- package/types/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +326 -0
- package/types/node_modules/typescript/lib/lib.es2016.array.include.d.ts +116 -0
- package/types/node_modules/typescript/lib/lib.es2016.d.ts +21 -0
- package/types/node_modules/typescript/lib/lib.es2016.full.d.ts +23 -0
- package/types/node_modules/typescript/lib/lib.es2016.intl.d.ts +31 -0
- package/types/node_modules/typescript/lib/lib.es2017.d.ts +25 -0
- package/types/node_modules/typescript/lib/lib.es2017.date.d.ts +31 -0
- package/types/node_modules/typescript/lib/lib.es2017.full.d.ts +23 -0
- package/types/node_modules/typescript/lib/lib.es2017.intl.d.ts +44 -0
- package/types/node_modules/typescript/lib/lib.es2017.object.d.ts +49 -0
- package/types/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +135 -0
- package/types/node_modules/typescript/lib/lib.es2017.string.d.ts +45 -0
- package/types/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +53 -0
- package/types/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +77 -0
- package/types/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +43 -0
- package/types/node_modules/typescript/lib/lib.es2018.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2018.full.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2018.intl.d.ts +83 -0
- package/types/node_modules/typescript/lib/lib.es2018.promise.d.ts +30 -0
- package/types/node_modules/typescript/lib/lib.es2018.regexp.d.ts +37 -0
- package/types/node_modules/typescript/lib/lib.es2019.array.d.ts +79 -0
- package/types/node_modules/typescript/lib/lib.es2019.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2019.full.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2019.intl.d.ts +23 -0
- package/types/node_modules/typescript/lib/lib.es2019.object.d.ts +33 -0
- package/types/node_modules/typescript/lib/lib.es2019.string.d.ts +37 -0
- package/types/node_modules/typescript/lib/lib.es2019.symbol.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2020.bigint.d.ts +727 -0
- package/types/node_modules/typescript/lib/lib.es2020.d.ts +27 -0
- package/types/node_modules/typescript/lib/lib.es2020.date.d.ts +42 -0
- package/types/node_modules/typescript/lib/lib.es2020.full.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2020.intl.d.ts +474 -0
- package/types/node_modules/typescript/lib/lib.es2020.number.d.ts +28 -0
- package/types/node_modules/typescript/lib/lib.es2020.promise.d.ts +47 -0
- package/types/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +97 -0
- package/types/node_modules/typescript/lib/lib.es2020.string.d.ts +42 -0
- package/types/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +37 -0
- package/types/node_modules/typescript/lib/lib.es2021.d.ts +23 -0
- package/types/node_modules/typescript/lib/lib.es2021.full.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2021.intl.d.ts +166 -0
- package/types/node_modules/typescript/lib/lib.es2021.promise.d.ts +48 -0
- package/types/node_modules/typescript/lib/lib.es2021.string.d.ts +33 -0
- package/types/node_modules/typescript/lib/lib.es2021.weakref.d.ts +76 -0
- package/types/node_modules/typescript/lib/lib.es2022.array.d.ts +121 -0
- package/types/node_modules/typescript/lib/lib.es2022.d.ts +26 -0
- package/types/node_modules/typescript/lib/lib.es2022.error.d.ts +73 -0
- package/types/node_modules/typescript/lib/lib.es2022.full.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2022.intl.d.ts +117 -0
- package/types/node_modules/typescript/lib/lib.es2022.object.d.ts +26 -0
- package/types/node_modules/typescript/lib/lib.es2022.regexp.d.ts +39 -0
- package/types/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts +39 -0
- package/types/node_modules/typescript/lib/lib.es2022.string.d.ts +25 -0
- package/types/node_modules/typescript/lib/lib.es2023.array.d.ts +924 -0
- package/types/node_modules/typescript/lib/lib.es2023.collection.d.ts +21 -0
- package/types/node_modules/typescript/lib/lib.es2023.d.ts +22 -0
- package/types/node_modules/typescript/lib/lib.es2023.full.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.es2023.intl.d.ts +56 -0
- package/types/node_modules/typescript/lib/lib.es5.d.ts +4585 -0
- package/types/node_modules/typescript/lib/lib.es6.d.ts +23 -0
- package/types/node_modules/typescript/lib/lib.esnext.array.d.ts +35 -0
- package/types/node_modules/typescript/lib/lib.esnext.collection.d.ts +106 -0
- package/types/node_modules/typescript/lib/lib.esnext.d.ts +28 -0
- package/types/node_modules/typescript/lib/lib.esnext.decorators.d.ts +28 -0
- package/types/node_modules/typescript/lib/lib.esnext.disposable.d.ts +185 -0
- package/types/node_modules/typescript/lib/lib.esnext.full.d.ts +24 -0
- package/types/node_modules/typescript/lib/lib.esnext.intl.d.ts +21 -0
- package/types/node_modules/typescript/lib/lib.esnext.object.d.ts +29 -0
- package/types/node_modules/typescript/lib/lib.esnext.promise.d.ts +35 -0
- package/types/node_modules/typescript/lib/lib.esnext.regexp.d.ts +25 -0
- package/types/node_modules/typescript/lib/lib.esnext.string.d.ts +29 -0
- package/types/node_modules/typescript/lib/lib.scripthost.d.ts +322 -0
- package/types/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +33 -0
- package/types/node_modules/typescript/lib/lib.webworker.d.ts +9431 -0
- package/types/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +23 -0
- package/types/node_modules/typescript/lib/lib.webworker.iterable.d.ts +276 -0
- package/types/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/tsc.js +129741 -0
- package/types/node_modules/typescript/lib/tsserver.js +621 -0
- package/types/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
- package/types/node_modules/typescript/lib/tsserverlibrary.js +21 -0
- package/types/node_modules/typescript/lib/typesMap.json +497 -0
- package/types/node_modules/typescript/lib/typescript.d.ts +11240 -0
- package/types/node_modules/typescript/lib/typescript.js +194910 -0
- package/types/node_modules/typescript/lib/typingsInstaller.js +236 -0
- package/types/node_modules/typescript/lib/watchGuard.js +53 -0
- package/types/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +1880 -0
- package/types/node_modules/typescript/package.json +116 -0
- package/types/page.d.ts +2 -2
- package/types/uni/env/index.d.ts +2 -1
- package/types/uni/uts-plugin-api/global.d.ts +8 -0
- package/types/uni/uts-plugin-api/index.d.ts +8 -0
- package/types/uni/uts-plugin-api/lib/uni-accelerometer/utssdk/global.d.ts +35 -0
- package/types/uni/uts-plugin-api/lib/uni-accelerometer/utssdk/index.d.ts +17 -0
- package/types/uni/uts-plugin-api/lib/uni-accelerometer/utssdk/interface.d.ts +359 -0
- package/types/uni/uts-plugin-api/lib/uni-authentication/utssdk/interface.d.ts +323 -1294
- package/types/uni/uts-plugin-api/lib/uni-calendar/utssdk/global.d.ts +35 -0
- package/types/uni/uts-plugin-api/lib/uni-calendar/utssdk/index.d.ts +17 -0
- package/types/uni/uts-plugin-api/lib/uni-calendar/utssdk/interface.d.ts +944 -0
- package/types/uni/uts-plugin-api/lib/uni-canvas-dom2/utssdk/interface.d.ts +2 -1
- package/types/uni/{uts-plugin-extend → uts-plugin-api}/lib/uni-compass/utssdk/global.d.ts +16 -6
- package/types/uni/{uts-plugin-extend → uts-plugin-api}/lib/uni-compass/utssdk/index.d.ts +9 -3
- package/types/uni/uts-plugin-api/lib/uni-compass/utssdk/interface.d.ts +353 -0
- package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/global.d.ts +0 -2
- package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/index.d.ts +0 -1
- package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/interface.d.ts +0 -1
- package/types/uni/uts-plugin-api/lib/uni-editor/utssdk/global.d.ts +2 -0
- package/types/uni/uts-plugin-api/lib/uni-editor/utssdk/index.d.ts +1 -0
- package/types/uni/uts-plugin-api/lib/uni-editor/utssdk/interface.d.ts +144 -110
- package/types/uni/uts-plugin-api/lib/uni-getElementById/utssdk/interface.d.ts +1 -0
- package/types/uni/uts-plugin-api/lib/uni-getEnterOptionsSync/utssdk/interface.d.ts +72 -531
- package/types/uni/uts-plugin-api/lib/uni-getLaunchOptionsSync/utssdk/interface.d.ts +72 -531
- package/types/uni/uts-plugin-api/lib/uni-gyroscope/utssdk/global.d.ts +35 -0
- package/types/uni/uts-plugin-api/lib/uni-gyroscope/utssdk/index.d.ts +17 -0
- package/types/uni/uts-plugin-api/lib/uni-gyroscope/utssdk/interface.d.ts +362 -0
- package/types/uni/uts-plugin-api/lib/uni-keyboard/utssdk/interface.d.ts +6 -6
- package/types/uni/uts-plugin-api/lib/uni-makePhoneCall/utssdk/interface.d.ts +72 -68
- package/types/uni/uts-plugin-api/lib/uni-memorywarning/utssdk/global.d.ts +21 -0
- package/types/uni/uts-plugin-api/lib/uni-memorywarning/utssdk/index.d.ts +10 -0
- package/types/uni/uts-plugin-api/lib/uni-memorywarning/utssdk/interface.d.ts +20 -0
- package/types/uni/uts-plugin-api/lib/uni-modal/utssdk/global.d.ts +8 -12
- package/types/uni/uts-plugin-api/lib/uni-modal/utssdk/index.d.ts +4 -6
- package/types/uni/uts-plugin-api/lib/uni-modal/utssdk/interface.d.ts +1741 -905
- package/types/uni/uts-plugin-api/lib/uni-oauth/utssdk/interface.d.ts +12 -12
- package/types/uni/uts-plugin-api/lib/uni-openLocation/utssdk/global.d.ts +23 -0
- package/types/uni/uts-plugin-api/lib/uni-openLocation/utssdk/index.d.ts +11 -0
- package/types/uni/uts-plugin-api/lib/uni-openLocation/utssdk/interface.d.ts +418 -0
- package/types/uni/uts-plugin-api/lib/uni-phoneContact/utssdk/global.d.ts +49 -0
- package/types/uni/uts-plugin-api/lib/uni-phoneContact/utssdk/index.d.ts +24 -0
- package/types/uni/uts-plugin-api/lib/uni-phoneContact/utssdk/interface.d.ts +349 -0
- package/types/uni/uts-plugin-api/lib/uni-privacy/utssdk/global.d.ts +2 -0
- package/types/uni/uts-plugin-api/lib/uni-privacy/utssdk/index.d.ts +1 -0
- package/types/uni/uts-plugin-api/lib/uni-privacy/utssdk/interface.d.ts +83 -124
- package/types/uni/uts-plugin-api/lib/uni-screenBrightness/utssdk/interface.d.ts +1157 -830
- package/types/uni/uts-plugin-api/lib/uni-share/utssdk/interface.d.ts +936 -335
- package/types/uni/uts-plugin-api/lib/uni-showLoading/utssdk/global.d.ts +8 -0
- package/types/uni/uts-plugin-api/lib/uni-showLoading/utssdk/index.d.ts +4 -0
- package/types/uni/uts-plugin-api/lib/uni-showLoading/utssdk/interface.d.ts +1155 -1142
- package/types/uni/uts-plugin-api/lib/uni-vibrate/utssdk/global.d.ts +27 -0
- package/types/uni/uts-plugin-api/lib/uni-vibrate/utssdk/index.d.ts +13 -0
- package/types/uni/uts-plugin-api/lib/uni-vibrate/utssdk/interface.d.ts +88 -0
- package/types/uni/uts-plugin-api/lib/uni-web-view/utssdk/interface.d.ts +6 -6
- package/types/uni/uts-plugin-biz/global.d.ts +9 -0
- package/types/uni/uts-plugin-biz/index.d.ts +9 -0
- package/types/uni/uts-plugin-biz/lib/uni-accelerometer/utssdk/global.d.ts +35 -0
- package/types/uni/uts-plugin-biz/lib/uni-accelerometer/utssdk/index.d.ts +17 -0
- package/types/uni/uts-plugin-biz/lib/uni-accelerometer/utssdk/interface.d.ts +359 -0
- package/types/uni/uts-plugin-biz/lib/uni-authentication/utssdk/global.d.ts +59 -0
- package/types/uni/uts-plugin-biz/lib/uni-authentication/utssdk/index.d.ts +29 -0
- package/types/uni/uts-plugin-biz/lib/uni-authentication/utssdk/interface.d.ts +371 -0
- package/types/uni/uts-plugin-biz/lib/uni-calendar/utssdk/global.d.ts +35 -0
- package/types/uni/uts-plugin-biz/lib/uni-calendar/utssdk/index.d.ts +17 -0
- package/types/uni/uts-plugin-biz/lib/uni-calendar/utssdk/interface.d.ts +944 -0
- package/types/uni/uts-plugin-biz/lib/uni-compass/utssdk/global.d.ts +35 -0
- package/types/uni/uts-plugin-biz/lib/uni-compass/utssdk/index.d.ts +17 -0
- package/types/uni/uts-plugin-biz/lib/uni-compass/utssdk/interface.d.ts +353 -0
- package/types/uni/uts-plugin-biz/lib/uni-gyroscope/utssdk/global.d.ts +35 -0
- package/types/uni/uts-plugin-biz/lib/uni-gyroscope/utssdk/index.d.ts +17 -0
- package/types/uni/uts-plugin-biz/lib/uni-gyroscope/utssdk/interface.d.ts +362 -0
- package/types/uni/uts-plugin-biz/lib/uni-memorywarning/utssdk/global.d.ts +21 -0
- package/types/uni/uts-plugin-biz/lib/uni-memorywarning/utssdk/index.d.ts +10 -0
- package/types/uni/uts-plugin-biz/lib/uni-memorywarning/utssdk/interface.d.ts +20 -0
- package/types/uni/uts-plugin-biz/lib/uni-phoneContact/utssdk/global.d.ts +49 -0
- package/types/uni/uts-plugin-biz/lib/uni-phoneContact/utssdk/index.d.ts +24 -0
- package/types/uni/uts-plugin-biz/lib/uni-phoneContact/utssdk/interface.d.ts +349 -0
- package/types/uni/uts-plugin-biz/lib/uni-screenBrightness/utssdk/global.d.ts +57 -0
- package/types/uni/uts-plugin-biz/lib/uni-screenBrightness/utssdk/index.d.ts +28 -0
- package/types/uni/uts-plugin-biz/lib/uni-screenBrightness/utssdk/interface.d.ts +1172 -0
- package/types/uni/uts-plugin-biz/lib/uni-verify/utssdk/interface.d.ts +6 -1
- package/types/uni/uts-plugin-biz/lib/uni-vibrate/utssdk/global.d.ts +27 -0
- package/types/uni/uts-plugin-biz/lib/uni-vibrate/utssdk/index.d.ts +13 -0
- package/types/uni/uts-plugin-biz/lib/uni-vibrate/utssdk/interface.d.ts +88 -0
- package/types/uni/uts-plugin-component/global.d.ts +8 -1
- package/types/uni/uts-plugin-component/index.d.ts +8 -1
- package/types/uni/uts-plugin-component/lib/uni-accelerometer/utssdk/global.d.ts +35 -0
- package/types/uni/uts-plugin-component/lib/uni-accelerometer/utssdk/index.d.ts +17 -0
- package/types/uni/uts-plugin-component/lib/uni-accelerometer/utssdk/interface.d.ts +359 -0
- package/types/uni/uts-plugin-component/lib/uni-authentication/utssdk/interface.d.ts +1342 -371
- package/types/uni/uts-plugin-component/lib/uni-calendar/utssdk/global.d.ts +35 -0
- package/types/uni/uts-plugin-component/lib/uni-calendar/utssdk/index.d.ts +17 -0
- package/types/uni/uts-plugin-component/lib/uni-calendar/utssdk/interface.d.ts +944 -0
- package/types/uni/uts-plugin-component/lib/uni-canvas-dom2/utssdk/interface.d.ts +2 -1
- package/types/uni/uts-plugin-component/lib/uni-compass/utssdk/global.d.ts +35 -0
- package/types/uni/uts-plugin-component/lib/uni-compass/utssdk/index.d.ts +17 -0
- package/types/uni/uts-plugin-component/lib/uni-compass/utssdk/interface.d.ts +353 -0
- package/types/uni/uts-plugin-component/lib/uni-dialogPage/utssdk/global.d.ts +0 -2
- package/types/uni/uts-plugin-component/lib/uni-dialogPage/utssdk/index.d.ts +0 -1
- package/types/uni/uts-plugin-component/lib/uni-dialogPage/utssdk/interface.d.ts +0 -1
- package/types/uni/uts-plugin-component/lib/uni-editor/utssdk/global.d.ts +2 -0
- package/types/uni/uts-plugin-component/lib/uni-editor/utssdk/index.d.ts +1 -0
- package/types/uni/uts-plugin-component/lib/uni-editor/utssdk/interface.d.ts +144 -110
- package/types/uni/uts-plugin-component/lib/uni-editor-global/utssdk/interface.d.ts +15 -5
- package/types/uni/uts-plugin-component/lib/uni-form-global/utssdk/interface.d.ts +1 -1
- package/types/uni/uts-plugin-component/lib/uni-getElementById/utssdk/interface.d.ts +1 -0
- package/types/uni/uts-plugin-component/lib/uni-getEnterOptionsSync/utssdk/interface.d.ts +531 -72
- package/types/uni/uts-plugin-component/lib/uni-getLaunchOptionsSync/utssdk/interface.d.ts +531 -72
- package/types/uni/uts-plugin-component/lib/uni-gyroscope/utssdk/global.d.ts +35 -0
- package/types/uni/uts-plugin-component/lib/uni-gyroscope/utssdk/index.d.ts +17 -0
- package/types/uni/uts-plugin-component/lib/uni-gyroscope/utssdk/interface.d.ts +362 -0
- package/types/uni/uts-plugin-component/lib/uni-keyboard/utssdk/interface.d.ts +6 -6
- package/types/uni/uts-plugin-component/lib/uni-makePhoneCall/utssdk/interface.d.ts +73 -67
- package/types/uni/uts-plugin-component/lib/uni-match-media-global/utssdk/interface.d.ts +1 -1
- package/types/uni/uts-plugin-component/lib/uni-memorywarning/utssdk/global.d.ts +21 -0
- package/types/uni/uts-plugin-component/lib/uni-memorywarning/utssdk/index.d.ts +10 -0
- package/types/uni/uts-plugin-component/lib/uni-memorywarning/utssdk/interface.d.ts +20 -0
- package/types/uni/uts-plugin-component/lib/uni-modal/utssdk/global.d.ts +8 -12
- package/types/uni/uts-plugin-component/lib/uni-modal/utssdk/index.d.ts +4 -6
- package/types/uni/uts-plugin-component/lib/uni-modal/utssdk/interface.d.ts +1743 -291
- package/types/uni/uts-plugin-component/lib/uni-navigator-global/utssdk/interface.d.ts +1 -1
- package/types/uni/uts-plugin-component/lib/uni-oauth/utssdk/interface.d.ts +12 -12
- package/types/uni/uts-plugin-component/lib/uni-openLocation/utssdk/global.d.ts +23 -0
- package/types/uni/uts-plugin-component/lib/uni-openLocation/utssdk/index.d.ts +11 -0
- package/types/uni/uts-plugin-component/lib/uni-openLocation/utssdk/interface.d.ts +420 -0
- package/types/uni/uts-plugin-component/lib/uni-phoneContact/utssdk/global.d.ts +49 -0
- package/types/uni/uts-plugin-component/lib/uni-phoneContact/utssdk/index.d.ts +24 -0
- package/types/uni/uts-plugin-component/lib/uni-phoneContact/utssdk/interface.d.ts +349 -0
- package/types/uni/uts-plugin-component/lib/uni-privacy/utssdk/global.d.ts +2 -0
- package/types/uni/uts-plugin-component/lib/uni-privacy/utssdk/index.d.ts +1 -0
- package/types/uni/uts-plugin-component/lib/uni-privacy/utssdk/interface.d.ts +132 -75
- package/types/uni/uts-plugin-component/lib/uni-progress-global/utssdk/interface.d.ts +1 -1
- package/types/uni/uts-plugin-component/lib/uni-screenBrightness/utssdk/interface.d.ts +1175 -314
- package/types/uni/uts-plugin-component/lib/uni-share/utssdk/interface.d.ts +936 -335
- package/types/uni/uts-plugin-component/lib/uni-showLoading/utssdk/global.d.ts +8 -0
- package/types/uni/uts-plugin-component/lib/uni-showLoading/utssdk/index.d.ts +4 -0
- package/types/uni/uts-plugin-component/lib/uni-showLoading/utssdk/interface.d.ts +1617 -446
- package/types/uni/uts-plugin-component/lib/uni-vibrate/utssdk/global.d.ts +27 -0
- package/types/uni/uts-plugin-component/lib/uni-vibrate/utssdk/index.d.ts +13 -0
- package/types/uni/uts-plugin-component/lib/uni-vibrate/utssdk/interface.d.ts +88 -0
- package/types/uni/uts-plugin-component/lib/uni-web-view/utssdk/interface.d.ts +6 -6
- package/types/uni/uts-plugin-extend/global.d.ts +0 -1
- package/types/uni/uts-plugin-extend/index.d.ts +0 -1
- package/types/uni/uts-plugin-extend/lib/uni-openLocation/utssdk/interface.d.ts +2 -1
- package/types/vue/LifeCycle.d.ts +2 -2
- package/types/uni/uts-plugin-extend/lib/uni-accelerometer/utssdk/global.d.ts +0 -12
- package/types/uni/uts-plugin-extend/lib/uni-accelerometer/utssdk/index.d.ts +0 -1
- package/types/uni/uts-plugin-extend/lib/uni-accelerometer/utssdk/interface.d.ts +0 -917
- package/types/uni/uts-plugin-extend/lib/uni-compass/utssdk/interface.d.ts +0 -1095
- package/types/uni/uts-plugin-extend/lib/uni-memory/utssdk/global.d.ts +0 -9
- package/types/uni/uts-plugin-extend/lib/uni-memory/utssdk/index.d.ts +0 -1
- package/types/uni/uts-plugin-extend/lib/uni-memory/utssdk/interface.d.ts +0 -253
|
@@ -20,7 +20,7 @@ export type OnShowOptions = {
|
|
|
20
20
|
* "osVer": "3,0",
|
|
21
21
|
* "uniVer": "4.31",
|
|
22
22
|
* "unixVer": "4.61",
|
|
23
|
-
* "unixVaporVer": "
|
|
23
|
+
* "unixVaporVer": "5.0"
|
|
24
24
|
* }
|
|
25
25
|
* },
|
|
26
26
|
* "mp": {
|
|
@@ -93,7 +93,7 @@ export type OnShowOptions = {
|
|
|
93
93
|
* "osVer": "5.0.0",
|
|
94
94
|
* "uniVer": "4.81",
|
|
95
95
|
* "unixVer": "4.81",
|
|
96
|
-
* "unixVaporVer": "
|
|
96
|
+
* "unixVaporVer": "5.0"
|
|
97
97
|
* }
|
|
98
98
|
* },
|
|
99
99
|
* "mp": {
|
|
@@ -166,7 +166,7 @@ export type OnShowOptions = {
|
|
|
166
166
|
* "osVer": "5.0.0",
|
|
167
167
|
* "uniVer": "4.81",
|
|
168
168
|
* "unixVer": "4.81",
|
|
169
|
-
* "unixVaporVer": "
|
|
169
|
+
* "unixVaporVer": "5.0"
|
|
170
170
|
* }
|
|
171
171
|
* },
|
|
172
172
|
* "mp": {
|
|
@@ -240,7 +240,7 @@ export type OnShowOptions = {
|
|
|
240
240
|
* "osVer": "5.0.0",
|
|
241
241
|
* "uniVer": "4.81",
|
|
242
242
|
* "unixVer": "4.81",
|
|
243
|
-
* "unixVaporVer": "
|
|
243
|
+
* "unixVaporVer": "5.0"
|
|
244
244
|
* }
|
|
245
245
|
* },
|
|
246
246
|
* "mp": {
|
|
@@ -291,316 +291,7 @@ export type OnShowOptions = {
|
|
|
291
291
|
* }
|
|
292
292
|
* }
|
|
293
293
|
*/
|
|
294
|
-
query?: UTSJSONObject | null
|
|
295
|
-
/**
|
|
296
|
-
* 需要基础库: `2.20.0`
|
|
297
|
-
*
|
|
298
|
-
* API 类别
|
|
299
|
-
*
|
|
300
|
-
* 可选值:
|
|
301
|
-
* - 'default': 默认类别;
|
|
302
|
-
* - 'nativeFunctionalized': 原生功能化,视频号直播商品、商品橱窗等场景打开的小程序;
|
|
303
|
-
* - 'browseOnly': 仅浏览,朋友圈快照页等场景打开的小程序;
|
|
304
|
-
* - 'embedded': 内嵌,通过打开半屏小程序能力打开的小程序;
|
|
305
|
-
* - 'chatTool': 聊天工具,通过打开聊天工具能力打开的小程序;
|
|
306
|
-
*
|
|
307
|
-
* @uniPlatform {
|
|
308
|
-
* "mp": {
|
|
309
|
-
* "weixin": {
|
|
310
|
-
* "hostVer": "2.20.0",
|
|
311
|
-
* "uniVer": "√",
|
|
312
|
-
* "unixVer": "4.41"
|
|
313
|
-
* },
|
|
314
|
-
* "alipay": {
|
|
315
|
-
* "hostVer": "-",
|
|
316
|
-
* "uniVer": "-",
|
|
317
|
-
* "unixVer": "-"
|
|
318
|
-
* },
|
|
319
|
-
* "baidu": {
|
|
320
|
-
* "hostVer": "-",
|
|
321
|
-
* "uniVer": "-",
|
|
322
|
-
* "unixVer": "-"
|
|
323
|
-
* },
|
|
324
|
-
* "toutiao": {
|
|
325
|
-
* "hostVer": "-",
|
|
326
|
-
* "uniVer": "-",
|
|
327
|
-
* "unixVer": "-"
|
|
328
|
-
* },
|
|
329
|
-
* "lark": {
|
|
330
|
-
* "hostVer": "-",
|
|
331
|
-
* "uniVer": "-",
|
|
332
|
-
* "unixVer": "-"
|
|
333
|
-
* },
|
|
334
|
-
* "qq": {
|
|
335
|
-
* "hostVer": "-",
|
|
336
|
-
* "uniVer": "-",
|
|
337
|
-
* "unixVer": "-"
|
|
338
|
-
* },
|
|
339
|
-
* "kuaishou": {
|
|
340
|
-
* "hostVer": "-",
|
|
341
|
-
* "uniVer": "-",
|
|
342
|
-
* "unixVer": "-"
|
|
343
|
-
* },
|
|
344
|
-
* "jd": {
|
|
345
|
-
* "hostVer": "-",
|
|
346
|
-
* "uniVer": "-",
|
|
347
|
-
* "unixVer": "-"
|
|
348
|
-
* }
|
|
349
|
-
* }
|
|
350
|
-
* }
|
|
351
|
-
*/
|
|
352
|
-
apiCategory?: "default" | "nativeFunctionalized" | "browseOnly" | "embedded" | "chatTool" | null;
|
|
353
|
-
/**
|
|
354
|
-
* 打开的文件信息数组,只有从聊天素材场景打开(scene为1173)才会携带该参数
|
|
355
|
-
*
|
|
356
|
-
* @uniPlatform {
|
|
357
|
-
* "mp": {
|
|
358
|
-
* "weixin": {
|
|
359
|
-
* "hostVer": "√",
|
|
360
|
-
* "uniVer": "√",
|
|
361
|
-
* "unixVer": "4.41"
|
|
362
|
-
* },
|
|
363
|
-
* "alipay": {
|
|
364
|
-
* "hostVer": "-",
|
|
365
|
-
* "uniVer": "-",
|
|
366
|
-
* "unixVer": "-"
|
|
367
|
-
* },
|
|
368
|
-
* "baidu": {
|
|
369
|
-
* "hostVer": "-",
|
|
370
|
-
* "uniVer": "-",
|
|
371
|
-
* "unixVer": "-"
|
|
372
|
-
* },
|
|
373
|
-
* "toutiao": {
|
|
374
|
-
* "hostVer": "-",
|
|
375
|
-
* "uniVer": "-",
|
|
376
|
-
* "unixVer": "-"
|
|
377
|
-
* },
|
|
378
|
-
* "lark": {
|
|
379
|
-
* "hostVer": "-",
|
|
380
|
-
* "uniVer": "-",
|
|
381
|
-
* "unixVer": "-"
|
|
382
|
-
* },
|
|
383
|
-
* "qq": {
|
|
384
|
-
* "hostVer": "-",
|
|
385
|
-
* "uniVer": "-",
|
|
386
|
-
* "unixVer": "-"
|
|
387
|
-
* },
|
|
388
|
-
* "kuaishou": {
|
|
389
|
-
* "hostVer": "-",
|
|
390
|
-
* "uniVer": "-",
|
|
391
|
-
* "unixVer": "-"
|
|
392
|
-
* },
|
|
393
|
-
* "jd": {
|
|
394
|
-
* "hostVer": "-",
|
|
395
|
-
* "uniVer": "-",
|
|
396
|
-
* "unixVer": "-"
|
|
397
|
-
* }
|
|
398
|
-
* }
|
|
399
|
-
* }
|
|
400
|
-
*/
|
|
401
|
-
forwardMaterials?: any | null;
|
|
402
|
-
/**
|
|
403
|
-
* 来源信息。从另一个小程序、公众号或 App 进入小程序时返回。否则返回 `{}`。(参见后文注意)
|
|
404
|
-
*
|
|
405
|
-
* @uniPlatform {
|
|
406
|
-
* "mp": {
|
|
407
|
-
* "weixin": {
|
|
408
|
-
* "hostVer": "√",
|
|
409
|
-
* "uniVer": "√",
|
|
410
|
-
* "unixVer": "4.41"
|
|
411
|
-
* },
|
|
412
|
-
* "alipay": {
|
|
413
|
-
* "hostVer": "-",
|
|
414
|
-
* "uniVer": "-",
|
|
415
|
-
* "unixVer": "-"
|
|
416
|
-
* },
|
|
417
|
-
* "baidu": {
|
|
418
|
-
* "hostVer": "-",
|
|
419
|
-
* "uniVer": "-",
|
|
420
|
-
* "unixVer": "-"
|
|
421
|
-
* },
|
|
422
|
-
* "toutiao": {
|
|
423
|
-
* "hostVer": "-",
|
|
424
|
-
* "uniVer": "-",
|
|
425
|
-
* "unixVer": "-"
|
|
426
|
-
* },
|
|
427
|
-
* "lark": {
|
|
428
|
-
* "hostVer": "-",
|
|
429
|
-
* "uniVer": "-",
|
|
430
|
-
* "unixVer": "-"
|
|
431
|
-
* },
|
|
432
|
-
* "qq": {
|
|
433
|
-
* "hostVer": "-",
|
|
434
|
-
* "uniVer": "-",
|
|
435
|
-
* "unixVer": "-"
|
|
436
|
-
* },
|
|
437
|
-
* "kuaishou": {
|
|
438
|
-
* "hostVer": "-",
|
|
439
|
-
* "uniVer": "-",
|
|
440
|
-
* "unixVer": "-"
|
|
441
|
-
* },
|
|
442
|
-
* "jd": {
|
|
443
|
-
* "hostVer": "-",
|
|
444
|
-
* "uniVer": "-",
|
|
445
|
-
* "unixVer": "-"
|
|
446
|
-
* }
|
|
447
|
-
* }
|
|
448
|
-
* }
|
|
449
|
-
*/
|
|
450
|
-
referrerInfo?: OnShowOptionsReferrerInfo | null;
|
|
451
|
-
/**
|
|
452
|
-
* @tutorial_weixin https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/scene.html
|
|
453
|
-
*
|
|
454
|
-
* @uniPlatform {
|
|
455
|
-
* "mp": {
|
|
456
|
-
* "weixin": {
|
|
457
|
-
* "hostVer": "√",
|
|
458
|
-
* "uniVer": "√",
|
|
459
|
-
* "unixVer": "4.41"
|
|
460
|
-
* },
|
|
461
|
-
* "alipay": {
|
|
462
|
-
* "hostVer": "-",
|
|
463
|
-
* "uniVer": "-",
|
|
464
|
-
* "unixVer": "-"
|
|
465
|
-
* },
|
|
466
|
-
* "baidu": {
|
|
467
|
-
* "hostVer": "-",
|
|
468
|
-
* "uniVer": "-",
|
|
469
|
-
* "unixVer": "-"
|
|
470
|
-
* },
|
|
471
|
-
* "toutiao": {
|
|
472
|
-
* "hostVer": "-",
|
|
473
|
-
* "uniVer": "-",
|
|
474
|
-
* "unixVer": "-"
|
|
475
|
-
* },
|
|
476
|
-
* "lark": {
|
|
477
|
-
* "hostVer": "-",
|
|
478
|
-
* "uniVer": "-",
|
|
479
|
-
* "unixVer": "-"
|
|
480
|
-
* },
|
|
481
|
-
* "qq": {
|
|
482
|
-
* "hostVer": "-",
|
|
483
|
-
* "uniVer": "-",
|
|
484
|
-
* "unixVer": "-"
|
|
485
|
-
* },
|
|
486
|
-
* "kuaishou": {
|
|
487
|
-
* "hostVer": "-",
|
|
488
|
-
* "uniVer": "-",
|
|
489
|
-
* "unixVer": "-"
|
|
490
|
-
* },
|
|
491
|
-
* "jd": {
|
|
492
|
-
* "hostVer": "-",
|
|
493
|
-
* "uniVer": "-",
|
|
494
|
-
* "unixVer": "-"
|
|
495
|
-
* }
|
|
496
|
-
* }
|
|
497
|
-
* }
|
|
498
|
-
*/
|
|
499
|
-
scene?: number | null;
|
|
500
|
-
/**
|
|
501
|
-
* 从微信群聊/单聊打开小程序时,chatType 表示具体微信群聊/单聊类型
|
|
502
|
-
*
|
|
503
|
-
* 可选值:
|
|
504
|
-
* - 1: 微信联系人单聊;
|
|
505
|
-
* - 2: 企业微信联系人单聊;
|
|
506
|
-
* - 3: 普通微信群聊;
|
|
507
|
-
* - 4: 企业微信互通群聊;
|
|
508
|
-
*
|
|
509
|
-
* @uniPlatform {
|
|
510
|
-
* "mp": {
|
|
511
|
-
* "weixin": {
|
|
512
|
-
* "hostVer": "√",
|
|
513
|
-
* "uniVer": "√",
|
|
514
|
-
* "unixVer": "4.41"
|
|
515
|
-
* },
|
|
516
|
-
* "alipay": {
|
|
517
|
-
* "hostVer": "-",
|
|
518
|
-
* "uniVer": "-",
|
|
519
|
-
* "unixVer": "-"
|
|
520
|
-
* },
|
|
521
|
-
* "baidu": {
|
|
522
|
-
* "hostVer": "-",
|
|
523
|
-
* "uniVer": "-",
|
|
524
|
-
* "unixVer": "-"
|
|
525
|
-
* },
|
|
526
|
-
* "toutiao": {
|
|
527
|
-
* "hostVer": "-",
|
|
528
|
-
* "uniVer": "-",
|
|
529
|
-
* "unixVer": "-"
|
|
530
|
-
* },
|
|
531
|
-
* "lark": {
|
|
532
|
-
* "hostVer": "-",
|
|
533
|
-
* "uniVer": "-",
|
|
534
|
-
* "unixVer": "-"
|
|
535
|
-
* },
|
|
536
|
-
* "qq": {
|
|
537
|
-
* "hostVer": "-",
|
|
538
|
-
* "uniVer": "-",
|
|
539
|
-
* "unixVer": "-"
|
|
540
|
-
* },
|
|
541
|
-
* "kuaishou": {
|
|
542
|
-
* "hostVer": "-",
|
|
543
|
-
* "uniVer": "-",
|
|
544
|
-
* "unixVer": "-"
|
|
545
|
-
* },
|
|
546
|
-
* "jd": {
|
|
547
|
-
* "hostVer": "-",
|
|
548
|
-
* "uniVer": "-",
|
|
549
|
-
* "unixVer": "-"
|
|
550
|
-
* }
|
|
551
|
-
* }
|
|
552
|
-
* }
|
|
553
|
-
*/
|
|
554
|
-
chatType?: 1 | 2 | 3 | 4 | null;
|
|
555
|
-
/**
|
|
556
|
-
* @tutorial_weixin https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share.html#获取更多转发信息
|
|
557
|
-
*
|
|
558
|
-
* @uniPlatform {
|
|
559
|
-
* "mp": {
|
|
560
|
-
* "weixin": {
|
|
561
|
-
* "hostVer": "√",
|
|
562
|
-
* "uniVer": "√",
|
|
563
|
-
* "unixVer": "4.41"
|
|
564
|
-
* },
|
|
565
|
-
* "alipay": {
|
|
566
|
-
* "hostVer": "-",
|
|
567
|
-
* "uniVer": "-",
|
|
568
|
-
* "unixVer": "-"
|
|
569
|
-
* },
|
|
570
|
-
* "baidu": {
|
|
571
|
-
* "hostVer": "-",
|
|
572
|
-
* "uniVer": "-",
|
|
573
|
-
* "unixVer": "-"
|
|
574
|
-
* },
|
|
575
|
-
* "toutiao": {
|
|
576
|
-
* "hostVer": "-",
|
|
577
|
-
* "uniVer": "-",
|
|
578
|
-
* "unixVer": "-"
|
|
579
|
-
* },
|
|
580
|
-
* "lark": {
|
|
581
|
-
* "hostVer": "-",
|
|
582
|
-
* "uniVer": "-",
|
|
583
|
-
* "unixVer": "-"
|
|
584
|
-
* },
|
|
585
|
-
* "qq": {
|
|
586
|
-
* "hostVer": "-",
|
|
587
|
-
* "uniVer": "-",
|
|
588
|
-
* "unixVer": "-"
|
|
589
|
-
* },
|
|
590
|
-
* "kuaishou": {
|
|
591
|
-
* "hostVer": "-",
|
|
592
|
-
* "uniVer": "-",
|
|
593
|
-
* "unixVer": "-"
|
|
594
|
-
* },
|
|
595
|
-
* "jd": {
|
|
596
|
-
* "hostVer": "-",
|
|
597
|
-
* "uniVer": "-",
|
|
598
|
-
* "unixVer": "-"
|
|
599
|
-
* }
|
|
600
|
-
* }
|
|
601
|
-
* }
|
|
602
|
-
*/
|
|
603
|
-
shareTicket?: string | null;
|
|
294
|
+
query?: UTSJSONObject | null
|
|
604
295
|
}
|
|
605
296
|
|
|
606
297
|
export type GetEnterOptionsSync = () => OnShowOptions
|
|
@@ -612,222 +303,72 @@ export interface Uni {
|
|
|
612
303
|
* @tutorial https://doc.dcloud.net.cn/uni-app-x/api/get-enter-options-sync.html
|
|
613
304
|
* @tutorial_uni_app_x https://doc.dcloud.net.cn/uni-app-x/api/get-enter-options-sync.html
|
|
614
305
|
* @tutorial_uni_app https://uniapp.dcloud.net.cn/api/getEnterOptionsSync.html
|
|
615
|
-
* @uniPlatform {
|
|
616
|
-
*
|
|
617
|
-
*
|
|
618
|
-
*
|
|
619
|
-
*
|
|
620
|
-
*
|
|
621
|
-
*
|
|
622
|
-
*
|
|
623
|
-
*
|
|
624
|
-
*
|
|
625
|
-
*
|
|
626
|
-
*
|
|
627
|
-
*
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
*
|
|
631
|
-
*
|
|
632
|
-
*
|
|
633
|
-
*
|
|
634
|
-
*
|
|
635
|
-
*
|
|
636
|
-
*
|
|
637
|
-
*
|
|
638
|
-
*
|
|
639
|
-
*
|
|
640
|
-
*
|
|
641
|
-
*
|
|
642
|
-
*
|
|
643
|
-
*
|
|
644
|
-
*
|
|
645
|
-
*
|
|
646
|
-
*
|
|
647
|
-
*
|
|
648
|
-
*
|
|
649
|
-
*
|
|
650
|
-
*
|
|
651
|
-
*
|
|
652
|
-
*
|
|
653
|
-
*
|
|
654
|
-
*
|
|
655
|
-
*
|
|
656
|
-
*
|
|
657
|
-
*
|
|
658
|
-
*
|
|
659
|
-
*
|
|
660
|
-
*
|
|
661
|
-
*
|
|
662
|
-
*
|
|
663
|
-
*
|
|
664
|
-
*
|
|
665
|
-
*
|
|
666
|
-
*
|
|
667
|
-
*
|
|
668
|
-
*
|
|
669
|
-
*
|
|
670
|
-
*
|
|
671
|
-
*
|
|
672
|
-
*
|
|
673
|
-
*
|
|
674
|
-
*
|
|
675
|
-
*
|
|
676
|
-
*
|
|
677
|
-
*
|
|
678
|
-
*
|
|
679
|
-
*
|
|
680
|
-
* }
|
|
681
|
-
* @tutorial_weixin https://developers.weixin.qq.com/miniprogram/dev/api/base/app/life-cycle/wx.getEnterOptionsSync.html
|
|
306
|
+
* @uniPlatform {
|
|
307
|
+
* "app": {
|
|
308
|
+
* "android": {
|
|
309
|
+
* "osVer": "5.0",
|
|
310
|
+
* "uniVer": "x",
|
|
311
|
+
* "unixVer": "4.25"
|
|
312
|
+
* },
|
|
313
|
+
* "ios": {
|
|
314
|
+
* "osVer": "12.0",
|
|
315
|
+
* "uniVer": "x",
|
|
316
|
+
* "unixVer": "4.25"
|
|
317
|
+
* },
|
|
318
|
+
* "harmony": {
|
|
319
|
+
* "osVer": "3,0",
|
|
320
|
+
* "uniVer": "4.31",
|
|
321
|
+
* "unixVer": "4.61",
|
|
322
|
+
* "unixVaporVer": "5.0"
|
|
323
|
+
* }
|
|
324
|
+
* },
|
|
325
|
+
* "mp": {
|
|
326
|
+
* "weixin": {
|
|
327
|
+
* "hostVer": "√",
|
|
328
|
+
* "uniVer": "√",
|
|
329
|
+
* "unixVer": "4.41"
|
|
330
|
+
* },
|
|
331
|
+
* "alipay": {
|
|
332
|
+
* "hostVer": "√",
|
|
333
|
+
* "uniVer": "√",
|
|
334
|
+
* "unixVer": "x"
|
|
335
|
+
* },
|
|
336
|
+
* "baidu": {
|
|
337
|
+
* "hostVer": "√",
|
|
338
|
+
* "uniVer": "√",
|
|
339
|
+
* "unixVer": "x"
|
|
340
|
+
* },
|
|
341
|
+
* "toutiao": {
|
|
342
|
+
* "hostVer": "√",
|
|
343
|
+
* "uniVer": "√",
|
|
344
|
+
* "unixVer": "x"
|
|
345
|
+
* },
|
|
346
|
+
* "lark": {
|
|
347
|
+
* "hostVer": "√",
|
|
348
|
+
* "uniVer": "√",
|
|
349
|
+
* "unixVer": "x"
|
|
350
|
+
* },
|
|
351
|
+
* "qq": {
|
|
352
|
+
* "hostVer": "√",
|
|
353
|
+
* "uniVer": "√",
|
|
354
|
+
* "unixVer": "x"
|
|
355
|
+
* },
|
|
356
|
+
* "kuaishou": {
|
|
357
|
+
* "hostVer": "√",
|
|
358
|
+
* "uniVer": "√",
|
|
359
|
+
* "unixVer": "x"
|
|
360
|
+
* },
|
|
361
|
+
* "jd": {
|
|
362
|
+
* "hostVer": "√",
|
|
363
|
+
* "uniVer": "√",
|
|
364
|
+
* "unixVer": "x"
|
|
365
|
+
* }
|
|
366
|
+
* },
|
|
367
|
+
* "web": {
|
|
368
|
+
* "uniVer": "√",
|
|
369
|
+
* "unixVer": "4.0"
|
|
370
|
+
* }
|
|
371
|
+
* }
|
|
682
372
|
*/
|
|
683
373
|
getEnterOptionsSync(): OnShowOptions
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
/**
|
|
687
|
-
* 来源信息。从另一个小程序、公众号或 App 进入小程序时返回。否则返回 `{}`。(参见后文注意)
|
|
688
|
-
*
|
|
689
|
-
* @uniPlatform {
|
|
690
|
-
* "mp": {
|
|
691
|
-
* "weixin": {
|
|
692
|
-
* "hostVer": "√",
|
|
693
|
-
* "uniVer": "√",
|
|
694
|
-
* "unixVer": "4.41"
|
|
695
|
-
* },
|
|
696
|
-
* "alipay": {
|
|
697
|
-
* "hostVer": "-",
|
|
698
|
-
* "uniVer": "-",
|
|
699
|
-
* "unixVer": "-"
|
|
700
|
-
* },
|
|
701
|
-
* "baidu": {
|
|
702
|
-
* "hostVer": "-",
|
|
703
|
-
* "uniVer": "-",
|
|
704
|
-
* "unixVer": "-"
|
|
705
|
-
* },
|
|
706
|
-
* "toutiao": {
|
|
707
|
-
* "hostVer": "-",
|
|
708
|
-
* "uniVer": "-",
|
|
709
|
-
* "unixVer": "-"
|
|
710
|
-
* },
|
|
711
|
-
* "lark": {
|
|
712
|
-
* "hostVer": "-",
|
|
713
|
-
* "uniVer": "-",
|
|
714
|
-
* "unixVer": "-"
|
|
715
|
-
* },
|
|
716
|
-
* "qq": {
|
|
717
|
-
* "hostVer": "-",
|
|
718
|
-
* "uniVer": "-",
|
|
719
|
-
* "unixVer": "-"
|
|
720
|
-
* },
|
|
721
|
-
* "kuaishou": {
|
|
722
|
-
* "hostVer": "-",
|
|
723
|
-
* "uniVer": "-",
|
|
724
|
-
* "unixVer": "-"
|
|
725
|
-
* },
|
|
726
|
-
* "jd": {
|
|
727
|
-
* "hostVer": "-",
|
|
728
|
-
* "uniVer": "-",
|
|
729
|
-
* "unixVer": "-"
|
|
730
|
-
* }
|
|
731
|
-
* }
|
|
732
|
-
* }
|
|
733
|
-
*/
|
|
734
|
-
export type OnShowOptionsReferrerInfo = {
|
|
735
|
-
/**
|
|
736
|
-
* 来源小程序、公众号或 App 的 appId
|
|
737
|
-
*
|
|
738
|
-
* @uniPlatform {
|
|
739
|
-
* "mp": {
|
|
740
|
-
* "weixin": {
|
|
741
|
-
* "hostVer": "√",
|
|
742
|
-
* "uniVer": "√",
|
|
743
|
-
* "unixVer": "4.41"
|
|
744
|
-
* },
|
|
745
|
-
* "alipay": {
|
|
746
|
-
* "hostVer": "-",
|
|
747
|
-
* "uniVer": "-",
|
|
748
|
-
* "unixVer": "-"
|
|
749
|
-
* },
|
|
750
|
-
* "baidu": {
|
|
751
|
-
* "hostVer": "-",
|
|
752
|
-
* "uniVer": "-",
|
|
753
|
-
* "unixVer": "-"
|
|
754
|
-
* },
|
|
755
|
-
* "toutiao": {
|
|
756
|
-
* "hostVer": "-",
|
|
757
|
-
* "uniVer": "-",
|
|
758
|
-
* "unixVer": "-"
|
|
759
|
-
* },
|
|
760
|
-
* "lark": {
|
|
761
|
-
* "hostVer": "-",
|
|
762
|
-
* "uniVer": "-",
|
|
763
|
-
* "unixVer": "-"
|
|
764
|
-
* },
|
|
765
|
-
* "qq": {
|
|
766
|
-
* "hostVer": "-",
|
|
767
|
-
* "uniVer": "-",
|
|
768
|
-
* "unixVer": "-"
|
|
769
|
-
* },
|
|
770
|
-
* "kuaishou": {
|
|
771
|
-
* "hostVer": "-",
|
|
772
|
-
* "uniVer": "-",
|
|
773
|
-
* "unixVer": "-"
|
|
774
|
-
* },
|
|
775
|
-
* "jd": {
|
|
776
|
-
* "hostVer": "-",
|
|
777
|
-
* "uniVer": "-",
|
|
778
|
-
* "unixVer": "-"
|
|
779
|
-
* }
|
|
780
|
-
* }
|
|
781
|
-
* }
|
|
782
|
-
*/
|
|
783
|
-
appId?: string | null;
|
|
784
|
-
/**
|
|
785
|
-
* 来源小程序传过来的数据,scene=1037或1038时支持
|
|
786
|
-
*
|
|
787
|
-
* @uniPlatform {
|
|
788
|
-
* "mp": {
|
|
789
|
-
* "weixin": {
|
|
790
|
-
* "hostVer": "√",
|
|
791
|
-
* "uniVer": "√",
|
|
792
|
-
* "unixVer": "4.41"
|
|
793
|
-
* },
|
|
794
|
-
* "alipay": {
|
|
795
|
-
* "hostVer": "-",
|
|
796
|
-
* "uniVer": "-",
|
|
797
|
-
* "unixVer": "-"
|
|
798
|
-
* },
|
|
799
|
-
* "baidu": {
|
|
800
|
-
* "hostVer": "-",
|
|
801
|
-
* "uniVer": "-",
|
|
802
|
-
* "unixVer": "-"
|
|
803
|
-
* },
|
|
804
|
-
* "toutiao": {
|
|
805
|
-
* "hostVer": "-",
|
|
806
|
-
* "uniVer": "-",
|
|
807
|
-
* "unixVer": "-"
|
|
808
|
-
* },
|
|
809
|
-
* "lark": {
|
|
810
|
-
* "hostVer": "-",
|
|
811
|
-
* "uniVer": "-",
|
|
812
|
-
* "unixVer": "-"
|
|
813
|
-
* },
|
|
814
|
-
* "qq": {
|
|
815
|
-
* "hostVer": "-",
|
|
816
|
-
* "uniVer": "-",
|
|
817
|
-
* "unixVer": "-"
|
|
818
|
-
* },
|
|
819
|
-
* "kuaishou": {
|
|
820
|
-
* "hostVer": "-",
|
|
821
|
-
* "uniVer": "-",
|
|
822
|
-
* "unixVer": "-"
|
|
823
|
-
* },
|
|
824
|
-
* "jd": {
|
|
825
|
-
* "hostVer": "-",
|
|
826
|
-
* "uniVer": "-",
|
|
827
|
-
* "unixVer": "-"
|
|
828
|
-
* }
|
|
829
|
-
* }
|
|
830
|
-
* }
|
|
831
|
-
*/
|
|
832
|
-
extraData?: any | null
|
|
833
|
-
};
|
|
374
|
+
}
|