Skip to content

Commit

Permalink
Fixes: issue where list could get out of order from results.
Browse files Browse the repository at this point in the history
Updates Framework target .Net8/.Net9
Adds: OnDataChanged To Sortable It's self
Changes: all JSInvokable Methods are now Tasks and are awaited.
  • Loading branch information
jbomhold3 committed Nov 17, 2024
1 parent d9f2421 commit a790d59
Show file tree
Hide file tree
Showing 340 changed files with 227 additions and 135 deletions.
2 changes: 1 addition & 1 deletion BlazorSortableJS.Demo/BlazorSortableJS.Demo.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions BlazorSortableJS.Docs/BlazorSortableJS.Docs.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>BlazorSortableJS.Docs</RootNamespace>
Expand All @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.4" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.0" />
<PackageReference Include="Markdig.SyntaxHighlighting" Version="1.0.0-custom" />
<PackageReference Include="Markdig" Version="0.26.0" />
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions BlazorSortableJS.Docs/Samples/Components/SharedLists.razor
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
<h6 class="text-center fw-bold">Set 1</h6>
<Sortable TItem="string" Items="items" Class="list-group" Options="_options">
<Template Context="item">
<div class="list-group-item">@item</div>
<div class="list-group-item" @key="item">@item</div>
</Template>
</Sortable>
</div>
<div class="col-4">
<h6 class="text-center fw-bold">Set 2</h6>
<Sortable TItem="string" Items="items2" Class="list-group" Options="_options">
<Template Context="item">
<div class="list-group-item tinted">@item</div>
<div class="list-group-item tinted" @key="item">@item</div>
</Template>
</Sortable>
</div>
Expand Down
1 change: 1 addition & 0 deletions BlazorSortableJS.Docs/Samples/Components/SimpleList.razor
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
animation = 150,
ghostClass = "blue-background-class"
};

