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 6fe2b35 commit a145b91Copy full SHA for a145b91
src/lib/components/SortableList.svelte
@@ -596,7 +596,7 @@
596
<!-- svelte-ignore a11y-role-supports-aria-props -->
597
<ul
598
bind:this={rootRef}
599
- class="ssl-list"
+ class="ssl-list {$$props.class ?? ''}"
600
style:--ssl-gap="{gap}px"
601
style:--ssl-wrap={hasWrapping ? 'wrap' : 'nowrap'}
602
style:--ssl-transition-duration="{transitionDuration}ms"
src/lib/components/SortableListItem.svelte
@@ -245,7 +245,7 @@ Serves as an individual item within `<SortableList.Root>`. Holds the data and co
245
<li
246
bind:this={itemRef}
247
{id}
248
- class="ssl-item"
+ class="ssl-item {$$props.class ?? ''}"
249
style:cursor={styleCursor}
250
style:width={styleWidth}
251
style:height={styleHeight}
0 commit comments