@dcloudio/uni-app-x 0.7.113 → 0.7.114

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 (34) hide show
  1. package/package.json +1 -1
  2. package/types/dom2-internal/UniCSSPropertyId.d.ts +356 -351
  3. package/types/dom2-internal/sharedData.d.ts +219 -0
  4. package/types/uni/uts-plugin-api/lib/uni-editor/utssdk/interface.d.ts +2 -3
  5. package/types/uni/uts-plugin-component/lib/uni-editor/utssdk/interface.d.ts +2 -3
  6. package/types/uni/uts-plugin-component/.temp/uni-camera/utssdk/interface.uts +0 -1155
  7. package/types/uni/uts-plugin-component/.temp/uni-camera.d.ts +0 -38
  8. package/types/uni/uts-plugin-component/.temp/uni-camera.ts +0 -52
  9. package/types/uni/uts-plugin-component/.temp/uni-canvas/utssdk/interface.uts +0 -976
  10. package/types/uni/uts-plugin-component/.temp/uni-canvas-dom2/utssdk/interface.uts +0 -976
  11. package/types/uni/uts-plugin-component/.temp/uni-editor.d.ts +0 -171
  12. package/types/uni/uts-plugin-component/.temp/uni-editor.ts +0 -237
  13. package/types/uni/uts-plugin-component/.temp/uni-form.d.ts +0 -2
  14. package/types/uni/uts-plugin-component/.temp/uni-form.ts +0 -1
  15. package/types/uni/uts-plugin-component/.temp/uni-input/utssdk/interface.uts +0 -0
  16. package/types/uni/uts-plugin-component/.temp/uni-map-tencent.d.ts +0 -56
  17. package/types/uni/uts-plugin-component/.temp/uni-map-tencent.ts +0 -88
  18. package/types/uni/uts-plugin-component/.temp/uni-match-media.d.ts +0 -2
  19. package/types/uni/uts-plugin-component/.temp/uni-match-media.ts +0 -2
  20. package/types/uni/uts-plugin-component/.temp/uni-navigator.d.ts +0 -2
  21. package/types/uni/uts-plugin-component/.temp/uni-navigator.ts +0 -1
  22. package/types/uni/uts-plugin-component/.temp/uni-page-container.d.ts +0 -0
  23. package/types/uni/uts-plugin-component/.temp/uni-page-container.ts +0 -2
  24. package/types/uni/uts-plugin-component/.temp/uni-progress.d.ts +0 -2
  25. package/types/uni/uts-plugin-component/.temp/uni-progress.ts +0 -1
  26. package/types/uni/uts-plugin-component/.temp/uni-rich-text.d.ts +0 -7
  27. package/types/uni/uts-plugin-component/.temp/uni-rich-text.ts +0 -12
  28. package/types/uni/uts-plugin-component/.temp/uni-textarea/utssdk/interface.uts +0 -0
  29. package/types/uni/uts-plugin-component/.temp/uni-video/utssdk/interface.uts +0 -936
  30. package/types/uni/uts-plugin-component/.temp/uni-video.d.ts +0 -134
  31. package/types/uni/uts-plugin-component/.temp/uni-video.ts +0 -180
  32. package/types/uni/uts-plugin-component/.temp/uni-web-view/utssdk/interface.uts +0 -452
  33. package/types/uni/uts-plugin-component/.temp/uni-web-view.d.ts +0 -51
  34. package/types/uni/uts-plugin-component/.temp/uni-web-view.ts +0 -86