private List<string> items = new List<string>
{
"Item 1-1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
<h6 class="text-center fw-bold">Set 1</h6>
<Sortable TItem="string" Items="items" Class="list-group" Options="_options">
<Template Context="item">
<div class="list-group-item">@item</div>
<div class="list-group-item" @key="item">@item</div>
</Template>
</Sortable>
</div>
<div class="col-4">
<h6 class="text-center fw-bold">Set 2</h6>
<Sortable TItem="string" Items="items2" Class="list-group" Options="_options">
<Template Context="item">
<div class="list-group-item tinted">@item</div>
<div class="list-group-item tinted" @key="item">@item</div>
</Template>
</Sortable>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="col-6">
<h6 class="text-center fw-bold">Sortable</h6>
<SortableWrapper OnDataChanged="@(() => InvokeAsync(StateHasChanged))">
<Sortable TItem="string" Items="items" Class="list-group" Options="_options">
<Sortable TItem="string" Items="items" Class="list-group" Options="_options" OnDataChanged="Test">
<Template Context="item">
<div class="list-group-item">@item</div>
</Template>
Expand All @@ -25,6 +25,12 @@
animation = 150,
ghostClass = "blue-background-class"
};
private async Task Test()
{
await Task.Delay(1000);
Console.WriteLine("Test");

}
private List<string> items = new List<string>
{
"Item 1-1",
Expand Down
6 changes: 3 additions & 3 deletions BlazorSortableJS.WASM/BlazorSortableJS.WASM.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.4" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.4" PrivateAssets="all" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.0" PrivateAssets="all" />
</ItemGroup>

<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions BlazorSortableJS.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.6.33513.286
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlazorSortableJS.Demo", "BlazorSortableJS.Demo\BlazorSortableJS.Demo.csproj", "{8B68FE92-34BA-4A37-B7F4-887156F6C995}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorSortableJS.Demo", "BlazorSortableJS.Demo\BlazorSortableJS.Demo.csproj", "{8B68FE92-34BA-4A37-B7F4-887156F6C995}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlazorSortableJS", "BlazorSortableJS\BlazorSortableJS.csproj", "{669321D7-F88F-479A-A9D3-68C0144981F6}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorSortableJS", "BlazorSortableJS\BlazorSortableJS.csproj", "{669321D7-F88F-479A-A9D3-68C0144981F6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlazorSortableJS.Docs", "BlazorSortableJS.Docs\BlazorSortableJS.Docs.csproj", "{39B09C26-A1EC-4542-82D4-4D21831BE856}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorSortableJS.Docs", "BlazorSortableJS.Docs\BlazorSortableJS.Docs.csproj", "{39B09C26-A1EC-4542-82D4-4D21831BE856}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlazorSortableJS.WASM", "BlazorSortableJS.WASM\BlazorSortableJS.WASM.csproj", "{79B32E3C-8C86-4A89-B5FC-C1EC7D735C1D}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorSortableJS.WASM", "BlazorSortableJS.WASM\BlazorSortableJS.WASM.csproj", "{79B32E3C-8C86-4A89-B5FC-C1EC7D735C1D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
8 changes: 4 additions & 4 deletions BlazorSortableJS/BlazorSortableJS.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PackageId>BlazorSortableJs</PackageId>
Expand All @@ -16,19 +16,19 @@
<RepositoryUrl>https://github.com/jbomhold3/BlazorSortableJS</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Copyright>John J Bomhold</Copyright>
<Version>2.0.0-Preview2</Version>
<Version>2.0.0-Preview3</Version>
</PropertyGroup>


<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.*" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' ">
<ItemGroup Condition=" '$(TargetFramework)' == 'net9.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.*" />
</ItemGroup>
</Project>
8 changes: 8 additions & 0 deletions BlazorSortableJS/KeyedItem.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
namespace BlazorSortableJS
{
internal sealed class KeyedItem<T>
{
public string Key { get; set; } = Guid.NewGuid().ToString();
public T Item { get; set; }
}
}
6 changes: 3 additions & 3 deletions BlazorSortableJS/Sortable.razor
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
@ChildContent

<div @ref="_dropZoneContainer" class="@Class">
@foreach (var item in Items)
@foreach (var keyedItem in _keyedItems)
{
<Keyed @key="item">
@Template(item)
<Keyed @key="keyedItem.Key">
@Template(keyedItem.Item)
</Keyed>
}
</div>
Expand Down
51 changes: 40 additions & 11 deletions BlazorSortableJS/Sortable.razor.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using Microsoft.AspNetCore.Components;
using Microsoft.JSInterop;
using System.Text.Json;

namespace BlazorSortableJS
{
Expand All @@ -10,13 +11,17 @@ public partial class Sortable<TItem> : IAsyncDisposable

[Parameter]
public List<TItem> Items { get; set; } = new List<TItem> { };

private List<KeyedItem<TItem>> _keyedItems = new();
private List<TItem> _lastItems = new();
[Parameter]
public RenderFragment<TItem> Template { get; set; } = null!;

[Parameter]
public RenderFragment? ChildContent { get; set; }

[Parameter]
public Func<Task>? OnDataChanged { get; set; }

[Parameter]
public string Class { get; set; } = string.Empty;
[Parameter]
Expand All @@ -25,6 +30,18 @@ public partial class Sortable<TItem> : IAsyncDisposable
internal ElementReference _dropZoneContainer;
private bool _shouldRender = true;
private bool _hasPreRendered;

protected override void OnParametersSet()
{
if (!_lastItems.SequenceEqual(Items))
{
_lastItems = Items.Select(x => x).ToList() ;

_keyedItems = Items.Select((item, index) => new KeyedItem<TItem> { Key = Guid.NewGuid().ToString(), Item = item }).ToList();

}
}

protected override void OnInitialized()
{
if(ParentSortable != null)
Expand Down Expand Up @@ -76,40 +93,52 @@ protected override bool ShouldRender()
}

[JSInvokable]
public void UpdateItemOrder(int oldIndex, int newIndex)
public async Task UpdateItemOrder(int oldIndex, int newIndex)
{
var item = Items[oldIndex];
Items.RemoveAt(oldIndex);
Items.Insert(newIndex, item);
if (ParentSortable != null)
{
if (ParentSortable.OnDataChanged.HasDelegate)
_ = ParentSortable.OnDataChanged.InvokeAsync();
_ = ParentSortable.RefreshAsync();
await ParentSortable.OnDataChanged.InvokeAsync();
await ParentSortable.RefreshAsync();
}
if(OnDataChanged is not null)
{
await OnDataChanged.Invoke();
}
}

[JSInvokable]
public void RemoveItem(int index)
public async Task RemoveItem(int index)
{
Items.RemoveAt(index);
if (ParentSortable != null)
{
if (ParentSortable.OnDataChanged.HasDelegate)
_ = ParentSortable.OnDataChanged.InvokeAsync();
_ = ParentSortable.RefreshAsync();
await ParentSortable.OnDataChanged.InvokeAsync();
await ParentSortable.RefreshAsync();
}
if (OnDataChanged is not null)
{
await OnDataChanged.Invoke();
}
}

[JSInvokable]
public void AddItem(int index, TItem item)
public async Task AddItem(int index, TItem item)
{
Items.Insert(index, item);
Items.Insert(index, item );
if (ParentSortable != null)
{
if (ParentSortable.OnDataChanged.HasDelegate)
_ = ParentSortable.OnDataChanged.InvokeAsync();
_ = ParentSortable.RefreshAsync();
await ParentSortable.OnDataChanged.InvokeAsync();
await ParentSortable.RefreshAsync();
}
if (OnDataChanged is not null)
{
await OnDataChanged.Invoke();
}
}

Expand Down
Binary file added docs/_content/BlazorSortableJs/sortableInterop.js.br
Binary file not shown.
Binary file added docs/_content/BlazorSortableJs/sortableInterop.js.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/BlazorSortableJS.Docs.dll
Binary file not shown.
Binary file removed docs/_framework/BlazorSortableJS.Docs.dll.br
Binary file not shown.
Binary file removed docs/_framework/BlazorSortableJS.Docs.dll.gz
Binary file not shown.
Binary file removed docs/_framework/BlazorSortableJS.Docs.pdb.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/BlazorSortableJS.WASM.dll
Binary file not shown.
Binary file removed docs/_framework/BlazorSortableJS.WASM.dll.br
Binary file not shown.
Binary file removed docs/_framework/BlazorSortableJS.WASM.dll.gz
Binary file not shown.
Binary file removed docs/_framework/BlazorSortableJS.WASM.pdb.gz
Binary file not shown.
Binary file removed docs/_framework/BlazorSortableJS.dll
Binary file not shown.
Binary file removed docs/_framework/BlazorSortableJS.dll.br
Binary file not shown.
Binary file removed docs/_framework/BlazorSortableJS.dll.gz
Binary file not shown.
Binary file removed docs/_framework/BlazorSortableJS.pdb.gz
Binary file not shown.
Binary file added docs/_framework/BlazorSortableJS.u0rxcuadri.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/ColorCode.dll.br
Binary file not shown.
Binary file removed docs/_framework/ColorCode.dll.gz
Binary file not shown.
Binary file not shown.
Binary file added docs/_framework/ColorCode.f9q1suz8z5.wasm.br
Binary file not shown.
Binary file added docs/_framework/ColorCode.f9q1suz8z5.wasm.gz
Binary file not shown.
Binary file removed docs/_framework/Markdig.SyntaxHighlighting.dll.br
Binary file not shown.
Binary file removed docs/_framework/Markdig.SyntaxHighlighting.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/_framework/Markdig.abl8yf4sfe.wasm.br
Binary file not shown.
Binary file added docs/_framework/Markdig.abl8yf4sfe.wasm.gz
Binary file not shown.
Binary file removed docs/_framework/Markdig.dll.br
Binary file not shown.
Binary file removed docs/_framework/Markdig.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/Microsoft.AspNetCore.Components.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/Microsoft.Extensions.Logging.dll
Binary file not shown.
Binary file removed docs/_framework/Microsoft.Extensions.Logging.dll.br
Binary file not shown.
Binary file removed docs/_framework/Microsoft.Extensions.Logging.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/Microsoft.Extensions.Options.dll
Binary file not shown.
Binary file removed docs/_framework/Microsoft.Extensions.Options.dll.br
Binary file not shown.
Binary file removed docs/_framework/Microsoft.Extensions.Options.dll.gz
Binary file not shown.
Binary file removed docs/_framework/Microsoft.Extensions.Primitives.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/Microsoft.JSInterop.WebAssembly.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/Microsoft.JSInterop.dll
Binary file not shown.
Binary file removed docs/_framework/Microsoft.JSInterop.dll.br
Binary file not shown.
Binary file removed docs/_framework/Microsoft.JSInterop.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/System.Collections.Concurrent.dll
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/System.Collections.Concurrent.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/System.Collections.dll
Binary file not shown.
Binary file removed docs/_framework/System.Collections.dll.br
Binary file not shown.
Binary file removed docs/_framework/System.Collections.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/System.ComponentModel.dll
Binary file not shown.
Binary file removed docs/_framework/System.ComponentModel.dll.br
Binary file not shown.
Binary file removed docs/_framework/System.ComponentModel.dll.gz
Binary file not shown.
Binary file added docs/_framework/System.Console.eazuhmupe7.wasm
Binary file not shown.
Binary file added docs/_framework/System.Console.eazuhmupe7.wasm.br
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/System.Diagnostics.Debug.dll
Binary file not shown.
Binary file removed docs/_framework/System.Diagnostics.Debug.dll.br
Binary file not shown.
Binary file removed docs/_framework/System.Diagnostics.Debug.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/System.Diagnostics.Tools.dll
Binary file not shown.
Binary file removed docs/_framework/System.Diagnostics.Tools.dll.br
Binary file not shown.
Binary file removed docs/_framework/System.Diagnostics.Tools.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/System.Linq.dll
Binary file not shown.
Binary file removed docs/_framework/System.Linq.dll.br
Binary file not shown.
Binary file removed docs/_framework/System.Linq.dll.gz
Binary file not shown.
Binary file added docs/_framework/System.Linq.vma1mqvn71.wasm
Binary file not shown.
Binary file added docs/_framework/System.Linq.vma1mqvn71.wasm.br
Binary file not shown.
Binary file added docs/_framework/System.Linq.vma1mqvn71.wasm.gz
Binary file not shown.
Binary file added docs/_framework/System.Memory.d8bwii2l0b.wasm
Binary file not shown.
Binary file added docs/_framework/System.Memory.d8bwii2l0b.wasm.br
Binary file not shown.
Binary file added docs/_framework/System.Memory.d8bwii2l0b.wasm.gz
Binary file not shown.
Binary file removed docs/_framework/System.Memory.dll
Binary file not shown.
Binary file removed docs/_framework/System.Memory.dll.br
Binary file not shown.
Binary file removed docs/_framework/System.Memory.dll.gz
Binary file not shown.
Binary file added docs/_framework/System.Net.Http.1wk9dopnr8.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/System.Net.Http.dll
Binary file not shown.
Binary file removed docs/_framework/System.Net.Http.dll.br
Binary file not shown.
Binary file removed docs/_framework/System.Net.Http.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/System.Net.Primitives.dll
Binary file not shown.
Binary file removed docs/_framework/System.Net.Primitives.dll.br
Binary file not shown.
Binary file removed docs/_framework/System.Net.Primitives.dll.gz
Binary file not shown.
Binary file removed docs/_framework/System.ObjectModel.dll
Binary file not shown.
Binary file removed docs/_framework/System.ObjectModel.dll.br
Binary file not shown.
Binary file removed docs/_framework/System.ObjectModel.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/System.Private.CoreLib.dll
Binary file not shown.
Binary file removed docs/_framework/System.Private.CoreLib.dll.br
Binary file not shown.
Binary file removed docs/_framework/System.Private.CoreLib.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/System.Private.Uri.dll
Binary file not shown.
Binary file removed docs/_framework/System.Private.Uri.dll.br
Binary file not shown.
Binary file removed docs/_framework/System.Private.Uri.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/_framework/System.Runtime.2mdzvwjvoq.wasm
Binary file not shown.
Binary file added docs/_framework/System.Runtime.2mdzvwjvoq.wasm.br
Binary file not shown.
Binary file added docs/_framework/System.Runtime.2mdzvwjvoq.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/System.Runtime.Extensions.dll
Binary file not shown.
Binary file removed docs/_framework/System.Runtime.Extensions.dll.br
Binary file not shown.
Binary file removed docs/_framework/System.Runtime.Extensions.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/System.Runtime.dll
Binary file not shown.
Binary file removed docs/_framework/System.Runtime.dll.br
Binary file not shown.
Binary file removed docs/_framework/System.Runtime.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/System.Text.Encodings.Web.dll
Binary file not shown.
Binary file removed docs/_framework/System.Text.Encodings.Web.dll.br
Binary file not shown.
Binary file removed docs/_framework/System.Text.Encodings.Web.dll.gz
Binary file not shown.
Binary file removed docs/_framework/System.Text.Json.dll
Binary file not shown.
Binary file removed docs/_framework/System.Text.Json.dll.br
Binary file not shown.
Binary file removed docs/_framework/System.Text.Json.dll.gz
Binary file not shown.
Binary file added docs/_framework/System.Text.Json.f2o69dznph.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/System.Text.RegularExpressions.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/_framework/System.Threading.1lcahyy4xm.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/_framework/System.Threading.dll
Binary file not shown.
Binary file removed docs/_framework/System.Threading.dll.br
Binary file not shown.
Binary file removed docs/_framework/System.Threading.dll.gz
Binary file not shown.
Loading

0 comments on commit a790d59

Please sign in to comment.