@danielgindi/virtual-list-helper 1.0.13 → 1.0.15
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 +1 -0
- package/dist/virtual-list-helper.cjs.js +2557 -15
- package/dist/virtual-list-helper.cjs.js.map +1 -1
- package/dist/virtual-list-helper.cjs.min.js +2 -2
- package/dist/virtual-list-helper.cjs.min.js.map +1 -1
- package/dist/virtual-list-helper.es6.js +6 -8
- package/dist/virtual-list-helper.es6.js.map +1 -1
- package/dist/virtual-list-helper.es6.min.js +2 -2
- package/dist/virtual-list-helper.es6.min.js.map +1 -1
- package/dist/virtual-list-helper.umd.js +4007 -1465
- package/dist/virtual-list-helper.umd.js.map +1 -1
- package/dist/virtual-list-helper.umd.min.js +2 -2
- package/dist/virtual-list-helper.umd.min.js.map +1 -1
- package/lib/index.js +5 -7
- package/package.json +22 -14
- package/vue/VirtualList.vue +181 -0
- package/vue/index.js +3 -0
package/README.md
CHANGED
|
@@ -12,6 +12,7 @@ A full featured dom virtual list
|
|
|
12
12
|
## Example
|
|
13
13
|
|
|
14
14
|
The default exported class is `VirtualListHelper`, which does all the magic.
|
|
15
|
+
There is now also a Vue (v3) binding, in vue/VirtualList.vue.
|
|
15
16
|
I really hope to put in an example here soon. PRs are welcome.
|
|
16
17
|
|
|
17
18
|
## Api
|