@thednp/shorty 2.0.0-alpha8 → 2.0.0-alpha9
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/README.md +3 -3
- package/dist/shorty.cjs +1 -1
- package/dist/shorty.cjs.map +1 -1
- package/dist/shorty.d.ts +24 -0
- package/dist/shorty.js +1 -1
- package/dist/shorty.js.map +1 -1
- package/dist/shorty.mjs +176 -170
- package/dist/shorty.mjs.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +12 -0
- package/src/strings/dragEvent.ts +5 -0
- package/src/strings/dragendEvent.ts +5 -0
- package/src/strings/dragenterEvent.ts +5 -0
- package/src/strings/dragleaveEvent.ts +5 -0
- package/src/strings/dragoverEvent.ts +5 -0
- package/src/strings/dragstartEvent.ts +5 -0
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -20,6 +20,12 @@ import abortEvent from './strings/abortEvent';
|
|
|
20
20
|
import blurEvent from './strings/blurEvent';
|
|
21
21
|
import moveEvent from './strings/moveEvent';
|
|
22
22
|
import changeEvent from './strings/changeEvent';
|
|
23
|
+
import dragEvent from './strings/dragEvent';
|
|
24
|
+
import dragstartEvent from './strings/dragstartEvent';
|
|
25
|
+
import dragenterEvent from './strings/dragenterEvent';
|
|
26
|
+
import dragleaveEvent from './strings/dragleaveEvent';
|
|
27
|
+
import dragoverEvent from './strings/dragoverEvent';
|
|
28
|
+
import dragendEvent from './strings/dragendEvent';
|
|
23
29
|
import errorEvent from './strings/errorEvent';
|
|
24
30
|
import resetEvent from './strings/resetEvent';
|
|
25
31
|
import resizeEvent from './strings/resizeEvent';
|
|
@@ -264,6 +270,12 @@ export {
|
|
|
264
270
|
blurEvent,
|
|
265
271
|
moveEvent,
|
|
266
272
|
changeEvent,
|
|
273
|
+
dragEvent,
|
|
274
|
+
dragstartEvent,
|
|
275
|
+
dragenterEvent,
|
|
276
|
+
dragoverEvent,
|
|
277
|
+
dragleaveEvent,
|
|
278
|
+
dragendEvent,
|
|
267
279
|
errorEvent,
|
|
268
280
|
resetEvent,
|
|
269
281
|
resizeEvent,
|