@dcloudio/uni-app-x 0.7.2 → 0.7.3
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
CHANGED
package/types/native/global.d.ts
CHANGED
|
@@ -60,6 +60,9 @@ import {
|
|
|
60
60
|
RichTextItemClickEvent as RichTextItemClickEventOrigin,
|
|
61
61
|
ResizeEvent as ResizeEventOrigin,
|
|
62
62
|
RefresherEvent as RefresherEventOrigin,
|
|
63
|
+
PointerEvent as PointerEventOrigin,
|
|
64
|
+
MouseEvent as MouseEventOrigin,
|
|
65
|
+
MouseEvent as MouseEventOrigin,
|
|
63
66
|
PageScrollEvent as PageScrollEventOrigin,
|
|
64
67
|
PageNode as PageNodeOrigin,
|
|
65
68
|
PageEvent as PageEventOrigin,
|
|
@@ -214,6 +217,10 @@ declare global {
|
|
|
214
217
|
type ResizeEvent = ResizeEventOrigin
|
|
215
218
|
const RefresherEvent: typeof RefresherEventOrigin
|
|
216
219
|
type RefresherEvent = RefresherEventOrigin
|
|
220
|
+
const PointerEvent: typeof PointerEventOrigin
|
|
221
|
+
type PointerEvent = PointerEventOrigin
|
|
222
|
+
const MouseEvent: typeof MouseEventOrigin
|
|
223
|
+
type MouseEvent = MouseEventOrigin
|
|
217
224
|
const PageScrollEvent: typeof PageScrollEventOrigin
|
|
218
225
|
type PageScrollEvent = PageScrollEventOrigin
|
|
219
226
|
const PageNode: typeof PageNodeOrigin
|
package/types/native/index.d.ts
CHANGED
|
@@ -39,6 +39,7 @@ export * from './ScrollEvent'
|
|
|
39
39
|
export * from './RichTextItemClickEvent'
|
|
40
40
|
export * from './ResizeEvent'
|
|
41
41
|
export * from './RefresherEvent'
|
|
42
|
+
export * from './PointerEvent'
|
|
42
43
|
export * from './PageScrollEvent'
|
|
43
44
|
export * from './PageNode'
|
|
44
45
|
export * from './PageEvent'
|