We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d381d41 commit ce8a290Copy full SHA for ce8a290
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@jhubbardsf/svelte-sortablejs",
3
- "version": "1.0.0",
+ "version": "1.1.0",
4
"author": "Josh Hubbard <josh@joshuahubbard.dev> (https://joshuahubbard.dev/)",
5
"description": "A Svelte wrapper for the Sortable.js library",
6
"repository": {
src/lib/SortableList.svelte
@@ -264,6 +264,20 @@
264
});
265
</script>
266
267
+<!--
268
+@component
269
+Svelte wrapper for SortableJS.
270
+
271
+- Usage:
272
+ ```tsx
273
+ <SortableList>
274
+ <div>List Item 1</div>
275
+ <div>List Item 2</div>
276
+ <div>List Item 3</div>
277
+ </SortableList>
278
+ ```
279
+ -->
280
281
<div bind:this={list} class={className}>
282
<slot />
283
</div>
0 commit comments