@@ -1,134 +0,0 @@
1
- export type UniVideoEventDetail = {};
2
- export declare class UniVideoEvent<T = UniVideoEventDetail> extends UniCustomEvent<T> {
3
- constructor(target: UniElement, type: string, detail?: T);
4
- }
5
- export type UniVideoControlsToggleEventDetail = {
6
- /**
7
- * 是否显示
8
- */
9
- show: boolean;
10
- };
11
- export declare class UniVideoControlsToggleEvent extends UniVideoEvent<UniVideoControlsToggleEventDetail> {
12
- constructor(target: UniElement, show: boolean);
13
- }
14
- /**
15
- * 统一错误码
16
- */
17
- export type VideoErrorCode =
18
- /**
19
- * 网络错误
20
- */
21
- 100001 |
22
- /**
23
- * 内部错误
24
- */
25
- 200001 |
26
- /**
27
- * SDK错误
28
- */
29
- 300001;
30
- export type UniWebViewErrorEventDetail = {
31
- errSubject: string;
32
- errCode: VideoErrorCode;
33
- errMsg: string;
34
- };
35
- export declare class UniVideoErrorEvent extends UniVideoEvent<UniWebViewErrorEventDetail> {
36
- constructor(target: UniElement, detail: UniWebViewErrorEventDetail);
37
- }
38
- export type UniVideoFullScreenDirection = 'vertical' | 'horizontal';
39
- export type UniVideoFullScreenChangeEventDetail = {
40
- /**
41
- * 是否全屏
42
- */
43
- fullScreen: boolean;
44
- /**
45
- * 横竖屏
46
- */
47
- direction: UniVideoFullScreenDirection;
48
- };
49
- export declare class UniVideoFullScreenChangeEvent extends UniVideoEvent<UniVideoFullScreenChangeEventDetail> {
50
- constructor(target: UniElement, fullScreen: boolean, direction?: UniVideoFullScreenDirection);
51
- }
52
- export type UniVideoFullScreenClickEventDetail = {
53
- /**
54
- * 点击点相对于屏幕左侧边缘的 X 轴坐标
55
- */
56
- screenX: number;
57
- /**
58
- * 点击点相对于屏幕顶部边缘的 Y 轴坐标
59
- */
60
- screenY: number;
61
- /**
62
- * 屏幕总宽度
63
- */
64
- screenWidth: number;
65
- /**
66
- * 屏幕总高度
67
- */
68
- screenHeight: number;
69
- };
70
- export declare class UniVideoFullScreenClickEvent extends UniVideoEvent<UniVideoFullScreenClickEventDetail> {
71
- constructor(target: UniElement, screenX: number, screenY: number, screenWidth: number, screenHeight: number);
72
- }
73
- export type UniVideoProgressEventDetail = {
74
- /**
75
- * 加载进度百分比
76
- */
77
- buffered: number;
78
- };
79
- export declare class UniVideoProgressEvent extends UniVideoEvent<UniVideoProgressEventDetail> {
80
- constructor(target: UniElement, buffered: number);
81
- }
82
- export type UniVideoTimeUpdateEventDetail = {
83
- /**
84
- * 当前进度
85
- */
86
- currentTime: number;
87
- /**
88
- * 总进度
89
- */
90
- duration: number;
91
- };
92
- export declare class UniVideoTimeUpdateEvent extends UniVideoEvent<UniVideoTimeUpdateEventDetail> {
93
- constructor(target: UniElement, currentTime: number, duration: number);
94
- }
95
- /**
96
- * video组件回收时的状态信息
97
- */
98
- export type UniVideoRecycleEventDetail = {
99
- /**
100
- * 回收时是否处于播放状态。回收时暂停状态此值为false
101
- */
102
- isPlaying: boolean;
103
- /**
104
- * 回收时播放视频的进度
105
- */
106
- currentTime: number;
107
- /**
108
- * 回收时播放视频的总时长
109
- */
110
- duration: number;
111
- };
112
- /**
113
- * video组件回收事件对象
114
- */
115
- export declare class UniVideoRecycleEvent extends UniVideoEvent<UniVideoRecycleEventDetail> {
116
- constructor(target: UniElement, detail: UniVideoRecycleEventDetail);
117
- }
118
- export type UniVideoReuseEventDetail = {
119
- /**
120
- * 回收时是否处于播放状态。回收时暂停状态此值为false
121
- */
122
- isPlaying: boolean;
123
- /**
124
- * 回收时播放视频的进度
125
- */
126
- currentTime: number;
127
- /**
128
- * 回收时播放视频的总时长
129
- */
130
- duration: number;
131
- };
132
- export declare class UniVideoReuseEvent extends UniVideoEvent<UniVideoReuseEventDetail> {
133
- constructor(target: UniElement, detail: UniVideoReuseEventDetail);
134
- }
@@ -1,180 +0,0 @@
1
- export type UniVideoEventDetail = {}
2
- export class UniVideoEvent<T = UniVideoEventDetail> extends UniCustomEvent<T> {
3
- constructor(target : UniElement, type : string, detail ?: T) {
4
- super(type, detail ?? {} as T)
5
- if (!this.target) {
6
- this.target = target
7
- }
8
- this.currentTarget = target
9
- }
10
- }
11
-
12
-
13
- export type UniVideoControlsToggleEventDetail = {
14
- /**
15
- * 是否显示
16
- */
17
- show : boolean
18
- }
19
- export class UniVideoControlsToggleEvent extends UniVideoEvent<UniVideoControlsToggleEventDetail> {
20
- constructor(target : UniElement, show : boolean) {
21
- super(target, 'controlstoggle', { show } as UniVideoControlsToggleEventDetail)
22
- }
23
- }
24
-
25
-
26
- /**
27
- * 统一错误码
28
- */
29
- export type VideoErrorCode =
30
- /**
31
- * 网络错误
32
- */
33
- 100001 |
34
- /**
35
- * 内部错误
36
- */
37
- 200001 |
38
- /**
39
- * SDK错误
40
- */
41
- 300001
42
- export type UniWebViewErrorEventDetail = {
43
- errSubject : string;
44
- errCode : VideoErrorCode;
45
- errMsg : string;
46
- }
47
- export class UniVideoErrorEvent extends UniVideoEvent<UniWebViewErrorEventDetail>{
48
- constructor(target : UniElement, detail: UniWebViewErrorEventDetail ) {
49
- super(target, 'error', detail)
50
- }
51
- }
52
-
53
-
54
- export type UniVideoFullScreenDirection = 'vertical' | 'horizontal'
55
- export type UniVideoFullScreenChangeEventDetail = {
56
- /**
57
- * 是否全屏
58
- */
59
- fullScreen : boolean,
60
- /**
61
- * 横竖屏
62
- */
63
- direction : UniVideoFullScreenDirection
64
- }
65
- export class UniVideoFullScreenChangeEvent extends UniVideoEvent<UniVideoFullScreenChangeEventDetail> {
66
- constructor(target : UniElement, fullScreen : boolean, direction : UniVideoFullScreenDirection = 'horizontal') {
67
- super(target, 'fullscreenchange', {
68
- fullScreen,
69
- direction
70
- } as UniVideoFullScreenChangeEventDetail)
71
- }
72
- }
73
-
74
-
75
- export type UniVideoFullScreenClickEventDetail = {
76
- /**
77
- * 点击点相对于屏幕左侧边缘的 X 轴坐标
78
- */
79
- screenX : number,
80
- /**
81
- * 点击点相对于屏幕顶部边缘的 Y 轴坐标
82
- */
83
- screenY : number,
84
- /**
85
- * 屏幕总宽度
86
- */
87
- screenWidth : number,
88
- /**
89
- * 屏幕总高度
90
- */
91
- screenHeight : number
92
- }
93
- export class UniVideoFullScreenClickEvent extends UniVideoEvent<UniVideoFullScreenClickEventDetail> {
94
- constructor(target : UniElement, screenX : number, screenY : number, screenWidth : number, screenHeight : number) {
95
- super(target, 'fullscreenclick', {
96
- screenX, screenY, screenWidth, screenHeight
97
- } as UniVideoFullScreenClickEventDetail)
98
- }
99
- }
100
-
101
-
102
- export type UniVideoProgressEventDetail = {
103
- /**
104
- * 加载进度百分比
105
- */
106
- buffered : number
107
- }
108
- export class UniVideoProgressEvent extends UniVideoEvent<UniVideoProgressEventDetail> {
109
- constructor(target : UniElement, buffered : number) {
110
- super(target, 'progress', {
111
- buffered
112
- } as UniVideoProgressEventDetail)
113
- }
114
- }
115
-
116
-
117
- export type UniVideoTimeUpdateEventDetail = {
118
- /**
119
- * 当前进度
120
- */
121
- currentTime : number,
122
- /**
123
- * 总进度
124
- */
125
- duration : number
126
- }
127
- export class UniVideoTimeUpdateEvent extends UniVideoEvent<UniVideoTimeUpdateEventDetail> {
128
- constructor(target : UniElement, currentTime : number, duration : number) {
129
- super(target, 'timeupdate', {
130
- currentTime,
131
- duration
132
- } as UniVideoTimeUpdateEventDetail)
133
- }
134
- }
135
-
136
- /**
137
- * video组件回收时的状态信息
138
- */
139
- export type UniVideoRecycleEventDetail = {
140
- /**
141
- * 回收时是否处于播放状态。回收时暂停状态此值为false
142
- */
143
- isPlaying: boolean
144
- /**
145
- * 回收时播放视频的进度
146
- */
147
- currentTime: number
148
- /**
149
- * 回收时播放视频的总时长
150
- */
151
- duration: number
152
- }
153
- /**
154
- * video组件回收事件对象
155
- */
156
- export class UniVideoRecycleEvent extends UniVideoEvent<UniVideoRecycleEventDetail> {
157
- constructor(target : UniElement, detail: UniVideoRecycleEventDetail) {
158
- super(target, 'recycle', detail)
159
- }
160
- }
161
-
162
- export type UniVideoReuseEventDetail = {
163
- /**
164
- * 回收时是否处于播放状态。回收时暂停状态此值为false
165
- */
166
- isPlaying: boolean
167
- /**
168
- * 回收时播放视频的进度
169
- */
170
- currentTime: number
171
- /**
172
- * 回收时播放视频的总时长
173
- */
174
- duration: number
175
- }
176
- export class UniVideoReuseEvent extends UniVideoEvent<UniVideoReuseEventDetail> {
177
- constructor(target : UniElement, detail: UniVideoReuseEventDetail) {
178
- super(target, 'reuse', detail)
179
- }
180
- }