@dcloudio/uni-app-x 0.7.86 → 0.7.88
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 +3 -2
- package/types/dom2-internal/UniNativeTextView.d.ts +23 -0
- package/types/dom2-internal/global.d.ts +3 -0
- package/types/dom2-internal/sharedData.d.ts +22 -11
- package/types/native/UniPage.d.ts +3 -3
- package/types/uni/uts-plugin-api/lib/uni-chooseLocation/utssdk/interface.d.ts +22 -11
- package/types/uni/uts-plugin-api/lib/uni-createInnerAudioContext/utssdk/interface.d.ts +8 -8
- package/types/uni/uts-plugin-api/lib/uni-getBackgroundAudioManager/utssdk/interface.d.ts +47 -47
- package/types/uni/uts-plugin-api/lib/uni-modal/utssdk/interface.d.ts +2 -45
- package/types/uni/uts-plugin-api/lib/uni-network/utssdk/interface.d.ts +65 -0
- package/types/uni/uts-plugin-api/lib/uni-prompt/utssdk/interface.d.ts +41 -41
- package/types/uni/uts-plugin-api/lib/uni-recorder/utssdk/interface.d.ts +28 -28
- package/types/uni/uts-plugin-component/global.d.ts +17 -0
- package/types/uni/uts-plugin-component/index.d.ts +17 -0
- package/types/uni/uts-plugin-component/lib/uni-canvas-dom2/utssdk/global.d.ts +25 -0
- package/types/uni/uts-plugin-component/lib/uni-canvas-dom2/utssdk/index.d.ts +12 -0
- package/types/uni/uts-plugin-component/lib/uni-canvas-dom2/utssdk/interface.d.ts +968 -0
- package/types/uni/uts-plugin-component/lib/uni-form-global/utssdk/global.d.ts +9 -0
- package/types/uni/uts-plugin-component/lib/uni-form-global/utssdk/index.d.ts +5 -0
- package/types/uni/uts-plugin-component/lib/uni-form-global/utssdk/interface.d.ts +2 -0
- package/types/uni/uts-plugin-component/lib/uni-match-media-global/utssdk/global.d.ts +9 -0
- package/types/uni/uts-plugin-component/lib/uni-match-media-global/utssdk/index.d.ts +5 -0
- package/types/uni/uts-plugin-component/lib/uni-match-media-global/utssdk/interface.d.ts +2 -0
- package/types/uni/uts-plugin-component/lib/uni-navigator-global/utssdk/global.d.ts +9 -0
- package/types/uni/uts-plugin-component/lib/uni-navigator-global/utssdk/index.d.ts +5 -0
- package/types/uni/uts-plugin-component/lib/uni-navigator-global/utssdk/interface.d.ts +2 -0
- package/types/uni/uts-plugin-component/lib/uni-progress-global/utssdk/global.d.ts +9 -0
- package/types/uni/uts-plugin-component/lib/uni-progress-global/utssdk/index.d.ts +5 -0
- package/types/uni/uts-plugin-component/lib/uni-progress-global/utssdk/interface.d.ts +2 -0
- package/types/uni/uts-plugin-component/lib/uni-rich-text-global/utssdk/global.d.ts +11 -0
- package/types/uni/uts-plugin-component/lib/uni-rich-text-global/utssdk/index.d.ts +6 -0
- package/types/uni/uts-plugin-component/lib/uni-rich-text-global/utssdk/interface.d.ts +7 -0
|
@@ -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,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
|
+
}
|