@dcloudio/uni-app-x 0.7.86 → 0.7.87

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 (32) hide show
  1. package/package.json +3 -2
  2. package/types/dom2-internal/UniNativeTextView.d.ts +23 -0
  3. package/types/dom2-internal/global.d.ts +3 -0
  4. package/types/dom2-internal/sharedData.d.ts +16 -2
  5. package/types/native/UniPage.d.ts +3 -3
  6. package/types/uni/uts-plugin-api/lib/uni-chooseLocation/utssdk/interface.d.ts +22 -11
  7. package/types/uni/uts-plugin-api/lib/uni-createInnerAudioContext/utssdk/interface.d.ts +8 -8
  8. package/types/uni/uts-plugin-api/lib/uni-getBackgroundAudioManager/utssdk/interface.d.ts +47 -47
  9. package/types/uni/uts-plugin-api/lib/uni-modal/utssdk/interface.d.ts +2 -45
  10. package/types/uni/uts-plugin-api/lib/uni-network/utssdk/interface.d.ts +65 -0
  11. package/types/uni/uts-plugin-api/lib/uni-prompt/utssdk/interface.d.ts +41 -41
  12. package/types/uni/uts-plugin-api/lib/uni-recorder/utssdk/interface.d.ts +28 -28
  13. package/types/uni/uts-plugin-component/global.d.ts +17 -0
  14. package/types/uni/uts-plugin-component/index.d.ts +17 -0
  15. package/types/uni/uts-plugin-component/lib/uni-canvas-dom2/utssdk/global.d.ts +25 -0
  16. package/types/uni/uts-plugin-component/lib/uni-canvas-dom2/utssdk/index.d.ts +12 -0
  17. package/types/uni/uts-plugin-component/lib/uni-canvas-dom2/utssdk/interface.d.ts +968 -0
  18. package/types/uni/uts-plugin-component/lib/uni-form-global/utssdk/global.d.ts +9 -0
  19. package/types/uni/uts-plugin-component/lib/uni-form-global/utssdk/index.d.ts +5 -0
  20. package/types/uni/uts-plugin-component/lib/uni-form-global/utssdk/interface.d.ts +2 -0
  21. package/types/uni/uts-plugin-component/lib/uni-match-media-global/utssdk/global.d.ts +9 -0
  22. package/types/uni/uts-plugin-component/lib/uni-match-media-global/utssdk/index.d.ts +5 -0
  23. package/types/uni/uts-plugin-component/lib/uni-match-media-global/utssdk/interface.d.ts +2 -0
  24. package/types/uni/uts-plugin-component/lib/uni-navigator-global/utssdk/global.d.ts +9 -0
  25. package/types/uni/uts-plugin-component/lib/uni-navigator-global/utssdk/index.d.ts +5 -0
  26. package/types/uni/uts-plugin-component/lib/uni-navigator-global/utssdk/interface.d.ts +2 -0
  27. package/types/uni/uts-plugin-component/lib/uni-progress-global/utssdk/global.d.ts +9 -0
  28. package/types/uni/uts-plugin-component/lib/uni-progress-global/utssdk/index.d.ts +5 -0
  29. package/types/uni/uts-plugin-component/lib/uni-progress-global/utssdk/interface.d.ts +2 -0
  30. package/types/uni/uts-plugin-component/lib/uni-rich-text-global/utssdk/global.d.ts +11 -0
  31. package/types/uni/uts-plugin-component/lib/uni-rich-text-global/utssdk/index.d.ts +6 -0
  32. package/types/uni/uts-plugin-component/lib/uni-rich-text-global/utssdk/interface.d.ts +7 -0
@@ -0,0 +1,9 @@
1
+ // 本文件为自动构建生成
2
+ import {
3
+ UniButtonElement as UniButtonElementOrigin,
4
+ } from './interface'
5
+
6
+ declare global {
7
+ type UniButtonElement = UniButtonElementOrigin
8
+ }
9
+
@@ -0,0 +1,5 @@
1
+ // 本文件为自动构建生成
2
+ export {
3
+ UniButtonElement,
4
+ } from './interface'
5
+
@@ -0,0 +1,2 @@
1
+ export class UniButtonElement extends UniElementImpl {
2
+ }
@@ -0,0 +1,9 @@
1
+ // 本文件为自动构建生成
2
+ import {
3
+ UniMatchMediaElement as UniMatchMediaElementOrigin,
4
+ } from './interface'
5
+
6
+ declare global {
7
+ type UniMatchMediaElement = UniMatchMediaElementOrigin
8
+ }
9
+
@@ -0,0 +1,5 @@
1
+ // 本文件为自动构建生成
2
+ export {
3
+ UniMatchMediaElement,
4
+ } from './interface'
5
+
@@ -0,0 +1,2 @@
1
+ export class UniMatchMediaElement extends UniElementImpl {
2
+ }
@@ -0,0 +1,9 @@
1
+ // 本文件为自动构建生成
2
+ import {
3
+ UniNavigatorElement as UniNavigatorElementOrigin,
4
+ } from './interface'
5
+
6
+ declare global {
7
+ type UniNavigatorElement = UniNavigatorElementOrigin
8
+ }
9
+
@@ -0,0 +1,5 @@
1
+ // 本文件为自动构建生成
2
+ export {
3
+ UniNavigatorElement,
4
+ } from './interface'
5
+
@@ -0,0 +1,2 @@
1
+ export class UniNavigatorElement extends UniElementImpl {
2
+ }
@@ -0,0 +1,9 @@
1
+ // 本文件为自动构建生成
2
+ import {
3
+ UniProgressElement as UniProgressElementOrigin,
4
+ } from './interface'
5
+
6
+ declare global {
7
+ type UniProgressElement = UniProgressElementOrigin
8
+ }
9
+
@@ -0,0 +1,5 @@
1
+ // 本文件为自动构建生成
2
+ export {
3
+ UniProgressElement,
4
+ } from './interface'
5
+
@@ -0,0 +1,2 @@
1
+ export class UniProgressElement extends UniElementImpl {
2
+ }
@@ -0,0 +1,11 @@
1
+ // 本文件为自动构建生成
2
+ import {
3
+ UniRichTextItemClickEventDetail as UniRichTextItemClickEventDetailOrigin,
4
+ UniRichTextItemClickEvent as UniRichTextItemClickEventOrigin,
5
+ } from './interface'
6
+
7
+ declare global {
8
+ type UniRichTextItemClickEventDetail = UniRichTextItemClickEventDetailOrigin
9
+ type UniRichTextItemClickEvent = UniRichTextItemClickEventOrigin
10
+ }
11
+
@@ -0,0 +1,6 @@
1
+ // 本文件为自动构建生成
2
+ export {
3
+ UniRichTextItemClickEventDetail,
4
+ UniRichTextItemClickEvent,
5
+ } from './interface'
6
+
@@ -0,0 +1,7 @@
1
+ export type UniRichTextItemClickEventDetail = {
2
+ src: string | null;
3
+ href: string | null;
4
+ };
5
+ export class UniRichTextItemClickEvent extends UniCustomEvent<UniRichTextItemClickEventDetail> {
6
+ constructor(type: string, detail: UniRichTextItemClickEventDetail);
7
+ }