@mbao01/common 0.0.44 → 0.0.45
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/dist/types/components/Chart/Chart.d.ts +2 -0
- package/dist/types/components/Chart/ChartContext.d.ts +2 -0
- package/dist/types/components/Chart/components/ChartLegend.d.ts +4 -0
- package/dist/types/components/Chart/components/ChartStyle.d.ts +2 -0
- package/dist/types/components/Chart/components/ChartTooltip.d.ts +4 -0
- package/dist/types/components/Chart/components/index.d.ts +3 -0
- package/dist/types/components/Chart/constants.d.ts +22 -0
- package/dist/types/components/Chart/helpers.d.ts +11 -0
- package/dist/types/components/Chart/hooks/index.d.ts +1 -0
- package/dist/types/components/Chart/hooks/useChart/index.d.ts +1 -0
- package/dist/types/components/Chart/hooks/useChart/useChart.d.ts +1 -0
- package/dist/types/components/Chart/index.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/activeShapeArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/animationArgs.d.ts +12 -0
- package/dist/types/components/Chart/stories/args/areaArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/areaChartArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/barArgs.d.ts +5 -0
- package/dist/types/components/Chart/stories/args/barChartArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/cartesianChartArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/cartesianSharedArgs.d.ts +11 -0
- package/dist/types/components/Chart/stories/args/chartArgs.d.ts +6 -0
- package/dist/types/components/Chart/stories/args/dotArgs.d.ts +10 -0
- package/dist/types/components/Chart/stories/args/events.d.ts +804 -0
- package/dist/types/components/Chart/stories/args/labelListArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/legendArgs.d.ts +3 -0
- package/dist/types/components/Chart/stories/args/lineArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/lineChartArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/pieArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/pieChartArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/polarChartArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/polarSharedArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/radarArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/radarChartArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/radialBarArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/radialBarChartArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/rectangleArgs.d.ts +9 -0
- package/dist/types/components/Chart/stories/args/referenceSharedArgs.d.ts +4 -0
- package/dist/types/components/Chart/stories/args/sectorArgs.d.ts +7 -0
- package/dist/types/components/Chart/stories/args/sharedAxisArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/stylesArgs.d.ts +6 -0
- package/dist/types/components/Chart/stories/args/textArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/tooltipArgs.d.ts +4 -0
- package/dist/types/components/Chart/stories/args/types.d.ts +13 -0
- package/dist/types/components/Chart/stories/args/xAxisArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/args/yAxisArgs.d.ts +2 -0
- package/dist/types/components/Chart/stories/examples/AreaChart.d.ts +16 -0
- package/dist/types/components/Chart/stories/examples/BarChart.d.ts +20 -0
- package/dist/types/components/Chart/stories/examples/LineChart.d.ts +16 -0
- package/dist/types/components/Chart/stories/examples/PieChart.d.ts +19 -0
- package/dist/types/components/Chart/stories/examples/RadarChart.d.ts +24 -0
- package/dist/types/components/Chart/stories/examples/RadialChart.d.ts +17 -0
- package/dist/types/components/Chart/stories/examples/Tooltip.d.ts +15 -0
- package/dist/types/components/Chart/stories/helpers/index.d.ts +9 -0
- package/dist/types/components/Chart/types.d.ts +37 -0
- package/package.json +5 -3
- package/src/components/Chart/Chart.tsx +26 -0
- package/src/components/Chart/ChartContext.tsx +4 -0
- package/src/components/Chart/components/ChartLegend.tsx +52 -0
- package/src/components/Chart/components/ChartStyle.tsx +32 -0
- package/src/components/Chart/components/ChartTooltip.tsx +126 -0
- package/src/components/Chart/components/index.ts +3 -0
- package/src/components/Chart/constants.ts +78 -0
- package/src/components/Chart/helpers.ts +27 -0
- package/src/components/Chart/hooks/index.ts +1 -0
- package/src/components/Chart/hooks/useChart/index.ts +1 -0
- package/src/components/Chart/hooks/useChart/useChart.ts +12 -0
- package/src/components/Chart/index.ts +2 -0
- package/src/components/Chart/stories/args/activeShapeArgs.ts +34 -0
- package/src/components/Chart/stories/args/animationArgs.ts +67 -0
- package/src/components/Chart/stories/args/areaArgs.ts +16 -0
- package/src/components/Chart/stories/args/areaChartArgs.ts +19 -0
- package/src/components/Chart/stories/args/barArgs.ts +123 -0
- package/src/components/Chart/stories/args/barChartArgs.ts +65 -0
- package/src/components/Chart/stories/args/cartesianChartArgs.ts +42 -0
- package/src/components/Chart/stories/args/cartesianSharedArgs.ts +136 -0
- package/src/components/Chart/stories/args/chartArgs.ts +244 -0
- package/src/components/Chart/stories/args/dotArgs.ts +46 -0
- package/src/components/Chart/stories/args/events.ts +343 -0
- package/src/components/Chart/stories/args/index.ts +178 -0
- package/src/components/Chart/stories/args/labelListArgs.ts +124 -0
- package/src/components/Chart/stories/args/legendArgs.ts +205 -0
- package/src/components/Chart/stories/args/lineArgs.ts +87 -0
- package/src/components/Chart/stories/args/lineChartArgs.ts +17 -0
- package/src/components/Chart/stories/args/pieArgs.ts +18 -0
- package/src/components/Chart/stories/args/pieChartArgs.ts +7 -0
- package/src/components/Chart/stories/args/polarChartArgs.ts +86 -0
- package/src/components/Chart/stories/args/polarSharedArgs.ts +42 -0
- package/src/components/Chart/stories/args/radarArgs.ts +26 -0
- package/src/components/Chart/stories/args/radarChartArgs.ts +26 -0
- package/src/components/Chart/stories/args/radialBarArgs.ts +36 -0
- package/src/components/Chart/stories/args/radialBarChartArgs.ts +16 -0
- package/src/components/Chart/stories/args/rectangleArgs.ts +35 -0
- package/src/components/Chart/stories/args/referenceSharedArgs.ts +75 -0
- package/src/components/Chart/stories/args/sectorArgs.ts +106 -0
- package/src/components/Chart/stories/args/sharedAxisArgs.ts +332 -0
- package/src/components/Chart/stories/args/stylesArgs.ts +258 -0
- package/src/components/Chart/stories/args/textArgs.ts +97 -0
- package/src/components/Chart/stories/args/tooltipArgs.ts +41 -0
- package/src/components/Chart/stories/args/types.ts +23 -0
- package/src/components/Chart/stories/args/xAxisArgs.ts +109 -0
- package/src/components/Chart/stories/args/yAxisArgs.ts +73 -0
- package/src/components/Chart/stories/examples/AreaChart.tsx +156 -0
- package/src/components/Chart/stories/examples/BarChart.tsx +425 -0
- package/src/components/Chart/stories/examples/LineChart.tsx +144 -0
- package/src/components/Chart/stories/examples/PieChart.tsx +238 -0
- package/src/components/Chart/stories/examples/RadarChart.tsx +261 -0
- package/src/components/Chart/stories/examples/RadialChart.tsx +239 -0
- package/src/components/Chart/stories/examples/Tooltip.tsx +68 -0
- package/src/components/Chart/stories/helpers/index.tsx +75 -0
- package/src/components/Chart/types.ts +39 -0
|
@@ -0,0 +1,804 @@
|
|
|
1
|
+
import { ArgTypes } from '@storybook/react';
|
|
2
|
+
export declare const onAbort: {
|
|
3
|
+
table: {
|
|
4
|
+
category: string;
|
|
5
|
+
};
|
|
6
|
+
};
|
|
7
|
+
export declare const onAbortCapture: {
|
|
8
|
+
table: {
|
|
9
|
+
category: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export declare const onAnimationEnd: {
|
|
13
|
+
table: {
|
|
14
|
+
category: string;
|
|
15
|
+
description: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export declare const onAnimationEndCapture: {
|
|
19
|
+
table: {
|
|
20
|
+
category: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
export declare const onAnimationIteration: {
|
|
24
|
+
table: {
|
|
25
|
+
category: string;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
export declare const onAnimationIterationCapture: {
|
|
29
|
+
table: {
|
|
30
|
+
category: string;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
export declare const onAnimationStart: {
|
|
34
|
+
table: {
|
|
35
|
+
description: string;
|
|
36
|
+
category: string;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
export declare const onAnimationStartCapture: {
|
|
40
|
+
table: {
|
|
41
|
+
category: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
export declare const onAuxClick: {
|
|
45
|
+
table: {
|
|
46
|
+
category: string;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
export declare const onAuxClickCapture: {
|
|
50
|
+
table: {
|
|
51
|
+
category: string;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
export declare const onBeforeInput: {
|
|
55
|
+
table: {
|
|
56
|
+
category: string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
export declare const onBeforeInputCapture: {
|
|
60
|
+
table: {
|
|
61
|
+
category: string;
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
export declare const onBlur: {
|
|
65
|
+
table: {
|
|
66
|
+
category: string;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
export declare const onBlurCapture: {
|
|
70
|
+
table: {
|
|
71
|
+
category: string;
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
export declare const onCanPlay: {
|
|
75
|
+
table: {
|
|
76
|
+
category: string;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
export declare const onCanPlayCapture: {
|
|
80
|
+
table: {
|
|
81
|
+
category: string;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
export declare const onCanPlayThrough: {
|
|
85
|
+
table: {
|
|
86
|
+
category: string;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
export declare const onCanPlayThroughCapture: {
|
|
90
|
+
table: {
|
|
91
|
+
category: string;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
export declare const onChange: {
|
|
95
|
+
table: {
|
|
96
|
+
category: string;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
export declare const onChangeCapture: {
|
|
100
|
+
table: {
|
|
101
|
+
category: string;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
export declare const onClick: {
|
|
105
|
+
table: {
|
|
106
|
+
category: string;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
export declare const onClickCapture: {
|
|
110
|
+
table: {
|
|
111
|
+
category: string;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
export declare const onCompositionEnd: {
|
|
115
|
+
table: {
|
|
116
|
+
category: string;
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
export declare const onCompositionEndCapture: {
|
|
120
|
+
table: {
|
|
121
|
+
category: string;
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
export declare const onCompositionStart: {
|
|
125
|
+
table: {
|
|
126
|
+
category: string;
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
export declare const onCompositionStartCapture: {
|
|
130
|
+
table: {
|
|
131
|
+
category: string;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
export declare const onCompositionUpdate: {
|
|
135
|
+
table: {
|
|
136
|
+
category: string;
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
export declare const onCompositionUpdateCapture: {
|
|
140
|
+
table: {
|
|
141
|
+
category: string;
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
export declare const onContextMenu: {
|
|
145
|
+
table: {
|
|
146
|
+
category: string;
|
|
147
|
+
};
|
|
148
|
+
};
|
|
149
|
+
export declare const onContextMenuCapture: {
|
|
150
|
+
table: {
|
|
151
|
+
category: string;
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
export declare const onCopy: {
|
|
155
|
+
table: {
|
|
156
|
+
category: string;
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
export declare const onCopyCapture: {
|
|
160
|
+
table: {
|
|
161
|
+
category: string;
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
export declare const onCut: {
|
|
165
|
+
table: {
|
|
166
|
+
category: string;
|
|
167
|
+
};
|
|
168
|
+
};
|
|
169
|
+
export declare const onCutCapture: {
|
|
170
|
+
table: {
|
|
171
|
+
category: string;
|
|
172
|
+
};
|
|
173
|
+
};
|
|
174
|
+
export declare const onDoubleClick: {
|
|
175
|
+
table: {
|
|
176
|
+
category: string;
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
export declare const onDoubleClickCapture: {
|
|
180
|
+
table: {
|
|
181
|
+
category: string;
|
|
182
|
+
};
|
|
183
|
+
};
|
|
184
|
+
export declare const onDrag: {
|
|
185
|
+
table: {
|
|
186
|
+
category: string;
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
export declare const onDragCapture: {
|
|
190
|
+
table: {
|
|
191
|
+
category: string;
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
export declare const onDragEnd: {
|
|
195
|
+
table: {
|
|
196
|
+
category: string;
|
|
197
|
+
};
|
|
198
|
+
};
|
|
199
|
+
export declare const onDragEndCapture: {
|
|
200
|
+
table: {
|
|
201
|
+
category: string;
|
|
202
|
+
};
|
|
203
|
+
};
|
|
204
|
+
export declare const onDragEnter: {
|
|
205
|
+
table: {
|
|
206
|
+
category: string;
|
|
207
|
+
};
|
|
208
|
+
};
|
|
209
|
+
export declare const onDragEnterCapture: {
|
|
210
|
+
table: {
|
|
211
|
+
category: string;
|
|
212
|
+
};
|
|
213
|
+
};
|
|
214
|
+
export declare const onDragExit: {
|
|
215
|
+
table: {
|
|
216
|
+
category: string;
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
export declare const onDragExitCapture: {
|
|
220
|
+
table: {
|
|
221
|
+
category: string;
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
export declare const onDragLeave: {
|
|
225
|
+
table: {
|
|
226
|
+
category: string;
|
|
227
|
+
};
|
|
228
|
+
};
|
|
229
|
+
export declare const onDragLeaveCapture: {
|
|
230
|
+
table: {
|
|
231
|
+
category: string;
|
|
232
|
+
};
|
|
233
|
+
};
|
|
234
|
+
export declare const onDragOver: {
|
|
235
|
+
table: {
|
|
236
|
+
category: string;
|
|
237
|
+
};
|
|
238
|
+
};
|
|
239
|
+
export declare const onDragOverCapture: {
|
|
240
|
+
table: {
|
|
241
|
+
category: string;
|
|
242
|
+
};
|
|
243
|
+
};
|
|
244
|
+
export declare const onDragStart: {
|
|
245
|
+
table: {
|
|
246
|
+
category: string;
|
|
247
|
+
};
|
|
248
|
+
};
|
|
249
|
+
export declare const onDragStartCapture: {
|
|
250
|
+
table: {
|
|
251
|
+
category: string;
|
|
252
|
+
};
|
|
253
|
+
};
|
|
254
|
+
export declare const onDrop: {
|
|
255
|
+
table: {
|
|
256
|
+
category: string;
|
|
257
|
+
};
|
|
258
|
+
};
|
|
259
|
+
export declare const onDropCapture: {
|
|
260
|
+
table: {
|
|
261
|
+
category: string;
|
|
262
|
+
};
|
|
263
|
+
};
|
|
264
|
+
export declare const onDurationChange: {
|
|
265
|
+
table: {
|
|
266
|
+
category: string;
|
|
267
|
+
};
|
|
268
|
+
};
|
|
269
|
+
export declare const onDurationChangeCapture: {
|
|
270
|
+
table: {
|
|
271
|
+
category: string;
|
|
272
|
+
};
|
|
273
|
+
};
|
|
274
|
+
export declare const onEmptied: {
|
|
275
|
+
table: {
|
|
276
|
+
category: string;
|
|
277
|
+
};
|
|
278
|
+
};
|
|
279
|
+
export declare const onEmptiedCapture: {
|
|
280
|
+
table: {
|
|
281
|
+
category: string;
|
|
282
|
+
};
|
|
283
|
+
};
|
|
284
|
+
export declare const onEncrypted: {
|
|
285
|
+
table: {
|
|
286
|
+
category: string;
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
|
+
export declare const onEncryptedCapture: {
|
|
290
|
+
table: {
|
|
291
|
+
category: string;
|
|
292
|
+
};
|
|
293
|
+
};
|
|
294
|
+
export declare const onEnded: {
|
|
295
|
+
table: {
|
|
296
|
+
category: string;
|
|
297
|
+
};
|
|
298
|
+
};
|
|
299
|
+
export declare const onEndedCapture: {
|
|
300
|
+
table: {
|
|
301
|
+
category: string;
|
|
302
|
+
};
|
|
303
|
+
};
|
|
304
|
+
export declare const onError: {
|
|
305
|
+
table: {
|
|
306
|
+
category: string;
|
|
307
|
+
};
|
|
308
|
+
};
|
|
309
|
+
export declare const onErrorCapture: {
|
|
310
|
+
table: {
|
|
311
|
+
category: string;
|
|
312
|
+
};
|
|
313
|
+
};
|
|
314
|
+
export declare const onFocus: {
|
|
315
|
+
table: {
|
|
316
|
+
category: string;
|
|
317
|
+
};
|
|
318
|
+
};
|
|
319
|
+
export declare const onFocusCapture: {
|
|
320
|
+
table: {
|
|
321
|
+
category: string;
|
|
322
|
+
};
|
|
323
|
+
};
|
|
324
|
+
export declare const onGotPointerCapture: {
|
|
325
|
+
table: {
|
|
326
|
+
category: string;
|
|
327
|
+
};
|
|
328
|
+
};
|
|
329
|
+
export declare const onGotPointerCaptureCapture: {
|
|
330
|
+
table: {
|
|
331
|
+
category: string;
|
|
332
|
+
};
|
|
333
|
+
};
|
|
334
|
+
export declare const onInput: {
|
|
335
|
+
table: {
|
|
336
|
+
category: string;
|
|
337
|
+
};
|
|
338
|
+
};
|
|
339
|
+
export declare const onInputCapture: {
|
|
340
|
+
table: {
|
|
341
|
+
category: string;
|
|
342
|
+
};
|
|
343
|
+
};
|
|
344
|
+
export declare const onInvalid: {
|
|
345
|
+
table: {
|
|
346
|
+
category: string;
|
|
347
|
+
};
|
|
348
|
+
};
|
|
349
|
+
export declare const onInvalidCapture: {
|
|
350
|
+
table: {
|
|
351
|
+
category: string;
|
|
352
|
+
};
|
|
353
|
+
};
|
|
354
|
+
export declare const onKeyDown: {
|
|
355
|
+
table: {
|
|
356
|
+
category: string;
|
|
357
|
+
};
|
|
358
|
+
};
|
|
359
|
+
export declare const onKeyDownCapture: {
|
|
360
|
+
table: {
|
|
361
|
+
category: string;
|
|
362
|
+
};
|
|
363
|
+
};
|
|
364
|
+
export declare const onKeyPress: {
|
|
365
|
+
table: {
|
|
366
|
+
category: string;
|
|
367
|
+
};
|
|
368
|
+
};
|
|
369
|
+
export declare const onKeyPressCapture: {
|
|
370
|
+
table: {
|
|
371
|
+
category: string;
|
|
372
|
+
};
|
|
373
|
+
};
|
|
374
|
+
export declare const onKeyUp: {
|
|
375
|
+
table: {
|
|
376
|
+
category: string;
|
|
377
|
+
};
|
|
378
|
+
};
|
|
379
|
+
export declare const onKeyUpCapture: {
|
|
380
|
+
table: {
|
|
381
|
+
category: string;
|
|
382
|
+
};
|
|
383
|
+
};
|
|
384
|
+
export declare const onLoad: {
|
|
385
|
+
table: {
|
|
386
|
+
category: string;
|
|
387
|
+
};
|
|
388
|
+
};
|
|
389
|
+
export declare const onLoadCapture: {
|
|
390
|
+
table: {
|
|
391
|
+
category: string;
|
|
392
|
+
};
|
|
393
|
+
};
|
|
394
|
+
export declare const onLoadStart: {
|
|
395
|
+
table: {
|
|
396
|
+
category: string;
|
|
397
|
+
};
|
|
398
|
+
};
|
|
399
|
+
export declare const onLoadStartCapture: {
|
|
400
|
+
table: {
|
|
401
|
+
category: string;
|
|
402
|
+
};
|
|
403
|
+
};
|
|
404
|
+
export declare const onLoadedData: {
|
|
405
|
+
table: {
|
|
406
|
+
category: string;
|
|
407
|
+
};
|
|
408
|
+
};
|
|
409
|
+
export declare const onLoadedDataCapture: {
|
|
410
|
+
table: {
|
|
411
|
+
category: string;
|
|
412
|
+
};
|
|
413
|
+
};
|
|
414
|
+
export declare const onLoadedMetadata: {
|
|
415
|
+
table: {
|
|
416
|
+
category: string;
|
|
417
|
+
};
|
|
418
|
+
};
|
|
419
|
+
export declare const onLoadedMetadataCapture: {
|
|
420
|
+
table: {
|
|
421
|
+
category: string;
|
|
422
|
+
};
|
|
423
|
+
};
|
|
424
|
+
export declare const onLostPointerCapture: {
|
|
425
|
+
table: {
|
|
426
|
+
category: string;
|
|
427
|
+
};
|
|
428
|
+
};
|
|
429
|
+
export declare const onLostPointerCaptureCapture: {
|
|
430
|
+
table: {
|
|
431
|
+
category: string;
|
|
432
|
+
};
|
|
433
|
+
};
|
|
434
|
+
export declare const onMouseDown: {
|
|
435
|
+
table: {
|
|
436
|
+
category: string;
|
|
437
|
+
};
|
|
438
|
+
};
|
|
439
|
+
export declare const onMouseDownCapture: {
|
|
440
|
+
table: {
|
|
441
|
+
category: string;
|
|
442
|
+
};
|
|
443
|
+
};
|
|
444
|
+
export declare const onMouseEnter: {
|
|
445
|
+
table: {
|
|
446
|
+
category: string;
|
|
447
|
+
};
|
|
448
|
+
};
|
|
449
|
+
export declare const onMouseLeave: {
|
|
450
|
+
table: {
|
|
451
|
+
category: string;
|
|
452
|
+
};
|
|
453
|
+
};
|
|
454
|
+
export declare const onMouseMove: {
|
|
455
|
+
table: {
|
|
456
|
+
category: string;
|
|
457
|
+
};
|
|
458
|
+
};
|
|
459
|
+
export declare const onMouseMoveCapture: {
|
|
460
|
+
table: {
|
|
461
|
+
category: string;
|
|
462
|
+
};
|
|
463
|
+
};
|
|
464
|
+
export declare const onMouseOut: {
|
|
465
|
+
table: {
|
|
466
|
+
category: string;
|
|
467
|
+
};
|
|
468
|
+
};
|
|
469
|
+
export declare const onMouseOutCapture: {
|
|
470
|
+
table: {
|
|
471
|
+
category: string;
|
|
472
|
+
};
|
|
473
|
+
};
|
|
474
|
+
export declare const onMouseOver: {
|
|
475
|
+
table: {
|
|
476
|
+
category: string;
|
|
477
|
+
};
|
|
478
|
+
};
|
|
479
|
+
export declare const onMouseOverCapture: {
|
|
480
|
+
table: {
|
|
481
|
+
category: string;
|
|
482
|
+
};
|
|
483
|
+
};
|
|
484
|
+
export declare const onMouseUp: {
|
|
485
|
+
table: {
|
|
486
|
+
category: string;
|
|
487
|
+
};
|
|
488
|
+
};
|
|
489
|
+
export declare const onMouseUpCapture: {
|
|
490
|
+
table: {
|
|
491
|
+
category: string;
|
|
492
|
+
};
|
|
493
|
+
};
|
|
494
|
+
export declare const onPaste: {
|
|
495
|
+
table: {
|
|
496
|
+
category: string;
|
|
497
|
+
};
|
|
498
|
+
};
|
|
499
|
+
export declare const onPasteCapture: {
|
|
500
|
+
table: {
|
|
501
|
+
category: string;
|
|
502
|
+
};
|
|
503
|
+
};
|
|
504
|
+
export declare const onPause: {
|
|
505
|
+
table: {
|
|
506
|
+
category: string;
|
|
507
|
+
};
|
|
508
|
+
};
|
|
509
|
+
export declare const onPauseCapture: {
|
|
510
|
+
table: {
|
|
511
|
+
category: string;
|
|
512
|
+
};
|
|
513
|
+
};
|
|
514
|
+
export declare const onPlay: {
|
|
515
|
+
table: {
|
|
516
|
+
category: string;
|
|
517
|
+
};
|
|
518
|
+
};
|
|
519
|
+
export declare const onPlayCapture: {
|
|
520
|
+
table: {
|
|
521
|
+
category: string;
|
|
522
|
+
};
|
|
523
|
+
};
|
|
524
|
+
export declare const onPlaying: {
|
|
525
|
+
table: {
|
|
526
|
+
category: string;
|
|
527
|
+
};
|
|
528
|
+
};
|
|
529
|
+
export declare const onPlayingCapture: {
|
|
530
|
+
table: {
|
|
531
|
+
category: string;
|
|
532
|
+
};
|
|
533
|
+
};
|
|
534
|
+
export declare const onPointerCancel: {
|
|
535
|
+
table: {
|
|
536
|
+
category: string;
|
|
537
|
+
};
|
|
538
|
+
};
|
|
539
|
+
export declare const onPointerCancelCapture: {
|
|
540
|
+
table: {
|
|
541
|
+
category: string;
|
|
542
|
+
};
|
|
543
|
+
};
|
|
544
|
+
export declare const onPointerDown: {
|
|
545
|
+
table: {
|
|
546
|
+
category: string;
|
|
547
|
+
};
|
|
548
|
+
};
|
|
549
|
+
export declare const onPointerDownCapture: {
|
|
550
|
+
table: {
|
|
551
|
+
category: string;
|
|
552
|
+
};
|
|
553
|
+
};
|
|
554
|
+
export declare const onPointerEnter: {
|
|
555
|
+
table: {
|
|
556
|
+
category: string;
|
|
557
|
+
};
|
|
558
|
+
};
|
|
559
|
+
export declare const onPointerEnterCapture: {
|
|
560
|
+
table: {
|
|
561
|
+
category: string;
|
|
562
|
+
};
|
|
563
|
+
};
|
|
564
|
+
export declare const onPointerLeave: {
|
|
565
|
+
table: {
|
|
566
|
+
category: string;
|
|
567
|
+
};
|
|
568
|
+
};
|
|
569
|
+
export declare const onPointerLeaveCapture: {
|
|
570
|
+
table: {
|
|
571
|
+
category: string;
|
|
572
|
+
};
|
|
573
|
+
};
|
|
574
|
+
export declare const onPointerMove: {
|
|
575
|
+
table: {
|
|
576
|
+
category: string;
|
|
577
|
+
};
|
|
578
|
+
};
|
|
579
|
+
export declare const onPointerMoveCapture: {
|
|
580
|
+
table: {
|
|
581
|
+
category: string;
|
|
582
|
+
};
|
|
583
|
+
};
|
|
584
|
+
export declare const onPointerOut: {
|
|
585
|
+
table: {
|
|
586
|
+
category: string;
|
|
587
|
+
};
|
|
588
|
+
};
|
|
589
|
+
export declare const onPointerOutCapture: {
|
|
590
|
+
table: {
|
|
591
|
+
category: string;
|
|
592
|
+
};
|
|
593
|
+
};
|
|
594
|
+
export declare const onPointerOver: {
|
|
595
|
+
table: {
|
|
596
|
+
category: string;
|
|
597
|
+
};
|
|
598
|
+
};
|
|
599
|
+
export declare const onPointerOverCapture: {
|
|
600
|
+
table: {
|
|
601
|
+
category: string;
|
|
602
|
+
};
|
|
603
|
+
};
|
|
604
|
+
export declare const onPointerUp: {
|
|
605
|
+
table: {
|
|
606
|
+
category: string;
|
|
607
|
+
};
|
|
608
|
+
};
|
|
609
|
+
export declare const onPointerUpCapture: {
|
|
610
|
+
table: {
|
|
611
|
+
category: string;
|
|
612
|
+
};
|
|
613
|
+
};
|
|
614
|
+
export declare const onProgress: {
|
|
615
|
+
table: {
|
|
616
|
+
category: string;
|
|
617
|
+
};
|
|
618
|
+
};
|
|
619
|
+
export declare const onProgressCapture: {
|
|
620
|
+
table: {
|
|
621
|
+
category: string;
|
|
622
|
+
};
|
|
623
|
+
};
|
|
624
|
+
export declare const onRateChange: {
|
|
625
|
+
table: {
|
|
626
|
+
category: string;
|
|
627
|
+
};
|
|
628
|
+
};
|
|
629
|
+
export declare const onRateChangeCapture: {
|
|
630
|
+
table: {
|
|
631
|
+
category: string;
|
|
632
|
+
};
|
|
633
|
+
};
|
|
634
|
+
export declare const onReset: {
|
|
635
|
+
table: {
|
|
636
|
+
category: string;
|
|
637
|
+
};
|
|
638
|
+
};
|
|
639
|
+
export declare const onResetCapture: {
|
|
640
|
+
table: {
|
|
641
|
+
category: string;
|
|
642
|
+
};
|
|
643
|
+
};
|
|
644
|
+
export declare const onScroll: {
|
|
645
|
+
table: {
|
|
646
|
+
category: string;
|
|
647
|
+
};
|
|
648
|
+
};
|
|
649
|
+
export declare const onScrollCapture: {
|
|
650
|
+
table: {
|
|
651
|
+
category: string;
|
|
652
|
+
};
|
|
653
|
+
};
|
|
654
|
+
export declare const onSeeked: {
|
|
655
|
+
table: {
|
|
656
|
+
category: string;
|
|
657
|
+
};
|
|
658
|
+
};
|
|
659
|
+
export declare const onSeekedCapture: {
|
|
660
|
+
table: {
|
|
661
|
+
category: string;
|
|
662
|
+
};
|
|
663
|
+
};
|
|
664
|
+
export declare const onSeeking: {
|
|
665
|
+
table: {
|
|
666
|
+
category: string;
|
|
667
|
+
};
|
|
668
|
+
};
|
|
669
|
+
export declare const onSeekingCapture: {
|
|
670
|
+
table: {
|
|
671
|
+
category: string;
|
|
672
|
+
};
|
|
673
|
+
};
|
|
674
|
+
export declare const onSelect: {
|
|
675
|
+
table: {
|
|
676
|
+
category: string;
|
|
677
|
+
};
|
|
678
|
+
};
|
|
679
|
+
export declare const onSelectCapture: {
|
|
680
|
+
table: {
|
|
681
|
+
category: string;
|
|
682
|
+
};
|
|
683
|
+
};
|
|
684
|
+
export declare const onStalled: {
|
|
685
|
+
table: {
|
|
686
|
+
category: string;
|
|
687
|
+
};
|
|
688
|
+
};
|
|
689
|
+
export declare const onStalledCapture: {
|
|
690
|
+
table: {
|
|
691
|
+
category: string;
|
|
692
|
+
};
|
|
693
|
+
};
|
|
694
|
+
export declare const onSubmit: {
|
|
695
|
+
table: {
|
|
696
|
+
category: string;
|
|
697
|
+
};
|
|
698
|
+
};
|
|
699
|
+
export declare const onSubmitCapture: {
|
|
700
|
+
table: {
|
|
701
|
+
category: string;
|
|
702
|
+
};
|
|
703
|
+
};
|
|
704
|
+
export declare const onSuspend: {
|
|
705
|
+
table: {
|
|
706
|
+
category: string;
|
|
707
|
+
};
|
|
708
|
+
};
|
|
709
|
+
export declare const onSuspendCapture: {
|
|
710
|
+
table: {
|
|
711
|
+
category: string;
|
|
712
|
+
};
|
|
713
|
+
};
|
|
714
|
+
export declare const onTimeUpdate: {
|
|
715
|
+
table: {
|
|
716
|
+
category: string;
|
|
717
|
+
};
|
|
718
|
+
};
|
|
719
|
+
export declare const onTimeUpdateCapture: {
|
|
720
|
+
table: {
|
|
721
|
+
category: string;
|
|
722
|
+
};
|
|
723
|
+
};
|
|
724
|
+
export declare const onTouchCancel: {
|
|
725
|
+
table: {
|
|
726
|
+
category: string;
|
|
727
|
+
};
|
|
728
|
+
};
|
|
729
|
+
export declare const onTouchCancelCapture: {
|
|
730
|
+
table: {
|
|
731
|
+
category: string;
|
|
732
|
+
};
|
|
733
|
+
};
|
|
734
|
+
export declare const onTouchEnd: {
|
|
735
|
+
table: {
|
|
736
|
+
category: string;
|
|
737
|
+
};
|
|
738
|
+
};
|
|
739
|
+
export declare const onTouchEndCapture: {
|
|
740
|
+
table: {
|
|
741
|
+
category: string;
|
|
742
|
+
};
|
|
743
|
+
};
|
|
744
|
+
export declare const onTouchMove: {
|
|
745
|
+
table: {
|
|
746
|
+
category: string;
|
|
747
|
+
};
|
|
748
|
+
};
|
|
749
|
+
export declare const onTouchMoveCapture: {
|
|
750
|
+
table: {
|
|
751
|
+
category: string;
|
|
752
|
+
};
|
|
753
|
+
};
|
|
754
|
+
export declare const onTouchStart: {
|
|
755
|
+
table: {
|
|
756
|
+
category: string;
|
|
757
|
+
};
|
|
758
|
+
};
|
|
759
|
+
export declare const onTouchStartCapture: {
|
|
760
|
+
table: {
|
|
761
|
+
category: string;
|
|
762
|
+
};
|
|
763
|
+
};
|
|
764
|
+
export declare const onTransitionEnd: {
|
|
765
|
+
table: {
|
|
766
|
+
category: string;
|
|
767
|
+
};
|
|
768
|
+
};
|
|
769
|
+
export declare const onTransitionEndCapture: {
|
|
770
|
+
table: {
|
|
771
|
+
category: string;
|
|
772
|
+
};
|
|
773
|
+
};
|
|
774
|
+
export declare const onVolumeChange: {
|
|
775
|
+
table: {
|
|
776
|
+
category: string;
|
|
777
|
+
};
|
|
778
|
+
};
|
|
779
|
+
export declare const onVolumeChangeCapture: {
|
|
780
|
+
table: {
|
|
781
|
+
category: string;
|
|
782
|
+
};
|
|
783
|
+
};
|
|
784
|
+
export declare const onWaiting: {
|
|
785
|
+
table: {
|
|
786
|
+
category: string;
|
|
787
|
+
};
|
|
788
|
+
};
|
|
789
|
+
export declare const onWaitingCapture: {
|
|
790
|
+
table: {
|
|
791
|
+
category: string;
|
|
792
|
+
};
|
|
793
|
+
};
|
|
794
|
+
export declare const onWheel: {
|
|
795
|
+
table: {
|
|
796
|
+
category: string;
|
|
797
|
+
};
|
|
798
|
+
};
|
|
799
|
+
export declare const onWheelCapture: {
|
|
800
|
+
table: {
|
|
801
|
+
category: string;
|
|
802
|
+
};
|
|
803
|
+
};
|
|
804
|
+
export declare const eventArgs: ArgTypes;
|