* updated version

This commit is contained in:
Santiago Cattaneo 2022-08-23 16:27:54 -03:00
parent 9cefa60d15
commit 21049208df
5 changed files with 5 additions and 5 deletions

View file

@ -43,7 +43,7 @@
public List<ListItem> list1 = new() public List<ListItem> list1 = new()
{ {
new ListItem("Google", "https://google.com", "Again looking for a bug ..."), new ListItem("Google", "https://google.com", "Again looking for a bugAgain looking for a bug Again looking for a bug Again looking for a bugAgain looking for a bugAgain looking for a bug..."),
new ListItem("StackOverflow", "https://stackoverflow.com", "Could be this the solution?"), new ListItem("StackOverflow", "https://stackoverflow.com", "Could be this the solution?"),
new ListItem("GitHub", "https://github.com", "Let's get awesome code"), new ListItem("GitHub", "https://github.com", "Let's get awesome code"),
new ListItem("Twitter", "https://twitter.com", "I want to rest"), new ListItem("Twitter", "https://twitter.com", "I want to rest"),

View file

@ -19,7 +19,7 @@ Welcome to your new reorderer list.
{ {
public List<ListItem> list = new() public List<ListItem> list = new()
{ {
new ListItem("Google", "https://google.com", "Again looking for a bug ..."), new ListItem("Google", "https://google.com", "Again looking for a bugAgain looking for a bug Again looking for a bug Again looking for a bugAgain looking for a bugAgain looking for a bug..."),
new ListItem("StackOverflow", "https://stackoverflow.com", "Could be this the solution?"), new ListItem("StackOverflow", "https://stackoverflow.com", "Could be this the solution?"),
new ListItem("GitHub", "https://github.com", "Let's get awesome code"), new ListItem("GitHub", "https://github.com", "Let's get awesome code"),
new ListItem("Twitter", "https://twitter.com", "I want to rest"), new ListItem("Twitter", "https://twitter.com", "I want to rest"),

View file

@ -5,7 +5,7 @@
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<PackageId>BlazorReorderList</PackageId> <PackageId>BlazorReorderList</PackageId>
<Version>1.0.1</Version> <Version>1.0.2</Version>
<Authors>Santiago Cattaneo</Authors> <Authors>Santiago Cattaneo</Authors>
<projectUrl>https://github.com/elgransan/BlazorReorder</projectUrl> <projectUrl>https://github.com/elgransan/BlazorReorder</projectUrl>
<description>Drag and Drop Reorder List for Blazor, with the less JS interop possible</description> <description>Drag and Drop Reorder List for Blazor, with the less JS interop possible</description>

View file

@ -147,7 +147,7 @@
// If is on top of an element or if top top of a empty list -> confirm drag // If is on top of an element or if top top of a empty list -> confirm drag
if (await isOnTop(subItem, pos) || if (await isOnTop(subItem, pos) ||
Items.Count == 0 && await isOnTop((ElementReference) reorder, pos)) Items.Count == 0 && await isOnTop(reorder, pos))
{ {
// reorder // reorder
if (!rs.isCopy()) if (!rs.isCopy())

View file

@ -1,6 +1,6 @@
# Blazor Reorder # Blazor Reorder
<a href="https://www.nuget.org/packages/BlazorReorderList/1.0.1"><img src="https://img.shields.io/nuget/v/BlazorReorderList?style=flat-square" alt="Download Reorder"/></a> <a href="https://www.nuget.org/packages/BlazorReorderList/1.0.2"><img src="https://img.shields.io/nuget/v/BlazorReorderList?style=flat-square" alt="Download Reorder"/></a>
### Live Examples ### Live Examples
https://elgransan.github.io/BlazorReorder https://elgransan.github.io/BlazorReorder