We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to have a movable dropdown menu in svelte but it is not working.
<script> import Moveable from "svelte-moveable"; let moveable; let columns = [1,2,3,4] const keepRatio = true; const throttleScale = 0; const renderDirections = ['nw', 'n', 'ne', 'w', 'e', 'sw', 's', 'se']; </script> <div class="container" bind:this={moveable}> <select> {#each columns as column} {column} {/each} </select> </div> <Moveable target={moveable} hideDefaultLines={true} draggable={true} scalable={true} {keepRatio} {throttleScale} {renderDirections} on:drag={({ detail: e }) => { e.target.style.transform = e.transform; }} on:scale={({ detail: e }) => { e.target.style.transform = e.drag.transform; }} /> <style> .container { width: 200px; height: 200px; } </style>
The text was updated successfully, but these errors were encountered:
fix: fix svelte main field #886
e5a5f25
@tc-cole
croact-moveable
@moveable/helper
lit-moveable
moveable
preact-moveable
react-moveable
svelte-moveable
vue-moveable
vue3-moveable
ngx-moveable
moveable's new version is released. Try it again.
Sorry, something went wrong.
No branches or pull requests
Environments
Description
I am trying to have a movable dropdown menu in svelte but it is not working.
The text was updated successfully, but these errors were encountered: