@dnd-kit/abstract 0.0.1
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 +7 -0
- package/index.cjs +928 -0
- package/index.cjs.map +1 -0
- package/index.d.ts +429 -0
- package/index.js +913 -0
- package/index.js.map +1 -0
- package/modifiers.cjs +57 -0
- package/modifiers.cjs.map +1 -0
- package/modifiers.d.ts +22 -0
- package/modifiers.js +52 -0
- package/modifiers.js.map +1 -0
- package/package.json +60 -0
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# @dnd-kit/abstract
|
|
2
|
+
|
|
3
|
+
[](https://npm.im/@dnd-kit/abstract)
|
|
4
|
+
|
|
5
|
+
Abstract implementation of @dnd-kit, which can be extended by concrete implementation layers, such as @dnd-kit/dom.
|
|
6
|
+
|
|
7
|
+
This package is not meant to be used by most consumers, unless you are planning on building a concrete implementation layer on top of @dnd-kit.
|