├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── release_package.yml ├── .gitignore ├── .prettierrc ├── .vscode └── extensions.json ├── CHANGELOG.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── .gitignore ├── .prettierrc ├── .vscode │ ├── extensions.json │ └── launch.json ├── README.md ├── STRUCTURED_DATA.md ├── astro.config.mjs ├── package.json ├── pnpm-lock.yaml ├── public │ ├── favicon - zoomed.svg │ ├── favicon.png │ ├── favicon.svg │ └── org.webp ├── src │ ├── assets │ │ ├── dark-logo.svg │ │ ├── landing.css │ │ ├── logo.svg │ │ ├── pokemon-bg.png │ │ └── pokemon-bg.svg │ ├── components │ │ ├── Accordion.astro │ │ ├── Accordion.vue │ │ ├── CustomTitle.astro │ │ ├── FrameworkSelector.vue │ │ ├── IconSelector.vue │ │ ├── Sidebar.astro │ │ ├── examples │ │ │ ├── ExampleLayout.astro │ │ │ ├── Pokemon.ts │ │ │ ├── pages │ │ │ │ ├── group-horizontal-lists-component.astro │ │ │ │ ├── group-vertical-lists-component.astro │ │ │ │ ├── shared │ │ │ │ │ └── page-component.astro │ │ │ │ ├── single-horizontal-list-autoscroll-component.astro │ │ │ │ ├── single-horizontal-list-component.astro │ │ │ │ ├── single-vertical-list-autoscroll-component.astro │ │ │ │ ├── single-vertical-list-component-with-handler.astro │ │ │ │ ├── single-vertical-list-component-with-is-draggable.astro │ │ │ │ ├── single-vertical-list-component.astro │ │ │ │ ├── single-vertical-list-with-insert-component.astro │ │ │ │ └── single-vertical-list-with-remove-component.astro │ │ │ ├── react │ │ │ │ ├── GroupOfHorizontalListOfPokemons.tsx │ │ │ │ ├── GroupOfListsOfPokemons.tsx │ │ │ │ ├── PokemonComponent.tsx │ │ │ │ ├── SingleHorizontalListOfPokemons.tsx │ │ │ │ ├── SingleHorizontalListOfPokemonsAutoscroll.tsx │ │ │ │ ├── SingleVerticalListOfPokemons.tsx │ │ │ │ ├── SingleVerticalListOfPokemonsAutoscroll.tsx │ │ │ │ ├── SingleVerticalListOfPokemonsWithHandler.tsx │ │ │ │ ├── SingleVerticalListOfPokemonsWithInsert.tsx │ │ │ │ ├── SingleVerticalListOfPokemonsWithIsDraggable.tsx │ │ │ │ ├── SingleVerticalListOfPokemonsWithRemove.tsx │ │ │ │ ├── TouchDelaySilder.tsx │ │ │ │ └── css │ │ │ │ │ └── Pokemon.css │ │ │ ├── svelte │ │ │ │ ├── GroupOfHorizontalListOfPokemons.svelte │ │ │ │ ├── GroupOfListsOfPokemons.svelte │ │ │ │ ├── PokemonComponent.svelte │ │ │ │ ├── SingleHorizontalListOfPokemons.svelte │ │ │ │ ├── SingleHorizontalListOfPokemonsAutoscroll.svelte │ │ │ │ ├── SingleVerticalListOfPokemons.svelte │ │ │ │ ├── SingleVerticalListOfPokemonsAutoscroll.svelte │ │ │ │ ├── SingleVerticalListOfPokemonsWithHandler.svelte │ │ │ │ ├── SingleVerticalListOfPokemonsWithInsert.svelte │ │ │ │ ├── SingleVerticalListOfPokemonsWithIsDraggable.svelte │ │ │ │ ├── SingleVerticalListOfPokemonsWithRemove.svelte │ │ │ │ └── touchDelaySilder.svelte │ │ │ └── vue │ │ │ │ ├── GroupOfHorizontalListOfPokemons.vue │ │ │ │ ├── GroupOfListsOfPokemons.vue │ │ │ │ ├── PokemonComponent.vue │ │ │ │ ├── SingleHorizontalListOfPokemons.vue │ │ │ │ ├── SingleHorizontalListOfPokemonsAutoscroll.vue │ │ │ │ ├── SingleVerticalListOfPokemons.vue │ │ │ │ ├── SingleVerticalListOfPokemonsAutoscroll.vue │ │ │ │ ├── SingleVerticalListOfPokemonsWithHandler.vue │ │ │ │ ├── SingleVerticalListOfPokemonsWithInsert.vue │ │ │ │ ├── SingleVerticalListOfPokemonsWithIsDraggable.vue │ │ │ │ ├── SingleVerticalListOfPokemonsWithRemove.vue │ │ │ │ └── touchDelaySilder.vue │ │ ├── icons │ │ │ ├── IconComponent.vue │ │ │ ├── arrowDown.vue │ │ │ ├── handler.vue │ │ │ ├── logos │ │ │ │ ├── github.astro │ │ │ │ ├── react.vue │ │ │ │ ├── svelte.vue │ │ │ │ └── vue.vue │ │ │ ├── react │ │ │ │ ├── handler.tsx │ │ │ │ └── trash.tsx │ │ │ ├── start.astro │ │ │ ├── svelte │ │ │ │ ├── handler.svelte │ │ │ │ └── trash.svelte │ │ │ └── trash.vue │ │ ├── overrides │ │ │ ├── CustomHead.astro │ │ │ └── CustomSocialIcons.astro │ │ ├── react │ │ │ ├── DroppableStyles.tsx │ │ │ ├── ListGroup.tsx │ │ │ ├── ListWithDraggingStyles.tsx │ │ │ ├── ListWithInsert.tsx │ │ │ ├── ListWithMappedCoordinates.tsx │ │ │ ├── ListWithRemove.tsx │ │ │ ├── MapValuesGroup.tsx │ │ │ ├── Number.css │ │ │ ├── OnDragEvents.tsx │ │ │ ├── OnDragEventsWithMoreInfo.tsx │ │ │ ├── OnDragOverEvents.tsx │ │ │ ├── SingleHorizontalList.tsx │ │ │ ├── SingleListWithHandler.tsx │ │ │ ├── SingleListWithIsDraggable.tsx │ │ │ ├── SingleVerticalList.tsx │ │ │ ├── SingleVerticalListWithAutoscroll.tsx │ │ │ ├── SingleVerticalListWithDiferentStyles.tsx │ │ │ ├── SingleVerticalPersonList.tsx │ │ │ ├── SortingTable.tsx │ │ │ └── css │ │ │ │ ├── DroppableStyles.css │ │ │ │ ├── GroupNumber.css │ │ │ │ ├── InsertNumbers.css │ │ │ │ ├── MapValuesGroup.css │ │ │ │ ├── OnDragEvents.css │ │ │ │ ├── Person.css │ │ │ │ ├── RemoveNumber.css │ │ │ │ ├── SingleListWithIsDraggable.css │ │ │ │ └── Table.css │ │ ├── svelte │ │ │ ├── DroppableStyles.svelte │ │ │ ├── ListGroup.svelte │ │ │ ├── ListGroups.svelte │ │ │ ├── ListWithDraggingStyles.svelte │ │ │ ├── ListWithInsert.svelte │ │ │ ├── ListWithMappedCoordinates.svelte │ │ │ ├── ListWithRemove.svelte │ │ │ ├── MapValuesGroup.svelte │ │ │ ├── OnDragEvents.svelte │ │ │ ├── OnDragEventsWithMoreInfo.svelte │ │ │ ├── OnDragOverEvents.svelte │ │ │ ├── SingleHorizontalList.svelte │ │ │ ├── SingleListWithHandler.svelte │ │ │ ├── SingleListWithIsDraggable.svelte │ │ │ ├── SingleVerticalList.svelte │ │ │ ├── SingleVerticalListWithAutoscroll.svelte │ │ │ ├── SingleVerticalListWithDiferentStyles.svelte │ │ │ ├── SingleVerticalPersonList.svelte │ │ │ └── SortingTable.svelte │ │ └── vue │ │ │ ├── DroppableStyles.vue │ │ │ ├── ListGroup.vue │ │ │ ├── ListGroups.vue │ │ │ ├── ListWithDraggingStyles.vue │ │ │ ├── ListWithInsert.vue │ │ │ ├── ListWithMappedCoordinates.vue │ │ │ ├── ListWithRemove.vue │ │ │ ├── MapValuesGroup.vue │ │ │ ├── OnDragEvents.vue │ │ │ ├── OnDragEventsWithMoreInfo.vue │ │ │ ├── OnDragOverEvents.vue │ │ │ ├── SingleHorizontalList.vue │ │ │ ├── SingleListWithHandler.vue │ │ │ ├── SingleListWithIsDraggable.vue │ │ │ ├── SingleVerticalList.vue │ │ │ ├── SingleVerticalListWithAutoscroll.vue │ │ │ ├── SingleVerticalListWithDiferentStyles.vue │ │ │ ├── SingleVerticalPersonList.vue │ │ │ └── SortingTable.vue │ ├── content │ │ ├── config.ts │ │ └── docs │ │ │ ├── es │ │ │ ├── index.mdx │ │ │ ├── react │ │ │ │ ├── guides │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── listinsert.mdx │ │ │ │ │ │ └── listremove.mdx │ │ │ │ │ ├── events │ │ │ │ │ │ ├── mapcoordinates.mdx │ │ │ │ │ │ ├── mapvalues.mdx │ │ │ │ │ │ └── ondrag.mdx │ │ │ │ │ ├── horizontallist.mdx │ │ │ │ │ ├── isdraggable.mdx │ │ │ │ │ ├── listgroup.mdx │ │ │ │ │ ├── listinputs.mdx │ │ │ │ │ ├── sortingtable.mdx │ │ │ │ │ ├── styles │ │ │ │ │ │ ├── draggingclass.mdx │ │ │ │ │ │ ├── droppableclass.mdx │ │ │ │ │ │ └── listhandler.mdx │ │ │ │ │ ├── verticallist.mdx │ │ │ │ │ ├── verticallistautoscroll.mdx │ │ │ │ │ └── verticalliststyles.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── introduction │ │ │ │ │ └── introduction.mdx │ │ │ ├── svelte │ │ │ │ ├── guides │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── listinsert.mdx │ │ │ │ │ │ └── listremove.mdx │ │ │ │ │ ├── events │ │ │ │ │ │ ├── mapcoordinates.mdx │ │ │ │ │ │ ├── mapvalues.mdx │ │ │ │ │ │ └── ondrag.mdx │ │ │ │ │ ├── horizontallist.mdx │ │ │ │ │ ├── isdraggable.mdx │ │ │ │ │ ├── listgroup.mdx │ │ │ │ │ ├── listinputs.mdx │ │ │ │ │ ├── sortingtable.mdx │ │ │ │ │ ├── styles │ │ │ │ │ │ ├── draggingclass.mdx │ │ │ │ │ │ ├── droppableclass.mdx │ │ │ │ │ │ └── listhandler.mdx │ │ │ │ │ ├── verticallist.mdx │ │ │ │ │ ├── verticallistautoscroll.mdx │ │ │ │ │ └── verticalliststyles.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── introduction │ │ │ │ │ └── introduction.mdx │ │ │ └── vue │ │ │ │ ├── guides │ │ │ │ ├── actions │ │ │ │ │ ├── listinsert.mdx │ │ │ │ │ └── listremove.mdx │ │ │ │ ├── events │ │ │ │ │ ├── mapcoordinates.mdx │ │ │ │ │ ├── mapvalues.mdx │ │ │ │ │ └── ondrag.mdx │ │ │ │ ├── horizontallist.mdx │ │ │ │ ├── isdraggable.mdx │ │ │ │ ├── listgroup.mdx │ │ │ │ ├── listinputs.mdx │ │ │ │ ├── sortingtable.mdx │ │ │ │ ├── styles │ │ │ │ │ ├── draggingclass.mdx │ │ │ │ │ ├── droppableclass.mdx │ │ │ │ │ └── listhandler.mdx │ │ │ │ ├── verticallist.mdx │ │ │ │ ├── verticallistautoscroll.mdx │ │ │ │ └── verticalliststyles.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── introduction │ │ │ │ └── introduction.mdx │ │ │ ├── react │ │ │ ├── guides │ │ │ │ ├── actions │ │ │ │ │ ├── listinsert.mdx │ │ │ │ │ └── listremove.mdx │ │ │ │ ├── events │ │ │ │ │ ├── mapcoordinates.mdx │ │ │ │ │ ├── mapvalues.mdx │ │ │ │ │ └── ondrag.mdx │ │ │ │ ├── horizontallist.mdx │ │ │ │ ├── isdraggable.mdx │ │ │ │ ├── listgroup.mdx │ │ │ │ ├── listinputs.mdx │ │ │ │ ├── sortingtable.mdx │ │ │ │ ├── styles │ │ │ │ │ ├── draggingclass.mdx │ │ │ │ │ ├── droppableclass.mdx │ │ │ │ │ └── listhandler.mdx │ │ │ │ ├── verticallist.mdx │ │ │ │ ├── verticallistautoscroll.mdx │ │ │ │ └── verticalliststyles.mdx │ │ │ ├── index.mdx │ │ │ └── introduction │ │ │ │ └── introduction.mdx │ │ │ ├── svelte │ │ │ ├── guides │ │ │ │ ├── actions │ │ │ │ │ ├── listinsert.mdx │ │ │ │ │ └── listremove.mdx │ │ │ │ ├── events │ │ │ │ │ ├── mapcoordinates.mdx │ │ │ │ │ ├── mapvalues.mdx │ │ │ │ │ └── ondrag.mdx │ │ │ │ ├── horizontallist.mdx │ │ │ │ ├── isdraggable.mdx │ │ │ │ ├── listgroup.mdx │ │ │ │ ├── listinputs.mdx │ │ │ │ ├── sortingtable.mdx │ │ │ │ ├── styles │ │ │ │ │ ├── draggingclass.mdx │ │ │ │ │ ├── droppableclass.mdx │ │ │ │ │ └── listhandler.mdx │ │ │ │ ├── verticallist.mdx │ │ │ │ ├── verticallistautoscroll.mdx │ │ │ │ └── verticalliststyles.mdx │ │ │ ├── index.mdx │ │ │ └── introduction │ │ │ │ └── introduction.mdx │ │ │ └── vue │ │ │ ├── guides │ │ │ ├── actions │ │ │ │ ├── listinsert.mdx │ │ │ │ └── listremove.mdx │ │ │ ├── events │ │ │ │ ├── mapcoordinates.mdx │ │ │ │ ├── mapvalues.mdx │ │ │ │ └── ondrag.mdx │ │ │ ├── horizontallist.mdx │ │ │ ├── isdraggable.mdx │ │ │ ├── listgroup.mdx │ │ │ ├── listinputs.mdx │ │ │ ├── sortingtable.mdx │ │ │ ├── styles │ │ │ │ ├── draggingclass.mdx │ │ │ │ ├── droppableclass.mdx │ │ │ │ └── listhandler.mdx │ │ │ ├── verticallist.mdx │ │ │ ├── verticallistautoscroll.mdx │ │ │ └── verticalliststyles.mdx │ │ │ ├── index.mdx │ │ │ └── introduction │ │ │ └── introduction.mdx │ ├── directives │ │ └── clickOutside.ts │ ├── env.d.ts │ ├── i18n │ │ ├── en.json │ │ ├── es.json │ │ └── index.ts │ ├── middlewares │ │ └── frameworkSidebaMiddleWare.ts │ ├── pages │ │ ├── es │ │ │ ├── react │ │ │ │ └── example │ │ │ │ │ ├── horizontal-list │ │ │ │ │ ├── group-horizontal-lists.astro │ │ │ │ │ ├── single-horizontal-list-autoscroll.astro │ │ │ │ │ └── single-horizontal-list.astro │ │ │ │ │ └── vertical-list │ │ │ │ │ ├── group-vertical-lists.astro │ │ │ │ │ ├── single-vertical-list-autoscroll.astro │ │ │ │ │ ├── single-vertical-list-component-with-handler.astro │ │ │ │ │ ├── single-vertical-list-component-with-is-draggable.astro │ │ │ │ │ ├── single-vertical-list-with-insert.astro │ │ │ │ │ ├── single-vertical-list-with-remove.astro │ │ │ │ │ └── single-vertical-list.astro │ │ │ ├── svelte │ │ │ │ └── example │ │ │ │ │ ├── horizontal-list │ │ │ │ │ ├── group-horizontal-lists.astro │ │ │ │ │ ├── single-horizontal-list-autoscroll.astro │ │ │ │ │ └── single-horizontal-list.astro │ │ │ │ │ └── vertical-list │ │ │ │ │ ├── group-vertical-lists.astro │ │ │ │ │ ├── single-vertical-list-autoscroll.astro │ │ │ │ │ ├── single-vertical-list-component-with-handler.astro │ │ │ │ │ ├── single-vertical-list-component-with-is-draggable.astro │ │ │ │ │ ├── single-vertical-list-with-insert.astro │ │ │ │ │ ├── single-vertical-list-with-remove.astro │ │ │ │ │ └── single-vertical-list.astro │ │ │ └── vue │ │ │ │ └── example │ │ │ │ ├── horizontal-list │ │ │ │ ├── group-horizontal-lists.astro │ │ │ │ ├── single-horizontal-list-autoscroll.astro │ │ │ │ └── single-horizontal-list.astro │ │ │ │ └── vertical-list │ │ │ │ ├── group-vertical-lists.astro │ │ │ │ ├── single-vertical-list-autoscroll.astro │ │ │ │ ├── single-vertical-list-component-with-handler.astro │ │ │ │ ├── single-vertical-list-component-with-is-draggable.astro │ │ │ │ ├── single-vertical-list-with-insert.astro │ │ │ │ ├── single-vertical-list-with-remove.astro │ │ │ │ └── single-vertical-list.astro │ │ ├── react │ │ │ └── example │ │ │ │ ├── horizontal-list │ │ │ │ ├── group-horizontal-lists.astro │ │ │ │ ├── single-horizontal-list-autoscroll.astro │ │ │ │ └── single-horizontal-list.astro │ │ │ │ └── vertical-list │ │ │ │ ├── group-vertical-lists.astro │ │ │ │ ├── single-vertical-list-autoscroll.astro │ │ │ │ ├── single-vertical-list-component-with-handler.astro │ │ │ │ ├── single-vertical-list-component-with-is-draggable.astro │ │ │ │ ├── single-vertical-list-with-insert.astro │ │ │ │ ├── single-vertical-list-with-remove.astro │ │ │ │ └── single-vertical-list.astro │ │ ├── svelte │ │ │ └── example │ │ │ │ ├── horizontal-list │ │ │ │ ├── group-horizontal-lists.astro │ │ │ │ ├── single-horizontal-list-autoscroll.astro │ │ │ │ └── single-horizontal-list.astro │ │ │ │ └── vertical-list │ │ │ │ ├── group-vertical-lists.astro │ │ │ │ ├── single-vertical-list-autoscroll.astro │ │ │ │ ├── single-vertical-list-component-with-handler.astro │ │ │ │ ├── single-vertical-list-component-with-is-draggable.astro │ │ │ │ ├── single-vertical-list-with-insert.astro │ │ │ │ ├── single-vertical-list-with-remove.astro │ │ │ │ └── single-vertical-list.astro │ │ └── vue │ │ │ └── example │ │ │ ├── horizontal-list │ │ │ ├── group-horizontal-lists.astro │ │ │ ├── single-horizontal-list-autoscroll.astro │ │ │ └── single-horizontal-list.astro │ │ │ └── vertical-list │ │ │ ├── group-vertical-lists.astro │ │ │ ├── single-vertical-list-autoscroll.astro │ │ │ ├── single-vertical-list-component-with-handler.astro │ │ │ ├── single-vertical-list-component-with-is-draggable.astro │ │ │ ├── single-vertical-list-with-insert.astro │ │ │ ├── single-vertical-list-with-remove.astro │ │ │ └── single-vertical-list.astro │ ├── server │ │ └── pokemonServer.ts │ ├── tailwind.css │ ├── types.ts │ └── utils │ │ ├── frameworkConfig.ts │ │ ├── mobile.ts │ │ └── structuredData.ts ├── svelte.config.js ├── tailwind.config.mjs └── tsconfig.json ├── e2e └── ExampleVerticalListWithChildElements.spec.ts ├── index.d.ts ├── package.json ├── playwright.config.ts ├── pnpm-lock.yaml ├── public ├── fluid-dnd-logo.png └── fluid-dnd.svg ├── src ├── core │ ├── HandlerPublisher.ts │ ├── config │ │ ├── configHandler.ts │ │ └── droppableConfigurator.ts │ ├── dragAndDrop.ts │ ├── events │ │ ├── changeDraggableStyles.ts │ │ ├── dragAndDrop │ │ │ ├── dragAndDrop.ts │ │ │ ├── getTranslateBeforeDropping.ts │ │ │ └── getTranslationByDraggingAndEvent.ts │ │ ├── insert.ts │ │ └── remove.ts │ ├── index.ts │ ├── positioning │ │ ├── autoScroll.ts │ │ └── usePositioning.ts │ ├── tempChildren.ts │ ├── useDraggable.ts │ ├── useDroppable.ts │ └── utils │ │ ├── GetStyles.ts │ │ ├── ParseStyles.ts │ │ ├── SetStyles.ts │ │ ├── classes.ts │ │ ├── dom │ │ └── classList.ts │ │ ├── index.ts │ │ ├── observer.ts │ │ └── typesCheckers.ts ├── index.ts ├── react │ ├── index.ts │ ├── useDragAndDrop.ts │ └── utils │ │ └── ReactLilstConfig.ts ├── svelte │ ├── index.ts │ ├── useDragAndDrop.ts │ └── utils │ │ └── SvelteListCondig.ts ├── vite-env.d.ts └── vue │ ├── index.ts │ ├── useDragAndDrop.ts │ └── utils │ ├── DropMethods.ts │ └── VueListCondig.ts ├── tests-frameworks ├── react │ ├── .gitignore │ ├── README.md │ ├── eslint.config.js │ ├── index.html │ ├── package.json │ ├── pnpm-lock.yaml │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── assets │ │ │ ├── pokemon-bg.svg │ │ │ └── react.svg │ │ ├── components │ │ │ ├── groupOfNumberList.tsx │ │ │ ├── groupOfPokemonlists.tsx │ │ │ ├── pokemon.css │ │ │ ├── pokemonComponent.tsx │ │ │ ├── simpleNumberList.css │ │ │ └── simpleNumberList.tsx │ │ ├── index.css │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── svelte │ ├── .gitignore │ ├── .npmrc │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── e2e │ │ └── demo.test.ts │ ├── eslint.config.js │ ├── package.json │ ├── playwright.config.ts │ ├── pnpm-lock.yaml │ ├── src │ │ ├── app.css │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── components │ │ │ ├── ExampleOfPokemonList.svelte │ │ │ ├── ListGroup.svelte │ │ │ ├── NestedTask.svelte │ │ │ ├── NumberContextConsumer.svelte │ │ │ ├── NumberListWithContext.svelte │ │ │ ├── PokemonComponent.svelte │ │ │ ├── Tasks.svelte │ │ │ ├── groupOfNumberLists.svelte │ │ │ ├── innerDroppable.svelte │ │ │ ├── nestedDroppables.svelte │ │ │ └── simpleNumberList.svelte │ │ ├── lib │ │ │ ├── index.ts │ │ │ └── numberContext.ts │ │ └── routes │ │ │ ├── +layout.svelte │ │ │ └── +page.svelte │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ ├── tsconfig.json │ └── vite.config.ts └── vue │ ├── .gitignore │ ├── .vscode │ └── extensions.json │ ├── README.md │ ├── components.json │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── pnpm-lock.yaml │ ├── public │ ├── logo.svg │ └── vite.svg │ ├── src │ ├── App.vue │ ├── assets │ │ └── vue.svg │ ├── components │ │ ├── Droppable.vue │ │ ├── ExampleCompoundDroppable.vue │ │ ├── ExampleCompoundDroppableEvent.vue │ │ ├── ExampleCounterList.vue │ │ ├── ExampleGroupOfListWithStyles.vue │ │ ├── ExampleGroupOflist.vue │ │ ├── ExampleHorizontalCounterList.vue │ │ ├── ExampleHorizontalList.vue │ │ ├── ExampleHorizontalListWithMixedStyles.vue │ │ ├── ExampleHorizontalScrollList.vue │ │ ├── ExampleInsertHorizontalList.vue │ │ ├── ExampleInsertList.vue │ │ ├── ExampleInsideDialog.vue │ │ ├── ExampleListGroupDroppableAndDraggableClasses.vue │ │ ├── ExampleListWithRemove.vue │ │ ├── ExampleOfPokemonList.vue │ │ ├── ExampleTable.vue │ │ ├── ExampleVertialScrollList.vue │ │ ├── ExampleVerticalListWithChildElements.vue │ │ ├── ExampleVerticalListWithHandler.vue │ │ ├── NumberComponent.vue │ │ ├── PokemonComponent.vue │ │ ├── icons │ │ │ ├── handler.vue │ │ │ └── trash.vue │ │ └── ui │ │ │ └── dialog │ │ │ ├── Dialog.vue │ │ │ ├── DialogClose.vue │ │ │ ├── DialogContent.vue │ │ │ ├── DialogDescription.vue │ │ │ ├── DialogFooter.vue │ │ │ ├── DialogHeader.vue │ │ │ ├── DialogOverlay.vue │ │ │ ├── DialogScrollContent.vue │ │ │ ├── DialogTitle.vue │ │ │ ├── DialogTrigger.vue │ │ │ └── index.ts │ ├── lib │ │ └── utils.ts │ ├── main.ts │ ├── style.css │ └── vite-env.d.ts │ ├── tests │ └── browser.test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── tests └── calculateRangeWhileDragging.test.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/release_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/.github/workflows/release_package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/.prettierrc -------------------------------------------------------------------------------- /docs/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/.vscode/extensions.json -------------------------------------------------------------------------------- /docs/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/.vscode/launch.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/STRUCTURED_DATA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/STRUCTURED_DATA.md -------------------------------------------------------------------------------- /docs/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/astro.config.mjs -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/pnpm-lock.yaml -------------------------------------------------------------------------------- /docs/public/favicon - zoomed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/public/favicon - zoomed.svg -------------------------------------------------------------------------------- /docs/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/public/favicon.png -------------------------------------------------------------------------------- /docs/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/public/favicon.svg -------------------------------------------------------------------------------- /docs/public/org.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/public/org.webp -------------------------------------------------------------------------------- /docs/src/assets/dark-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/assets/dark-logo.svg -------------------------------------------------------------------------------- /docs/src/assets/landing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/assets/landing.css -------------------------------------------------------------------------------- /docs/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/assets/logo.svg -------------------------------------------------------------------------------- /docs/src/assets/pokemon-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/assets/pokemon-bg.png -------------------------------------------------------------------------------- /docs/src/assets/pokemon-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/assets/pokemon-bg.svg -------------------------------------------------------------------------------- /docs/src/components/Accordion.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/Accordion.astro -------------------------------------------------------------------------------- /docs/src/components/Accordion.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/Accordion.vue -------------------------------------------------------------------------------- /docs/src/components/CustomTitle.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/CustomTitle.astro -------------------------------------------------------------------------------- /docs/src/components/FrameworkSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/FrameworkSelector.vue -------------------------------------------------------------------------------- /docs/src/components/IconSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/IconSelector.vue -------------------------------------------------------------------------------- /docs/src/components/Sidebar.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/Sidebar.astro -------------------------------------------------------------------------------- /docs/src/components/examples/ExampleLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/ExampleLayout.astro -------------------------------------------------------------------------------- /docs/src/components/examples/Pokemon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/Pokemon.ts -------------------------------------------------------------------------------- /docs/src/components/examples/pages/group-horizontal-lists-component.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/pages/group-horizontal-lists-component.astro -------------------------------------------------------------------------------- /docs/src/components/examples/pages/group-vertical-lists-component.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/pages/group-vertical-lists-component.astro -------------------------------------------------------------------------------- /docs/src/components/examples/pages/shared/page-component.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/pages/shared/page-component.astro -------------------------------------------------------------------------------- /docs/src/components/examples/pages/single-horizontal-list-autoscroll-component.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/pages/single-horizontal-list-autoscroll-component.astro -------------------------------------------------------------------------------- /docs/src/components/examples/pages/single-horizontal-list-component.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/pages/single-horizontal-list-component.astro -------------------------------------------------------------------------------- /docs/src/components/examples/pages/single-vertical-list-autoscroll-component.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/pages/single-vertical-list-autoscroll-component.astro -------------------------------------------------------------------------------- /docs/src/components/examples/pages/single-vertical-list-component-with-handler.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/pages/single-vertical-list-component-with-handler.astro -------------------------------------------------------------------------------- /docs/src/components/examples/pages/single-vertical-list-component-with-is-draggable.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/pages/single-vertical-list-component-with-is-draggable.astro -------------------------------------------------------------------------------- /docs/src/components/examples/pages/single-vertical-list-component.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/pages/single-vertical-list-component.astro -------------------------------------------------------------------------------- /docs/src/components/examples/pages/single-vertical-list-with-insert-component.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/pages/single-vertical-list-with-insert-component.astro -------------------------------------------------------------------------------- /docs/src/components/examples/pages/single-vertical-list-with-remove-component.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/pages/single-vertical-list-with-remove-component.astro -------------------------------------------------------------------------------- /docs/src/components/examples/react/GroupOfHorizontalListOfPokemons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/react/GroupOfHorizontalListOfPokemons.tsx -------------------------------------------------------------------------------- /docs/src/components/examples/react/GroupOfListsOfPokemons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/react/GroupOfListsOfPokemons.tsx -------------------------------------------------------------------------------- /docs/src/components/examples/react/PokemonComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/react/PokemonComponent.tsx -------------------------------------------------------------------------------- /docs/src/components/examples/react/SingleHorizontalListOfPokemons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/react/SingleHorizontalListOfPokemons.tsx -------------------------------------------------------------------------------- /docs/src/components/examples/react/SingleHorizontalListOfPokemonsAutoscroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/react/SingleHorizontalListOfPokemonsAutoscroll.tsx -------------------------------------------------------------------------------- /docs/src/components/examples/react/SingleVerticalListOfPokemons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/react/SingleVerticalListOfPokemons.tsx -------------------------------------------------------------------------------- /docs/src/components/examples/react/SingleVerticalListOfPokemonsAutoscroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/react/SingleVerticalListOfPokemonsAutoscroll.tsx -------------------------------------------------------------------------------- /docs/src/components/examples/react/SingleVerticalListOfPokemonsWithHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/react/SingleVerticalListOfPokemonsWithHandler.tsx -------------------------------------------------------------------------------- /docs/src/components/examples/react/SingleVerticalListOfPokemonsWithInsert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/react/SingleVerticalListOfPokemonsWithInsert.tsx -------------------------------------------------------------------------------- /docs/src/components/examples/react/SingleVerticalListOfPokemonsWithIsDraggable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/react/SingleVerticalListOfPokemonsWithIsDraggable.tsx -------------------------------------------------------------------------------- /docs/src/components/examples/react/SingleVerticalListOfPokemonsWithRemove.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/react/SingleVerticalListOfPokemonsWithRemove.tsx -------------------------------------------------------------------------------- /docs/src/components/examples/react/TouchDelaySilder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/react/TouchDelaySilder.tsx -------------------------------------------------------------------------------- /docs/src/components/examples/react/css/Pokemon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/react/css/Pokemon.css -------------------------------------------------------------------------------- /docs/src/components/examples/svelte/GroupOfHorizontalListOfPokemons.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/svelte/GroupOfHorizontalListOfPokemons.svelte -------------------------------------------------------------------------------- /docs/src/components/examples/svelte/GroupOfListsOfPokemons.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/svelte/GroupOfListsOfPokemons.svelte -------------------------------------------------------------------------------- /docs/src/components/examples/svelte/PokemonComponent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/svelte/PokemonComponent.svelte -------------------------------------------------------------------------------- /docs/src/components/examples/svelte/SingleHorizontalListOfPokemons.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/svelte/SingleHorizontalListOfPokemons.svelte -------------------------------------------------------------------------------- /docs/src/components/examples/svelte/SingleHorizontalListOfPokemonsAutoscroll.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/svelte/SingleHorizontalListOfPokemonsAutoscroll.svelte -------------------------------------------------------------------------------- /docs/src/components/examples/svelte/SingleVerticalListOfPokemons.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/svelte/SingleVerticalListOfPokemons.svelte -------------------------------------------------------------------------------- /docs/src/components/examples/svelte/SingleVerticalListOfPokemonsAutoscroll.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/svelte/SingleVerticalListOfPokemonsAutoscroll.svelte -------------------------------------------------------------------------------- /docs/src/components/examples/svelte/SingleVerticalListOfPokemonsWithHandler.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/svelte/SingleVerticalListOfPokemonsWithHandler.svelte -------------------------------------------------------------------------------- /docs/src/components/examples/svelte/SingleVerticalListOfPokemonsWithInsert.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/svelte/SingleVerticalListOfPokemonsWithInsert.svelte -------------------------------------------------------------------------------- /docs/src/components/examples/svelte/SingleVerticalListOfPokemonsWithIsDraggable.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/svelte/SingleVerticalListOfPokemonsWithIsDraggable.svelte -------------------------------------------------------------------------------- /docs/src/components/examples/svelte/SingleVerticalListOfPokemonsWithRemove.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/svelte/SingleVerticalListOfPokemonsWithRemove.svelte -------------------------------------------------------------------------------- /docs/src/components/examples/svelte/touchDelaySilder.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/svelte/touchDelaySilder.svelte -------------------------------------------------------------------------------- /docs/src/components/examples/vue/GroupOfHorizontalListOfPokemons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/vue/GroupOfHorizontalListOfPokemons.vue -------------------------------------------------------------------------------- /docs/src/components/examples/vue/GroupOfListsOfPokemons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/vue/GroupOfListsOfPokemons.vue -------------------------------------------------------------------------------- /docs/src/components/examples/vue/PokemonComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/vue/PokemonComponent.vue -------------------------------------------------------------------------------- /docs/src/components/examples/vue/SingleHorizontalListOfPokemons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/vue/SingleHorizontalListOfPokemons.vue -------------------------------------------------------------------------------- /docs/src/components/examples/vue/SingleHorizontalListOfPokemonsAutoscroll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/vue/SingleHorizontalListOfPokemonsAutoscroll.vue -------------------------------------------------------------------------------- /docs/src/components/examples/vue/SingleVerticalListOfPokemons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/vue/SingleVerticalListOfPokemons.vue -------------------------------------------------------------------------------- /docs/src/components/examples/vue/SingleVerticalListOfPokemonsAutoscroll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/vue/SingleVerticalListOfPokemonsAutoscroll.vue -------------------------------------------------------------------------------- /docs/src/components/examples/vue/SingleVerticalListOfPokemonsWithHandler.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/vue/SingleVerticalListOfPokemonsWithHandler.vue -------------------------------------------------------------------------------- /docs/src/components/examples/vue/SingleVerticalListOfPokemonsWithInsert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/vue/SingleVerticalListOfPokemonsWithInsert.vue -------------------------------------------------------------------------------- /docs/src/components/examples/vue/SingleVerticalListOfPokemonsWithIsDraggable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/vue/SingleVerticalListOfPokemonsWithIsDraggable.vue -------------------------------------------------------------------------------- /docs/src/components/examples/vue/SingleVerticalListOfPokemonsWithRemove.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/vue/SingleVerticalListOfPokemonsWithRemove.vue -------------------------------------------------------------------------------- /docs/src/components/examples/vue/touchDelaySilder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/examples/vue/touchDelaySilder.vue -------------------------------------------------------------------------------- /docs/src/components/icons/IconComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/icons/IconComponent.vue -------------------------------------------------------------------------------- /docs/src/components/icons/arrowDown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/icons/arrowDown.vue -------------------------------------------------------------------------------- /docs/src/components/icons/handler.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/icons/handler.vue -------------------------------------------------------------------------------- /docs/src/components/icons/logos/github.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/icons/logos/github.astro -------------------------------------------------------------------------------- /docs/src/components/icons/logos/react.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/icons/logos/react.vue -------------------------------------------------------------------------------- /docs/src/components/icons/logos/svelte.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/icons/logos/svelte.vue -------------------------------------------------------------------------------- /docs/src/components/icons/logos/vue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/icons/logos/vue.vue -------------------------------------------------------------------------------- /docs/src/components/icons/react/handler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/icons/react/handler.tsx -------------------------------------------------------------------------------- /docs/src/components/icons/react/trash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/icons/react/trash.tsx -------------------------------------------------------------------------------- /docs/src/components/icons/start.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/icons/start.astro -------------------------------------------------------------------------------- /docs/src/components/icons/svelte/handler.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/icons/svelte/handler.svelte -------------------------------------------------------------------------------- /docs/src/components/icons/svelte/trash.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/icons/svelte/trash.svelte -------------------------------------------------------------------------------- /docs/src/components/icons/trash.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/icons/trash.vue -------------------------------------------------------------------------------- /docs/src/components/overrides/CustomHead.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/overrides/CustomHead.astro -------------------------------------------------------------------------------- /docs/src/components/overrides/CustomSocialIcons.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/overrides/CustomSocialIcons.astro -------------------------------------------------------------------------------- /docs/src/components/react/DroppableStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/DroppableStyles.tsx -------------------------------------------------------------------------------- /docs/src/components/react/ListGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/ListGroup.tsx -------------------------------------------------------------------------------- /docs/src/components/react/ListWithDraggingStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/ListWithDraggingStyles.tsx -------------------------------------------------------------------------------- /docs/src/components/react/ListWithInsert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/ListWithInsert.tsx -------------------------------------------------------------------------------- /docs/src/components/react/ListWithMappedCoordinates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/ListWithMappedCoordinates.tsx -------------------------------------------------------------------------------- /docs/src/components/react/ListWithRemove.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/ListWithRemove.tsx -------------------------------------------------------------------------------- /docs/src/components/react/MapValuesGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/MapValuesGroup.tsx -------------------------------------------------------------------------------- /docs/src/components/react/Number.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/Number.css -------------------------------------------------------------------------------- /docs/src/components/react/OnDragEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/OnDragEvents.tsx -------------------------------------------------------------------------------- /docs/src/components/react/OnDragEventsWithMoreInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/OnDragEventsWithMoreInfo.tsx -------------------------------------------------------------------------------- /docs/src/components/react/OnDragOverEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/OnDragOverEvents.tsx -------------------------------------------------------------------------------- /docs/src/components/react/SingleHorizontalList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/SingleHorizontalList.tsx -------------------------------------------------------------------------------- /docs/src/components/react/SingleListWithHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/SingleListWithHandler.tsx -------------------------------------------------------------------------------- /docs/src/components/react/SingleListWithIsDraggable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/SingleListWithIsDraggable.tsx -------------------------------------------------------------------------------- /docs/src/components/react/SingleVerticalList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/SingleVerticalList.tsx -------------------------------------------------------------------------------- /docs/src/components/react/SingleVerticalListWithAutoscroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/SingleVerticalListWithAutoscroll.tsx -------------------------------------------------------------------------------- /docs/src/components/react/SingleVerticalListWithDiferentStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/SingleVerticalListWithDiferentStyles.tsx -------------------------------------------------------------------------------- /docs/src/components/react/SingleVerticalPersonList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/SingleVerticalPersonList.tsx -------------------------------------------------------------------------------- /docs/src/components/react/SortingTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/SortingTable.tsx -------------------------------------------------------------------------------- /docs/src/components/react/css/DroppableStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/css/DroppableStyles.css -------------------------------------------------------------------------------- /docs/src/components/react/css/GroupNumber.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/css/GroupNumber.css -------------------------------------------------------------------------------- /docs/src/components/react/css/InsertNumbers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/css/InsertNumbers.css -------------------------------------------------------------------------------- /docs/src/components/react/css/MapValuesGroup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/css/MapValuesGroup.css -------------------------------------------------------------------------------- /docs/src/components/react/css/OnDragEvents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/css/OnDragEvents.css -------------------------------------------------------------------------------- /docs/src/components/react/css/Person.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/css/Person.css -------------------------------------------------------------------------------- /docs/src/components/react/css/RemoveNumber.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/css/RemoveNumber.css -------------------------------------------------------------------------------- /docs/src/components/react/css/SingleListWithIsDraggable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/css/SingleListWithIsDraggable.css -------------------------------------------------------------------------------- /docs/src/components/react/css/Table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/react/css/Table.css -------------------------------------------------------------------------------- /docs/src/components/svelte/DroppableStyles.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/DroppableStyles.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/ListGroup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/ListGroup.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/ListGroups.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/ListGroups.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/ListWithDraggingStyles.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/ListWithDraggingStyles.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/ListWithInsert.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/ListWithInsert.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/ListWithMappedCoordinates.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/ListWithMappedCoordinates.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/ListWithRemove.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/ListWithRemove.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/MapValuesGroup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/MapValuesGroup.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/OnDragEvents.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/OnDragEvents.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/OnDragEventsWithMoreInfo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/OnDragEventsWithMoreInfo.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/OnDragOverEvents.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/OnDragOverEvents.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/SingleHorizontalList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/SingleHorizontalList.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/SingleListWithHandler.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/SingleListWithHandler.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/SingleListWithIsDraggable.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/SingleListWithIsDraggable.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/SingleVerticalList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/SingleVerticalList.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/SingleVerticalListWithAutoscroll.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/SingleVerticalListWithAutoscroll.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/SingleVerticalListWithDiferentStyles.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/SingleVerticalListWithDiferentStyles.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/SingleVerticalPersonList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/SingleVerticalPersonList.svelte -------------------------------------------------------------------------------- /docs/src/components/svelte/SortingTable.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/svelte/SortingTable.svelte -------------------------------------------------------------------------------- /docs/src/components/vue/DroppableStyles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/DroppableStyles.vue -------------------------------------------------------------------------------- /docs/src/components/vue/ListGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/ListGroup.vue -------------------------------------------------------------------------------- /docs/src/components/vue/ListGroups.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/ListGroups.vue -------------------------------------------------------------------------------- /docs/src/components/vue/ListWithDraggingStyles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/ListWithDraggingStyles.vue -------------------------------------------------------------------------------- /docs/src/components/vue/ListWithInsert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/ListWithInsert.vue -------------------------------------------------------------------------------- /docs/src/components/vue/ListWithMappedCoordinates.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/ListWithMappedCoordinates.vue -------------------------------------------------------------------------------- /docs/src/components/vue/ListWithRemove.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/ListWithRemove.vue -------------------------------------------------------------------------------- /docs/src/components/vue/MapValuesGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/MapValuesGroup.vue -------------------------------------------------------------------------------- /docs/src/components/vue/OnDragEvents.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/OnDragEvents.vue -------------------------------------------------------------------------------- /docs/src/components/vue/OnDragEventsWithMoreInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/OnDragEventsWithMoreInfo.vue -------------------------------------------------------------------------------- /docs/src/components/vue/OnDragOverEvents.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/OnDragOverEvents.vue -------------------------------------------------------------------------------- /docs/src/components/vue/SingleHorizontalList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/SingleHorizontalList.vue -------------------------------------------------------------------------------- /docs/src/components/vue/SingleListWithHandler.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/SingleListWithHandler.vue -------------------------------------------------------------------------------- /docs/src/components/vue/SingleListWithIsDraggable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/SingleListWithIsDraggable.vue -------------------------------------------------------------------------------- /docs/src/components/vue/SingleVerticalList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/SingleVerticalList.vue -------------------------------------------------------------------------------- /docs/src/components/vue/SingleVerticalListWithAutoscroll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/SingleVerticalListWithAutoscroll.vue -------------------------------------------------------------------------------- /docs/src/components/vue/SingleVerticalListWithDiferentStyles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/SingleVerticalListWithDiferentStyles.vue -------------------------------------------------------------------------------- /docs/src/components/vue/SingleVerticalPersonList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/SingleVerticalPersonList.vue -------------------------------------------------------------------------------- /docs/src/components/vue/SortingTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/components/vue/SortingTable.vue -------------------------------------------------------------------------------- /docs/src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/config.ts -------------------------------------------------------------------------------- /docs/src/content/docs/es/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/index.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/guides/actions/listinsert.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/guides/actions/listinsert.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/guides/actions/listremove.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/guides/actions/listremove.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/guides/events/mapcoordinates.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/guides/events/mapcoordinates.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/guides/events/mapvalues.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/guides/events/mapvalues.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/guides/events/ondrag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/guides/events/ondrag.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/guides/horizontallist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/guides/horizontallist.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/guides/isdraggable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/guides/isdraggable.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/guides/listgroup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/guides/listgroup.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/guides/listinputs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/guides/listinputs.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/guides/sortingtable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/guides/sortingtable.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/guides/styles/draggingclass.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/guides/styles/draggingclass.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/guides/styles/droppableclass.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/guides/styles/droppableclass.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/guides/styles/listhandler.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/guides/styles/listhandler.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/guides/verticallist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/guides/verticallist.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/guides/verticallistautoscroll.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/guides/verticallistautoscroll.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/guides/verticalliststyles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/guides/verticalliststyles.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/index.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/react/introduction/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/react/introduction/introduction.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/guides/actions/listinsert.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/guides/actions/listinsert.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/guides/actions/listremove.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/guides/actions/listremove.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/guides/events/mapcoordinates.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/guides/events/mapcoordinates.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/guides/events/mapvalues.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/guides/events/mapvalues.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/guides/events/ondrag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/guides/events/ondrag.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/guides/horizontallist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/guides/horizontallist.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/guides/isdraggable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/guides/isdraggable.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/guides/listgroup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/guides/listgroup.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/guides/listinputs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/guides/listinputs.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/guides/sortingtable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/guides/sortingtable.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/guides/styles/draggingclass.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/guides/styles/draggingclass.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/guides/styles/droppableclass.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/guides/styles/droppableclass.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/guides/styles/listhandler.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/guides/styles/listhandler.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/guides/verticallist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/guides/verticallist.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/guides/verticallistautoscroll.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/guides/verticallistautoscroll.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/guides/verticalliststyles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/guides/verticalliststyles.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/index.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/svelte/introduction/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/svelte/introduction/introduction.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/guides/actions/listinsert.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/guides/actions/listinsert.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/guides/actions/listremove.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/guides/actions/listremove.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/guides/events/mapcoordinates.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/guides/events/mapcoordinates.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/guides/events/mapvalues.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/guides/events/mapvalues.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/guides/events/ondrag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/guides/events/ondrag.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/guides/horizontallist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/guides/horizontallist.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/guides/isdraggable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/guides/isdraggable.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/guides/listgroup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/guides/listgroup.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/guides/listinputs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/guides/listinputs.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/guides/sortingtable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/guides/sortingtable.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/guides/styles/draggingclass.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/guides/styles/draggingclass.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/guides/styles/droppableclass.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/guides/styles/droppableclass.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/guides/styles/listhandler.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/guides/styles/listhandler.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/guides/verticallist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/guides/verticallist.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/guides/verticallistautoscroll.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/guides/verticallistautoscroll.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/guides/verticalliststyles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/guides/verticalliststyles.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/index.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/es/vue/introduction/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/es/vue/introduction/introduction.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/guides/actions/listinsert.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/guides/actions/listinsert.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/guides/actions/listremove.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/guides/actions/listremove.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/guides/events/mapcoordinates.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/guides/events/mapcoordinates.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/guides/events/mapvalues.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/guides/events/mapvalues.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/guides/events/ondrag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/guides/events/ondrag.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/guides/horizontallist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/guides/horizontallist.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/guides/isdraggable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/guides/isdraggable.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/guides/listgroup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/guides/listgroup.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/guides/listinputs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/guides/listinputs.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/guides/sortingtable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/guides/sortingtable.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/guides/styles/draggingclass.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/guides/styles/draggingclass.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/guides/styles/droppableclass.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/guides/styles/droppableclass.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/guides/styles/listhandler.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/guides/styles/listhandler.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/guides/verticallist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/guides/verticallist.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/guides/verticallistautoscroll.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/guides/verticallistautoscroll.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/guides/verticalliststyles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/guides/verticalliststyles.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/index.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/react/introduction/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/react/introduction/introduction.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/guides/actions/listinsert.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/guides/actions/listinsert.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/guides/actions/listremove.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/guides/actions/listremove.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/guides/events/mapcoordinates.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/guides/events/mapcoordinates.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/guides/events/mapvalues.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/guides/events/mapvalues.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/guides/events/ondrag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/guides/events/ondrag.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/guides/horizontallist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/guides/horizontallist.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/guides/isdraggable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/guides/isdraggable.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/guides/listgroup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/guides/listgroup.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/guides/listinputs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/guides/listinputs.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/guides/sortingtable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/guides/sortingtable.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/guides/styles/draggingclass.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/guides/styles/draggingclass.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/guides/styles/droppableclass.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/guides/styles/droppableclass.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/guides/styles/listhandler.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/guides/styles/listhandler.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/guides/verticallist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/guides/verticallist.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/guides/verticallistautoscroll.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/guides/verticallistautoscroll.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/guides/verticalliststyles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/guides/verticalliststyles.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/index.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/svelte/introduction/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/svelte/introduction/introduction.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/guides/actions/listinsert.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/guides/actions/listinsert.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/guides/actions/listremove.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/guides/actions/listremove.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/guides/events/mapcoordinates.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/guides/events/mapcoordinates.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/guides/events/mapvalues.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/guides/events/mapvalues.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/guides/events/ondrag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/guides/events/ondrag.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/guides/horizontallist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/guides/horizontallist.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/guides/isdraggable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/guides/isdraggable.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/guides/listgroup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/guides/listgroup.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/guides/listinputs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/guides/listinputs.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/guides/sortingtable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/guides/sortingtable.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/guides/styles/draggingclass.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/guides/styles/draggingclass.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/guides/styles/droppableclass.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/guides/styles/droppableclass.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/guides/styles/listhandler.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/guides/styles/listhandler.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/guides/verticallist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/guides/verticallist.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/guides/verticallistautoscroll.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/guides/verticallistautoscroll.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/guides/verticalliststyles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/guides/verticalliststyles.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/index.mdx -------------------------------------------------------------------------------- /docs/src/content/docs/vue/introduction/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/content/docs/vue/introduction/introduction.mdx -------------------------------------------------------------------------------- /docs/src/directives/clickOutside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/directives/clickOutside.ts -------------------------------------------------------------------------------- /docs/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/env.d.ts -------------------------------------------------------------------------------- /docs/src/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/i18n/en.json -------------------------------------------------------------------------------- /docs/src/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/i18n/es.json -------------------------------------------------------------------------------- /docs/src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/i18n/index.ts -------------------------------------------------------------------------------- /docs/src/middlewares/frameworkSidebaMiddleWare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/middlewares/frameworkSidebaMiddleWare.ts -------------------------------------------------------------------------------- /docs/src/pages/es/react/example/horizontal-list/group-horizontal-lists.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/react/example/horizontal-list/group-horizontal-lists.astro -------------------------------------------------------------------------------- /docs/src/pages/es/react/example/horizontal-list/single-horizontal-list-autoscroll.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/react/example/horizontal-list/single-horizontal-list-autoscroll.astro -------------------------------------------------------------------------------- /docs/src/pages/es/react/example/horizontal-list/single-horizontal-list.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/react/example/horizontal-list/single-horizontal-list.astro -------------------------------------------------------------------------------- /docs/src/pages/es/react/example/vertical-list/group-vertical-lists.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/react/example/vertical-list/group-vertical-lists.astro -------------------------------------------------------------------------------- /docs/src/pages/es/react/example/vertical-list/single-vertical-list-autoscroll.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/react/example/vertical-list/single-vertical-list-autoscroll.astro -------------------------------------------------------------------------------- /docs/src/pages/es/react/example/vertical-list/single-vertical-list-component-with-handler.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/react/example/vertical-list/single-vertical-list-component-with-handler.astro -------------------------------------------------------------------------------- /docs/src/pages/es/react/example/vertical-list/single-vertical-list-component-with-is-draggable.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/react/example/vertical-list/single-vertical-list-component-with-is-draggable.astro -------------------------------------------------------------------------------- /docs/src/pages/es/react/example/vertical-list/single-vertical-list-with-insert.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/react/example/vertical-list/single-vertical-list-with-insert.astro -------------------------------------------------------------------------------- /docs/src/pages/es/react/example/vertical-list/single-vertical-list-with-remove.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/react/example/vertical-list/single-vertical-list-with-remove.astro -------------------------------------------------------------------------------- /docs/src/pages/es/react/example/vertical-list/single-vertical-list.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/react/example/vertical-list/single-vertical-list.astro -------------------------------------------------------------------------------- /docs/src/pages/es/svelte/example/horizontal-list/group-horizontal-lists.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/svelte/example/horizontal-list/group-horizontal-lists.astro -------------------------------------------------------------------------------- /docs/src/pages/es/svelte/example/horizontal-list/single-horizontal-list-autoscroll.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/svelte/example/horizontal-list/single-horizontal-list-autoscroll.astro -------------------------------------------------------------------------------- /docs/src/pages/es/svelte/example/horizontal-list/single-horizontal-list.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/svelte/example/horizontal-list/single-horizontal-list.astro -------------------------------------------------------------------------------- /docs/src/pages/es/svelte/example/vertical-list/group-vertical-lists.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/svelte/example/vertical-list/group-vertical-lists.astro -------------------------------------------------------------------------------- /docs/src/pages/es/svelte/example/vertical-list/single-vertical-list-autoscroll.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/svelte/example/vertical-list/single-vertical-list-autoscroll.astro -------------------------------------------------------------------------------- /docs/src/pages/es/svelte/example/vertical-list/single-vertical-list-component-with-handler.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/svelte/example/vertical-list/single-vertical-list-component-with-handler.astro -------------------------------------------------------------------------------- /docs/src/pages/es/svelte/example/vertical-list/single-vertical-list-component-with-is-draggable.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/svelte/example/vertical-list/single-vertical-list-component-with-is-draggable.astro -------------------------------------------------------------------------------- /docs/src/pages/es/svelte/example/vertical-list/single-vertical-list-with-insert.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/svelte/example/vertical-list/single-vertical-list-with-insert.astro -------------------------------------------------------------------------------- /docs/src/pages/es/svelte/example/vertical-list/single-vertical-list-with-remove.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/svelte/example/vertical-list/single-vertical-list-with-remove.astro -------------------------------------------------------------------------------- /docs/src/pages/es/svelte/example/vertical-list/single-vertical-list.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/svelte/example/vertical-list/single-vertical-list.astro -------------------------------------------------------------------------------- /docs/src/pages/es/vue/example/horizontal-list/group-horizontal-lists.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/vue/example/horizontal-list/group-horizontal-lists.astro -------------------------------------------------------------------------------- /docs/src/pages/es/vue/example/horizontal-list/single-horizontal-list-autoscroll.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/vue/example/horizontal-list/single-horizontal-list-autoscroll.astro -------------------------------------------------------------------------------- /docs/src/pages/es/vue/example/horizontal-list/single-horizontal-list.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/vue/example/horizontal-list/single-horizontal-list.astro -------------------------------------------------------------------------------- /docs/src/pages/es/vue/example/vertical-list/group-vertical-lists.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/vue/example/vertical-list/group-vertical-lists.astro -------------------------------------------------------------------------------- /docs/src/pages/es/vue/example/vertical-list/single-vertical-list-autoscroll.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/vue/example/vertical-list/single-vertical-list-autoscroll.astro -------------------------------------------------------------------------------- /docs/src/pages/es/vue/example/vertical-list/single-vertical-list-component-with-handler.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/vue/example/vertical-list/single-vertical-list-component-with-handler.astro -------------------------------------------------------------------------------- /docs/src/pages/es/vue/example/vertical-list/single-vertical-list-component-with-is-draggable.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/vue/example/vertical-list/single-vertical-list-component-with-is-draggable.astro -------------------------------------------------------------------------------- /docs/src/pages/es/vue/example/vertical-list/single-vertical-list-with-insert.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/vue/example/vertical-list/single-vertical-list-with-insert.astro -------------------------------------------------------------------------------- /docs/src/pages/es/vue/example/vertical-list/single-vertical-list-with-remove.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/vue/example/vertical-list/single-vertical-list-with-remove.astro -------------------------------------------------------------------------------- /docs/src/pages/es/vue/example/vertical-list/single-vertical-list.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/es/vue/example/vertical-list/single-vertical-list.astro -------------------------------------------------------------------------------- /docs/src/pages/react/example/horizontal-list/group-horizontal-lists.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/react/example/horizontal-list/group-horizontal-lists.astro -------------------------------------------------------------------------------- /docs/src/pages/react/example/horizontal-list/single-horizontal-list-autoscroll.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/react/example/horizontal-list/single-horizontal-list-autoscroll.astro -------------------------------------------------------------------------------- /docs/src/pages/react/example/horizontal-list/single-horizontal-list.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/react/example/horizontal-list/single-horizontal-list.astro -------------------------------------------------------------------------------- /docs/src/pages/react/example/vertical-list/group-vertical-lists.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/react/example/vertical-list/group-vertical-lists.astro -------------------------------------------------------------------------------- /docs/src/pages/react/example/vertical-list/single-vertical-list-autoscroll.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/react/example/vertical-list/single-vertical-list-autoscroll.astro -------------------------------------------------------------------------------- /docs/src/pages/react/example/vertical-list/single-vertical-list-component-with-handler.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/react/example/vertical-list/single-vertical-list-component-with-handler.astro -------------------------------------------------------------------------------- /docs/src/pages/react/example/vertical-list/single-vertical-list-component-with-is-draggable.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/react/example/vertical-list/single-vertical-list-component-with-is-draggable.astro -------------------------------------------------------------------------------- /docs/src/pages/react/example/vertical-list/single-vertical-list-with-insert.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/react/example/vertical-list/single-vertical-list-with-insert.astro -------------------------------------------------------------------------------- /docs/src/pages/react/example/vertical-list/single-vertical-list-with-remove.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/react/example/vertical-list/single-vertical-list-with-remove.astro -------------------------------------------------------------------------------- /docs/src/pages/react/example/vertical-list/single-vertical-list.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/react/example/vertical-list/single-vertical-list.astro -------------------------------------------------------------------------------- /docs/src/pages/svelte/example/horizontal-list/group-horizontal-lists.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/svelte/example/horizontal-list/group-horizontal-lists.astro -------------------------------------------------------------------------------- /docs/src/pages/svelte/example/horizontal-list/single-horizontal-list-autoscroll.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/svelte/example/horizontal-list/single-horizontal-list-autoscroll.astro -------------------------------------------------------------------------------- /docs/src/pages/svelte/example/horizontal-list/single-horizontal-list.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/svelte/example/horizontal-list/single-horizontal-list.astro -------------------------------------------------------------------------------- /docs/src/pages/svelte/example/vertical-list/group-vertical-lists.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/svelte/example/vertical-list/group-vertical-lists.astro -------------------------------------------------------------------------------- /docs/src/pages/svelte/example/vertical-list/single-vertical-list-autoscroll.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/svelte/example/vertical-list/single-vertical-list-autoscroll.astro -------------------------------------------------------------------------------- /docs/src/pages/svelte/example/vertical-list/single-vertical-list-component-with-handler.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/svelte/example/vertical-list/single-vertical-list-component-with-handler.astro -------------------------------------------------------------------------------- /docs/src/pages/svelte/example/vertical-list/single-vertical-list-component-with-is-draggable.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/svelte/example/vertical-list/single-vertical-list-component-with-is-draggable.astro -------------------------------------------------------------------------------- /docs/src/pages/svelte/example/vertical-list/single-vertical-list-with-insert.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/svelte/example/vertical-list/single-vertical-list-with-insert.astro -------------------------------------------------------------------------------- /docs/src/pages/svelte/example/vertical-list/single-vertical-list-with-remove.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/svelte/example/vertical-list/single-vertical-list-with-remove.astro -------------------------------------------------------------------------------- /docs/src/pages/svelte/example/vertical-list/single-vertical-list.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/svelte/example/vertical-list/single-vertical-list.astro -------------------------------------------------------------------------------- /docs/src/pages/vue/example/horizontal-list/group-horizontal-lists.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/vue/example/horizontal-list/group-horizontal-lists.astro -------------------------------------------------------------------------------- /docs/src/pages/vue/example/horizontal-list/single-horizontal-list-autoscroll.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/vue/example/horizontal-list/single-horizontal-list-autoscroll.astro -------------------------------------------------------------------------------- /docs/src/pages/vue/example/horizontal-list/single-horizontal-list.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/vue/example/horizontal-list/single-horizontal-list.astro -------------------------------------------------------------------------------- /docs/src/pages/vue/example/vertical-list/group-vertical-lists.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/vue/example/vertical-list/group-vertical-lists.astro -------------------------------------------------------------------------------- /docs/src/pages/vue/example/vertical-list/single-vertical-list-autoscroll.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/vue/example/vertical-list/single-vertical-list-autoscroll.astro -------------------------------------------------------------------------------- /docs/src/pages/vue/example/vertical-list/single-vertical-list-component-with-handler.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/vue/example/vertical-list/single-vertical-list-component-with-handler.astro -------------------------------------------------------------------------------- /docs/src/pages/vue/example/vertical-list/single-vertical-list-component-with-is-draggable.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/vue/example/vertical-list/single-vertical-list-component-with-is-draggable.astro -------------------------------------------------------------------------------- /docs/src/pages/vue/example/vertical-list/single-vertical-list-with-insert.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/vue/example/vertical-list/single-vertical-list-with-insert.astro -------------------------------------------------------------------------------- /docs/src/pages/vue/example/vertical-list/single-vertical-list-with-remove.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/vue/example/vertical-list/single-vertical-list-with-remove.astro -------------------------------------------------------------------------------- /docs/src/pages/vue/example/vertical-list/single-vertical-list.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/pages/vue/example/vertical-list/single-vertical-list.astro -------------------------------------------------------------------------------- /docs/src/server/pokemonServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/server/pokemonServer.ts -------------------------------------------------------------------------------- /docs/src/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/tailwind.css -------------------------------------------------------------------------------- /docs/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/types.ts -------------------------------------------------------------------------------- /docs/src/utils/frameworkConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/utils/frameworkConfig.ts -------------------------------------------------------------------------------- /docs/src/utils/mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/utils/mobile.ts -------------------------------------------------------------------------------- /docs/src/utils/structuredData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/src/utils/structuredData.ts -------------------------------------------------------------------------------- /docs/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/svelte.config.js -------------------------------------------------------------------------------- /docs/tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/tailwind.config.mjs -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /e2e/ExampleVerticalListWithChildElements.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/e2e/ExampleVerticalListWithChildElements.spec.ts -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/fluid-dnd-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/public/fluid-dnd-logo.png -------------------------------------------------------------------------------- /public/fluid-dnd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/public/fluid-dnd.svg -------------------------------------------------------------------------------- /src/core/HandlerPublisher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/HandlerPublisher.ts -------------------------------------------------------------------------------- /src/core/config/configHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/config/configHandler.ts -------------------------------------------------------------------------------- /src/core/config/droppableConfigurator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/config/droppableConfigurator.ts -------------------------------------------------------------------------------- /src/core/dragAndDrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/dragAndDrop.ts -------------------------------------------------------------------------------- /src/core/events/changeDraggableStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/events/changeDraggableStyles.ts -------------------------------------------------------------------------------- /src/core/events/dragAndDrop/dragAndDrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/events/dragAndDrop/dragAndDrop.ts -------------------------------------------------------------------------------- /src/core/events/dragAndDrop/getTranslateBeforeDropping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/events/dragAndDrop/getTranslateBeforeDropping.ts -------------------------------------------------------------------------------- /src/core/events/dragAndDrop/getTranslationByDraggingAndEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/events/dragAndDrop/getTranslationByDraggingAndEvent.ts -------------------------------------------------------------------------------- /src/core/events/insert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/events/insert.ts -------------------------------------------------------------------------------- /src/core/events/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/events/remove.ts -------------------------------------------------------------------------------- /src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/index.ts -------------------------------------------------------------------------------- /src/core/positioning/autoScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/positioning/autoScroll.ts -------------------------------------------------------------------------------- /src/core/positioning/usePositioning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/positioning/usePositioning.ts -------------------------------------------------------------------------------- /src/core/tempChildren.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/tempChildren.ts -------------------------------------------------------------------------------- /src/core/useDraggable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/useDraggable.ts -------------------------------------------------------------------------------- /src/core/useDroppable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/useDroppable.ts -------------------------------------------------------------------------------- /src/core/utils/GetStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/utils/GetStyles.ts -------------------------------------------------------------------------------- /src/core/utils/ParseStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/utils/ParseStyles.ts -------------------------------------------------------------------------------- /src/core/utils/SetStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/utils/SetStyles.ts -------------------------------------------------------------------------------- /src/core/utils/classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/utils/classes.ts -------------------------------------------------------------------------------- /src/core/utils/dom/classList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/utils/dom/classList.ts -------------------------------------------------------------------------------- /src/core/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/utils/index.ts -------------------------------------------------------------------------------- /src/core/utils/observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/utils/observer.ts -------------------------------------------------------------------------------- /src/core/utils/typesCheckers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/core/utils/typesCheckers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/react/index.ts -------------------------------------------------------------------------------- /src/react/useDragAndDrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/react/useDragAndDrop.ts -------------------------------------------------------------------------------- /src/react/utils/ReactLilstConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/react/utils/ReactLilstConfig.ts -------------------------------------------------------------------------------- /src/svelte/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/svelte/index.ts -------------------------------------------------------------------------------- /src/svelte/useDragAndDrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/svelte/useDragAndDrop.ts -------------------------------------------------------------------------------- /src/svelte/utils/SvelteListCondig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/svelte/utils/SvelteListCondig.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/vue/index.ts -------------------------------------------------------------------------------- /src/vue/useDragAndDrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/vue/useDragAndDrop.ts -------------------------------------------------------------------------------- /src/vue/utils/DropMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/vue/utils/DropMethods.ts -------------------------------------------------------------------------------- /src/vue/utils/VueListCondig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/src/vue/utils/VueListCondig.ts -------------------------------------------------------------------------------- /tests-frameworks/react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/.gitignore -------------------------------------------------------------------------------- /tests-frameworks/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/README.md -------------------------------------------------------------------------------- /tests-frameworks/react/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/eslint.config.js -------------------------------------------------------------------------------- /tests-frameworks/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/index.html -------------------------------------------------------------------------------- /tests-frameworks/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/package.json -------------------------------------------------------------------------------- /tests-frameworks/react/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/pnpm-lock.yaml -------------------------------------------------------------------------------- /tests-frameworks/react/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/public/vite.svg -------------------------------------------------------------------------------- /tests-frameworks/react/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/src/App.css -------------------------------------------------------------------------------- /tests-frameworks/react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/src/App.tsx -------------------------------------------------------------------------------- /tests-frameworks/react/src/assets/pokemon-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/src/assets/pokemon-bg.svg -------------------------------------------------------------------------------- /tests-frameworks/react/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/src/assets/react.svg -------------------------------------------------------------------------------- /tests-frameworks/react/src/components/groupOfNumberList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/src/components/groupOfNumberList.tsx -------------------------------------------------------------------------------- /tests-frameworks/react/src/components/groupOfPokemonlists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/src/components/groupOfPokemonlists.tsx -------------------------------------------------------------------------------- /tests-frameworks/react/src/components/pokemon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/src/components/pokemon.css -------------------------------------------------------------------------------- /tests-frameworks/react/src/components/pokemonComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/src/components/pokemonComponent.tsx -------------------------------------------------------------------------------- /tests-frameworks/react/src/components/simpleNumberList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/src/components/simpleNumberList.css -------------------------------------------------------------------------------- /tests-frameworks/react/src/components/simpleNumberList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/src/components/simpleNumberList.tsx -------------------------------------------------------------------------------- /tests-frameworks/react/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/src/index.css -------------------------------------------------------------------------------- /tests-frameworks/react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/src/main.tsx -------------------------------------------------------------------------------- /tests-frameworks/react/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tests-frameworks/react/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/tsconfig.app.json -------------------------------------------------------------------------------- /tests-frameworks/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/tsconfig.json -------------------------------------------------------------------------------- /tests-frameworks/react/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/tsconfig.node.json -------------------------------------------------------------------------------- /tests-frameworks/react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/react/vite.config.ts -------------------------------------------------------------------------------- /tests-frameworks/svelte/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/.gitignore -------------------------------------------------------------------------------- /tests-frameworks/svelte/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /tests-frameworks/svelte/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/.prettierignore -------------------------------------------------------------------------------- /tests-frameworks/svelte/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/.prettierrc -------------------------------------------------------------------------------- /tests-frameworks/svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/README.md -------------------------------------------------------------------------------- /tests-frameworks/svelte/e2e/demo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/e2e/demo.test.ts -------------------------------------------------------------------------------- /tests-frameworks/svelte/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/eslint.config.js -------------------------------------------------------------------------------- /tests-frameworks/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/package.json -------------------------------------------------------------------------------- /tests-frameworks/svelte/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/playwright.config.ts -------------------------------------------------------------------------------- /tests-frameworks/svelte/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/pnpm-lock.yaml -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/app.css: -------------------------------------------------------------------------------- 1 | @import 'tailwindcss'; 2 | -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/src/app.d.ts -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/src/app.html -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/components/ExampleOfPokemonList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/src/components/ExampleOfPokemonList.svelte -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/components/ListGroup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/src/components/ListGroup.svelte -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/components/NestedTask.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/src/components/NestedTask.svelte -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/components/NumberContextConsumer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/src/components/NumberContextConsumer.svelte -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/components/NumberListWithContext.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/src/components/NumberListWithContext.svelte -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/components/PokemonComponent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/src/components/PokemonComponent.svelte -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/components/Tasks.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/src/components/Tasks.svelte -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/components/groupOfNumberLists.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/src/components/groupOfNumberLists.svelte -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/components/innerDroppable.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/src/components/innerDroppable.svelte -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/components/nestedDroppables.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/src/components/nestedDroppables.svelte -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/components/simpleNumberList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/src/components/simpleNumberList.svelte -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/src/lib/index.ts -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/lib/numberContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/src/lib/numberContext.ts -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/src/routes/+layout.svelte -------------------------------------------------------------------------------- /tests-frameworks/svelte/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/src/routes/+page.svelte -------------------------------------------------------------------------------- /tests-frameworks/svelte/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/static/favicon.png -------------------------------------------------------------------------------- /tests-frameworks/svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/svelte.config.js -------------------------------------------------------------------------------- /tests-frameworks/svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/tsconfig.json -------------------------------------------------------------------------------- /tests-frameworks/svelte/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/svelte/vite.config.ts -------------------------------------------------------------------------------- /tests-frameworks/vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/.gitignore -------------------------------------------------------------------------------- /tests-frameworks/vue/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/.vscode/extensions.json -------------------------------------------------------------------------------- /tests-frameworks/vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/README.md -------------------------------------------------------------------------------- /tests-frameworks/vue/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/components.json -------------------------------------------------------------------------------- /tests-frameworks/vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/index.html -------------------------------------------------------------------------------- /tests-frameworks/vue/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/package-lock.json -------------------------------------------------------------------------------- /tests-frameworks/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/package.json -------------------------------------------------------------------------------- /tests-frameworks/vue/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/pnpm-lock.yaml -------------------------------------------------------------------------------- /tests-frameworks/vue/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/public/logo.svg -------------------------------------------------------------------------------- /tests-frameworks/vue/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/public/vite.svg -------------------------------------------------------------------------------- /tests-frameworks/vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/App.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/assets/vue.svg -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/Droppable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/Droppable.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleCompoundDroppable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleCompoundDroppable.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleCompoundDroppableEvent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleCompoundDroppableEvent.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleCounterList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleCounterList.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleGroupOfListWithStyles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleGroupOfListWithStyles.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleGroupOflist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleGroupOflist.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleHorizontalCounterList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleHorizontalCounterList.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleHorizontalList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleHorizontalList.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleHorizontalListWithMixedStyles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleHorizontalListWithMixedStyles.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleHorizontalScrollList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleHorizontalScrollList.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleInsertHorizontalList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleInsertHorizontalList.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleInsertList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleInsertList.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleInsideDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleInsideDialog.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleListGroupDroppableAndDraggableClasses.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleListGroupDroppableAndDraggableClasses.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleListWithRemove.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleListWithRemove.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleOfPokemonList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleOfPokemonList.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleTable.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleVertialScrollList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleVertialScrollList.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleVerticalListWithChildElements.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleVerticalListWithChildElements.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ExampleVerticalListWithHandler.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ExampleVerticalListWithHandler.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/NumberComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/NumberComponent.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/PokemonComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/PokemonComponent.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/icons/handler.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/icons/handler.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/icons/trash.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/icons/trash.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ui/dialog/Dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ui/dialog/Dialog.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ui/dialog/DialogClose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ui/dialog/DialogClose.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ui/dialog/DialogContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ui/dialog/DialogContent.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ui/dialog/DialogDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ui/dialog/DialogDescription.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ui/dialog/DialogFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ui/dialog/DialogFooter.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ui/dialog/DialogHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ui/dialog/DialogHeader.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ui/dialog/DialogOverlay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ui/dialog/DialogOverlay.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ui/dialog/DialogScrollContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ui/dialog/DialogScrollContent.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ui/dialog/DialogTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ui/dialog/DialogTitle.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ui/dialog/DialogTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ui/dialog/DialogTrigger.vue -------------------------------------------------------------------------------- /tests-frameworks/vue/src/components/ui/dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/components/ui/dialog/index.ts -------------------------------------------------------------------------------- /tests-frameworks/vue/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/lib/utils.ts -------------------------------------------------------------------------------- /tests-frameworks/vue/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/main.ts -------------------------------------------------------------------------------- /tests-frameworks/vue/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/src/style.css -------------------------------------------------------------------------------- /tests-frameworks/vue/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tests-frameworks/vue/tests/browser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/tests/browser.test.ts -------------------------------------------------------------------------------- /tests-frameworks/vue/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/tsconfig.app.json -------------------------------------------------------------------------------- /tests-frameworks/vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/tsconfig.json -------------------------------------------------------------------------------- /tests-frameworks/vue/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/tsconfig.node.json -------------------------------------------------------------------------------- /tests-frameworks/vue/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests-frameworks/vue/vite.config.ts -------------------------------------------------------------------------------- /tests/calculateRangeWhileDragging.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tests/calculateRangeWhileDragging.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosjorger/fluid-dnd/HEAD/vite.config.ts --------------------------------------------------------------------------------