@dcloudio/uni-app-x 0.7.22 → 0.7.24
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/package.json +1 -1
- package/types/app.d.ts +16 -16
- package/types/native/CanvasRenderingContext2D.d.ts +1697 -111
- package/types/native/IUniElement.d.ts +73 -4
- package/types/native/Path2D.d.ts +41 -13
- package/types/native/UniProvider.d.ts +17 -0
- package/types/native/UniVideoElement.d.ts +13 -5
- package/types/native/global.d.ts +18 -0
- package/types/uni/uts-plugin-api/global.d.ts +1 -1
- package/types/uni/uts-plugin-api/index.d.ts +1 -1
- package/types/uni/uts-plugin-api/lib/uni-authentication/utssdk/interface.d.ts +14 -4
- package/types/uni/uts-plugin-api/lib/uni-canvas/utssdk/global.d.ts +2 -2
- package/types/uni/uts-plugin-api/lib/uni-canvas/utssdk/index.d.ts +1 -1
- package/types/uni/uts-plugin-api/lib/uni-canvas/utssdk/interface.d.ts +2 -2
- package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/interface.d.ts +78 -14
- package/types/uni/uts-plugin-api/lib/uni-exit/utssdk/interface.d.ts +9 -3
- package/types/uni/uts-plugin-api/lib/uni-fileSystemManager/utssdk/interface.d.ts +56 -15
- package/types/uni/uts-plugin-api/lib/uni-getAppAuthorizeSetting/utssdk/interface.d.ts +191 -65
- package/types/uni/uts-plugin-api/lib/uni-getEnterOptionsSync/utssdk/interface.d.ts +3 -3
- package/types/uni/uts-plugin-api/lib/uni-getLaunchOptionsSync/utssdk/interface.d.ts +7 -7
- package/types/uni/uts-plugin-api/lib/uni-getLocation/utssdk/interface.d.ts +614 -169
- package/types/uni/uts-plugin-api/lib/uni-getProvider/utssdk/global.d.ts +12 -6
- package/types/uni/uts-plugin-api/lib/uni-getProvider/utssdk/index.d.ts +6 -3
- package/types/uni/uts-plugin-api/lib/uni-getProvider/utssdk/interface.d.ts +249 -103
- package/types/uni/uts-plugin-api/lib/uni-getSystemInfo/utssdk/interface.d.ts +9 -2
- package/types/uni/uts-plugin-api/lib/uni-getSystemSetting/utssdk/interface.d.ts +49 -11
- package/types/uni/uts-plugin-api/lib/uni-loadFontFace/utssdk/interface.d.ts +33 -16
- package/types/uni/uts-plugin-api/lib/uni-media/utssdk/interface.d.ts +80 -33
- package/types/uni/uts-plugin-api/lib/uni-network/utssdk/interface.d.ts +63 -17
- package/types/uni/uts-plugin-api/lib/uni-payment/utssdk/interface.d.ts +307 -20
- package/types/uni/uts-plugin-api/lib/uni-prompt/utssdk/interface.d.ts +213 -21
- package/types/uni/uts-plugin-api/lib/uni-route/utssdk/interface.d.ts +554 -24
- package/types/uni/uts-plugin-api/lib/uni-shareWithSystem/utssdk/global.d.ts +22 -0
- package/types/uni/uts-plugin-api/lib/uni-shareWithSystem/utssdk/index.d.ts +10 -0
- package/types/uni/uts-plugin-api/lib/uni-shareWithSystem/utssdk/interface.d.ts +120 -0
- package/types/uni/uts-plugin-api/lib/uni-tabBar/utssdk/interface.d.ts +28 -8
- package/types/uni/uts-plugin-api/lib/uni-virtualPayment/utssdk/interface.d.ts +766 -364
- package/types/uni/uts-plugin-api/lib/uni-websocket/utssdk/interface.d.ts +14 -4
- package/types/uni-cloud/unicloud-db/index.ts +8 -5
- package/types/uni/uts-plugin-api/lib/uni-animationFrame/utssdk/global.d.ts +0 -12
- package/types/uni/uts-plugin-api/lib/uni-animationFrame/utssdk/index.d.ts +0 -5
- package/types/uni/uts-plugin-api/lib/uni-animationFrame/utssdk/interface.d.ts +0 -50
package/package.json
CHANGED
package/types/app.d.ts
CHANGED
|
@@ -759,13 +759,13 @@ declare global {
|
|
|
759
759
|
* "mp": {
|
|
760
760
|
* "weixin": {
|
|
761
761
|
* "hostVer": "√",
|
|
762
|
-
* "uniVer": "
|
|
762
|
+
* "uniVer": "x",
|
|
763
763
|
* "unixVer": "x"
|
|
764
764
|
* },
|
|
765
765
|
* },
|
|
766
766
|
* "web": {
|
|
767
|
-
* "uniVer": "
|
|
768
|
-
* "unixVer": "
|
|
767
|
+
* "uniVer": "x",
|
|
768
|
+
* "unixVer": "x"
|
|
769
769
|
* }
|
|
770
770
|
* }
|
|
771
771
|
*/
|
|
@@ -780,12 +780,12 @@ declare global {
|
|
|
780
780
|
* "app": {
|
|
781
781
|
* "android": {
|
|
782
782
|
* "osVer": "5.0",
|
|
783
|
-
* "uniVer": "
|
|
784
|
-
* "unixVer": "
|
|
783
|
+
* "uniVer": "x",
|
|
784
|
+
* "unixVer": "x"
|
|
785
785
|
* },
|
|
786
786
|
* "ios": {
|
|
787
787
|
* "osVer": "12.0",
|
|
788
|
-
* "uniVer": "
|
|
788
|
+
* "uniVer": "x",
|
|
789
789
|
* "unixVer": "4.25"
|
|
790
790
|
* },
|
|
791
791
|
* "harmony": {
|
|
@@ -797,13 +797,13 @@ declare global {
|
|
|
797
797
|
* "mp": {
|
|
798
798
|
* "weixin": {
|
|
799
799
|
* "hostVer": "√",
|
|
800
|
-
* "uniVer": "
|
|
800
|
+
* "uniVer": "x",
|
|
801
801
|
* "unixVer": "x"
|
|
802
802
|
* },
|
|
803
803
|
* },
|
|
804
804
|
* "web": {
|
|
805
|
-
* "uniVer": "
|
|
806
|
-
* "unixVer": "
|
|
805
|
+
* "uniVer": "x",
|
|
806
|
+
* "unixVer": "x"
|
|
807
807
|
* }
|
|
808
808
|
* }
|
|
809
809
|
*/
|
|
@@ -926,13 +926,13 @@ declare global {
|
|
|
926
926
|
* "mp": {
|
|
927
927
|
* "weixin": {
|
|
928
928
|
* "hostVer": "√",
|
|
929
|
-
* "uniVer": "
|
|
929
|
+
* "uniVer": "x",
|
|
930
930
|
* "unixVer": "x"
|
|
931
931
|
* },
|
|
932
932
|
* },
|
|
933
933
|
* "web": {
|
|
934
|
-
* "uniVer": "
|
|
935
|
-
* "unixVer": "
|
|
934
|
+
* "uniVer": "x",
|
|
935
|
+
* "unixVer": "x"
|
|
936
936
|
* }
|
|
937
937
|
* }
|
|
938
938
|
*/
|
|
@@ -947,7 +947,7 @@ declare global {
|
|
|
947
947
|
* "android": {
|
|
948
948
|
* "osVer": "5.0",
|
|
949
949
|
* "uniVer": "x",
|
|
950
|
-
* "unixVer": "
|
|
950
|
+
* "unixVer": "x"
|
|
951
951
|
* },
|
|
952
952
|
* "ios": {
|
|
953
953
|
* "osVer": "12.0",
|
|
@@ -963,13 +963,13 @@ declare global {
|
|
|
963
963
|
* "mp": {
|
|
964
964
|
* "weixin": {
|
|
965
965
|
* "hostVer": "√",
|
|
966
|
-
* "uniVer": "
|
|
966
|
+
* "uniVer": "x",
|
|
967
967
|
* "unixVer": "x"
|
|
968
968
|
* },
|
|
969
969
|
* },
|
|
970
970
|
* "web": {
|
|
971
|
-
* "uniVer": "
|
|
972
|
-
* "unixVer": "
|
|
971
|
+
* "uniVer": "x",
|
|
972
|
+
* "unixVer": "x"
|
|
973
973
|
* }
|
|
974
974
|
* }
|
|
975
975
|
*/
|